/* ==========================================================================
   AskMykonos.ai — "Mykonos by Night" design system
   Palette: deep Aegean night, moonlit whitewash, gold, one bougainvillea
   accent reserved for CTAs. Glamour, theatrical, luxe — never neon-grid.
   Perf note: no backdrop-filter / filter blur anywhere (2017-MacBook floor).
   ========================================================================== */

:root {
  /* Night canvas */
  --midnight: #0a1120;
  --harbor: #0e1728;
  --card: #121c31;
  --card-deep: #0c1424;

  /* Whitewash (Mykonos white, glowing in the dark) */
  --whitewash: #f6f3ea;
  --foam: #c7cdda;
  --muted: #8d95a8;

  /* Gold luxury */
  --gold: #c9a55c;
  --gold-bright: #e3c584;
  --gold-deep: #97753a;

  /* Electric accent — bougainvillea. Rare on purpose: CTAs + hero spark only. */
  --bloom: #ef5a8b;
  --bloom-deep: #d13d70;

  /* Structure */
  --line: rgba(214, 199, 164, 0.17);
  --line-soft: rgba(214, 199, 164, 0.1);
  --line-light: rgba(246, 243, 234, 0.14);
  --shadow: 0 30px 60px -30px rgba(2, 6, 16, 0.9);
  --shadow-soft: 0 18px 40px -24px rgba(2, 6, 16, 0.75);
  --radius: 18px;
  --radius-small: 12px;
  --max-width: 1160px;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Legacy aliases (kept so nothing breaks) */
  --linen: var(--midnight);
  --linen-deep: #070d18;
  --parchment: var(--card);
  --sand: #1b2846;
  --pine: var(--whitewash);
  --pine-soft: #ffffff;
  --text: var(--foam);
  --brass: var(--gold);
  --brass-soft: var(--gold-bright);
  --olive: #7fd3a6;
  --clay: #e0705c;
  --bg: var(--midnight);
  --bg-soft: var(--harbor);
  --surface: var(--card);
  --surface-soft: var(--sand);
  --navy: var(--whitewash);
  --teal: var(--olive);
  --terracotta: var(--clay);
  --apricot: var(--gold-bright);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 76% -6%, rgba(201, 165, 92, 0.1), transparent 44%),
    radial-gradient(ellipse at 12% -2%, rgba(74, 100, 155, 0.16), transparent 48%),
    linear-gradient(180deg, #0d1526 0%, var(--midnight) 45%, #070d18 100%);
  color: var(--foam);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(201, 165, 92, 0.35);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--whitewash);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.1;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.4vw, 4.5rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
  text-wrap: balance;
}

h3 {
  line-height: 1.25;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Shell & helpers
   -------------------------------------------------------------------------- */

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--whitewash);
  color: var(--midnight);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.seo-context {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Acquisition banner
   -------------------------------------------------------------------------- */

.acquisition-banner {
  display: flex;
  justify-content: center;
  padding: 12px 16px 0;
}

.acquisition-banner a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 18px;
  border: 1px solid rgba(239, 90, 139, 0.45);
  border-radius: 999px;
  background: rgba(239, 90, 139, 0.1);
  color: var(--foam);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
}

.acquisition-banner a:hover {
  border-color: rgba(239, 90, 139, 0.75);
  background: rgba(239, 90, 139, 0.16);
}

.acquisition-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--bloom);
}

.acquisition-cta {
  color: #f78fb2;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 24px), 1220px);
  margin: 14px auto 0;
  padding: 10px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(10, 17, 32, 0.94);
  box-shadow: var(--shadow-soft);
}

.site-logo,
.site-nav,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo picture,
.site-logo img {
  display: block;
}

.site-logo img {
  width: auto;
  height: 50px;
  max-width: 260px;
  object-fit: contain;
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--foam);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--whitewash);
  background: rgba(246, 243, 234, 0.07);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--bloom);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 14px 26px -14px rgba(239, 90, 139, 0.65);
}

.site-nav .nav-cta:hover {
  background: var(--bloom-deep);
  color: #ffffff;
}

.mobile-social-link {
  display: none;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 243, 234, 0.05);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
}

.language-toggle span {
  opacity: 0.4;
}

.language-toggle button {
  min-width: 34px;
  min-height: 30px;
  padding: 7px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.language-toggle button[aria-pressed="true"] {
  background: var(--whitewash);
  color: var(--midnight);
}

.menu-toggle {
  display: none;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--bloom);
  color: #ffffff;
  box-shadow: 0 22px 34px -18px rgba(239, 90, 139, 0.7);
}

.button-primary:hover {
  background: var(--bloom-deep);
}

.button-secondary {
  border-color: rgba(201, 165, 92, 0.5);
  background: transparent;
  color: var(--whitewash);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 165, 92, 0.1);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 72px 0 64px;
}

/* Scattered stars — one static paint, no animation */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle 1.2px at 9% 16%, rgba(246, 243, 234, 0.8) 0 1.2px, transparent 2px),
    radial-gradient(circle 1px at 24% 7%, rgba(227, 197, 132, 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle 1px at 43% 21%, rgba(246, 243, 234, 0.55) 0 1px, transparent 1.8px),
    radial-gradient(circle 1.4px at 62% 9%, rgba(246, 243, 234, 0.7) 0 1.4px, transparent 2.2px),
    radial-gradient(circle 1px at 81% 27%, rgba(227, 197, 132, 0.7) 0 1px, transparent 1.8px),
    radial-gradient(circle 1px at 93% 12%, rgba(246, 243, 234, 0.6) 0 1px, transparent 1.8px),
    radial-gradient(circle 1px at 15% 58%, rgba(246, 243, 234, 0.4) 0 1px, transparent 1.8px),
    radial-gradient(circle 1.2px at 52% 44%, rgba(246, 243, 234, 0.35) 0 1.2px, transparent 2px);
  background-repeat: no-repeat;
}

/* Moon halo behind the night scene — pure gradient, no blur filter */
.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  right: min(4vw, 60px);
  z-index: -1;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(246, 243, 234, 0.09) 0 16%,
    rgba(201, 165, 92, 0.07) 30% 46%,
    transparent 68%);
  pointer-events: none;
}

/* Signature: moonlit windmill line-art */
.hero-scene {
  position: absolute;
  top: -26px;
  right: min(2vw, 36px);
  z-index: -1;
  width: min(560px, 58vw);
  opacity: 0.95;
  pointer-events: none;
}

.hero-scene svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy,
.chat-card,
.questions-experience > *,
.step-card,
.tour-card,
.partners-panel > *,
.network-panel > *,
.footer-inner > * {
  min-width: 0;
}

.hero-title-link {
  color: inherit;
}

.hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 9px;
  margin-top: 24px;
  background:
    radial-gradient(circle at 50% 50%, var(--bloom) 0 2.5px, transparent 3.5px),
    linear-gradient(90deg, rgba(201, 165, 92, 0.6) 0 40%, transparent 40% 60%, rgba(201, 165, 92, 0.6) 60% 100%);
  background-size: 100% 100%, 100% 1px;
  background-position: center, center;
  background-repeat: no-repeat;
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 26px;
  color: #aab2c4;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-value-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 26px;
  padding: 0.8rem 1.35rem;
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: 999px;
  background: rgba(18, 28, 49, 0.65);
  color: var(--whitewash);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
}

.hero-value-strip::before,
.hero-value-strip::after {
  content: "✦";
  flex: 0 0 auto;
  color: var(--gold-bright);
  font-size: 0.72em;
  font-style: normal;
}

.hero-value-strip::before {
  margin-right: 0.7rem;
}

.hero-value-strip::after {
  margin-left: 0.7rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Chat card
   -------------------------------------------------------------------------- */

.chat-card {
  position: relative;
  /* Pinned below the windmill scene (not vertically centered): the card's
     height varies with language/conversation, and centering let it swallow
     the hero signature on shorter viewports. Growth now goes downward. */
  align-self: start;
  margin-top: 215px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(165deg, #17233d 0%, #0f1930 100%);
  box-shadow: var(--shadow);
}

.chat-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 165, 92, 0.24);
  border-radius: 16px;
  pointer-events: none;
}

.chat-card > * {
  position: relative;
  z-index: 1;
}

.chat-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid rgba(239, 90, 139, 0.45);
  border-radius: 999px;
  background: rgba(239, 90, 139, 0.12);
  color: #f78fb2;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot,
.preview-status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 0 3px rgba(127, 211, 166, 0.18);
}

.status-dot::after,
.preview-status-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(127, 211, 166, 0.45);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.75);
  animation: livePulse 2.6s ease-out infinite;
}

@keyframes livePulse {
  0% {
    opacity: 0.5;
    transform: scale(0.75);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.chat-instruction-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.chat-language-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 6px 12px;
  border: 1px solid rgba(201, 165, 92, 0.3);
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.08);
  color: #d9cfb4;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.chat-language-note::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.chat-thread {
  display: grid;
  gap: 12px;
}

.chat-thread.chat-box {
  max-height: min(430px, 58vh);
  overflow-y: auto;
  padding: 2px;
  scroll-behavior: smooth;
}

.chat-empty-helper {
  justify-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.chat-box .user-message,
.chat-box .bot-message {
  max-width: 92%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

/* Bot speaks in night sea, visitor answers in whitewash */
.chat-box .bot-message {
  justify-self: start;
  border: 1px solid var(--line-soft);
  border-bottom-left-radius: 6px;
  background: #1c2946;
  color: var(--foam);
}

.chat-box .user-message {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: var(--whitewash);
  color: #101a2e;
}

.chat-box .bot-message.loading {
  color: var(--muted);
  font-style: italic;
}

/* Dion typing dots — opacity-only pulse, skipped entirely under
   prefers-reduced-motion (the JS goes straight to the reveal) */
.chat-box .bot-message.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 0;
  padding: 15px 18px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0.25;
  animation: dionTyping 900ms ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 150ms;
}

.typing-dot:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes dionTyping {
  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.9;
  }
}

/* Word-by-word reveal — opacity only, cheap on old hardware. The reveal
   pacing itself is JS-driven, so it still plays under reduced motion
   (the per-word fade simply becomes instant). */
.chat-box .bot-message .reveal-word {
  opacity: 0;
  transition: opacity 180ms ease;
}

.chat-box .bot-message .reveal-word.is-visible {
  opacity: 1;
}

.chat-box .bot-message.error {
  border-color: rgba(224, 112, 92, 0.45);
  background: rgba(224, 112, 92, 0.12);
  color: #f0a08e;
}

.input-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-deep);
  box-shadow: var(--shadow-soft);
}

.input-area input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--whitewash);
  font-size: 0.95rem;
  outline: 0;
}

.input-area input::placeholder {
  color: rgba(246, 243, 234, 0.42);
  opacity: 1;
}

.input-area:focus-within {
  border-color: rgba(201, 165, 92, 0.6);
  box-shadow: 0 0 0 4px rgba(201, 165, 92, 0.16);
}

.input-area input:disabled {
  opacity: 0.7;
}

.send-btn {
  height: 46px;
  min-width: 86px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--whitewash);
  color: var(--midnight);
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.send-btn:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.send-btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.chatbot-tech-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.chat-disclaimer-note {
  margin-top: 12px;
  color: rgba(141, 149, 168, 0.8);
  font-size: 0.7rem;
  line-height: 1.4;
}

.chat-ai-attribution {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

/* --------------------------------------------------------------------------
   Sections — shared
   -------------------------------------------------------------------------- */

.questions-section,
.how-section,
.tours-section,
.concierge-section,
.partners-section,
.network-section {
  padding: 76px 0;
}

section[id] {
  scroll-margin-top: 100px;
}

#ask-ai {
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading p,
.split-heading > p,
.concierge-card p,
.partners-panel p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: end;
  max-width: none;
  margin-bottom: 34px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Questions & answer preview
   -------------------------------------------------------------------------- */

.questions-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.starter-line {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.question-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 16px 40px 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--card);
  color: var(--whitewash);
  font-weight: 600;
  text-align: left;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.question-card > span[aria-hidden] {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.08);
  color: var(--gold-bright);
  font-size: 1rem;
  line-height: 1;
}

.question-card [data-question-text] {
  min-width: 0;
  line-height: 1.3;
}

.question-card::after {
  content: "↗";
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.55;
  transition: transform 180ms ease, opacity 180ms ease;
}

.question-card:hover,
.question-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(201, 165, 92, 0.55);
  box-shadow: var(--shadow-soft);
}

.question-card:hover::after,
.question-card.is-active::after {
  opacity: 1;
  transform: translate(1px, -1px);
}

.question-card.is-active {
  background: #182642;
  box-shadow: inset 0 0 0 1px rgba(201, 165, 92, 0.35), var(--shadow-soft);
}

.question-card.is-active > span[aria-hidden] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}

.answer-preview {
  position: sticky;
  top: 100px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

/* The one gold→bougainvillea gradient on the page */
.answer-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(239, 90, 139, 0.7));
}

.preview-topline,
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-label {
  margin-bottom: 0;
  color: var(--whitewash);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--whitewash);
  white-space: nowrap;
}

.preview-topline > span {
  padding: 6px 10px;
  border: 1px solid rgba(127, 211, 166, 0.35);
  border-radius: 999px;
  background: rgba(127, 211, 166, 0.08);
  color: #a5dfc0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-question-row {
  margin: 22px 0 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.preview-question-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.answer-preview h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.answer-preview #preview-answer {
  margin-bottom: 18px;
  color: #b6bdcd;
  font-size: 1rem;
}

.preview-value-reinforce {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.preview-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--whitewash);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease;
}

.preview-actions a:hover {
  border-color: rgba(201, 165, 92, 0.55);
  background: rgba(201, 165, 92, 0.08);
}

.preview-footer {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.86rem;
}

.preview-footer a {
  color: var(--gold-bright);
  font-weight: 600;
}

.preview-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.steps-grid,
.tour-grid,
.concierge-grid {
  display: grid;
  gap: 16px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.tour-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: none;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border: 1px solid rgba(201, 165, 92, 0.45);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.step-card h3,
.tour-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.step-card p,
.tour-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* --------------------------------------------------------------------------
   Tours
   -------------------------------------------------------------------------- */

.tour-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -66px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 165, 92, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.tour-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 165, 92, 0.5);
  box-shadow: var(--shadow-soft);
}

.tour-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 11px;
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.07);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  padding: 10px 15px;
  border: 1px solid rgba(246, 243, 234, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--whitewash);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.tour-status:hover {
  border-color: var(--whitewash);
  background: var(--whitewash);
  color: var(--midnight);
}

.disclosure,
.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

.disclosure {
  margin: 18px 0 0;
}

.disclosure a {
  color: var(--gold-bright);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Concierge
   -------------------------------------------------------------------------- */

.concierge-note {
  max-width: 720px;
  margin: -16px 0 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.concierge-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 210px;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.concierge-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -68px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 165, 92, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.concierge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 165, 92, 0.5);
  box-shadow: var(--shadow-soft);
}

.concierge-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  border: 1px solid rgba(201, 165, 92, 0.45);
  border-radius: 50%;
  background: rgba(201, 165, 92, 0.08);
  color: var(--gold-bright);
  font-size: 1.15rem;
  line-height: 1;
}

.concierge-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.concierge-card-content h3 {
  margin-bottom: 4px;
  font-size: 1.14rem;
}

.concierge-card-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.concierge-card .tour-status {
  margin-top: 12px;
}

.concierge-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

/* --------------------------------------------------------------------------
   Partners
   -------------------------------------------------------------------------- */

.partners-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(201, 165, 92, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(201, 165, 92, 0.16), transparent 42%),
    linear-gradient(150deg, #182742 0%, #101a30 100%);
}

.partners-panel h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.partner-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.partner-social-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.partner-social-link:hover {
  color: var(--whitewash);
}

/* --------------------------------------------------------------------------
   Network — the ASK constellation, after dark
   -------------------------------------------------------------------------- */

.partners-panel {
  box-shadow: var(--shadow-soft);
}

.network-section {
  padding-top: 24px;
}

.network-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(201, 165, 92, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 4%, rgba(239, 90, 139, 0.12), transparent 42%),
    radial-gradient(circle at 4% 96%, rgba(201, 165, 92, 0.13), transparent 44%),
    linear-gradient(155deg, #17233d 0%, #0a1120 100%);
  box-shadow: var(--shadow-soft);
}

.network-panel::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 165, 92, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.network-copy,
.network-destinations {
  position: relative;
  z-index: 1;
}

.network-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.network-copy .eyebrow {
  color: var(--gold-bright);
}

.network-copy p {
  max-width: 540px;
  color: rgba(199, 205, 218, 0.85);
}

.network-support {
  margin-bottom: 0;
  color: var(--gold) !important;
  font-family: var(--serif);
  font-style: italic;
}

.network-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.network-destination {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--whitewash);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.network-destination.is-live {
  border-color: rgba(127, 211, 166, 0.5);
  background: rgba(127, 211, 166, 0.1);
}

a.network-destination {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.network-destination:hover {
  border-color: rgba(201, 165, 92, 0.55);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

a.network-destination.is-live:hover {
  border-color: rgba(127, 211, 166, 0.75);
}

.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 5px 9px;
  border: 1px solid rgba(127, 211, 166, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--olive);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.network-destination.is-live .network-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 3px rgba(127, 211, 166, 0.2);
}

.network-destination.is-demo {
  color: var(--foam);
}

.network-destination.is-demo .network-badge {
  border-color: var(--line);
  color: var(--muted);
}

.network-destination.is-here {
  border-color: rgba(201, 165, 92, 0.55);
  background: rgba(201, 165, 92, 0.07);
  color: var(--whitewash);
}

.network-destination.is-here .network-badge {
  border-color: rgba(201, 165, 92, 0.5);
  color: var(--gold-bright);
}

.network-destination.is-soon {
  color: var(--muted);
  border-style: dashed;
  opacity: 0.65;
}

.network-destination.is-soon .network-badge {
  border-color: var(--line-soft);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Acquisition strip (pre-footer)
   -------------------------------------------------------------------------- */

.acquisition-strip {
  border-top: 1px solid rgba(239, 90, 139, 0.3);
  background: rgba(239, 90, 139, 0.06);
}

.acquisition-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
  padding: 26px 0;
}

.acquisition-strip p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--whitewash);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
}

.acquisition-strip .button {
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #070d18;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(max-content, 0.32fr);
  gap: 3rem;
  align-items: start;
  padding: 48px 0 40px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--whitewash);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-brand-group p {
  max-width: 520px;
}

.footer-network-line {
  margin-bottom: 6px;
  color: var(--gold) !important;
  font-size: 0.84rem !important;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-links a,
.footer-links button {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--whitewash);
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-credit {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-credit:hover {
  color: var(--gold-bright);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: -1.5rem 0 0;
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 36px), 980px);
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(12, 20, 36, 0.98);
  box-shadow: var(--shadow);
  color: var(--foam);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
}

.cookie-banner p {
  max-width: 620px;
  margin: 0;
  color: rgba(199, 205, 218, 0.85);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 11px 18px;
}

.cookie-banner .button-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: none;
}

.cookie-banner .button-primary:hover {
  background: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   Modals
   -------------------------------------------------------------------------- */

.info-modal {
  width: min(calc(100% - 32px), 560px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--foam);
}

.info-modal::backdrop {
  background: rgba(3, 7, 15, 0.72);
}

.modal-content {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #131f37;
  box-shadow: var(--shadow);
}

.modal-content h2 {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

.modal-content a {
  color: var(--gold-bright);
  font-weight: 600;
}

.modal-close {
  float: right;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--whitewash);
  font-size: 0.8rem;
  font-weight: 600;
}

.modal-close:hover {
  border-color: var(--whitewash);
}

/* --------------------------------------------------------------------------
   Focus & accessibility
   -------------------------------------------------------------------------- */

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.network-panel :focus-visible,
.cookie-banner :focus-visible {
  outline-color: var(--gold-bright);
}

/* --------------------------------------------------------------------------
   Error page (404)
   -------------------------------------------------------------------------- */

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.error-shell {
  width: min(calc(100% - 32px), 680px);
  padding: 56px 0;
}

.error-shell h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 5.4rem);
}

.error-shell p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

/* --------------------------------------------------------------------------
   Policy pages
   -------------------------------------------------------------------------- */

.legal-nav {
  margin-left: auto;
}

.policy-page {
  padding: 72px 0;
}

.policy-hero {
  max-width: 820px;
  margin: 0 auto 28px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.policy-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.policy-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-updated {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.08);
  color: var(--whitewash);
  font-size: 0.8rem;
  font-weight: 600;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.policy-content section + section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.policy-content h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: clamp(1.14rem, 2.4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

.policy-content p,
.policy-content li {
  color: #b6bdcd;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.policy-content li + li {
  margin-top: 10px;
}

.policy-content a {
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   FAQ page
   -------------------------------------------------------------------------- */

.faq-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 600;
}

.faq-back:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-content {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding: clamp(22px, 3.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.faq-item h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

.faq-item p {
  margin-bottom: 0;
  color: #b6bdcd;
}

.faq-item p + p {
  margin-top: 12px;
}

.faq-cta-line {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 981px) and (max-width: 1180px) {
  .questions-experience,
  .question-grid,
  .steps-grid,
  .tour-grid,
  .concierge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .answer-preview {
    position: relative;
    top: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 999px;
    overflow: visible;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--card);
    color: var(--whitewash);
  }

  .menu-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #101b32;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
    visibility: hidden;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 11px 13px;
    border-radius: var(--radius-small);
  }

  .mobile-social-link {
    display: flex;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-left: 0;
  }

  .language-toggle {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    padding: 6px;
  }

  .language-toggle button {
    flex: 1;
  }

  .hero,
  .split-heading,
  .partners-panel,
  .network-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero::after,
  .hero-scene {
    display: none;
  }

  .chat-card {
    align-self: auto;
    margin-top: 0;
  }

  .questions-experience {
    grid-template-columns: 1fr;
  }

  .question-grid,
  .tour-grid,
  .concierge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .answer-preview {
    position: relative;
    top: auto;
  }

  .partners-panel .button {
    width: fit-content;
  }

  .partner-actions {
    justify-items: start;
  }

  .network-destinations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: stretch;
  }

  .network-destination {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem 2.5rem;
  }

  .footer-links {
    grid-column: 1;
  }

  .footer-copyright {
    margin-top: 0;
  }

  .legal-page .site-header {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .legal-page .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    margin-left: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .legal-page .legal-nav a {
    min-height: 36px;
    padding: 8px 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    gap: 28px;
    padding: 30px 0 36px;
  }

  .hero h1::after {
    margin-top: 14px;
  }

  .hero-subtitle {
    margin-bottom: 16px;
    font-size: 1.02rem;
  }

  .hero-value-strip {
    width: 100%;
    margin-bottom: 16px;
    padding: 0.75rem 1rem;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    font-size: 0.93rem;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    width: min(calc(100% - 20px), 1220px);
    margin-top: 10px;
  }

  .site-logo img {
    height: 40px;
    max-width: 220px;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  .hero,
  .questions-section,
  .how-section,
  .tours-section,
  .concierge-section,
  .partners-section,
  .network-section {
    padding: 48px 0;
  }

  .network-section {
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(2.3rem, 9vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
  }

  .chat-card {
    padding: 18px;
    border-radius: 20px;
  }

  .chat-card::before {
    inset: 8px;
    border-radius: 14px;
  }

  .chat-thread.chat-box {
    max-height: min(390px, 52vh);
  }

  .input-area {
    border-radius: 22px;
  }

  .chat-language-note {
    display: flex;
    width: 100%;
    border-radius: var(--radius-small);
  }

  .question-card {
    min-height: 76px;
    padding: 15px 36px 15px 15px;
  }

  .answer-preview,
  .step-card,
  .tour-card,
  .concierge-card,
  .partners-panel,
  .network-panel {
    border-radius: 16px;
  }

  .questions-experience,
  .question-grid,
  .steps-grid,
  .tour-grid,
  .concierge-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .concierge-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .network-destinations {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: row;
    gap: 0.75rem 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .footer-links,
  .footer-copyright {
    grid-column: auto;
    grid-row: auto;
  }

  .cookie-banner,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 420px) {
  .site-logo img {
    height: 36px;
    max-width: 190px;
  }

  h1 {
    margin-bottom: 18px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex-basis: 100%;
    width: 100%;
  }

  .network-destination {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
  }

  .network-badge {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .status-dot::after,
  .preview-status-dot::after {
    animation: none !important;
  }
}
