/* Fonts loaded via <link> in HTML for non-blocking render */

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════ */
:root {
  /* Colors */
  --cream:       #f5f3ed;
  --paper:       #ffffff;
  --forest:      #1d302a;
  --forest-soft: #466257;
  --ink:         #17231f;
  --muted:       #6b7470;
  --line:        #e7e7df;
  --mist:        #eef0ea;
  --shadow:      0 28px 80px rgba(29,48,42,.12);
  --radius:      16px;

  /* Typography */
  --font-sans:    'DM Sans', 'Avenir Next', Avenir, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --text-xs:   10.5px;
  --text-sm:   13px;
  --text-base: clamp(15px, 1.06vw, 17px);
  --text-lg:   clamp(17px, 1.3vw, 19px);

  --head-xl: clamp(48px, 5.8vw, 76px);
  --head-lg: clamp(36px, 4.4vw, 58px);
  --head-md: clamp(28px, 3vw, 40px);
  --head-sm: clamp(20px, 1.8vw, 26px);
  --head-xs: clamp(17px, 1.4vw, 20px);

  /* Spacing scale */
  --sp-1:  clamp(6px,  0.5vw,  8px);
  --sp-2:  clamp(10px, 0.9vw,  14px);
  --sp-3:  clamp(14px, 1.2vw,  18px);
  --sp-4:  clamp(20px, 1.8vw,  28px);
  --sp-5:  clamp(28px, 2.8vw,  40px);
  --sp-6:  clamp(40px, 4vw,    56px);
  --sp-7:  clamp(52px, 5.5vw,  72px);
  --sp-8:  clamp(64px, 7vw,    88px);
  --sp-9:  clamp(80px, 9vw,   108px);
  --sp-10: clamp(96px,11vw,   130px);

  background:  var(--cream);
  color:       var(--ink);
  font-family: var(--font-sans);
  font-size:   16px;
  scroll-behavior: smooth;
}

/* ═══════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.82), transparent 34%),
    linear-gradient(90deg, rgba(29,48,42,.04), transparent 18%, transparent 82%, rgba(29,48,42,.04)),
    var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, summary, select { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
h1,h2,h3,h4,p { margin-top: 0; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

p { text-wrap: pretty; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════
   LAYOUT CONTAINERS
   ═══════════════════════════════════════════════════ */
.page-shell {
  width: min(1180px, calc(100% - clamp(24px, 5vw, 40px)));
  margin: 0 auto;
}

/* Sections outside page-shell */
.why-section,
.testimonials-section,
.faq-section,
.contact-panel,
.site-footer {
  width: min(1180px, calc(100% - clamp(24px, 5vw, 40px)));
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  display: grid;
  grid-template-columns: minmax(0,200px) minmax(0,1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 16px 28px;
  margin-bottom: 0;
  border: 1px solid rgba(231,231,223,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 50px rgba(29,48,42,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Sticky nav shell — shared by homepage and destination page */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: rgba(245,243,237,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-shell-inner {
  width: min(1180px, calc(100% - clamp(24px, 5vw, 40px)));
  margin: 0 auto;
  padding: 10px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 200px;
  color: var(--forest);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  max-height: 44px;
  object-fit: contain;
  /* aspect-ratio prevents layout shift on bfcache restore */
  aspect-ratio: 1916 / 821;
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px,3vw,34px);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links a { white-space: nowrap; }

.nav-links a.nav-active {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}


.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
}

.language-toggle button {
  min-width: 34px; height: 30px;
  border: 0; border-radius: 999px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.language-toggle button.active {
  background: var(--forest);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px; height: 2px;
  background: var(--forest);
}

/* ═══════════════════════════════════════════════════
   KICKERS & TYPOGRAPHIC UTILITIES
   ═══════════════════════════════════════════════════ */
.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow        { color: rgba(255,255,255,.8); }
.section-kicker { color: var(--forest-soft); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(520px,72svh,680px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--forest);
  box-shadow: 0 28px 80px rgba(29,48,42,.14);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: 18/11;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29,48,42,.10), rgba(29,48,42,.52)),
    linear-gradient(90deg, rgba(29,48,42,.22), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: clamp(520px,72svh,680px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-5) 120px;
  color: var(--paper);
  text-align: center;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: var(--head-xl);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.hero-pills {
  max-width: min(100%, 720px);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: var(--sp-4);
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--forest);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.hero-pills a {
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-pills em { font-style: normal; }

.hero-pills span {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mist);
  font-size: 13px;
}

.hero-logos {
  position: absolute;
  left: 40px; right: 40px; bottom: var(--sp-4);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(18px,5vw,58px);
  color: rgba(255,255,255,.72);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-logos span { min-width: 0; }

/* ═══════════════════════════════════════════════════
   PROOF STRIP
   ═══════════════════════════════════════════════════ */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  margin-top: var(--sp-3);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.proof-strip div {
  padding: var(--sp-4) var(--sp-3);
  background: rgba(255,255,255,.72);
}

.proof-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--forest);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   INTRO GRID  (3 cols: copy | feature-card | filter)
   ═══════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px,.86fr) minmax(250px,.86fr) minmax(230px,.62fr);
  gap: clamp(18px,3vw,24px);
  padding: var(--sp-8) clamp(18px,4vw,38px) 0;
}

/* Lazy-load performance */
.planning-flow,
.why-section, .faq-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.intro-copy { padding-top: var(--sp-3); }

.intro-copy h2 { margin-bottom: var(--sp-4); }

.section-heading {
  color: var(--forest);
  font-size: var(--head-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.body-copy {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.72;
}

.intro-copy p:not(.section-kicker),
.why-section p,
.contact-copy p,
.flow-heading p:not(.section-kicker),
.board-note p {
  color: var(--muted);
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════
   CARDS  (feature + destination)
   ═══════════════════════════════════════════════════ */
.feature-card,
.destination-card {
  position: relative;
  min-height: 310px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px;
  background: var(--forest);
  color: var(--paper);
}

.feature-card.tall { min-height: 390px; }

.feature-card img,
.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.feature-card:hover img,
.destination-card:hover img { transform: scale(1.04); }

/* Deep gradient from bottom — clean text readability */
.feature-card::after,
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,18,.92) 0%,
    rgba(10,22,18,.55) 36%,
    rgba(10,22,18,.10) 65%,
    transparent 100%
  );
}

/* Feature card badge + destination card badge */
.feature-card span,
.destination-card span {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--forest);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card h3, .feature-card small,
.destination-card h3, .destination-card small {
  position: absolute;
  z-index: 2;
  left: 22px; right: 22px;
}

.feature-card h3,
.destination-card h3 {
  bottom: 36px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(20px,2vw,26px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.feature-card small,
.destination-card small {
  bottom: 17px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Multi-select checkbox pills ─────────────────────── */
.multi-select-group { display: grid; gap: 10px; margin-top: 2px; }
.multi-select-label { margin: 0; color: var(--muted); font-family: var(--font-sans); font-size: 13px; font-weight: 500; }
.multi-hint { color: var(--muted); font-size: 11.5px; font-weight: 400; opacity: .7; }
.multi-select-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ms-pill { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.ms-pill input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.ms-pill span {
  display: inline-flex; align-items: center;
  min-height: 34px; padding: 0 14px;
  border: 1.5px solid var(--line); border-radius: 999px;
  color: var(--forest); font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em;
  transition: background 140ms, border-color 140ms, color 140ms;
  user-select: none;
}
.ms-pill input[type="checkbox"]:checked + span {
  background: var(--forest); border-color: var(--forest); color: var(--paper);
}
.ms-pill:hover span { background: var(--mist); }

/* ── Filter hidden ───────────────────────────────────── */

/* ═══════════════════════════════════════════════════
   EXPERIENCE FILTER
   ═══════════════════════════════════════════════════ */
.experience-filter {
  align-self: start;
  display: grid;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  position: relative;
  z-index: 2;
}

.area-search {
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfbf8;
}

.area-search label {
  display: block;
  margin-bottom: var(--sp-2);
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-control {
  display: grid;
  grid-template-columns: minmax(0,1fr) 40px;
  gap: 8px;
  align-items: center;
}

.area-control select {
  min-width: 0;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.area-control a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-weight: 700;
}

.experience-filter h3 {
  margin: 0;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-family: var(--font-display);
  font-size: var(--head-xs);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.filter-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.filter-pills .active {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

.filter-pills span:not(.active):hover {
  background: var(--mist);
}

/* ═══════════════════════════════════════════════════
   DESTINATION BOARD  (7 cards + note)
   ═══════════════════════════════════════════════════ */
.destination-board {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(14px,2vw,20px);
  padding: var(--sp-4) clamp(18px,4vw,38px) var(--sp-8);
}

.destination-card { min-height: 300px; display: block; text-decoration: none; color: inherit; }
.destination-card.is-hidden { display: none !important; }

.board-note {
  grid-column: 1 / -1;   /* always full width — 6 cards fill the 3×2 grid cleanly */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.6);
}

.board-note p {
  margin: 0;
  font-size: var(--text-base);
  color: var(--muted);
}

.board-note a {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 150ms, color 150ms;
}

.board-note a:hover {
  background: var(--forest);
  color: var(--paper);
}

/* ═══════════════════════════════════════════════════
   PLANNING FLOW
   ═══════════════════════════════════════════════════ */
.planning-flow {
  padding: var(--sp-8) clamp(18px,4vw,38px) var(--sp-9);
}

.flow-heading {
  display: grid;
  grid-template-columns: minmax(260px,.9fr) minmax(280px,1fr);
  gap: clamp(20px,4vw,56px);
  align-items: end;
  margin-bottom: var(--sp-6);
}

.flow-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: var(--head-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.flow-heading p:not(.section-kicker) { margin: 0; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(10px,1.5vw,16px);
}

.flow-grid article {
  padding: var(--sp-4) var(--sp-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-bottom: var(--sp-3);
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.flow-grid h3 {
  margin-bottom: var(--sp-2);
  color: var(--forest);
  font-size: var(--head-xs);
  font-weight: 600;
  line-height: 1.2;
}

.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════════════════ */
.why-section {
  padding: var(--sp-9) 0;
}

.why-inner {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: clamp(34px,7vw,84px);
}

.why-title {
  position: sticky;
  top: calc(var(--sp-9) + 12px); /* clear sticky nav ~92px */
  align-self: start;
}

.why-title h2 {
  margin-bottom: var(--sp-4);
  color: var(--forest);
  font-size: var(--head-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.timeline {
  position: relative;
  display: grid;
  gap: var(--sp-6);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px; bottom: 30px;
  left: 50%;
  width: 1px;
  background: var(--forest-soft);
  opacity: 0.35;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.timeline article::after {
  content: "";
  position: absolute;
  left: calc(50% - 5px);
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--forest-soft);
  box-shadow: 0 0 0 7px var(--cream);
}

.timeline article:nth-child(even) img { grid-column: 2; }
.timeline article:nth-child(even) div { grid-column: 1; grid-row: 1; }

.timeline img {
  height: 160px;
  aspect-ratio: 3/2;
  border-radius: 10px;
  object-fit: cover;
}

.timeline h3 {
  margin-bottom: var(--sp-2);
  color: var(--forest);
  font-size: var(--head-sm);
  font-weight: 600;
  line-height: 1.15;
}

.timeline p { margin: 0; color: var(--muted); }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--sp-9) 0 var(--sp-8);
}

.testimonials-inner > h2 {
  margin-bottom: var(--sp-6);
  color: var(--forest);
  font-size: var(--head-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(14px,2.5vw,22px);
}

.testimonial-card {
  margin: 0;
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  display: grid;
  gap: var(--sp-3);
  align-content: start;
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(16px,1.2vw,19px);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong {
  color: var(--forest);
  font-size: var(--text-sm);
  font-weight: 600;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 12.5px;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq-section {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: clamp(26px,6vw,72px);
  align-items: start;
  padding: var(--sp-8) 0 var(--sp-9);
}

.faq-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: var(--head-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.faq-list { display: grid; gap: 10px; }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  color: var(--forest);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 300;
  opacity: 0.6;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list p {
  margin: 0;
  padding: 0 20px var(--sp-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   CONTACT PANEL
   ═══════════════════════════════════════════════════ */
.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-6);
  margin-bottom: var(--sp-9);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-bottom: var(--sp-3);
  color: var(--forest);
  font-size: var(--head-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.inquiry-form { display: grid; gap: var(--sp-3); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: var(--sp-3);
}

input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfbf8;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.35;
  outline: none;
  transition: border-color 150ms;
}

textarea {
  min-height: 116px;
  border-radius: 18px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--forest-soft);
  background: var(--paper);
}

.inquiry-form button {
  width: fit-content;
  min-height: 50px;
  padding: 0 var(--sp-5);
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 150ms;
}

.inquiry-form button:hover { opacity: .88; }

.form-success {
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   FOOTER — Professional 4-column layout
   ═══════════════════════════════════════════════════ */
.site-footer {
  margin-top: var(--sp-9);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: var(--sp-7);
}

.footer-brand-col {}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--sp-3);
}

.footer-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  aspect-ratio: 1916 / 821;
}

.footer-tagline {
  display: block;
  margin-bottom: var(--sp-3);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  max-width: 22ch;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.footer-contact-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-item a:hover { color: var(--forest); }

.footer-col-title {
  display: block;
  margin-bottom: var(--sp-3);
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--forest); }

.footer-event-item {
  margin-bottom: 10px;
}

.footer-event-name {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-event-meta {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-3);
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 150ms;
}
.footer-bottom-links a:hover { color: var(--forest); }

/* Footer responsive */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding-top: var(--sp-6); padding-bottom: var(--sp-6); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  right: 22px; bottom: 28px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--forest);
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(29,48,42,.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms, transform 180ms;
}

.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════
   980px — TABLET LANDSCAPE
   ═══════════════════════════════════════════════════ */
@media (max-width: 980px) {
  :root {
    --head-xl: clamp(42px,7vw,60px);
    --head-lg: clamp(34px,5.5vw,48px);
    --head-sm: 22px;
    --head-xs: 18px;
  }

  .page-shell,
  .why-section,
  .testimonials-section,
  .faq-section,
  .contact-panel,
  .site-footer {
    width: min(100% - 24px, 760px);
  }

  /* page-shell margin-top removed — nav now in nav-shell */

  /* Header */
  .site-header {
    display: flex;
    margin-bottom: 0;
    padding: 10px 14px;
  }

  .brand { flex: 1 1 auto; }
  .language-toggle { flex: 0 0 auto; order: 2; }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    order: 3;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--header-h, 72px) + 8px);
    left: 16px; right: 16px;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .nav-links a:last-child { border-bottom: 0; }

  /* Hero */
  .hero, .hero-content { min-height: clamp(480px,70svh,600px); }

  /* Intro grid → 2 cols (copy + card), filter spans full width */
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: var(--sp-7);
  }

  .intro-grid .experience-filter { grid-column: 1 / -1; padding-top: 0; }

  /* Destination board → 2 cols, board-note full width */
  .destination-board { grid-template-columns: repeat(2,1fr); }
  .board-note {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  /* Proof strip → 2 cols */
  .proof-strip { grid-template-columns: repeat(2,1fr); }

  /* Planning flow */
  .flow-heading { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }

  /* Why */
  .why-inner { grid-template-columns: 1fr; }
  .why-title { position: static; }

  .timeline::before,
  .timeline article::after { display: none; }

  .timeline article,
  .timeline article:nth-child(even) {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .timeline article:nth-child(even) img,
  .timeline article:nth-child(even) div { grid-column: auto; grid-row: auto; }

  /* Testimonials → 2 cols */
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }

  /* FAQ → 1 col */
  .faq-section { grid-template-columns: 1fr; gap: var(--sp-4); }

  /* Contact → 1 col */
  .contact-panel { grid-template-columns: 1fr; }

  /* Cards */
  .feature-card.tall, .feature-card, .destination-card {
    min-height: clamp(260px,46vw,380px);
  }
}

/* ═══════════════════════════════════════════════════
   720px — TABLET PORTRAIT
   ═══════════════════════════════════════════════════ */
@media (max-width: 720px) {
  :root {
    --head-xl: clamp(38px,8.5vw,48px);
    --head-lg: clamp(30px,7vw,38px);
  }

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

/* ═══════════════════════════════════════════════════
   640px — MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --head-xl: clamp(34px,9.4vw,42px);
    --head-lg: clamp(30px,8.5vw,36px);
    --head-sm: 20px;
    --head-xs: 17px;
  }

  body { background: var(--cream); }

  .page-shell,
  .why-section,
  .testimonials-section,
  .faq-section,
  .contact-panel,
  .site-footer { width: calc(100% - 20px); }
  .nav-shell-inner { width: calc(100% - 20px); padding: 8px 0 10px; }

  /* Header */
  .site-header { min-height: 60px; gap: 8px; padding: 10px 14px; }
  .brand-logo { height: 34px; max-width: 180px; max-height: 38px; }

  /* Hero */
  .hero, .hero-content { min-height: clamp(440px,65svh,540px); }
  .hero { border-radius: 20px; }
  .hero-content { padding: var(--sp-7) var(--sp-4) 124px; }

  .hero-pills {
    width: 100%;
    border-radius: 18px;
    padding: 5px;
    margin-top: var(--sp-4);
  }

  .hero-pills a {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    font-size: 12px;
  }

  .hero-logos {
    left: 16px; right: 16px; bottom: 16px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 6px;
    font-size: 8.5px;
    text-align: center;
  }

  .hero-logos span {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.88);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(10px);
  }

  .hero-logos span:nth-child(5) { grid-column: 1 / -1; }

  /* Proof strip → 2 cols */
  .proof-strip { margin-top: var(--sp-3); grid-template-columns: repeat(2,1fr); border-radius: 16px; }
  .proof-strip div { padding: var(--sp-3); }

  /* Intro grid → 1 col */
  .intro-grid {
    grid-template-columns: 1fr;
    padding-top: var(--sp-6);
  }

  .intro-grid .experience-filter { grid-column: auto; padding-top: 0; }
  .intro-copy { padding-top: 0; }

  /* Destination board → 1 col */
  .destination-board { grid-template-columns: 1fr; }
  .board-note {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .destination-card { min-height: clamp(220px,56vw,300px); }

  /* Planning flow */
  .flow-heading { margin-bottom: var(--sp-4); }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-grid article { padding: var(--sp-4) var(--sp-3); }

  /* Why */
  .why-section { padding: var(--sp-7) 0; }
  .timeline { gap: var(--sp-5); }
  .timeline img { height: clamp(180px,52vw,260px); }

  /* Testimonials → 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-section { padding-top: var(--sp-6); padding-bottom: var(--sp-7); }
  .faq-list summary { min-height: 54px; padding: 0 16px; font-size: 14px; }
  .faq-list p { padding: 0 16px var(--sp-3); }

  /* Contact */
  .contact-panel { padding: var(--sp-4); gap: var(--sp-4); margin-bottom: var(--sp-7); }
  .form-grid { grid-template-columns: 1fr; }
  input, select, textarea, .inquiry-form button { font-size: 16px; }
  .inquiry-form button { width: 100%; justify-content: center; }
  .multi-select-pills { gap: 6px; }
  .ms-pill span { font-size: 12px; padding: 0 11px; min-height: 32px; }

  /* Footer responsive handled in new footer CSS above */

  .scroll-top { right: 16px; bottom: 22px; }
}

/* ═══════════════════════════════════════════════════
   480px — PROOF STRIP + TESTIMONIALS COLLAPSE
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .proof-strip      { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   420px — SMALL MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 420px) {
  :root {
    --head-xl: clamp(32px,9.4vw,38px);
    --head-lg: clamp(28px,8.4vw,34px);
    --head-sm: 19px;
    --head-xs: 16px;
  }

  .page-shell,
  .why-section,
  .testimonials-section,
  .faq-section,
  .contact-panel,
  .site-footer { width: calc(100% - 16px); }

  .site-header { padding: 8px; }
  .brand { flex: 1 1 44px; }
  .brand-logo { height: 30px; max-width: 160px; max-height: 34px; }
  .language-toggle button { min-width: 38px; height: 32px; }
  .hero-content { padding-bottom: 128px; }
  .hero, .hero-content { min-height: clamp(420px,63svh,510px); }
}

/* ═══════════════════════════════════════════════════
   360px — VERY SMALL MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 360px) {
  :root {
    --head-xl: 31px;
    --head-lg: 28px;
  }

  .page-shell,
  .why-section,
  .testimonials-section,
  .faq-section,
  .contact-panel,
  .site-footer { width: calc(100% - 12px); }
}

/* ═══════════════════════════════════════════════════
   LANDSCAPE SHORT — mobile in landscape
   ═══════════════════════════════════════════════════ */
@media (max-height: 620px) and (max-width: 760px) {
  .hero, .hero-content { min-height: 500px; }
  .hero-content { justify-content: center; padding-top: 38px; padding-bottom: 84px; }
  .hero-logos { display: none; }
}
