/* Mirage District — Fixed layout (desktop + mobile) */

:root {
  --bg: #080808;
  --bg-alt: #101010;
  --surface: #161616;
  --gold: #c9a227;
  --gold-dim: rgba(201, 162, 39, 0.35);
  --text: #f2eee6;
  --muted: #b5aea2;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Outfit', system-ui, sans-serif;
  --wrap: min(1120px, 90vw);
  --pad: clamp(1rem, 4vw, 2rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 64px;
  --concept-bar-h: 56px;
  --site-top-h: calc(var(--header-h) + var(--concept-bar-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; border: none; background: none; color: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Type */
.label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #faf8f4;
}

.h2 em { font-style: italic; color: var(--gold); }

.h2--light { color: #faf8f4; }

.lead {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  color: #d8d2c8;
  max-width: 52ch;
  line-height: 1.75;
}

.lead--light { color: rgba(235, 230, 220, 0.8); }

.lead--wide { max-width: 62ch; }

.viz-note {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.5rem;
}

.viz-note--center { text-align: center; margin-top: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.btn--gold {
  background: var(--gold);
  color: #0a0a0a;
}

.btn--gold:hover { transform: translateY(-1px); filter: brightness(1.08); }

.btn--line {
  border: 1px solid var(--gold-dim);
  color: var(--text);
}

.btn--line:hover { border-color: var(--gold); color: var(--gold); }

/* Progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.05);
}

.progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.3s;
}

.page-home .header {
  display: flex;
  flex-direction: column;
}

.header-concept {
  display: none;
  background: rgba(6, 6, 8, 0.98);
  border-bottom: 2px solid rgba(74, 222, 128, 0.5);
}

.page-home .header-concept {
  display: block;
}

.header-concept__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0.45rem var(--pad);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-concept__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 640px) {
  .header-concept__label { display: block; }
}

.header-concept__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.header-concept__tab {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.header-concept__tab:hover {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.1);
  transform: translateY(-1px);
}

.header-concept__tab strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #faf8f4;
  line-height: 1.25;
}

.header-concept__tab span {
  display: none;
  font-size: 0.58rem;
  color: var(--muted);
}

@media (min-width: 480px) {
  .header-concept__tab span { display: block; }
}

.header-concept__tab--hotel {
  border-color: rgba(74, 222, 128, 0.55);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.18), rgba(201, 162, 39, 0.08));
}

.header-concept__tab--hotel strong { color: #86efac; }

.header-concept__tab--hotel:hover {
  border-color: #4ade80;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.28), rgba(201, 162, 39, 0.12));
}

.header.is-scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
}

.logo img { width: 32px; height: 32px; border-radius: 50%; }

.logo em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.nav a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active { color: var(--gold); }

.nav__cta {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold) !important;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  flex-shrink: 0;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5.5rem var(--pad) 2rem;
  gap: 1rem;
  overflow-y: auto;
}

.drawer.is-open { display: flex; }

.drawer a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
}

.drawer__close {
  position: absolute;
  top: 1rem;
  right: var(--pad);
  font-size: 2rem;
  color: var(--muted);
}

.drawer-switch {
  width: min(92vw, 22rem);
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 222, 128, 0.35);
  flex-shrink: 0;
}

.drawer-switch__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 0.65rem;
  text-align: center;
}

.drawer-switch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.drawer-switch__grid a {
  display: block;
  padding: 0.85rem 0.65rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  color: var(--gold) !important;
  line-height: 1.25;
}

.drawer-switch__grid a small {
  display: block;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.drawer-switch__grid a.drawer-switch__hotel {
  border-color: rgba(74, 222, 128, 0.6);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(201, 162, 39, 0.08));
  color: #86efac !important;
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.15);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1814 url('./assets/images/mirage/mirage-hero-wow.png') center / cover no-repeat;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__title--wide {
  max-width: 22ch;
  font-size: clamp(2.15rem, 5.8vw, 3.85rem);
}

.hero--wow .hero__shade {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.5) 0%,
    rgba(8, 8, 8, 0.2) 35%,
    rgba(8, 8, 8, 0.92) 100%
  );
}

/* Home · cinematic hero overlay (was missing — content invisible) */
.hero--overlay .hero__stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}

.hero--overlay .hero__bg {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem 0 2rem;
}

.hero__intro-panel {
  max-width: 40rem;
}

.hero__intro-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero__intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  color: #faf8f4;
  margin-bottom: 0.65rem;
}

.hero__intro-title--gold {
  color: var(--gold);
  font-style: italic;
}

.hero__intro-tagline,
.hero__intro-lead {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: #e8e2d8;
  line-height: 1.65;
  margin-bottom: 0.65rem;
  max-width: 42ch;
}

.hero__intro-hook {
  font-size: 0.95rem;
  color: #faf8f4;
  margin: 0.75rem 0;
}

.hero__overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0;
}

.hero__stats--overlay {
  position: relative;
  z-index: 5;
}

.hero__marquee {
  position: absolute;
  bottom: 5.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  opacity: 0.35;
  pointer-events: none;
}

.hero__marquee-track {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  animation: heroMarquee 40s linear infinite;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes heroMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8,  8, 0.25) 40%,
    rgba(8, 8, 8, 0.88) 100%
  );
}

.hero__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  border-radius: 2px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 1rem;
  color: #faf8f4;
}

.hero__title em { font-style: italic; color: var(--gold); }

.hero__text {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: #e8e2d8;
  max-width: 48ch;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border-top: 1px solid var(--gold-dim);
}

.stat-pill {
  background: var(--bg);
  padding: 1rem 0.75rem;
  text-align: center;
}

.stat-pill__n,
.stat-pill__s {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold);
  line-height: 1;
}

.stat-pill__s { display: inline; }

.stat-pill__l {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
}

.section--alt { background: var(--bg-alt); }

.section-head {
  margin-bottom: 2rem;
}

/* Campus — editorial luxury */
.campus--editorial {
  background: linear-gradient(180deg, var(--bg) 0%, #0e0d0b 50%, var(--bg) 100%);
}

.campus__header {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 2.5rem;
}

.campus__title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.05;
}

.campus__deck {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
}

.campus__deck strong {
  color: #e8e4dc;
  font-weight: 500;
}

.campus__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  margin-bottom: 2.5rem;
}

.campus__pillar {
  background: var(--bg);
  padding: 1.35rem 1.25rem;
}

.campus__pillar-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.campus__pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #faf8f4;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.campus__pillar p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.campus-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, 12vw);
  gap: 6px;
  padding-inline: var(--pad);
  max-width: 1400px;
  margin-inline: auto;
}

.campus-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  grid-column: span 4;
  min-height: 200px;
}

.campus-gallery__item--feature {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 420px;
}

.campus-gallery__item:nth-child(2) { grid-column: span 4; }
.campus-gallery__item:nth-child(3) { grid-column: span 4; }

.campus-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.campus-gallery__item:hover img {
  transform: scale(1.05);
}

.campus-gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.campus-cap__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #faf8f4;
  letter-spacing: 0.02em;
}

.campus-cap__sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.campus__footnote {
  margin-top: 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--muted);
}

.campus-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .campus-showcase {
    grid-template-columns: repeat(4, 1fr);
  }
}

.campus-showcase__item {
  margin: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  overflow: hidden;
  background: #0a0a0a;
}

.campus-showcase__item img {
  width: 100%;
  height: auto;
  display: block;
}

.campus-showcase__item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #d8d2c8;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
}

/* Manifesto */
.manifesto {
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2.35rem);
  line-height: 1.35;
  color: #faf8f4;
  text-align: center;
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.manifesto__quote strong {
  color: var(--gold);
  font-weight: 500;
}

.manifesto__sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.75;
}

/* Culinary */
.culinary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.culinary__visual {
  margin: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.culinary__visual img { width: 100%; }

/* Life */
.life__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.life__card {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 3px;
}

.life__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.life__card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Why East */
.why-east__hero {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.why-east__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.why-east__lead {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: #d8d2c8;
  line-height: 1.75;
  max-width: 58ch;
  margin-inline: auto;
}

.why-east__lead strong { color: var(--gold); font-weight: 500; }

.why-east__gap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.why-east__gap-item {
  padding: 1.25rem 1.35rem;
  border-radius: 3px;
}

.why-east__gap-item--problem {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-east__gap-item--answer {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold-dim);
}

.why-east__gap-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.why-east__gap-item ul {
  list-style: none;
}

.why-east__gap-item li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.35rem 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-east__gap-item li:last-child { border-bottom: none; }

.why-east__gap-item--answer li { color: #d8d2c8; }

.why-east__gap-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gold);
  padding: 0 0.25rem;
}

.why-east__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.why-east__nums {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.5rem;
}

.why-east__kicker {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: #d8d2c8;
  line-height: 1.55;
  font-style: italic;
}

.why-east__kicker strong {
  color: #faf8f4;
  font-style: normal;
  font-weight: 500;
}

.why-east__map {
  margin: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.why-east__map img { width: 100%; }

.flow {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.flow__step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.flow__step--gold strong { color: var(--gold); }

.flow__icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.35rem;
}

.flow__step strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.flow__step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.flow__arrow {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  padding: 0.35rem 0;
  opacity: 0.7;
}

/* Opportunity */
.opportunity__inner {
  text-align: center;
}

.streams {
  margin: 2.5rem 0;
  text-align: left;
}

.streams__head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.streams__head span {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.streams__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.streams__item {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.streams__item--upside {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.streams__amt {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.streams__item strong {
  display: block;
  font-size: 0.82rem;
  color: #faf8f4;
  margin-bottom: 0.25rem;
}

.streams__item p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
}

.streams__total {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.streams__total strong {
  color: var(--gold);
  font-weight: 500;
}

.failproof {
  margin: 2.5rem 0;
  text-align: left;
}

.failproof__head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.failproof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.failproof__card {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.failproof__card > span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.failproof__card strong {
  display: block;
  font-size: 0.85rem;
  color: #faf8f4;
  margin-bottom: 0.25rem;
}

.failproof__card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.approvals {
  margin: 2.5rem 0 1.5rem;
  text-align: left;
}

.approvals__head {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.approvals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.approvals__badge {
  padding: 0.75rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.approvals__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.approvals__badge span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.approvals__badge--no {
  border-color: rgba(200, 80, 80, 0.4);
}

.approvals__badge--no strong {
  color: #c85050;
}

.approvals__list {
  list-style: none;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--gold);
}

.approvals__list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.35rem 0;
  line-height: 1.5;
}

.opportunity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.opportunity__card {
  padding: 1.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.opportunity__card span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: var(--gold);
}

.opportunity__card small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

.opportunity__note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.opportunity__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Vendor steps */
.vendors__steps {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.vendors__steps-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #faf8f4;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.vendors__steps-title em { font-style: italic; color: var(--gold); }

.vendor-steps {
  list-style: none;
  counter-reset: none;
}

.vendor-steps__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vendor-steps__item:last-child { border-bottom: none; }

.vendor-steps__n {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #0a0a0a;
  background: var(--gold);
  border-radius: 50%;
}

.vendor-steps__item strong {
  display: block;
  font-size: 0.9rem;
  color: #faf8f4;
  margin-bottom: 0.2rem;
}

.vendor-steps__item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.35rem;
}

.vendor-steps__cost {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  padding: 0.2rem 0.5rem;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 2px;
}

.vendors__steps-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Future */
.future__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.future__copy p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

.future__visual {
  margin: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.future__visual img { width: 100%; }

/* Story */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story__copy p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.ticks {
  list-style: none;
  margin-top: 1rem;
}

.ticks li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ticks li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.35em;
}

.story__visual {
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.story__visual img { width: 100%; }

/* Experience cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card--pour {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.card--pour .card__img {
  aspect-ratio: auto;
  min-height: 280px;
}

.card--pour .card__img img {
  height: 100%;
  min-height: 280px;
}

.card--pour .card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card--pour .card__body p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Mirage Pour — snap-first social section */
.pour-snap {
  margin-top: 2.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(165deg, rgba(201, 162, 39, 0.1) 0%, rgba(0, 0, 0, 0.55) 45%);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}
.pour-snap__head { max-width: 42rem; margin-bottom: 1.75rem; }
.pour-snap__lead { margin-top: 0.75rem; }
.pour-snap__mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: minmax(200px, 28vw) minmax(160px, 22vw);
  gap: 0.65rem;
}
.pour-snap__tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(201, 162, 39, 0.22);
}
.pour-snap__tile--hero {
  grid-row: 1 / -1;
}
.pour-snap__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pour-snap__tile:hover img { transform: scale(1.04); }
.pour-snap__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.5rem 0.85rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #f5f0e6;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}
.pour-snap__cap-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.pour-snap__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.pour-snap__chips li {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
}

.pour-snap__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.pour-snap__mini {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.pour-snap__mini img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.pour-snap__mini figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--surface);
}

.pour-research {
  margin-bottom: 2rem;
  padding: 1.25rem 1rem;
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}

.pour-research__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.pour-research__lead {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pour-research__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.pour-research__table th,
.pour-research__table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

.pour-research__table th { color: var(--gold); }

.pour-research__fine {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

@media (max-width: 800px) {
  .pour-snap__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pour-snap__tile--hero { grid-row: auto; }
  .pour-snap__row { grid-template-columns: 1fr; }
  .pour-research__table { font-size: 0.72rem; }
}

/* Mirage vs destination show-bar */
.pour-beat {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}
.pour-beat__intro { max-width: 44rem; margin-bottom: 2rem; }
.pour-beat__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 400;
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.pour-photo-war {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}
.pour-photo-war__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.pour-photo-war__label--dim { color: var(--muted); }
.pour-photo-war__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.pour-photo-war__grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.pour-photo-war__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.pour-photo-war__grid figcaption {
  font-size: 0.68rem;
  padding: 0.4rem 0.5rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.6);
}
.pour-them-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pour-them-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.pour-them-list li strong { color: #e8a0a0; }
.pour-them-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}
.pour-compare { margin-bottom: 2rem; }
.pour-compare__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.pour-compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pour-compare__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.pour-compare__table th,
.pour-compare__table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.pour-compare__table th {
  background: rgba(201, 162, 39, 0.15);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pour-compare__us {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}
.pour-compare__save { color: #8fd48f; font-weight: 600; }
.pour-compare__fine {
  margin-top: 0.65rem;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.45;
}
.pour-drive__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.pour-drive__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 40rem;
}
.pour-drive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.pour-drive__card {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}
.pour-drive__card--win {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.pour-drive__from {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pour-drive__to {
  display: block;
  font-size: 0.78rem;
  margin: 0.25rem 0;
  color: var(--text);
}
.pour-drive__time {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin: 0.35rem 0;
}
.pour-drive__card:not(.pour-drive__card--win) .pour-drive__time { color: #c88080; }
.pour-drive__note { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
.pour-beat__tag {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.pour-card__price {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}
.pour-card__price strong { color: var(--gold); font-size: 1.1rem; }
.pour-card__was {
  font-size: 0.75rem;
  color: #a07070;
  margin-left: 0.35rem;
}

/* Mirage Pour spotlight */
.pour-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}

.pour-spotlight__visual {
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.pour-spotlight__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pour-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.pour-spotlight__tag {
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Mirage Pour — destination bar menu */
.pour-menu {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.pour-menu__head { margin-bottom: 1.5rem; max-width: 40rem; }
.pour-menu__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.pour-menu__sub { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.pour-menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}
.pour-card {
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 3px;
}
.pour-card--hero {
  grid-column: 1 / -1;
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, var(--surface) 55%);
}
.pour-card__badge,
.pour-card__snap {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.pour-card__snap {
  color: rgba(250, 248, 244, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}
.pour-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: #faf8f4;
}
.pour-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.pour-card p em { color: rgba(201, 162, 39, 0.85); font-style: normal; }
.pour-menu__note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 48rem;
}
.pour-destination {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pour-destination__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.pour-destination__copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.pour-destination__cta {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}
.pour-destination__lead {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.55;
}
.pour-destination__cta .btn { display: block; text-align: center; margin-bottom: 0.65rem; }
.pour-destination__cta .btn--line { margin-bottom: 0; }

@media (max-width: 900px) {
  .pour-snap__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .pour-snap__tile--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }
  .pour-snap__tile { min-height: 180px; }
  .pour-photo-war { grid-template-columns: 1fr; }
  .pour-spotlight { grid-template-columns: 1fr; }
  .pour-destination { grid-template-columns: 1fr; }
  .pour-card--hero { grid-column: auto; }
}
@media (max-width: 520px) {
  .pour-snap__mosaic { grid-template-columns: 1fr; }
  .pour-snap__tile--hero { min-height: 200px; }
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body { padding: 1.15rem; }

.card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: #faf8f4;
}

.card__body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.experience__cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tags {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* Corridor */
.corridor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.corridor__nums {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.corridor__nums div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.corridor__nums strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 500;
}

.corridor__nums span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.corridor__plan {
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.corridor__plan img { width: 100%; }

/* Layout */
.layout__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.layout__list { list-style: none; }

.layout__list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
}

.layout__list strong { color: var(--text); }

.layout__visual {
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.layout__visual img { width: 100%; }

/* Invest */
.invest {
  position: relative;
  padding: clamp(4rem, 10vh, 6rem) 0;
  overflow: hidden;
}

.invest__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.invest__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.75) 100%);
}

.invest__content {
  position: relative;
  z-index: 1;
}

.invest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.invest__card {
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-dim);
  text-align: center;
  border-radius: 3px;
}

.invest__card span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--gold);
}

.invest__card small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.phase {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.phase > span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.phase strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

.phase p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Contact */
.contact__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__link {
  padding: 1.5rem;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.contact__link span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact__link strong {
  font-size: 0.88rem;
  font-weight: 400;
  word-break: break-word;
}

/* Founding vendors */
.vendors {
  position: relative;
  overflow: hidden;
}

.vendors__glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(900px, 120vw);
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.vendors__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.vendors__intro {
  max-width: 58ch;
  font-size: clamp(1.02rem, 2.2vw, 1.12rem);
  color: #d8d2c8;
}

.vendors__imagine {
  margin-bottom: 2rem;
}

.vendors__imagine-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.vendors__moments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.vendors__moment {
  padding: 1.15rem 1.2rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 3px;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.vendors__moment:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

.vendors__moment-time {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.vendors__moment p {
  font-size: 0.95rem;
  color: #d8d2c8;
  line-height: 1.7;
}

.vendors__moment strong { color: #faf8f4; font-weight: 500; }

.vendors__moment em { color: var(--gold); font-style: italic; }

.vendors__moment--brunch {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(0, 0, 0, 0.45));
  border-color: rgba(201, 162, 39, 0.35);
}

.vendors__chef-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--gold-dim);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

.vendors__chef-hero-img {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--gold-dim);
}

.vendors__chef-hero-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.vendors__chef-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 400;
  line-height: 1.1;
  color: #faf8f4;
  margin-bottom: 0.75rem;
}

.vendors__chef-hero-title em { font-style: italic; color: var(--gold); }

.vendors__chef-hero-copy p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.vendors__chef-hero-copy strong { color: #faf8f4; font-weight: 500; }

.vendors__chef-hero-note {
  font-size: 0.65rem !important;
  color: var(--muted) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.vendors__film {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
}

.vendors__film-item {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--gold-dim);
}

.vendors__film-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.vendors__film-item:hover img {
  transform: scale(1.06);
}

.vendors__film-item figcaption {
  padding: 0.65rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.vendors__vision {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  text-align: center;
}

.vendors__vision p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.5;
  color: #f2eee6;
  max-width: 46ch;
  margin-inline: auto;
}

.vendors__vision strong { color: var(--gold); font-weight: 500; }

.vendors__vision em { font-style: italic; color: var(--gold); }

.vendors__close {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  text-align: center;
  color: #faf8f4;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.vendors__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 1.5rem;
}

.vendors__stat {
  text-align: center;
  padding: 1rem 0.5rem;
  border: 1px solid var(--gold-dim);
  background: rgba(201, 162, 39, 0.06);
}

.vendors__stat span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--gold);
  line-height: 1;
}

.vendors__stat small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.vendors__offer {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
}

.vendors__offer-lead {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 65ch;
}

.vendors__offer-lead strong { color: var(--text); font-weight: 500; }

.vendors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.75rem;
}

.vendors__col h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #faf8f4;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.vendors__note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.vendors__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.vendors__dream {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 2rem;
}

.vendors__dream-img {
  margin: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  overflow: hidden;
}

.vendors__dream-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vendors__dream-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.vendors__dream-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.4;
  color: #faf8f4;
  margin-bottom: 1rem;
}

.vendors__dream-quote p em { font-style: italic; color: var(--gold); }

.vendors__dream-quote footer {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.vendors__dream-quote footer strong { color: var(--gold); font-weight: 500; }

.vendors__save {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}

.vendors__save-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #faf8f4;
  margin-bottom: 0.35rem;
  font-weight: 400;
}

.vendors__save-title em { font-style: italic; color: var(--gold); }

.vendors__save-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.vendors__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vendors__compare-col {
  padding: 1rem;
  border-radius: 2px;
}

.vendors__compare-col--old {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vendors__compare-col--new {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold-dim);
}

.vendors__compare-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.vendors__compare-col ul {
  list-style: none;
}

.vendors__compare-col li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--muted);
}

.vendors__compare-col li span { flex: 1; }

.vendors__compare-col li strong {
  color: #faf8f4;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
  font-size: 0.68rem;
}

.vendors__compare-col--new li strong { color: var(--gold); }

.vendors__compare-total {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.vendors__compare-total--gold {
  color: #d4cfc3;
}

.vendors__compare-total strong { color: #faf8f4; }

.vendors__compare-total--gold strong { color: var(--gold); }

.vendors__deal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-bottom: 1.25rem;
}

.vendors__deal-price {
  text-align: center;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--gold);
  background: rgba(201, 162, 39, 0.1);
  min-width: 200px;
}

.vendors__deal-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 600;
}

.vendors__deal-plus {
  display: block;
  font-size: 0.78rem;
  color: #faf8f4;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.vendors__deal-note {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.65rem;
}

.vendors__deal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.vendors__deal-list li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.vendors__deal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.vendors__deal-list strong { color: #faf8f4; font-weight: 500; }

.vendors__save-hook {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: #d4cfc3;
  line-height: 1.55;
  padding-top: 0.25rem;
  font-style: italic;
}

.vendors__save-hook strong { color: var(--gold); font-style: normal; font-weight: 500; }

/* Footer */
.footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #faf8f4;
}

.footer__url {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__legal {
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Content always visible — no scroll-hide */
.reveal {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .campus__header,
  .campus__pillars {
    grid-template-columns: 1fr;
  }

  .campus-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .campus-gallery__item,
  .campus-gallery__item--feature,
  .campus-gallery__item:nth-child(2),
  .campus-gallery__item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }

  .campus-gallery__item--feature {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .why-east__gap {
    grid-template-columns: 1fr;
  }

  .why-east__gap-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .why-east__nums {
    grid-template-columns: repeat(2, 1fr);
  }

  .culinary__grid,
  .why-east__grid,
  .future__grid,
  .story__grid,
  .corridor__grid,
  .layout__inner,
  .card--pour {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .card--pour .card__img img {
    min-height: 220px;
  }

  .cards,
  .card--pour,
  .pour-spotlight,
  .vendors__grid,
  .vendors__dream,
  .vendors__compare,
  .vendors__moments,
  .vendors__film,
  .vendors__chef-hero {
    grid-template-columns: 1fr;
  }

  .life__grid,
  .opportunity__grid,
  .streams__grid,
  .failproof__grid,
  .approvals__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vendors__moment--brunch {
    grid-column: auto;
  }

  .vendors__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .vendors__compare-col li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .vendors__compare-col li strong {
    text-align: left;
    white-space: normal;
  }

  .vendors__deal {
    grid-template-columns: 1fr;
  }

  .vendors__deal-price {
    min-width: 0;
  }

  .invest__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-btn { display: flex; }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-pill__l {
    font-size: 0.52rem;
  }

  .campus-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .campus-gallery__item,
  .campus-gallery__item--feature {
    grid-column: span 1;
    min-height: 220px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .phases,
  .contact__links {
    grid-template-columns: 1fr;
  }

  .vendors__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .vendors__cta .btn {
    width: 100%;
  }

  .logo span {
    font-size: 1rem;
  }
}

/* Maison Mirage + NOLA competitive */
.maison__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.maison__list {
  margin-top: 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.maison__list li { margin-bottom: 0.55rem; }

.maison__list strong { color: var(--text); }

.brand-map {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--gold-dim);
  border-radius: 0 4px 4px 0;
}

.brand-map strong { color: var(--text); }

.beat__sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.15rem;
}

.pkg-compare-callout {
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
}

.pkg-compare-callout strong { color: var(--text); }

.beat__table-intro,
.beat__table-fine {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1rem;
}

.beat__table-fine { margin-top: 0.75rem; margin-bottom: 0; }

.beat__table--compare .beat__cell--mirage {
  background: rgba(201, 162, 39, 0.08);
  color: var(--text);
}

.beat__table--compare .beat__cell--mirage strong { color: var(--gold); }

.maison__visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}

.beat__table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 10px;
}

.beat__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.beat__table th,
.beat__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.beat__table th {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.beat__row--mirage {
  background: rgba(201, 162, 39, 0.12);
}

.beat__row--mirage td { color: #faf8f4; }

.beat__rules { margin-top: 2.5rem; }

.beat__rules-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: #faf8f4;
}

.beat__rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.beat__rule {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.15rem;
}

.beat__rule strong {
  display: block;
  color: var(--gold);
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.beat__rule p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Event rental packages */
.pkg-capacity { margin: 2rem 0 2.5rem; }
.pkg-capacity__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.pkg-capacity__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.pkg-capacity__card {
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}
.pkg-capacity__card--gold {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.pkg-capacity__zone {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pkg-capacity__card p {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
.pkg-capacity__card p em {
  font-style: normal;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
}
.pkg-capacity__card > span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
}
.pkg-cards { margin-bottom: 2.5rem; }
.pkg-cards__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.pkg-cards__sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 44rem;
  line-height: 1.55;
}
.pkg-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.pkg-card {
  padding: 1.25rem 1.3rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.pkg-card--featured {
  border: 2px solid var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.14) 0%, var(--surface) 50%);
}
.pkg-card__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.pkg-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.pkg-card__guests {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.65rem;
}
.pkg-card__price {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
.pkg-card__price strong {
  font-size: 1.5rem;
  color: var(--gold);
}
.pkg-card__per {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.pkg-card ul {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  flex-grow: 1;
}
.pkg-card__vs {
  margin: 0;
  font-size: 0.72rem;
  color: #8fd48f;
  line-height: 1.45;
}
.pkg-card__vs s { color: #a07070; }
.pkg-cards__fine {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
}
.pkg-cards__fine a { color: var(--gold); }
.pkg-bar { margin-bottom: 2.5rem; }
.pkg-bar__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.pkg-bar__sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.pkg-bar__scroll { overflow-x: auto; }
.pkg-bar__table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.pkg-bar__table th,
.pkg-bar__table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.pkg-bar__table th {
  background: rgba(201, 162, 39, 0.12);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pkg-bar__us {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold);
  font-weight: 600;
}
.pkg-bar__fine {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.pkg-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-dim);
}

@media (max-width: 900px) {
  .maison__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Engineers hub */
.engineers-page { padding-top: var(--header-h); }
.engineers-main { padding-bottom: 4rem; }
.engineers-hero { padding: clamp(3rem, 8vw, 5rem) 0 2rem; }
.engineers-lead { max-width: 52rem; color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.engineers-meta { margin-top: 1.25rem; font-size: 0.88rem; color: var(--muted); }
.engineers-h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.engineers-downloads,
.engineers-summary,
.engineers-sheets,
.engineers-program {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.engineers-note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.engineers-dl { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.engineers-dl a {
  display: block;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  transition: border-color 0.2s var(--ease);
}
.engineers-dl a:hover { border-color: var(--gold); }
.engineers-dl strong { display: block; font-weight: 500; margin-bottom: 0.25rem; }
.engineers-dl span { font-size: 0.88rem; color: var(--muted); }
.engineers-contact { margin-top: 1.5rem; color: var(--muted); }
.engineers-contact a { color: var(--gold); text-decoration: underline; }
.engineers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.engineers-card {
  padding: 1.25rem;
  background: var(--surface);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.engineers-card h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.engineers-card ul { list-style: none; font-size: 0.92rem; color: var(--muted); }
.engineers-card li { margin-bottom: 0.45rem; padding-left: 0.75rem; position: relative; }
.engineers-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.engineers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.engineers-table th,
.engineers-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.engineers-table th { color: var(--gold); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.engineers-program-list {
  list-style: none;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.engineers-program-list li {
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 2px solid var(--gold-dim);
  margin-bottom: 0.5rem;
}
.nav__active { color: var(--gold); }
.header--solid { background: rgba(8, 8, 8, 0.95); backdrop-filter: blur(8px); }

/* Professionals portal — visibility (JS + #portal hash) */
body:not(.portal-open):not(:target) #pro-content {
  display: none !important;
}
body.portal-open #pro-gate,
body:target #pro-gate {
  display: none !important;
}
body.portal-open #pro-content,
body:target #pro-content {
  display: block !important;
}
.pro-gate__or {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.65rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.pro-gate__oneclick {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Professionals portal */
.pro-gate {
  min-height: calc(100vh - var(--header-h) - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem var(--pad);
}
.pro-gate__card {
  width: 100%;
  max-width: 28rem;
  padding: clamp(2rem, 5vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
}
.pro-gate__text { color: var(--muted); margin: 1rem 0 1.5rem; font-size: 0.95rem; }
.pro-gate__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pro-gate__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.pro-gate__input:focus {
  outline: none;
  border-color: var(--gold);
}
.pro-gate__error {
  color: #e8a0a0;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.pro-gate__submit { width: 100%; margin-top: 0.25rem; }
.pro-gate__hint {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.pro-gate__fine {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.pro-hero__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.pro-logout {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: underline;
  padding: 0.25rem 0;
}
.pro-logout:hover { color: var(--gold); }
.pro-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pro-tabs__btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.pro-tabs__btn:hover { border-color: var(--gold-dim); color: var(--text); }
.pro-tabs__btn.is-active {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}
.pro-panel { padding-bottom: 2rem; }
.pro-panel .engineers-downloads { border-top: none; padding-top: 1rem; }
.pro-subhead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 0.75rem;
}
.pro-build-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.pro-build-list li { margin-bottom: 0.5rem; }
.pro-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.55;
}
.pro-alert {
  padding: 1rem 0 0;
}
.pro-alert p {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 1rem 1.15rem;
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--gold);
  line-height: 1.55;
}
.pro-alert a { color: var(--gold); text-decoration: underline; }
.pro-start {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 0;
}
.pro-start__card {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.pro-start__card:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.pro-start__card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.pro-start__card span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
@media (max-width: 700px) {
  .pro-start { grid-template-columns: 1fr; }
}
.pro-dl--compact a {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.pro-dl--compact strong { display: inline; margin: 0; }
.pro-dl--compact span { display: none; }

/* Plans & professionals (public index) */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.plans__card {
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
}
.plans__card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--gold);
}
.plans__card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.plans__cta {
  text-align: center;
  padding-bottom: 1rem;
}
.plans__cta .btn { margin-bottom: 1rem; }
.plans__note {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* Weddings & receptions gallery */
.wedding-viz {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12, 10, 8, 0.98) 50%, var(--bg) 100%);
}

.wedding-viz .lead { margin-bottom: 2rem; }

.wedding-viz__hero { margin-bottom: 1.25rem; }

.wedding-viz__duo {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 900px) {
  .wedding-viz__duo {
    grid-template-columns: 1.15fr 1fr;
  }
}

.wedding-viz__trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
  .wedding-viz__trio { grid-template-columns: 1fr; }
}

.wedding-viz__panel,
.wedding-viz__thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  background: var(--surface);
}

.wedding-viz__panel img,
.wedding-viz__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wedding-viz__panel--wide img { aspect-ratio: 21 / 9; }

.wedding-viz__panel figcaption,
.wedding-viz__thumb figcaption {
  padding: 1rem 1.15rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.wedding-viz__panel figcaption strong,
.wedding-viz__thumb figcaption { color: var(--text); }

.wedding-viz__tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.wedding-viz__thumb figcaption {
  font-size: 0.8rem;
  padding: 0.65rem 0.75rem;
}

.wedding-viz__thumb img { aspect-ratio: 4 / 3; }

.wedding-viz__note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

.wedding-viz__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Home · concept path switcher — legacy bar (optional duplicate) */
.concept-switch {
  display: none;
}

.page-home {
  padding-top: var(--site-top-h);
}

.page-home .hero {
  min-height: calc(100svh - var(--site-top-h));
  min-height: calc(100vh - var(--site-top-h));
}

.concept-switch__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.65rem var(--pad);
}

.concept-switch__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.concept-switch__tabs {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  min-width: 0;
}

.concept-switch__tab {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.concept-switch__tab:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.08);
  transform: translateY(-1px);
}

.concept-switch__tab strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: #faf8f4;
  line-height: 1.2;
}

.concept-switch__tab span {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}

.concept-switch__tab--here {
  border-color: rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.1);
  pointer-events: none;
}

.concept-switch__tab--star {
  border-color: rgba(74, 222, 128, 0.55);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.14), rgba(201, 162, 39, 0.08));
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.12);
}

.concept-switch__tab--star strong { color: #86efac; }

.concept-switch__tab--star:hover {
  border-color: rgba(74, 222, 128, 0.75);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(201, 162, 39, 0.1));
}

.concept-switch__compare {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 6px;
}

.concept-switch__compare:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.hero-concept-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.hero-concept-pick a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hero-concept-pick a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.55);
}

.hero-concept-pick a.hero-concept-pick__hotel {
  border-color: rgba(74, 222, 128, 0.65);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.22), rgba(201, 162, 39, 0.12));
  box-shadow: 0 0 32px rgba(74, 222, 128, 0.2);
}

.hero-concept-pick a.hero-concept-pick__hotel:hover {
  border-color: #4ade80;
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.35);
}

.hero-concept-pick__tag {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.hero-concept-pick__hotel .hero-concept-pick__tag { color: #86efac; }

.hero-concept-pick strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #faf8f4;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.hero-concept-pick__hotel strong { color: #bbf7d0; }

.hero-concept-pick span {
  font-size: 0.72rem;
  color: #c4bdb0;
  line-height: 1.35;
}

.drawer__concept {
  color: #86efac !important;
  border: 2px solid rgba(74, 222, 128, 0.45) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
}

@media (max-width: 720px) {
  :root { --concept-bar-h: 52px; }
  .concept-switch__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .concept-switch__tabs {
    flex-direction: column;
  }
  .concept-switch__compare {
    text-align: center;
  }
  .hero-concept-pick {
    grid-template-columns: 1fr;
  }
}

/* Capital arrival + resort-scale presentation */
.capital-strip {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gold-dim);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
}

.capital-strip__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.capital-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.capital-strip__stat {
  padding: 1rem 0.85rem;
  background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 4px;
  text-align: center;
}

.capital-strip__n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gold);
  line-height: 1.1;
}

.capital-strip__l {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.capital-strip__deck {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52rem;
}

.capital-strip__deck a { color: var(--gold); }

.arrival {
  padding: 4rem 0 3rem;
}

.arrival__head { max-width: 44rem; margin-bottom: 2rem; }

.arrival__ground {
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 6px;
  border: 2px solid var(--gold);
}

.arrival__ground img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.arrival__ground figcaption {
  padding: 1rem 1.15rem;
  background: var(--surface);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.arrival__ground figcaption strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.arrival__ground-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.arrival__sequence {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.arrival__step {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--gold-dim);
}

.arrival__step--hero { grid-row: span 1; }

.arrival__step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.arrival__step--hero img { aspect-ratio: 16 / 10; }

.arrival__step figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface);
}

.arrival__step figcaption span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.35rem;
}

.phases__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.phases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.phases__card {
  padding: 1.1rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.phases__card--now {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.phases__phase {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.phases__card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.phases__card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.impact {
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
}

.impact__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.impact__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.impact__list li { margin-bottom: 0.4rem; }

.impact__list strong { color: var(--text); }

@media (max-width: 900px) {
  .arrival__sequence { grid-template-columns: 1fr; }
  .phases__grid { grid-template-columns: 1fr; }
  .capital-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
