/* ============================================================
   The Design District — Hamilton
   Design system: "exaggerated minimalism" (ui-ux-pro-max) —
   oversized grotesque headlines, monochrome ink/paper surfaces,
   one brass accent, and an italic serif for editorial emphasis.
   Brass (#C9A96A) is a SURFACE colour and always carries ink on
   top; --accent-text is the darker brass used when the accent has
   to be read AS text on paper (5.2:1).
   Inter Tight (headings) + Inter (body) + Instrument Serif (accent).
   ============================================================ */

:root {
  --bg: #F4F2EE;            /* paper */
  --bg-2: #EAE7E1;          /* stone — alternating sections */
  --bg-3: #FFFFFF;          /* inputs / card tops */
  --ink: #0E0E10;           /* near-black (17.6:1 on paper) */
  --ink-soft: #55534F;      /* muted text (6.9:1 on paper, 6.2:1 on stone) */
  --line: #D9D5CD;          /* warm-grey rules */
  --accent: #C9A96A;        /* brass — surfaces only */
  --accent-hi: #D8BB7E;     /* lighter brass — hover surfaces, text on dark */
  --accent-ink: #0E0E10;    /* ink on brass (9.6:1) */
  --accent-text: #7A5F2E;   /* brass AS text on paper (5.2:1) */
  --charcoal: #0E0E10;      /* dark section bg */
  --charcoal-2: #17171A;    /* dark cards */
  --charcoal-line: #2C2C31; /* dark rules */
  --cream-text: #F4F2EE;    /* paper text on ink (17.6:1) */
  --grad-brass: linear-gradient(135deg, #C9A96A 0%, #DCC28B 100%);
  --grad-hero: linear-gradient(90deg, rgba(14, 14, 16, 0.86) 0%, rgba(14, 14, 16, 0.62) 42%, rgba(14, 14, 16, 0.18) 100%),
               linear-gradient(180deg, rgba(14, 14, 16, 0.55) 0%, rgba(14, 14, 16, 0) 30%, rgba(14, 14, 16, 0.35) 100%);

  --font-head: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 112px;

  --radius: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(14, 14, 16, 0.08);
  --shadow-md: 0 10px 28px rgba(14, 14, 16, 0.12);
  --shadow-lg: 0 24px 60px rgba(14, 14, 16, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ticker-h: 40px;
  --header-h: 76px;
  --wrap: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, ul, figure, dl, dd { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); }
ul { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
[hidden] { display: none !important; }
sup { font-size: 0.6em; }
b { font-weight: 600; }
:focus-visible { outline: 3px solid var(--accent-text); outline-offset: 3px; border-radius: 4px; }
.serif { font-family: var(--font-serif); }
.center { text-align: center; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Icons ---------- */
.ic {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -4px;
}
.ic-lg { width: 30px; height: 30px; stroke-width: 1.4; color: var(--accent-text); }

/* ---------- Wordmark ---------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.wordmark-text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.wordmark-text b { font-weight: 800; }
.wordmark-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.wordmark-footer .wordmark-text { font-size: 30px; }
.wordmark-footer .wordmark-badge { width: 30px; height: 30px; font-size: 12px; }
.wordmark-modal .wordmark-text { font-size: 24px; }

/* ---------- Type ---------- */
.kicker {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before { content: ""; width: 28px; height: 1.5px; background: currentColor; flex: 0 0 auto; }
.kicker.light { color: var(--accent-hi); }
.heading {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-3);
  max-width: 20ch;
}
.heading-xl { font-size: clamp(2.4rem, 5.6vw, 4.6rem); max-width: 14ch; }
.display-sm {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-2);
}
.heading.light { color: var(--cream-text); }
.heading em, .display-sm em, .hero-tag em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-copy { max-width: 62ch; color: var(--ink-soft); margin-bottom: var(--space-4); font-size: 17px; }
.section-copy + .section-copy { margin-top: calc(var(--space-3) - var(--space-4)); }
.section-copy.light { color: rgba(244, 242, 238, 0.74); }
.fineline { font-size: 12.5px; color: var(--ink-soft); margin: var(--space-3) 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: progress; transform: none; }
.btn-solid { background: var(--ink); color: var(--cream-text); }
.btn-solid:hover { background: #26262A; }
.btn-ink { background: var(--ink); color: var(--cream-text); }
.btn-ink:hover { background: #26262A; box-shadow: var(--shadow-md); }
.btn-brass { background: var(--accent); color: var(--accent-ink); }
.btn-brass:hover { background: var(--accent-hi); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline-light {
  background: rgba(14, 14, 16, 0.25);
  color: var(--cream-text);
  border-color: rgba(244, 242, 238, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light:hover { border-color: var(--cream-text); background: rgba(14, 14, 16, 0.4); }
.btn-cream { background: var(--bg); color: var(--ink); border-color: var(--line); }
.btn-lg { min-height: 54px; padding: 13px 32px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ---------- Ticker ---------- */
.ticker {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-bottom: 1px solid rgba(14, 14, 16, 0.12);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ticker-track span { padding-right: 56px; }
.ticker-track .tick-dot { opacity: 0.6; }
.ticker-track u { text-decoration-color: var(--accent-ink); text-underline-offset: 3px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  opacity: 0.75;
}
.ticker-close:hover { opacity: 1; }
body.no-ticker .ticker { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  height: var(--header-h);
  padding: 0 clamp(16px, 4vw, 48px);
  color: var(--cream-text);
  transition: background 0.35s var(--ease), box-shadow 0.35s, top 0.3s, color 0.35s;
}
body.no-ticker .site-header { top: 0; }
.site-header .wordmark { margin-right: auto; }
.site-header.scrolled {
  background: rgba(244, 242, 238, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-nav { display: flex; gap: clamp(8px, 1.4vw, 22px); }
.header-nav a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: inherit;
  padding: 8px 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.header-nav a:hover, .header-nav a[aria-current="true"] { border-color: currentColor; opacity: 1; }
.header-cta { display: flex; gap: 10px; }
.site-header:not(.scrolled) .btn-ghost { color: var(--cream-text); border-color: rgba(244, 242, 238, 0.4); }
.site-header:not(.scrolled) .btn-ghost:hover { border-color: var(--cream-text); }
.site-header:not(.scrolled) .btn-solid { background: var(--cream-text); color: var(--ink); }
.site-header:not(.scrolled) .btn-solid:hover { background: #fff; }

.header-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: inherit;
}
.header-burger span { width: 24px; height: 2px; background: currentColor; transition: transform 0.25s var(--ease); }
.header-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.header-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: calc(var(--ticker-h) + var(--header-h)) 0 auto 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: var(--space-3) clamp(16px, 5vw, 40px) var(--space-4);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
body.no-ticker .mobile-menu { inset: var(--header-h) 0 auto 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--ticker-h) + var(--header-h) + 40px) clamp(16px, 4vw, 48px) 64px;
  color: var(--cream-text);
  background: var(--charcoal);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; animation: heroZoom 14s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background: var(--grad-hero); }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  animation: heroIn 1s var(--ease) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.85);
}
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(201, 169, 106, 0.25); }
.hero-title {
  position: relative;
  font-size: clamp(4rem, 12.5vw, 9.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: none;
  margin-top: -6px;
}
.hero-badge {
  position: absolute;
  top: 0.02em;
  margin-left: 0.14em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.36em;
  height: 0.36em;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 0.16em;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
  line-height: 1;
}
.hero-tag { font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.2; color: rgba(244, 242, 238, 0.92); }
.hero-tag em { color: var(--accent-hi); }
.hero-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 242, 238, 0.22);
  border-bottom: 1px solid rgba(244, 242, 238, 0.22);
  width: min(560px, 100%);
}
.hero-specs div { display: flex; gap: 12px; align-items: baseline; }
.hero-specs dt {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.6);
  min-width: 96px;
}
.hero-specs dd { font-family: var(--font-head); font-size: 15px; font-weight: 600; }
.hero-sub { max-width: 58ch; font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(244, 242, 238, 0.82); }
.hero-count { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(244, 242, 238, 0.85); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  background: rgba(14, 14, 16, 0.5);
  border: 1px solid rgba(244, 242, 238, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-price-kicker {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.75);
}
.hero-price-val { font-style: italic; font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--accent-hi); line-height: 1; }
.hero-price-tags { width: 100%; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; color: rgba(244, 242, 238, 0.8); }
.hero-price-tags .ic { width: 14px; height: 14px; color: var(--accent-hi); }

.hero-index {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 64px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: heroIn 1.2s 0.3s var(--ease) both;
}
.hero-index a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(244, 242, 238, 0.8);
  padding: 4px 0;
  transition: color 0.2s, transform 0.25s var(--ease);
}
.hero-index a span { font-size: 11px; letter-spacing: 0.12em; color: var(--accent-hi); }
.hero-index a:hover { color: var(--cream-text); transform: translateX(-4px); }

.proof-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3FA463;
  box-shadow: 0 0 0 0 rgba(63, 164, 99, 0.5);
  animation: pulse 2.2s infinite;
  flex: 0 0 auto;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 164, 99, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(63, 164, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 164, 99, 0); }
}

/* ---------- Booking band ---------- */
.book-band { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.book-band-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 22px clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
}
.book-band-copy { flex: 1 1 380px; }
.book-band-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.book-band-title .ic { color: var(--accent-text); }
.book-band-sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; max-width: 70ch; }

/* ---------- Sections ---------- */
.section { padding: var(--space-6) clamp(16px, 4vw, 48px); }
.section > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section > .kicker { margin-left: auto; margin-right: auto; }

/* rhythm: paper / stone / ink */
.facts { background: var(--bg); }
.building { background: var(--bg); padding-top: 0; }
.design { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.film { background: var(--charcoal); }
.awards { background: var(--bg); }
.amenities { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.suites { background: var(--bg); }
.location { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.invest { background: var(--charcoal); color: var(--cream-text); }
.builders { background: var(--bg); }
.vip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.news { background: var(--bg); }
.faq { background: var(--bg-2); border-top: 1px solid var(--line); }

/* reveal-on-scroll */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ---------- Split intro (kicker+heading | copy) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-3) var(--space-5);
  align-items: end;
  margin-bottom: var(--space-4);
}
.split .heading { margin-bottom: 0; }
.split-text .section-copy { margin-bottom: 0; }
.split-text .section-copy + .section-copy { margin-top: var(--space-2); }

/* ---------- Quick facts ---------- */
.glance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.glance-tile {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.glance-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.glance-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.glance-value { font-family: var(--font-head); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }

/* ---------- Feature figures ---------- */
.feature-figure { margin-top: var(--space-4); }
.feature-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.feature-figure figcaption { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; }
.invest .feature-figure figcaption { color: rgba(244, 242, 238, 0.62); }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.pillars li { display: flex; flex-direction: column; gap: 8px; }
.pillar-num { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent-text); }
.pillars b { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.pillars p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Design ---------- */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-5);
  align-items: start;
}
.manifesto { display: flex; flex-direction: column; margin: var(--space-2) 0 var(--space-4); border-top: 1px solid var(--line); }
.manifesto-item { padding: var(--space-3) 0; border-bottom: 1px solid var(--line); }
.manifesto-item h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 10px; }
.manifesto-item p { color: var(--ink-soft); max-width: 52ch; }
.design-tower { position: sticky; top: calc(var(--ticker-h) + var(--header-h) + 24px); }
.design-tower img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 1080 / 1398; object-fit: cover; }
.design-tower figcaption { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; }
.design .feature-figure { margin-top: var(--space-5); }
.design .feature-figure img { aspect-ratio: 1080 / 587; }

/* ---------- Film ---------- */
.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.film-frame img, .film-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.film-frame img { opacity: 0.86; }
.film-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 14px rgba(201, 169, 106, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
}
.film-play:hover { transform: scale(1.06); box-shadow: 0 0 0 20px rgba(201, 169, 106, 0.28); background: var(--accent-hi); }
.film-play svg { margin-left: 4px; }
.film-caption { color: rgba(244, 242, 238, 0.62); font-size: 14px; margin-top: var(--space-2); }

/* ---------- Awards ---------- */
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-2); }
.award {
  background: var(--charcoal);
  color: var(--cream-text);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.award img { height: 180px; width: auto; object-fit: contain; margin-bottom: 8px; }
.award b { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; }
.award p { font-size: 14px; color: rgba(244, 242, 238, 0.66); max-width: 34ch; }

/* ---------- Cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; }
.card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Suites ---------- */
.suites-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-5); align-items: start; }
.suite-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-head);
  margin-top: calc(var(--space-2) - var(--space-4));
}
.suite-table th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-text);
  padding: 0 0 12px;
  border-bottom: 1.5px solid var(--ink);
}
.suite-table td { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.suite-table td:last-child, .suite-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.suite-table tbody tr:hover td { color: var(--accent-text); }

.downloads-vault {
  background: var(--charcoal);
  color: var(--cream-text);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--ticker-h) + var(--header-h) + 24px);
}
.vault-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: var(--space-2); }
.vault-title .ic { color: var(--accent-hi); }
.vault-list { display: flex; flex-direction: column; border-top: 1px solid var(--charcoal-line); margin-bottom: var(--space-3); }
.vault-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--charcoal-line);
  font-size: 14.5px;
}
.vault-list li > span:first-child { display: flex; align-items: center; gap: 10px; }
.vault-list .ic { width: 18px; height: 18px; color: rgba(244, 242, 238, 0.6); }
.vault-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-hi);
}
.vault-state .ic { width: 14px; height: 14px; color: var(--accent-hi); }
.vault-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(244, 242, 238, 0.6); margin-top: 12px; }
.vault-note .ic { width: 15px; height: 15px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-brass); color: var(--accent-ink); }
.cta-band-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
}
.cta-band-kicker { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-bottom: 8px; }
.cta-band-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 400; font-style: italic; line-height: 1.1; max-width: 24ch; }
.cta-band-sub { margin-top: 8px; opacity: 0.85; font-size: 15.5px; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-5); align-items: start; margin-bottom: var(--space-4); }
.times-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink); margin-bottom: var(--space-4); }
.times-list li { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.times-list li b { font-family: var(--font-head); font-weight: 700; white-space: nowrap; text-align: right; }
.scores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.scores > div {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.score-num { font-family: var(--font-head); font-size: 34px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-top: 6px; }
.score-label { font-size: 12.5px; color: var(--ink-soft); }
.location-side { display: flex; flex-direction: column; gap: var(--space-3); }
.location-figure img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; }
.location-figure figcaption { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }
.synergy { border-top: 1px solid var(--line); padding-top: var(--space-3); }
.synergy-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 12px; }
.synergy-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.synergy-chips li {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--bg-3);
}

/* ---------- Investment ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--accent-hi); font-variant-numeric: tabular-nums; }
.stat-unit { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-top: 8px; }
.stat-label { font-size: 13px; color: rgba(244, 242, 238, 0.6); }
.invest-sub { font-family: var(--font-head); font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; letter-spacing: -0.025em; margin: var(--space-5) 0 var(--space-3); }
.invest-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: var(--space-4); }
.invest-card {
  border-top: 1.5px solid var(--accent);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.invest-amt { font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1; color: var(--accent-hi); }
.invest-card b { font-family: var(--font-head); font-size: 17px; font-weight: 700; letter-spacing: -0.015em; }
.invest-card p:last-child { font-size: 14px; color: rgba(244, 242, 238, 0.66); }

/* ---------- Builder ---------- */
.builder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-4);
}
.builder-stats > div { display: flex; flex-direction: column; gap: 4px; }
.builder-stat-num { font-family: var(--font-head); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.builder-stat-num sup { color: var(--accent-text); font-size: 0.45em; }
.builder-stat-label { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Checklist ---------- */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-4); }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; }
.check-list .ic { color: var(--accent-text); margin-top: 2px; width: 18px; height: 18px; }

/* ---------- VIP ---------- */
.vip-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: start; }
.vip-price {
  background: var(--charcoal);
  color: var(--cream-text);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--ticker-h) + var(--header-h) + 24px);
}
.vip-card-kicker { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244, 242, 238, 0.7); }
.vip-card-price { font-style: italic; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--accent-hi); margin: 6px 0 8px; }
.vip-price-sub { font-family: var(--font-head); font-size: 13.5px; font-weight: 600; color: rgba(244, 242, 238, 0.75); padding-bottom: var(--space-3); border-bottom: 1px solid var(--charcoal-line); margin-bottom: var(--space-3); }
.vip-mini { display: flex; flex-direction: column; gap: 18px; }
.vip-mini > div { display: grid; grid-template-columns: 24px 1fr; gap: 2px 12px; }
.vip-mini .ic { color: var(--accent-hi); grid-row: span 2; margin-top: 2px; }
.vip-mini b { font-family: var(--font-head); font-size: 15px; }
.vip-mini span { font-size: 13.5px; color: rgba(244, 242, 238, 0.66); }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-tag { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-text); }
.news-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.22; }
.news-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 6px 0;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  border-radius: 0;
  transition: gap 0.2s;
}
.news-link:hover { gap: 12px; }
.news-link .ic { width: 16px; height: 16px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink); margin-bottom: var(--space-4); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-text);
  transition: transform 0.25s var(--ease);
  flex: 0 0 auto;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 18px; color: var(--ink-soft); max-width: 70ch; }

/* ---------- Register ---------- */
.register {
  background: var(--charcoal);
  color: var(--cream-text);
  padding: var(--space-6) clamp(16px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.register::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/texture.webp") center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.register-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.register .kicker { color: var(--accent-hi); justify-content: center; }
.register-sub { max-width: 56ch; margin: 0 auto var(--space-4); color: rgba(244, 242, 238, 0.76); }
.reg-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: var(--space-4); }
.reg-benefit {
  background: rgba(23, 23, 26, 0.85);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.reg-benefit .ic-lg { color: var(--accent-hi); }
.reg-benefit b { font-family: var(--font-head); margin-top: 6px; }
.reg-benefit span { font-size: 13px; color: rgba(244, 242, 238, 0.65); }

.reg-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-3);
  text-align: left;
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--ink); }
.field label sup { color: var(--accent-text); }
.field input, .field select {
  font: inherit;
  color: var(--ink);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent-text);
  box-shadow: 0 0 0 3px rgba(122, 95, 46, 0.2);
}
.field.invalid input, .field.invalid select { border-color: #B03A2E; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-actions { grid-column: 1 / -1; text-align: center; margin-top: var(--space-1); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.form-or { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.form-msg { min-height: 22px; font-size: 14.5px; }
.form-msg.error { color: #B03A2E; font-weight: 600; }
.casl { grid-column: 1 / -1; font-size: 11px; line-height: 1.55; color: var(--ink-soft); text-align: center; }

.reg-success {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.reg-success h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.reg-success p { max-width: 44ch; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--cream-text); padding: var(--space-6) clamp(16px, 4vw, 48px) var(--space-4); border-top: 1px solid var(--charcoal-line); }
.footer-grid { max-width: var(--wrap); margin: 0 auto var(--space-4); display: grid; grid-template-columns: 1.4fr 0.6fr; gap: var(--space-5); }
.footer-tag { color: rgba(244, 242, 238, 0.8); font-style: italic; font-size: 19px; margin: 14px 0 10px; }
.footer-blurb { font-size: 14px; color: rgba(244, 242, 238, 0.6); max-width: 52ch; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links-title { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-hi); margin-bottom: 6px; }
.footer-links a { font-size: 14.5px; color: rgba(244, 242, 238, 0.75); text-decoration: none; }
.footer-links a:hover { color: var(--cream-text); }
.footer-legal { max-width: var(--wrap); margin: 0 auto; border-top: 1px solid var(--charcoal-line); padding-top: var(--space-3); display: flex; flex-direction: column; gap: 10px; }
.footer-legal p { font-size: 11.5px; line-height: 1.6; color: rgba(244, 242, 238, 0.45); }
.footer-copy { padding-top: 8px; }
.footer-legal a { color: rgba(244, 242, 238, 0.7); }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  z-index: 90;
  inset: auto 0 0 0;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(244, 242, 238, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.floating-cta .btn { flex: 1; }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 16, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.25s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92dvh, 860px);
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  animation: modalIn 0.35s var(--ease) both;
  overscroll-behavior: contain;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 242, 238, 0.12);
  color: var(--cream-text);
  transition: background 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(244, 242, 238, 0.24); transform: rotate(90deg); }
.modal-card-text .modal-close { background: rgba(14, 14, 16, 0.08); color: var(--ink); }
.modal-head {
  background: var(--charcoal);
  color: var(--cream-text);
  padding: 30px 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.modal-head p { color: var(--accent-hi); font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.modal-body { padding: 26px 28px 30px; }
.modal-body h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 4px; }
.modal-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: var(--space-3); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); margin-bottom: var(--space-2); }
.modal-grid .wide { grid-column: 1 / -1; }
.modal .casl { margin-top: 12px; display: block; }
.modal .reg-success { box-shadow: none; padding: 22px 0 6px; text-align: center; }
.modal-card-text { max-width: 640px; }
.legal-body h4 { margin: var(--space-2) 0 6px; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text); }
.legal-body p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Booking picker ---------- */
.picker-label { font-family: var(--font-head); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.picker-label sup { color: var(--accent-text); }
.date-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 74px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: var(--space-2);
  scrollbar-width: thin;
}
.date-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.date-chip:hover { transform: translateY(-2px); border-color: var(--accent-text); }
.date-chip .dw { font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.date-chip .dn { font-family: var(--font-head); font-size: 21px; font-weight: 700; line-height: 1.1; }
.date-chip .dm { font-size: 11px; color: var(--ink-soft); }
.date-chip[aria-checked="true"] { background: var(--accent); border-color: var(--accent); }
.date-chip[aria-checked="true"] .dw, .date-chip[aria-checked="true"] .dn, .date-chip[aria-checked="true"] .dm { color: var(--accent-ink); }
.time-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-3); }
.time-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg-3);
  padding: 9px 16px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  min-height: 40px;
  transition: border-color 0.2s, background 0.2s;
}
.time-chip:hover { border-color: var(--accent-text); }
.time-chip[aria-checked="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .header-nav { display: none; }
}
@media (max-width: 1080px) {
  .glance-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid, .news-grid, .stats-grid, .invest-cards { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .split, .design-grid, .suites-grid, .location-grid, .vip-grid { grid-template-columns: 1fr; }
  .split { align-items: start; }
  .design-tower, .downloads-vault, .vip-price { position: static; }
  .design-tower { max-width: 520px; }
  .hero-index { display: none; }
  .awards-grid { grid-template-columns: 1fr; }
  .award { flex-direction: row; text-align: left; align-items: center; gap: 20px; }
  .award img { height: 120px; margin: 0; }
}
@media (max-width: 860px) {
  .header-cta { display: none; }
  .header-burger { display: flex; }
  .floating-cta { display: flex; }
  .site-footer { padding-bottom: 130px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .pillars { grid-template-columns: 1fr; gap: var(--space-3); }
  .builder-stats { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .hero-media img { object-position: 55% 30%; }
}
@media (max-width: 640px) {
  :root { --space-6: 72px; --header-h: 64px; }
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .news-grid, .stats-grid, .invest-cards { grid-template-columns: 1fr; }
  .reg-form, .reg-benefits, .modal-grid { grid-template-columns: 1fr; }
  .modal { padding: 0; align-items: flex-end; }
  .modal-card { width: 100%; max-height: 94dvh; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .hero { padding-bottom: 40px; align-items: flex-end; }
  .hero-title { font-size: clamp(3.6rem, 19vw, 5.6rem); }
  .hero-specs { grid-template-columns: 1fr; gap: 8px; }
  .hero-specs dt { min-width: 84px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { width: 100%; }
  .award { flex-direction: column; text-align: center; }
  .scores { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .score-num { font-size: 26px; }
  .times-list li { font-size: 14px; }
  .times-list li b { font-size: 13px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .rv { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .hero-media img { animation: none; }
}
