@charset "utf-8";

/* ═══════════════════════════════════════════════════════════
   TRIEDENT SUITES & RESOURCE CENTER — DESIGN SYSTEM
   Palette: Red #EE1D23 · Deep Slate #161922 · Bone #F8F9FA
   Typography: Fraunces (Headings) · Inter (UI/Body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --ts-red: #EE1D23;
  --ts-red-hover: #D8141A;
  --ts-red-deep: #B70E13;
  --ts-red-bright: #FF858A;
  --ts-red-subtle: #FFF0F0;
  --ts-red-border: #FEE2E2;

  --ts-dark: #161922;
  --ts-dark-surface: #1C202B;
  --ts-dark-subtle: #0E1017;

  --ts-ink: #111827;
  --ts-body: #374151;
  --ts-muted: #6B7280;
  --ts-hair: #E5E7EB;
  --ts-border: #E2E8F0;

  --ts-sand: #F3F4F6;
  --ts-bone: #F8F9FA;
  --ts-white: #FFFFFF;

  --ts-wrap: 1200px;
  --ts-radius: 8px;
  --ts-radius-lg: 12px;
  --ts-ease: cubic-bezier(.22, 1, .36, 1);
  --ts-shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
  --ts-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, .06), 0 8px 10px -6px rgba(0, 0, 0, .04);
  --ts-shadow-lg: 0 20px 40px -12px rgba(22, 25, 34, .12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ts-body);
  background: var(--ts-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ── typography ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ts-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 em, h2 em { font-style: italic; font-weight: 400; color: inherit; }

.ts-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ts-red-deep);
  margin-bottom: 8px;
  display: inline-block;
}
.ts-eyebrow.ts-inv { color: var(--ts-red-bright); }

.ts-wrap {
  width: 100%;
  max-width: var(--ts-wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── buttons & links ── */
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--ts-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s var(--ts-ease);
  white-space: nowrap;
}
.ts-btn-red {
  background: var(--ts-red);
  color: #ffffff;
  border-color: var(--ts-red);
  box-shadow: 0 4px 12px rgba(238, 29, 35, .25);
}
.ts-btn-red:hover {
  background: var(--ts-red-hover);
  border-color: var(--ts-red-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(238, 29, 35, .35);
}
.ts-btn-dark {
  background: var(--ts-dark);
  color: #ffffff;
}
.ts-btn-dark:hover {
  background: #000000;
  color: #ffffff;
}
.ts-btn-outline-dark {
  background: transparent;
  color: var(--ts-ink);
  border-color: var(--ts-border);
}
.ts-btn-outline-dark:hover {
  background: var(--ts-sand);
  border-color: var(--ts-muted);
  color: var(--ts-ink);
}
.ts-btn-block { width: 100%; }

.ts-textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--ts-red-deep);
  transition: gap .2s, color .2s;
}
.ts-textlink:hover {
  color: var(--ts-red);
  gap: 10px;
}
.ts-textlink.ts-inv { color: #ffffff; }
.ts-textlink.ts-inv:hover { color: var(--ts-red-bright); }

/* ── Universal Form Elements & Grids ── */
.ts-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .ts-grid-2, .ts-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}

.ts-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.ts-field label {
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  color: var(--ts-ink);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ts-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ts-border);
  border-radius: var(--ts-radius);
  font-family: 'Inter', sans-serif;
  font-size: .90rem;
  color: var(--ts-ink);
  background: #ffffff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.ts-input::placeholder {
  color: #9CA3AF;
  font-size: .88rem;
}
.ts-input:focus {
  border-color: var(--ts-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(238, 29, 35, .12);
}
select.ts-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
textarea.ts-input {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

/* ── skip link ── */
.ts-skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--ts-dark);
  color: #ffffff;
  padding: 10px 18px;
  z-index: 99999;
  border-radius: var(--ts-radius);
  transition: top .2s;
}
.ts-skip-link:focus { top: 15px; }

/* ── header & main navigation ── */
.ts-head {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--ts-hair);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}
.ts-head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.ts-brand {
  display: flex;
  align-items: center;
}
.ts-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.ts-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ts-nav a, .ts-has-dropdown > a {
  font-family: 'Inter', sans-serif;
  font-size: .90rem;
  font-weight: 600;
  color: var(--ts-ink);
  text-decoration: none;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  transition: color .2s;
  cursor: pointer;
}
.ts-nav a:hover, .ts-has-dropdown:hover > a {
  color: var(--ts-red);
}
.ts-nav-link-active {
  color: var(--ts-red) !important;
}
.ts-head-cta {
  padding: 10px 20px;
  font-size: .84rem;
}
.ts-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.ts-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ts-ink);
  border-radius: 2px;
  transition: all .3s;
}

/* ── mega dropdown menu ── */
.ts-has-dropdown {
  position: relative;
}
.ts-nav-caret {
  font-size: .75rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform .2s ease;
}
.ts-has-dropdown:hover .ts-nav-caret {
  transform: rotate(180deg);
}

.ts-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 580px;
  background: #ffffff;
  border: 1px solid var(--ts-hair);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .04);
  padding: 0;
  display: none;
  z-index: 1001;
  animation: tsFadeDown .2s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@keyframes tsFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ts-has-dropdown:hover .ts-dropdown-menu {
  display: block;
}

.ts-dd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: var(--ts-sand);
  border-bottom: 1px solid var(--ts-hair);
}
.ts-dd-head strong {
  font-size: .84rem;
  color: var(--ts-ink);
  letter-spacing: .02em;
}
.ts-dd-head a {
  font-size: .78rem;
  color: var(--ts-red-deep);
  font-weight: 700;
  text-decoration: none;
}
.ts-dd-head a:hover {
  text-decoration: underline;
}

.ts-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ts-dd-col {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ts-dd-col-tint {
  background: #FAF8F5;
  border-left: 1px solid var(--ts-hair);
}
.ts-dd-group-title {
  display: block;
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ts-muted);
  font-weight: 800;
  padding: 0 8px 6px;
}
.ts-dd-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all .2s ease;
  border-left: 3px solid transparent;
}
.ts-dd-item:hover {
  background: #FFF1F1 !important;
  border-left: 3px solid var(--ts-red);
  transform: translateX(3px);
}
.ts-dd-item-info strong {
  display: block;
  font-size: .88rem;
  color: var(--ts-ink);
  font-weight: 700;
  transition: color .2s;
}
.ts-dd-item:hover .ts-dd-item-info strong {
  color: #111827 !important;
}
.ts-dd-item-info p {
  margin: 2px 0 0;
  font-size: .74rem;
  color: var(--ts-muted);
  font-weight: 500;
}
.ts-dd-item-arrow {
  color: var(--ts-muted);
  font-size: .95rem;
  font-weight: 700;
  transition: transform .2s, color .2s;
}
.ts-dd-item:hover .ts-dd-item-arrow {
  color: var(--ts-red);
  transform: translateX(3px);
}

.ts-dd-cta-box {
  margin-top: auto;
  padding: 12px;
  background: #ffffff;
  border: 1px dashed var(--ts-hair);
  border-radius: 6px;
  text-align: center;
}
.ts-dd-cta-box p {
  font-size: .74rem;
  color: var(--ts-muted);
  margin: 0 0 4px;
}
.ts-dd-cta-box a {
  font-size: .78rem;
  color: var(--ts-red-deep);
  font-weight: 700;
  text-decoration: none;
}
.ts-dd-cta-box a:hover {
  text-decoration: underline;
}

/* ── mobile navigation (hidden on desktop) ── */
.ts-mobile {
  display: none !important;
  background: var(--ts-dark);
  color: #ffffff;
  padding: 20px;
  border-radius: var(--ts-radius);
  margin-bottom: 20px;
  box-shadow: var(--ts-shadow-lg);
}
.ts-mobile.is-open {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}
.ts-mob-section {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
}
.ts-mob-title {
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FF858A;
  font-weight: 800;
  padding-bottom: 4px;
}
.ts-mob-section a {
  font-size: .84rem !important;
  padding: 6px 0 !important;
  color: rgba(255, 255, 255, .85) !important;
  text-decoration: none;
}
.ts-mob-section a:hover {
  color: #ffffff !important;
}
.ts-mobile a {
  color: rgba(255, 255, 255, .88);
  font-size: .90rem;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
}
.ts-mobile a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .ts-nav, .ts-head-cta {
    display: none !important;
  }
  .ts-burger {
    display: flex !important;
  }
}

/* ── hero section (600px strictly constrained) ── */
.ts-hero {
  position: relative;
  height: 600px;
  min-height: 600px;
  max-height: 600px;
  background: #0E1017;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 68px 0 0;
}
.ts-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  z-index: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.05) contrast(1.10) saturate(1.06);
}
.ts-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 16, 23, 0.90) 0%, rgba(14, 16, 23, 0.74) 44%, rgba(14, 16, 23, 0.32) 76%, rgba(14, 16, 23, 0.52) 100%),
              linear-gradient(180deg, rgba(14, 16, 23, 0.35) 0%, transparent 45%, rgba(14, 16, 23, 0.90) 100%);
  z-index: 2;
  pointer-events: none;
}
.ts-hero-in {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}
.ts-hero-copy {
  max-width: 820px;
}
.ts-hero-copy .ts-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 29, 35, 0.18);
  border: 1px solid rgba(255, 133, 138, 0.40);
  color: #FF858A !important;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.ts-hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.5rem);
  color: #ffffff;
  margin: 12px 0 16px;
  line-height: 1.12;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}
.ts-hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: #FF858A;
  text-shadow: 0 2px 14px rgba(238, 29, 35, 0.45);
}
.ts-hero-copy .ts-lede {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  color: #FFFFFF;
  line-height: 1.62;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
  max-width: 68ch;
}
.ts-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* ── hero baseline bar ── */
.ts-hero-baseline {
  position: relative;
  z-index: 3;
  background: rgba(14, 16, 23, .88);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
}
.ts-hero-baseline-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 24px;
}
.ts-hero-baseline-nav {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .85);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.ts-hero-baseline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #ffffff;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ts-hero-baseline-link:hover { color: var(--ts-red-bright); }

/* ── subpage hero banner (reserve, rooms, contact) ── */
.ts-reserve-hero {
  position: relative;
  background: linear-gradient(135deg, #0E1017 0%, #161922 65%, #241113 100%);
  color: #ffffff;
  padding: 64px 0 52px;
  border-bottom: 3px solid var(--ts-red);
  overflow: hidden;
}
.ts-reserve-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(238, 29, 35, 0.12), transparent 50%),
                    radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}
.ts-reserve-hero .ts-wrap {
  position: relative;
  z-index: 2;
}
.ts-reserve-hero h1 {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  color: #ffffff;
  margin: 8px 0 14px;
  line-height: 1.15;
}
.ts-reserve-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ts-red-bright, #FF858A);
}
.ts-reserve-hero .ts-lede {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .86);
  max-width: 72ch;
  line-height: 1.6;
  margin-bottom: 0;
}
.ts-hero-perks-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.ts-hero-perk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .02em;
}

/* ── quick booking ribbon ── */
.ts-quickbook-sec {
  position: relative;
  z-index: 10;
  margin-top: -32px;
  margin-bottom: 12px;
}
.ts-quickbook-card {
  background: #ffffff;
  border-radius: var(--ts-radius-lg);
  box-shadow: var(--ts-shadow-lg);
  border: 1px solid var(--ts-border);
  padding: 16px 22px;
}
.ts-qb-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 16px;
  align-items: flex-end;
}
.ts-qb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ts-qb-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ts-muted);
}
.ts-qb-input, .ts-qb-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ts-hair);
  border-radius: var(--ts-radius);
  font-size: .88rem;
  color: var(--ts-ink);
  background: var(--ts-sand);
  outline: none;
  transition: border-color .2s;
}
.ts-qb-input:focus, .ts-qb-select:focus {
  border-color: var(--ts-red);
  background: #ffffff;
}
.ts-qb-submit {
  padding: 11px 24px;
}
@media (max-width: 900px) {
  .ts-quickbook-sec { margin-top: 0; padding-top: 20px; }
  .ts-qb-form { grid-template-columns: 1fr; gap: 12px; }
}

/* ── quick facts / stats strip ── */
.ts-facts {
  background: var(--ts-dark);
  color: #fff;
  padding: 36px 0;
  margin-top: 20px;
}
.ts-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 900px) {
  .ts-facts-grid { grid-template-columns: repeat(4, 1fr); }
}
.ts-fact {
  border-left: 3px solid var(--ts-red);
  padding-left: 18px;
}
.ts-fact b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.ts-fact span {
  display: block;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  margin-top: 6px;
  font-weight: 600;
}

/* ── section shells ── */
.ts-sec {
  padding: 72px 0;
  background: var(--ts-white);
}
.ts-sec.ts-tint { background: var(--ts-bone); }
.ts-sec-head {
  max-width: 840px;
  margin-bottom: 40px;
}
.ts-sec-head-center {
  text-align: center;
  margin: 0 auto 42px;
}
.ts-rooms-sec .ts-sec-head,
.ts-sec-head-wide {
  max-width: 980px;
}
.ts-sec-head h2 {
  font-size: clamp(1.72rem, 2.7vw, 2.4rem);
  margin-top: 8px;
  line-height: 1.22;
}
@media (min-width: 960px) {
  .ts-rooms-sec .ts-sec-head h2 {
    white-space: nowrap;
  }
}
.ts-desc {
  font-size: 1rem;
  color: var(--ts-body);
  margin-top: 12px;
  line-height: 1.6;
}
.ts-tax-pill-badge {
  display: inline-block;
  background: var(--ts-red-subtle);
  border: 1px solid var(--ts-red-border);
  color: var(--ts-red-deep);
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: 14px;
}

/* ── accommodations grid v2 ── */
.ts-rooms-sec { background: var(--ts-bone); }
.ts-rooms-grid-v2 {
  display: grid;
  gap: 24px;
}
@media (min-width: 680px) { .ts-rooms-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .ts-rooms-grid-v2 { grid-template-columns: repeat(3, 1fr); } }

.ts-room-card-v2 {
  background: #ffffff;
  border-radius: var(--ts-radius-lg);
  border: 1px solid var(--ts-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ts-shadow-sm);
  transition: transform .25s var(--ts-ease), box-shadow .25s var(--ts-ease), border-color .25s;
}
.ts-room-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--ts-shadow-lg);
  border-color: var(--ts-red);
}
.ts-room-card-venue {
  border-top: 3px solid var(--ts-red);
}
.ts-rc-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ts-sand);
}
.ts-rc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ts-ease);
}
.ts-room-card-v2:hover .ts-rc-media img { transform: scale(1.05); }
.ts-rc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(22, 25, 34, .85);
  color: #ffffff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.ts-rc-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ts-rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.ts-rc-title {
  font-size: 1.22rem;
  line-height: 1.25;
}
.ts-rc-price {
  text-align: right;
  white-space: nowrap;
}
.ts-rc-price b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  color: var(--ts-red-deep);
  font-weight: 700;
  line-height: 1;
}
.ts-rc-price span {
  font-size: .70rem;
  color: var(--ts-muted);
  text-transform: uppercase;
}

.ts-rc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.ts-rc-spec-tag {
  background: var(--ts-sand);
  color: var(--ts-ink);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.ts-rc-features {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.ts-rc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--ts-body);
}
.ts-rc-features svg {
  color: var(--ts-red);
  flex-shrink: 0;
}

.ts-rc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--ts-hair);
}
.ts-rc-actions .ts-btn {
  padding: 8px 10px;
  font-size: .78rem;
}
.ts-rooms-footer-cta {
  text-align: center;
  margin-top: 36px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--ts-radius);
  border: 1px dashed var(--ts-border);
  font-size: .92rem;
}

/* ── experience grid v2 ── */
.ts-exp-grid-v2 {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .ts-exp-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .ts-exp-grid-v2 { grid-template-columns: repeat(4, 1fr); } }

.ts-exp-card-v2 {
  background: #ffffff;
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 28px 22px;
  box-shadow: var(--ts-shadow-sm);
  transition: transform .25s var(--ts-ease), box-shadow .25s, border-color .25s;
}
.ts-exp-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: var(--ts-shadow-md);
  border-color: var(--ts-red);
}
.ts-exp-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--ts-radius);
  background: var(--ts-red-subtle);
  color: var(--ts-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all .2s;
}
.ts-exp-card-v2:hover .ts-exp-icon-box {
  background: var(--ts-red);
  color: #ffffff;
}
.ts-exp-card-v2 h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.ts-exp-card-v2 p {
  font-size: .88rem;
  color: var(--ts-body);
  line-height: 1.55;
}

/* ── about section v2 ── */
.ts-about-sec { background: var(--ts-bone); }
.ts-about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .ts-about-grid { grid-template-columns: 1fr 1.1fr; }
}
.ts-about-visuals {
  position: relative;
}
.ts-av-main {
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  box-shadow: var(--ts-shadow-lg);
  aspect-ratio: 4/3;
  border: 1px solid var(--ts-border);
}
.ts-av-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ts-av-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--ts-dark);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: var(--ts-radius);
  border-left: 4px solid var(--ts-red);
  box-shadow: var(--ts-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ts-av-badge b {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  color: var(--ts-red-bright);
  line-height: 1;
}
.ts-av-badge span {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
  font-weight: 600;
}
.ts-about-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ts-ink);
  margin-top: 12px;
  line-height: 1.5;
}
.ts-about-body {
  font-size: .95rem;
  color: var(--ts-body);
  margin-top: 10px;
  line-height: 1.6;
}
.ts-about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--ts-hair);
  border-bottom: 1px solid var(--ts-hair);
}
@media (max-width: 600px) {
  .ts-about-highlights { grid-template-columns: 1fr; }
}
.ts-ah-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ts-ah-icon {
  font-size: 1.25rem;
  line-height: 1;
  background: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ts-shadow-sm);
  flex-shrink: 0;
}
.ts-ah-item strong {
  display: block;
  font-size: .84rem;
  color: var(--ts-ink);
}
.ts-ah-item p {
  font-size: .76rem;
  color: var(--ts-muted);
  line-height: 1.4;
  margin-top: 2px;
}
.ts-about-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ── amenities 8-card grid v2 ── */
.ts-amenities-grid-v2 {
  display: grid;
  gap: 16px;
}
@media (min-width: 600px) { .ts-amenities-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ts-amenities-grid-v2 { grid-template-columns: repeat(4, 1fr); } }

.ts-am-card {
  background: var(--ts-bone);
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background .2s, border-color .2s;
}
.ts-am-card:hover {
  background: #ffffff;
  border-color: var(--ts-red);
  box-shadow: var(--ts-shadow-sm);
}
.ts-am-icon {
  font-size: 1.4rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: var(--ts-radius);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--ts-hair);
}
.ts-am-text h4 {
  font-size: .92rem;
  margin-bottom: 4px;
}
.ts-am-text p {
  font-size: .78rem;
  color: var(--ts-muted);
  line-height: 1.4;
}

/* ── testimonials v2 ── */
.ts-testi-sec { background: var(--ts-bone); }
.ts-testi-grid-v2 {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) {
  .ts-testi-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
.ts-testi-card-v2 {
  background: #ffffff;
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--ts-shadow-sm);
  display: flex;
  flex-direction: column;
}
.ts-testi-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.ts-testi-quote {
  font-size: .95rem;
  color: var(--ts-body);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin-bottom: 18px;
}
.ts-testi-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ts-hair);
  padding-top: 12px;
}
.ts-testi-author strong {
  font-size: .88rem;
  color: var(--ts-ink);
}
.ts-testi-author span {
  font-size: .76rem;
  color: var(--ts-red-deep);
  font-weight: 600;
}

/* ── location grid v2 ── */
.ts-loc-grid-v2 {
  display: grid;
  gap: 36px;
}
@media (min-width: 900px) {
  .ts-loc-grid-v2 { grid-template-columns: 1fr 1.15fr; align-items: stretch; }
}
.ts-loc-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ts-loc-desc {
  font-size: .96rem;
  color: var(--ts-body);
  margin: 12px 0 20px;
}
.ts-loc-details {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.ts-ld-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--ts-bone);
  padding: 12px 14px;
  border-radius: var(--ts-radius);
  border: 1px solid var(--ts-hair);
}
.ts-ld-item svg {
  color: var(--ts-red);
  margin-top: 2px;
  flex-shrink: 0;
}
.ts-ld-item strong {
  display: block;
  font-size: .82rem;
  color: var(--ts-ink);
}
.ts-ld-item p {
  font-size: .80rem;
  color: var(--ts-muted);
  margin-top: 2px;
}
.ts-ld-item a {
  color: var(--ts-red-deep);
  font-weight: 600;
}
.ts-ld-item a:hover { text-decoration: underline; }
.ts-loc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ts-loc-map-box {
  min-height: 380px;
  border-radius: var(--ts-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ts-border);
  box-shadow: var(--ts-shadow-md);
}
.ts-map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ── contact channels grid ── */
.ts-channels-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 600px) { .ts-channels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .ts-channels-grid { grid-template-columns: repeat(4, 1fr); } }

.ts-channel-card {
  background: #ffffff;
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ts-shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ts-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ts-shadow-md);
  border-color: var(--ts-red);
}
.ts-channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ts-ico-red { background: var(--ts-red-subtle); color: var(--ts-red); }
.ts-ico-green { background: #ECFDF5; color: #059669; }
.ts-ico-slate { background: #F1F5F9; color: var(--ts-dark); }
.ts-ico-blue { background: #EFF6FF; color: #2563EB; }

.ts-channel-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.ts-channel-body p {
  font-size: .82rem;
  color: var(--ts-muted);
  line-height: 1.45;
}
.ts-channel-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.ts-channel-links a {
  font-size: .84rem;
  font-weight: 700;
  color: var(--ts-red-deep);
}
.ts-channel-links a:hover { text-decoration: underline; }
.ts-link-wa {
  color: #059669 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ts-channel-note {
  display: block;
  font-size: .74rem;
  color: var(--ts-muted);
  margin-top: 6px;
  font-style: italic;
}

/* ── contact split layout ── */
.ts-contact-split {
  display: grid;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 960px) {
  .ts-contact-split { grid-template-columns: 1.25fr 1fr; }
}

.ts-cform-card, .ts-cguide-card {
  background: #ffffff;
  border-radius: var(--ts-radius-lg);
  border: 1px solid var(--ts-border);
  padding: 32px 28px;
  box-shadow: var(--ts-shadow-sm);
}
.ts-cform-header h2, .ts-cguide-header h3 {
  font-size: 1.5rem;
  margin-top: 4px;
}
.ts-landmarks-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.ts-landmark-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--ts-sand);
  padding: 14px 16px;
  border-radius: var(--ts-radius);
  border: 1px solid var(--ts-hair);
}
.ts-lm-ico {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.ts-landmark-item strong {
  display: block;
  font-size: .88rem;
  color: var(--ts-ink);
}
.ts-landmark-item p {
  font-size: .80rem;
  color: var(--ts-muted);
  line-height: 1.4;
  margin-top: 3px;
}

/* ── contact FAQ grid ── */
.ts-faq-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 680px) { .ts-faq-grid { grid-template-columns: repeat(2, 1fr); } }
.ts-faq-card {
  background: #ffffff;
  border: 1px solid var(--ts-border);
  border-radius: var(--ts-radius);
  padding: 24px 22px;
  box-shadow: var(--ts-shadow-sm);
}
.ts-faq-card h4 {
  font-size: 1.02rem;
  color: var(--ts-ink);
  margin-bottom: 8px;
}
.ts-faq-card p {
  font-size: .86rem;
  color: var(--ts-body);
  line-height: 1.55;
}

/* ── compact spread-out closing VIP ribbon ── */
.ts-closing {
  background: var(--ts-dark);
  color: #ffffff;
  padding: 34px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ts-closing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ts-closing-content {
  max-width: 760px;
  text-align: left;
}
.ts-closing-content .ts-eyebrow {
  margin-bottom: 4px;
}
.ts-closing-content h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  color: #ffffff;
  margin: 2px 0 6px;
  line-height: 1.25;
}
.ts-closing-desc {
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0;
}
.ts-closing-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}
.ts-btn-outline-inv {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ts-btn-outline-inv:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 900px) {
  .ts-closing { padding: 28px 0; }
  .ts-closing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .ts-closing-actions {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* ── Back to Top Floating Button ── */
.ts-back-to-top {
  position: fixed;
  right: 28px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #161922;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease, visibility .25s;
  outline: none;
  padding: 0;
}
.ts-back-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform .2s ease;
}
.ts-back-to-top:hover {
  background: var(--ts-red);
  border-color: var(--ts-red);
  box-shadow: 0 6px 18px rgba(238, 29, 35, 0.45);
  color: #ffffff;
}
.ts-back-to-top:hover svg {
  transform: translateY(-2px);
}
.ts-back-to-top.ts-btt-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .ts-back-to-top {
    right: 20px;
    bottom: 84px;
    width: 40px;
    height: 40px;
  }
}

/* ── footer ── */
.ts-foot {
  background: #0E1017;
  color: rgba(255, 255, 255, .82);
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.ts-foot-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
@media (min-width: 600px) { .ts-foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ts-foot-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }

.ts-foot-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 12px;
  line-height: 1.55;
  max-width: 320px;
}
.ts-foot-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  margin-bottom: 18px;
}
.ts-foot-col a, .ts-foot-col p {
  display: block;
  font-size: .86rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 8px;
  line-height: 1.5;
  transition: color .2s;
}
.ts-foot-col a:hover { color: #ffffff; text-decoration: underline; }
.ts-foot-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
}
.ts-foot-bar a {
  color: var(--ts-red-bright);
  font-weight: 700;
  text-decoration: none;
}
.ts-foot-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.ts-foot-center {
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}
@media (max-width: 768px) {
  .ts-foot-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
