/* ============================================================
   AMONA — Stylesheet
   Layout mirrors Mila's Udlejning structure exactly
   Dark navy / gold / warm beige alternating sections
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark palette */
  --navy:          #0a0f1c;
  --navy-100:      #111827;
  --navy-200:      #1a2238;
  --gold:          #c9a96e;
  --gold-light:    #d4bc8a;
  --gold-dark:     #b08d4f;

  /* Light / beige palette */
  --beige:         #f5f0eb;
  --beige-100:     #ede5da;
  --beige-200:     #e0d5c7;
  --beige-300:     #d4c8b8;
  --cream:         #faf7f3;

  /* Text on dark */
  --text-light:    #f5f0eb;
  --text-light-70: rgba(245,240,235,.7);
  --text-light-50: rgba(245,240,235,.5);
  --text-light-30: rgba(245,240,235,.3);

  /* Text on light */
  --text-dark:     #1a1a1a;
  --text-dark-70:  #555555;
  --text-dark-50:  #888888;

  /* Borders */
  --border-dark:   rgba(245,240,235,.08);
  --border-light:  rgba(26,26,26,.08);

  /* Fonts */
  --serif:         'Cormorant Garamond', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.18);

  --transition:    all .2s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ── Header (mirrors Mila) ────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  padding-inline: clamp(16px, 3vw, 48px);
}

.header-left { /* spacer */ }

.header-logo { display: flex; align-items: center; justify-content: center; }

.logo-text {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color .3s ease;
}

.site-header.scrolled .logo-text { color: var(--text-dark); }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.btn-cta-nav {
  display: none;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.btn-cta-nav:hover { background: var(--gold); color: var(--navy); }
@media (min-width: 640px) { .btn-cta-nav { display: flex; } }

.site-header.scrolled .btn-cta-nav {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.site-header.scrolled .btn-cta-nav:hover { background: var(--gold-dark); color: white; }

.btn-account {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 10px 0 8px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.15);
  opacity: .85;
  transition: var(--transition);
}
.btn-account:hover { opacity: 1; }

.site-header.scrolled .btn-account { background: var(--beige-100); }

.icon-menu, .icon-user { width: 20px; height: 20px; color: white; }
.site-header.scrolled .icon-menu,
.site-header.scrolled .icon-user { color: var(--text-dark); }

/* ── Hero (mirrors Mila — dark) ──────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-image img,
.hero-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

@keyframes heroSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,28,.35) 0%,
    rgba(10,15,28,.1) 40%,
    rgba(10,15,28,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 80px) clamp(48px, 8vh, 96px);
}

.hero-text {
  text-align: center;
  margin-bottom: clamp(28px, 5vh, 52px);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: white;
  letter-spacing: -.02em;
}

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

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.cta-bar-wrap {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding: 0 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.btn-hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── Trust Strip (BEIGE — like Mila's white strip) ────── */
.trust-strip {
  background: var(--cream);
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .trust-item:not(:last-child) { border-right: 1px solid var(--border-light); }
}

.trust-word {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.trust-word--gold {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 300;
}

.trust-label {
  font-size: 13px;
  color: var(--text-dark-70);
  line-height: 1.4;
}

/* ── Statement Section (DARK — image based) ───────────── */
.statement-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  min-height: 420px;
  overflow: hidden;
}

@media (max-width: 639px) { .statement-section { aspect-ratio: 4/3; } }

.statement-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.statement-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.6);
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,28,.45);
}

.statement-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 80px);
  text-align: center;
  gap: 16px;
}

.statement-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 400;
  color: white;
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 840px;
}

.statement-quote em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.statement-source {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 12px;
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding-block: clamp(48px, 8vw, 96px); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 48px);
  gap: 16px;
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-dark-70);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 16px;
}

.btn-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

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

/* ── Scroll-Stop Cinematic Zoom ────────────────────────── */
.scrollstop {
  position: relative;
  height: 300vh; /* scroll distance */
  background: #000;
}

.scrollstop-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollstop-image-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.scrollstop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: none;
  will-change: transform;
}

.scrollstop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,28,.3) 0%,
    rgba(10,15,28,.1) 30%,
    rgba(10,15,28,.1) 70%,
    rgba(10,15,28,.5) 100%
  );
  pointer-events: none;
}

/* Text panels — positioned center, controlled by JS */
.scrollstop-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  transition: none;
  will-change: opacity;
  pointer-events: none;
  z-index: 2;
}

.scrollstop-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.scrollstop-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 700px;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}

.scrollstop-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  margin-top: 20px;
  letter-spacing: .04em;
  text-shadow: 0 1px 20px rgba(0,0,0,.3);
}

/* ── Performance Cards (BEIGE — mirrors Mila property cards) */
.metrics-section { background: var(--beige); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.metric-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metric-card-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--beige-100);
}

.metric-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.metric-card:hover .metric-card-visual img { transform: scale(1.04); }

.metric-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.metric-card-body { padding: 16px 18px 20px; }

.metric-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.metric-card-label {
  font-size: 12px;
  color: var(--text-dark-70);
}

.metric-card-arrow {
  font-size: 16px;
  color: var(--gold-dark);
}

.metric-card-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.metric-card-desc {
  font-size: 13px;
  color: var(--text-dark-70);
  line-height: 1.5;
}

/* ── Trust / Badges (BEIGE — mirrors Mila) ───────────── */
.trust-awards-section {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-awards-inner { text-align: center; }

.trust-awards-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.trust-awards-subtitle {
  font-size: 15px;
  color: var(--text-dark-70);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 52px;
}

.trust-awards-badges {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 160px;
}

.badge-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: var(--transition);
}

.badge-circle:hover {
  background: rgba(201,169,110,.08);
  transform: scale(1.05);
}

.badge-circle-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
}

.badge-circle-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dark-50);
}

.badge-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dark-70);
  line-height: 1.4;
  text-align: center;
}

/* ── Editorial Cards (DARK — contrast section) ────────── */
.editorial-section { background: var(--navy); padding-bottom: 0; }
.editorial-section .section-eyebrow { color: var(--gold-light); }
.editorial-section .section-title { color: var(--text-light); }

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

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

.editorial-card {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  transition: var(--transition);
  cursor: pointer;
}

.editorial-card:hover .editorial-img { transform: scale(1.04); }

.editorial-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy-200);
}

@media (max-width: 768px) { .editorial-img-wrap { aspect-ratio: 16/9; } }

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.editorial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,28,.7) 0%, transparent 50%);
}

.editorial-body {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editorial-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.25;
}

.editorial-link {
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  width: fit-content;
  transition: var(--transition);
}

.editorial-card:hover .editorial-link {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── How It Works (BEIGE — mirrors Mila) ─────────────── */
.how-section { background: var(--beige-100); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 56px;
  margin-top: 48px;
}

.how-item { text-align: center; }

.how-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.how-icon svg { width: 100%; height: 100%; }

.how-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.how-text {
  font-size: 15px;
  color: var(--text-dark-70);
  line-height: 1.65;
}

/* ── Europe Map Section (LIGHT) ────────────────────────── */
.map-section {
  background: var(--cream);
  padding-block: clamp(64px, 10vw, 120px);
}

.map-section .section-eyebrow,
.map-eyebrow { color: var(--gold-dark) !important; }

.map-section .section-title,
.map-title { color: var(--text-dark) !important; }

.map-section .section-subtitle,
.map-subtitle { color: var(--text-dark-70) !important; }

.map-container {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.europe-map {
  width: 100%;
  height: auto;
  display: block;
}

/* Country outlines */
.country {
  fill: rgba(10,15,28,.06);
  stroke: rgba(10,15,28,.15);
  stroke-width: .6;
  transition: fill .3s ease, stroke .3s ease;
}

.country:hover {
  fill: rgba(201,169,110,.15);
  stroke: rgba(201,169,110,.5);
}

/* Pin markers */
.map-pin {
  fill: #c9a96e;
  opacity: .9;
  transition: opacity .3s ease, r .3s ease;
  filter: url(#pinGlow);
}

.map-pin:hover { opacity: 1; }

.map-pin--primary {
  opacity: 1;
}

/* Pulse animation on pins */
.map-pin-pulse {
  opacity: 0;
  animation: pinPulse 3s ease-out infinite;
}

@keyframes pinPulse {
  0% { r: 5; opacity: .6; }
  100% { r: 18; opacity: 0; }
}

/* Map labels */
.map-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  fill: var(--text-dark-70);
  text-anchor: middle;
  letter-spacing: .04em;
}

.map-label--primary {
  font-size: 10px;
  font-weight: 700;
  fill: var(--gold-dark);
  letter-spacing: .06em;
}

/* Legend */
.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dark-70);
}

.map-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
}

.map-legend-dot--active {
  opacity: 1;
  box-shadow: 0 0 8px rgba(201,169,110,.4);
}

/* ── Founders Section (CREAM) ─────────────────────────── */
.founders-section { background: var(--cream); }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  max-width: 700px;
  margin-inline: auto;
}

@media (max-width: 580px) {
  .founders-grid { grid-template-columns: 1fr; gap: 48px; }
}

.founder-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.founder-portrait {
  width: clamp(160px, 22vw, 240px);
  height: clamp(160px, 22vw, 240px);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 3px solid var(--beige-200);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: var(--transition);
}

.founder-card:hover .founder-portrait {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,110,.15);
  transform: translateY(-4px);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -.01em;
}

.founder-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.founder-bio {
  font-size: 14px;
  color: var(--text-dark-70);
  line-height: 1.65;
  max-width: 280px;
}

/* ── Markets / Destinations (BEIGE — mirrors Mila) ────── */
.destinations-section { background: var(--cream); }

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 260px 260px;
  }
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}

.dest-card--large { grid-row: 1 / 3; }

.dest-img-wrap { width: 100%; height: 220px; }

@media (min-width: 640px) { .dest-img-wrap { height: 100%; } }

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.dest-card:hover .dest-img { transform: scale(1.05); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.dest-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: white;
  margin-bottom: 4px;
}

.dest-status {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dest-status--active { color: var(--gold-light); }
.dest-status--soon { color: rgba(255,255,255,.5); }

/* ── Partners (BEIGE — mirrors Mila reviews) ──────────── */
.reviews-section { background: var(--beige); overflow: hidden; }

.reviews-carousel-wrap {
  position: relative;
  margin-top: 48px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, calc(33.333% - 14px));
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

@media (max-width: 1024px) {
  .reviews-track { grid-template-columns: repeat(3, calc(50% - 10px)); }
}

@media (max-width: 639px) {
  .reviews-track { grid-template-columns: repeat(3, calc(90% - 8px)); }
}

.partner-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  min-width: 0;
}

.partner-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,169,110,.12);
  transform: translateY(-3px);
}

.partner-card-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-card-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.partner-card-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.partner-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
}

.partner-card-text {
  font-size: 14px;
  color: var(--text-dark-70);
  line-height: 1.6;
}

/* ── CTA (DARK — mirrors Mila) ────────────────────────── */
.cta-section { background: var(--navy); }

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-block: clamp(24px, 4vw, 40px);
}

.cta-section .section-eyebrow { color: var(--gold); }

.cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.cta-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── Report Card (DARK section with glow) ─────────────── */
.report-float {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--navy);
}

.report-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.06) 0%, transparent 70%);
  pointer-events: none;
}

.report-card {
  position: relative;
  width: min(480px, 90vw);
  background: var(--navy-200);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg), 0 4px 40px rgba(201,169,110,.08);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform .6s ease;
}

.report-card:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }

.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.report-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.report-date {
  font-size: 12px;
  color: var(--text-light-30);
}

.report-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 24px;
}

.report-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.report-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.report-metric-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light-30);
}

.report-metric-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
}

.report-metric-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--border-dark);
  overflow: hidden;
  margin-top: 4px;
}

.report-metric-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gold);
  width: 0%;
  transition: width 1.2s ease;
}

.report-focus {
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.report-focus-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.report-focus-item {
  font-size: 13px;
  color: var(--text-light-50);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.report-focus-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Assessment Form (BEIGE) ──────────────────────────── */
.assessment-section {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--beige);
}

.assessment-inner {
  max-width: 640px;
  margin-inline: auto;
}

.assessment-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beige-200);
  border: 1.5px solid var(--beige-300);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201,169,110,.3);
}

.step-dot.completed { background: var(--gold); border-color: var(--gold); opacity: .45; }

.step-line {
  width: 48px;
  height: 1px;
  background: var(--beige-200);
  transition: var(--transition);
}

.step-line.completed { background: var(--gold); opacity: .4; }

.form-step {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp .4s ease;
}

.form-step.active { display: flex; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dark-50);
}

.form-input,
.form-select {
  background: white;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}

.form-input::placeholder { color: var(--text-dark-50); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: var(--text-dark-70);
  background: white;
}

.form-radio-option:hover { border-color: var(--gold); }
.form-radio-option input { display: none; }
.form-radio-option:has(input:checked) { border-color: var(--gold); background: rgba(201,169,110,.08); color: var(--gold-dark); }

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: var(--text-dark-70);
  background: white;
}

.form-checkbox-option:hover { border-color: var(--gold); }

.form-checkbox-option input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--beige-200);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
  background: white;
}

.form-checkbox-option input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.form-checkbox-option input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: white;
  font-weight: 700;
}

.form-checkbox-option:has(input:checked) { border-color: var(--gold); background: rgba(201,169,110,.06); }

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.btn-back {
  font-size: 14px;
  color: var(--text-dark-50);
  transition: var(--transition);
}

.btn-back:hover { color: var(--text-dark); }

.btn-next {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 32px;
  background: var(--gold);
  color: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-next:hover { background: var(--gold-dark); transform: translateY(-1px); }

.form-thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 48px 24px;
  animation: fadeInUp .6s ease;
}

.form-thankyou.active { display: flex; }

.thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-dark);
}

.thankyou-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
}

.thankyou-text {
  font-size: 15px;
  color: var(--text-dark-70);
  line-height: 1.7;
  max-width: 400px;
}

/* ── Footer (DARK) ────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; } }

.footer-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-light-30);
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-30);
  transition: var(--transition);
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-light-30);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: var(--text-light-30);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-light-30); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ── Scroll reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile menu overlay ──────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,28,.97);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-overlay a {
  font-family: var(--serif);
  font-size: 28px;
  color: white;
  transition: var(--transition);
}

.mobile-overlay a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.w-full { width: 100%; justify-content: center; }
