@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
/* =====================================================================
   Black Willow — Design System
   Palette: charcoal · ivory · willow green · brass  (brand plan §4.4)
   Type: Fraunces (display serif) · Inter (UI/body sans), self-hosted
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-600-normal.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-500-normal.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter-600-normal.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --charcoal: #191917;
  --ink: #26251f;
  --ink-soft: #4c4a40;
  --ivory: #f7f4ec;
  --bone: #efeae0;
  --sand: #e6dfd0;
  --willow: #5f7455;
  --willow-deep: #42523b;
  --willow-pale: #8fa482;
  --brass: #a98a4a;
  --brass-deep: #8a6f38;
  --brass-light: #c6ac72;
  --brand-red: #e01e26;
  --white: #fffdf8;
  --danger: #8a4030;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.44rem);
  --step-2: clamp(1.44rem, 1.3rem + 0.7vw, 1.85rem);
  --step-3: clamp(1.73rem, 1.5rem + 1.15vw, 2.44rem);
  --step-4: clamp(2.07rem, 1.7rem + 1.85vw, 3.2rem);
  --step-5: clamp(2.49rem, 1.9rem + 2.95vw, 4.2rem);

  --space-1: 0.5rem; --space-2: 1rem; --space-3: 1.5rem;
  --space-4: 2.5rem; --space-5: 4rem;  --space-6: 6.5rem;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 24px rgba(25, 25, 23, 0.09);
  --shadow-lift: 0 10px 40px rgba(25, 25, 23, 0.16);
  --maxw: 1180px;
  --maxw-prose: 46rem;
  --header-h: 4.5rem;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); letter-spacing: -0.015em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 var(--space-2); }
a { color: var(--willow-deep); text-decoration-color: rgba(95, 116, 85, 0.4); text-underline-offset: 3px; }
a:hover { color: var(--brass-deep); }
ul, ol { padding-left: 1.3rem; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--willow); color: var(--ivory); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--charcoal); color: var(--ivory); padding: 0.7rem 1.2rem;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.prose { max-width: var(--maxw-prose); }
.section { padding: var(--space-5) 0; }
.section--tight { padding: var(--space-4) 0; }
.section--dark { background: var(--charcoal); color: var(--bone); }
.section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark a { color: var(--brass-light); }
.section--bone { background: var(--bone); }
.grid { display: grid; gap: var(--space-3); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-deep);
  display: block; margin-bottom: 0.8rem;
}
.section--dark .eyebrow { color: var(--brass-light); }
.lede { font-size: var(--step-1); font-family: var(--font-display); font-weight: 400; color: var(--ink-soft); line-height: 1.45; }
.section--dark .lede { color: var(--sand); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(25, 25, 23, 0.08);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--charcoal); }
.brand .brand-logo { height: 3rem; width: auto; display: block; }
@media (max-width: 480px) { .brand .brand-logo { height: 2.5rem; } }
/* Fallback text lockup if the logo image is unavailable */
.brand svg { width: 2.1rem; height: 2.1rem; color: var(--willow-deep); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: 0.01em; }
.brand-tag { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep); margin-top: 2px; }
.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.6rem); }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.94rem;
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--willow-deep); border-bottom-color: var(--brass); }
.site-nav .nav-cta {
  background: var(--charcoal); color: var(--ivory); padding: 0.55rem 1.1rem;
  border-radius: var(--radius); border-bottom: none; font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--willow-deep); color: var(--ivory); }
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(25,25,23,0.25); border-radius: var(--radius);
  padding: 0.5rem 0.65rem; cursor: pointer; color: var(--charcoal);
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid rgba(25,25,23,0.1);
    padding: 0.5rem 1.2rem 1.2rem;
    box-shadow: var(--shadow-lift);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.85rem 0.3rem; border-bottom: 1px solid rgba(25,25,23,0.07); font-size: 1.05rem; }
  .site-nav .nav-cta { margin-top: 0.8rem; text-align: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--ivory); background: var(--charcoal); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
/* video sits above the poster/fallback image once it can play */
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-fallback { position: absolute; inset: 0; }
/* if the browser can't play the video, poster still shows; on reduced-motion, pause to the still image */
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25,25,23,0.35) 0%, rgba(25,25,23,0.25) 45%, rgba(25,25,23,0.72) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 16vh, 9rem) clamp(1.1rem, 4vw, 2rem) clamp(3rem, 9vh, 5rem);
}
.hero h1 { color: var(--white); max-width: 17ch; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero .lede { color: rgba(247,244,236,0.92); max-width: 44ch; text-shadow: 0 1px 16px rgba(0,0,0,0.4); }
.hero--page { min-height: 46vh; display: flex; align-items: flex-end; }
.hero--page h1 { font-size: var(--step-4); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--charcoal); color: var(--sand); border-top: 1px solid rgba(198,172,114,0.25); }
.trust-bar .wrap {
  display: flex; flex-wrap: wrap; gap: 0.4rem 2.2rem; align-items: center; justify-content: center;
  padding-top: 0.85rem; padding-bottom: 0.85rem; font-size: 0.86rem; letter-spacing: 0.04em;
}
.trust-bar strong { color: var(--brass-light); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.7rem; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center; line-height: 1.3;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--charcoal); color: var(--ivory); }
.btn-primary:hover { background: var(--willow-deep); color: var(--ivory); }
.btn-brass { background: var(--brass); color: var(--charcoal); }
.btn-brass:hover { background: var(--brass-light); color: var(--charcoal); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: rgba(25,25,23,0.4); }
.btn-outline:hover { border-color: var(--brass-deep); color: var(--brass-deep); }
.btn-outline-light { background: transparent; color: var(--ivory); border-color: rgba(247,244,236,0.6); }
.btn-outline-light:hover { border-color: var(--brass-light); color: var(--brass-light); }
.btn-whatsapp { background: #1faa59; color: #fff; }
.btn-whatsapp:hover { background: #178c49; color: #fff; }
.cta-pair { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--space-3); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: var(--space-3); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-body h3 a { text-decoration: none; color: var(--charcoal); }
.card-body h3 a:hover { color: var(--willow-deep); }
.card-body h3 a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card-meta { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-deep); }
.card-price { margin-top: auto; padding-top: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.card-price strong { color: var(--charcoal); font-size: 1.05rem; }

/* ---------- Review cards ---------- */
.reviews-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(88%, 24rem);
  gap: var(--space-3); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0.2rem 1.2rem; scrollbar-width: thin;
}
.review-card {
  scroll-snap-align: start; background: var(--white); border-radius: var(--radius-lg);
  padding: var(--space-3); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.7rem;
}
.review-stars { color: var(--brass); letter-spacing: 0.15em; font-size: 0.95rem; }
.review-text { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; line-height: 1.5; color: var(--ink); flex: 1; }
.review-name { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.review-name span { display: block; font-weight: 400; color: var(--ink-soft); opacity: 0.8; }

/* ---------- Badges & pills ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1px solid rgba(169,138,74,0.45); color: var(--ink-soft);
  border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.8rem; font-weight: 500;
  background: rgba(255,253,248,0.6);
}
.section--dark .badge { color: var(--sand); background: transparent; }
.pill {
  display: inline-block; background: var(--bone); border-radius: 999px;
  padding: 0.25rem 0.8rem; font-size: 0.8rem; font-weight: 500; color: var(--ink-soft);
}

/* ---------- Facts table / when-to-go ---------- */
.facts { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.facts th, .facts td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid rgba(25,25,23,0.1); vertical-align: top; }
.facts th { font-weight: 600; color: var(--charcoal); white-space: nowrap; width: 11rem; }
.table-scroll { overflow-x: auto; }
.table-scroll table { min-width: 34rem; }
table.compare { width: 100%; border-collapse: collapse; font-size: 0.93rem; background: var(--white); border-radius: var(--radius); overflow: hidden; }
table.compare th { background: var(--charcoal); color: var(--ivory); text-align: left; padding: 0.75rem 0.9rem; font-weight: 600; }
table.compare td { padding: 0.7rem 0.9rem; border-bottom: 1px solid rgba(25,25,23,0.08); }
table.compare tr:nth-child(even) td { background: rgba(239,234,224,0.5); }

.month-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); gap: 0.5rem; }
.month {
  text-align: center; padding: 0.55rem 0.2rem; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600; background: var(--bone); color: var(--ink-soft);
  border: 1px solid transparent;
}
.month--best { background: var(--willow); color: var(--ivory); }
.month--good { background: var(--willow-pale); color: var(--charcoal); }
.month--wet { background: var(--sand); color: var(--ink-soft); font-weight: 400; }
.month small { display: block; font-weight: 400; font-size: 0.68rem; opacity: 0.85; }
.month-legend { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.7rem; }
.month-legend i { display: inline-block; width: 0.85rem; height: 0.85rem; border-radius: 3px; margin-right: 0.35rem; vertical-align: -2px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--ink-soft); padding: 0.9rem 0 0; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breadcrumbs li + li::before { content: "·"; margin-right: 0.35rem; color: var(--brass); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brass-deep); }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 0; margin-bottom: 0.8rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem; color: var(--charcoal);
  padding: 1.05rem 1.3rem; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); color: var(--brass); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* ---------- Itinerary day cards ---------- */
.day-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.day-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: var(--space-3); border-left: 4px solid var(--willow);
}
.day-card .day-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-deep); }
.day-card h3, .day-card h4 { margin: 0.25rem 0 0.4rem; font-size: 1.15rem; }
.day-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.day-card .day-lodge { margin-top: 0.55rem; font-size: 0.85rem; color: var(--willow-deep); font-weight: 500; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: var(--space-2); }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.field .hint { font-size: 0.8rem; color: var(--willow-deep); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  font: inherit; color: var(--ink); background: var(--white);
  border: 1px solid rgba(25,25,23,0.25); border-radius: var(--radius);
  padding: 0.75rem 0.9rem; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; border-color: var(--brass); }
.hp-field { position: absolute; left: -5000px; opacity: 0; pointer-events: none; }

/* ---------- Builder ---------- */
.builder-shell { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); padding: clamp(1.3rem, 4vw, 2.5rem); }
.builder-progress { display: flex; gap: 0.4rem; margin-bottom: var(--space-3); }
.builder-progress span { flex: 1; height: 4px; border-radius: 2px; background: var(--sand); }
.builder-progress span.done { background: var(--willow); }
.builder-progress span.now { background: var(--brass); }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  border: 1.5px solid rgba(25,25,23,0.2); background: var(--white); color: var(--ink);
  border-radius: 999px; padding: 0.6rem 1.15rem; font: inherit; font-size: 0.94rem; font-weight: 500;
  cursor: pointer; transition: all 0.15s ease;
}
.chip:hover { border-color: var(--willow); color: var(--willow-deep); }
.chip[aria-pressed="true"] { background: var(--willow-deep); border-color: var(--willow-deep); color: var(--ivory); }
.builder-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: var(--space-3); }
.builder-answers { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--space-2); }
.builder-answers button {
  background: var(--bone); border: none; border-radius: 999px; padding: 0.35rem 0.9rem;
  font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); cursor: pointer;
}
.builder-answers button:hover { background: var(--sand); color: var(--charcoal); }
.builder-answers button::after { content: " ✎"; color: var(--brass-deep); }

.skeleton { border-radius: var(--radius); background: linear-gradient(100deg, var(--bone) 40%, var(--sand) 50%, var(--bone) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite linear; }
@keyframes shimmer { to { background-position: -200% 0; } }
.skeleton-line { height: 0.95rem; margin-bottom: 0.65rem; }
.type-cursor::after { content: "▍"; color: var(--brass); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.itinerary-summary {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; padding: 1rem 1.2rem;
  background: var(--bone); border-radius: var(--radius); margin-bottom: var(--space-3);
  font-size: 0.92rem;
}
.itinerary-summary strong { color: var(--charcoal); }
.draft-note { font-size: 0.85rem; color: var(--ink-soft); border-left: 3px solid var(--brass); padding-left: 0.9rem; margin-top: var(--space-3); }

/* ---------- Concierge chat ---------- */
.chat-fab {
  position: fixed; right: 1.1rem; bottom: 5.4rem; z-index: 90;
  width: 3.4rem; height: 3.4rem; border-radius: 50%; border: none; cursor: pointer;
  background: var(--charcoal); color: var(--brass-light); box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
}
.chat-fab:hover { background: var(--willow-deep); }
.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.3rem; z-index: 90;
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: #1faa59; color: #fff; box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.wa-fab:hover { background: #178c49; color: #fff; }
.wa-fab svg, .chat-fab svg { width: 1.7rem; height: 1.7rem; }

.chat-panel {
  position: fixed; right: 1.1rem; bottom: 1.3rem; z-index: 95;
  width: min(24rem, calc(100vw - 2.2rem)); height: min(34rem, calc(100vh - 6rem));
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-head { background: var(--charcoal); color: var(--ivory); padding: 0.9rem 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.chat-head strong { font-family: var(--font-display); font-size: 1.05rem; }
.chat-head small { display: block; color: var(--brass-light); font-size: 0.72rem; letter-spacing: 0.06em; }
.chat-close { background: none; border: none; color: var(--ivory); cursor: pointer; font-size: 1.25rem; line-height: 1; padding: 0.2rem 0.4rem; }
.chat-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; background: var(--ivory); }
.msg { max-width: 88%; padding: 0.65rem 0.95rem; border-radius: 14px; font-size: 0.92rem; line-height: 1.5; }
.msg a { word-break: break-word; }
.msg--bot { background: var(--white); box-shadow: var(--shadow); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg--user { background: var(--willow-deep); color: var(--ivory); border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0.6rem 1rem 0; background: var(--ivory); }
.chat-quick button { background: var(--bone); border: 1px solid rgba(25,25,23,0.12); border-radius: 999px; padding: 0.3rem 0.75rem; font-size: 0.78rem; cursor: pointer; color: var(--ink-soft); }
.chat-quick button:hover { border-color: var(--willow); color: var(--willow-deep); }
.chat-input { display: flex; gap: 0.5rem; padding: 0.8rem 1rem; background: var(--ivory); border-top: 1px solid rgba(25,25,23,0.08); }
.chat-input input { flex: 1; }
.chat-input button { background: var(--charcoal); color: var(--ivory); border: none; border-radius: var(--radius); padding: 0 1.1rem; cursor: pointer; font-weight: 600; }
.chat-input button:hover { background: var(--willow-deep); }
.chat-note { font-size: 0.68rem; color: var(--ink-soft); text-align: center; padding: 0 1rem 0.7rem; background: var(--ivory); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--sand); font-size: 0.92rem; }
.footer-grid {
  display: grid; gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-4);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h4 { color: var(--ivory); font-size: 1rem; margin-bottom: 0.8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--sand); text-decoration: none; }
.site-footer a:hover { color: var(--brass-light); }
.footer-brand svg { width: 2.4rem; height: 2.4rem; color: var(--brass-light); margin-bottom: 0.7rem; }
.footer-wordmark { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.01em; color: var(--ivory); margin-bottom: 0.7rem; line-height: 1; }
.footer-wordmark span { color: var(--brand-red); }
.footer-brand p { color: rgba(230,223,208,0.75); max-width: 30ch; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 0.9rem; }
.footer-social a { display: flex; width: 2.3rem; height: 2.3rem; align-items: center; justify-content: center; border: 1px solid rgba(198,172,114,0.4); border-radius: 50%; }
.footer-social a:hover { border-color: var(--brass-light); }
.footer-social svg { width: 1.1rem; height: 1.1rem; }
.footer-verify {
  border-top: 1px solid rgba(198,172,114,0.25); padding: 1.1rem 0;
  font-size: 0.8rem; color: rgba(230,223,208,0.8);
}
.footer-verify strong { color: var(--brass-light); }
.footer-legal {
  border-top: 1px solid rgba(230,223,208,0.12); padding: 1.1rem 0 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.8rem; justify-content: space-between;
  font-size: 0.8rem; color: rgba(230,223,208,0.6);
}
.footer-legal a { color: rgba(230,223,208,0.75); }

/* ---------- Accommodation showcase (package pages) ---------- */
.hotel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
@media (min-width: 720px) { .hotel-grid { grid-template-columns: repeat(4, 1fr); } }
.hotel-grid figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.hotel-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hotel-grid figcaption { padding: 0.55rem 0.8rem; font-size: 0.78rem; color: var(--ink-soft); }
.hotel-list { columns: 2; column-gap: var(--space-3); font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 560px) { .hotel-list { columns: 1; } }
.hotel-list li { break-inside: avoid; margin-bottom: 0.3rem; }
.tier-note { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Journal article ---------- */
.article-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--space-3); }
.article-meta strong { color: var(--charcoal); }
.article-body h2 { font-size: var(--step-2); margin-top: var(--space-4); }
.article-body h3 { margin-top: var(--space-3); }
.article-body .direct-answer {
  background: var(--bone); border-left: 4px solid var(--willow);
  padding: 1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-2); font-size: 1.02rem;
}
.article-body img { border-radius: var(--radius-lg); margin: var(--space-3) 0; }
.author-box {
  display: flex; gap: 1rem; align-items: center; background: var(--white);
  border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; box-shadow: var(--shadow); margin-top: var(--space-4);
}
.author-box img { width: 4rem; height: 4rem; border-radius: 50%; object-fit: cover; }
.author-box p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.author-box strong { display: block; color: var(--charcoal); font-size: 1rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card:hover { transform: none; transition: none; }
  .skeleton { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Print (itinerary as keepsake PDF) ---------- */
@media print {
  .site-header, .site-footer, .wa-fab, .chat-fab, .chat-panel, .builder-nav,
  .cta-pair, .trust-bar, .breadcrumbs, .nav-toggle, .no-print { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero { min-height: auto; }
  .day-card { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  a { color: #000; text-decoration: none; }
  .builder-shell { box-shadow: none; padding: 0; }
}

/* =====================================================================
   Lodge picker + lightbox — Great Migration page
   ===================================================================== */
.hp-toggle { display:inline-flex; gap:0; border:1px solid var(--sand); border-radius:999px; padding:4px; background:var(--white); margin-top:1.25rem; }
.hp-tab { font-family:var(--font-body); font-weight:600; font-size:0.9rem; letter-spacing:0.02em; padding:0.5rem 1.4rem; border:none; background:none; color:var(--ink-soft); border-radius:999px; cursor:pointer; transition:background .2s,color .2s; }
.hp-tab.is-active { background:var(--charcoal); color:var(--ivory); }

.hp-region { margin:2rem 0 0.25rem; font-size:0.72rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--brass-deep); }
.hp-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:1rem; margin-top:0.75rem; }

.hp-card { position:relative; text-align:left; padding:0; border:1px solid var(--sand); background:var(--white); border-radius:var(--radius-lg); overflow:hidden; cursor:pointer; display:flex; flex-direction:column; transition:box-shadow .2s, transform .2s; }
.hp-card:hover, .hp-card:focus-visible { box-shadow:var(--shadow-lift); transform:translateY(-2px); outline:none; }
.hp-thumb { display:block; aspect-ratio:16/10; overflow:hidden; background:var(--sand); }
.hp-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.hp-meta { display:flex; flex-direction:column; gap:2px; padding:0.7rem 0.85rem 0.5rem; }
.hp-name { font-family:var(--font-display); font-size:1.05rem; color:var(--ink); line-height:1.2; }
.hp-region-tag { font-family:var(--font-body); font-size:0.72rem; color:var(--ink-soft); }
.hp-view { font-family:var(--font-body); font-size:0.78rem; font-weight:600; color:var(--brass-deep); padding:0 0.85rem 0.8rem; }
.hp-badge { position:absolute; top:0.6rem; right:0.6rem; background:rgba(25,25,23,0.82); color:var(--ivory); font-size:0.62rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; padding:3px 8px; border-radius:999px; }

/* lightbox */
.hp-lb[hidden] { display:none; }
.hp-lb { position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center; padding:clamp(0.5rem,3vw,2rem); }
.hp-lb-backdrop { position:absolute; inset:0; background:rgba(15,15,13,0.86); backdrop-filter:blur(2px); }
.hp-lb-panel { position:relative; z-index:1; width:min(920px,100%); max-height:94vh; overflow:auto; background:var(--ivory); border-radius:var(--radius-lg); padding:clamp(1rem,3vw,1.6rem); box-shadow:var(--shadow-lift); }
.hp-lb-x { position:absolute; top:0.5rem; right:0.6rem; font-size:1.9rem; line-height:1; background:none; border:none; color:var(--ink-soft); cursor:pointer; padding:0.2rem 0.5rem; }
.hp-lb-x:hover { color:var(--ink); }
.hp-lb-stage { position:relative; display:flex; align-items:center; justify-content:center; background:var(--charcoal); border-radius:var(--radius); overflow:hidden; }
.hp-lb-img { width:100%; max-height:60vh; object-fit:contain; display:block; background:var(--charcoal); }
.hp-lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%; border:none; background:rgba(255,253,248,0.85); color:var(--ink); font-size:1.7rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.hp-lb-nav:hover { background:var(--white); }
.hp-prev { left:0.6rem; } .hp-next { right:0.6rem; }
.hp-lb-bar { display:flex; align-items:flex-end; justify-content:space-between; gap:1rem; margin-top:0.8rem; }
.hp-lb-title { display:block; font-family:var(--font-display); font-size:1.3rem; color:var(--ink); }
.hp-lb-cap { display:block; font-family:var(--font-body); font-size:0.85rem; color:var(--ink-soft); }
.hp-lb-count { font-family:var(--font-body); font-size:0.8rem; color:var(--ink-soft); white-space:nowrap; }
.hp-lb-thumbs { display:flex; gap:0.5rem; margin-top:0.8rem; flex-wrap:wrap; }
.hp-lb-thumb { width:76px; height:52px; padding:0; border:2px solid transparent; border-radius:5px; overflow:hidden; cursor:pointer; background:var(--sand); }
.hp-lb-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.hp-lb-thumb[aria-current="true"] { border-color:var(--brass); }
.hp-lb-noteline { font-family:var(--font-body); font-size:0.78rem; color:var(--ink-soft); font-style:italic; margin:0.8rem 0 0.4rem; }
.hp-lb-link { margin-top:0.4rem; }
@media (prefers-reduced-motion: reduce){ .hp-card{ transition:none; } }
@media (max-width:520px){ .hp-lb-title{ font-size:1.1rem; } .hp-lb-nav{ width:38px; height:38px; } }

/* =====================================================================
   Itinerary cards — destination pages
   ===================================================================== */
.itn-card { border:1px solid var(--sand); border-radius:var(--radius-lg); background:var(--white); box-shadow:var(--shadow); margin-top:1rem; overflow:hidden; }
.itn-head { display:flex; align-items:center; gap:1rem; width:100%; text-align:left; background:none; border:none; padding:0.9rem 1rem; cursor:pointer; }
.itn-head:hover .itn-title, .itn-head:focus-visible .itn-title { color:var(--brass-deep); }
.itn-thumb { flex:0 0 92px; width:92px; height:64px; border-radius:var(--radius); overflow:hidden; background:var(--sand); }
.itn-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.itn-headmeta { display:flex; flex-direction:column; gap:2px; min-width:0; }
.itn-cat { font-family:var(--font-body); font-size:0.68rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--brass-deep); }
.itn-title { font-family:var(--font-display); font-size:1.15rem; color:var(--ink); line-height:1.25; transition:color .2s; }
.itn-route { font-family:var(--font-body); font-size:0.8rem; color:var(--ink-soft); }
.itn-chevron { margin-left:auto; color:var(--ink-soft); font-size:1rem; transition:transform .25s; }
.itn-card.is-open .itn-chevron { transform:rotate(180deg); }
.itn-body { padding:0 1rem 1.2rem; border-top:1px solid var(--bone); }
.itn-intro { font-family:var(--font-body); color:var(--ink-soft); font-size:0.95rem; margin:0.9rem 0 0.6rem; }
.itn-days { list-style:none; margin:0.6rem 0 0; padding:0; display:flex; flex-direction:column; gap:0.55rem; }
.itn-days li { display:grid; grid-template-columns:88px 1fr; gap:0 0.8rem; padding:0.55rem 0.7rem; background:var(--ivory); border-radius:var(--radius); }
.itn-day { font-family:var(--font-body); font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--willow-deep); padding-top:2px; }
.itn-daytitle { font-family:var(--font-display); font-size:0.98rem; color:var(--ink); }
.itn-daydesc { grid-column:2; font-family:var(--font-body); font-size:0.85rem; color:var(--ink-soft); }
.itn-price, .itn-extras { font-family:var(--font-body); font-size:0.88rem; color:var(--ink); margin:0.8rem 0 0; }
.itn-extras { color:var(--ink-soft); }
.itn-hotels { margin-top:1.1rem; }
.itn-hotels-h { font-family:var(--font-body); font-size:0.72rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--brass-deep); margin:0 0 0.5rem; }
.itn-chiprow { display:flex; flex-wrap:wrap; gap:0.5rem; }
.itn-chip { display:flex; align-items:center; gap:0.55rem; border:1px solid var(--sand); background:var(--white); border-radius:999px; padding:4px 14px 4px 4px; cursor:pointer; transition:box-shadow .2s, border-color .2s; }
.itn-chip:hover, .itn-chip:focus-visible { border-color:var(--brass); box-shadow:var(--shadow); outline:none; }
.itn-chip img { width:34px; height:34px; border-radius:50%; object-fit:cover; display:block; }
.itn-chip span { font-family:var(--font-body); font-size:0.8rem; font-weight:500; color:var(--ink); display:flex; flex-direction:column; line-height:1.15; text-align:left; }
.itn-chip em { font-style:normal; font-size:0.68rem; color:var(--ink-soft); }
.itn-cta { margin-top:1.2rem; }
@media (max-width:560px){
  .itn-thumb { flex-basis:64px; width:64px; height:48px; }
  .itn-days li { grid-template-columns:1fr; }
  .itn-daydesc { grid-column:1; }
}

/* =====================================================================
   Typography refinement — sitewide (analysis pass)
   Fraunces (display) + Inter (text) everywhere; the Destinations hub
   keeps its editorial Cormorant/Spectral set as an intentional feature.
   ===================================================================== */
html { text-rendering: optimizeLegibility; }
body {
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
h1, h2, h3, .itn-title, .hp-lb-title, .venue-card h3 {
  font-feature-settings: "kern" 1, "liga" 1;
  text-wrap: balance;              /* headings never break awkwardly */
}
table, .compare, .itn-price { font-variant-numeric: lining-nums tabular-nums; }

/* --- Justified body text with hyphenation (per brand direction) --- */
main p,
main .prose,
main li p,
.day-card p,
.itn-intro, .itn-daydesc,
.venue-body p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  hyphenate-limit-chars: 7 4 3;
}
/* Exceptions — justification harms these: */
.hero p, .hero .lede,                 /* text over imagery reads best ragged-right */
.center p, .section--dark.center p,   /* deliberately centered sections stay centered */
figcaption, .venue-photo-note, .hp-lb-noteline, .hp-lb-cap,
.itn-day, .itn-daytitle, .itn-price, .itn-extras, .itn-route,
.btn, nav, .breadcrumbs, blockquote cite {
  text-align: inherit; hyphens: manual; -webkit-hyphens: manual;
}
.hero p, .hero .lede { text-align: left; }
.center p, .section--dark.center p { text-align: center; }
/* Narrow screens: justify + narrow measure creates rivers — hyphenation is
   essential there, and very narrow elements fall back to left alignment. */
@media (max-width: 420px) {
  .itn-daydesc, .venue-body p { text-align: left; }
}

/* =====================================================================
   Garamond body text @ 12pt (per client direction, July 2026)
   Cormorant Garamond (self-hosted) for all reading text; Inter remains
   for interface elements (nav, buttons, labels, tables) for clarity.
   ===================================================================== */
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorantgaramond-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorantgaramond-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorantgaramond-500-normal.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('../fonts/cormorantgaramond-600-normal.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

:root { --font-garamond: 'Cormorant Garamond', Garamond, 'EB Garamond', Georgia, serif; }

/* Reading text → Garamond @ 12pt. Weight 500 compensates Garamond's light strokes. */
body { font-family: var(--font-garamond); font-size: 12pt; font-weight: 500; }
main p, .prose, .prose p, .prose li,
.day-card p, .itn-intro, .itn-daydesc, .venue-body p,
blockquote {
  font-family: var(--font-garamond);
  font-size: 12pt;
  font-weight: 500;
  line-height: 1.6;
}
/* Interface stays Inter at its designed sizes (rem-based, unaffected by body pt). */
nav, .btn, .eyebrow, .card-meta, .brand-tag, .brand-name,
.hp-tab, .hp-badge, .hp-region, .hp-view, .hp-region-tag,
.itn-cat, .itn-day, .itn-chip span, .itn-hotels-h,
table, .compare, .venue-specs, .venue-city,
input, select, textarea, button:not(.itn-head) {
  font-family: var(--font-body);
}
/* Slightly larger italic lede keeps its display elegance */
.lede { font-family: var(--font-garamond); }

/* =====================================================================
   Heading spacing tightened sitewide (client direction)
   Less air around section headings like "The willow bends to the
   journey you want" — applies to every page via these shared rules.
   ===================================================================== */
.section { padding: var(--space-4) 0; }            /* 4rem → 2.5rem */
.section--tight { padding: 1.75rem 0; }
.eyebrow { margin-bottom: 0.35rem; }               /* was 0.8rem */
h1, h2, h3, h4 { margin: 0 0 0.7rem; }             /* was 1rem */
h2 + .lede, h1 + .lede { margin-top: 0; }
.lede { margin-bottom: 0.8rem; }
.section .wrap > h2:first-child { margin-top: 0; }
/* keep breathing room where two sections of same colour touch */
.section + .section { padding-top: var(--space-3); }


/* =====================================================================
   POPPINS — sitewide font change (client direction, Aug 2026)
   Overrides all previous families (Fraunces, Inter, Cormorant Garamond,
   and the Destinations hub's editorial set).
   ===================================================================== */
:root {
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;   /* headings: restored */
  --font-body: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  --font-garamond: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
}
body, p, a, li, span, em, strong, blockquote,
button, input, select, textarea, td, th, figcaption, label {
  font-family: 'Poppins', -apple-system, 'Segoe UI', sans-serif !important;
}
/* Headings & display elements: back to the Fraunces serif (brand identity) */
h1, h2, h3, h4, h5, h6,
.itn-title, .itn-daytitle, .hp-lb-title, .brand-name,
.venue-card h3, .fleet h3, .step h3, .seat h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif !important;
}
h1 span, h2 span, h3 span, h1 em, h2 em, h3 em {
  font-family: inherit !important;
}
/* Poppins is wider than Garamond — ease body size/weight for readability */
body, main p, .prose, .prose p, .prose li, .day-card p, .itn-intro, .itn-daydesc, .venue-body p, blockquote {
  font-size: 11pt;
  font-weight: 400;
}
h1, h2, h3 { font-weight: 600; letter-spacing: -0.01em; }
.lede { font-weight: 300; }

/* =====================================================================
   Layout harmonization — consistent alignment on every page
   ===================================================================== */
/* 1. Cards in any grid stretch to equal height; actions align at the bottom */
.grid > article, .grid > div, .hp-cards > .hp-card, .fleet, .card {
  height: 100%; display: flex; flex-direction: column;
}
.card .card-price, .fleet .fleet-body { margin-top: auto; }
.hp-card .hp-view { margin-top: auto; padding-top: 0.5rem; }

/* 2. Venue cards: photo → note → body; buttons sit level across a row */
.venue-card .venue-body { flex: 1; }
.venue-card .venue-body .btn { align-self: flex-start; margin-top: 0.4rem; }
.venue-card .venue-body .btn.btn-brass { margin-top: auto; }

/* 3. Uniform section rhythm on every page */
.section, .section--tight { padding-left: 0; padding-right: 0; }
.section .wrap > .eyebrow { margin-top: 0; }
main > .section:first-of-type { padding-top: var(--space-4); }

/* 4. Headings and text share one left edge; only .center sections centre */
.section .wrap > h2, .section .wrap > .prose, .section .wrap > p { margin-left: 0; }
.center .cta-pair { justify-content: center; }

/* 5. Itinerary cards: day rows share the same label column width */
.itn-days li { align-items: start; }
.itn-head { align-items: center; }

/* 6. Images never break alignment: uniform ratios inside galleries */
.venue-gallery img.main { aspect-ratio: 16/9; }
.venue-gallery img.thumb { aspect-ratio: 16/10; }
.itn-thumb img, .hp-thumb img, .fleet img { object-position: center; }

/* 7. Tables align: numbers right, labels left */
table td:last-child, table th:last-child { text-align: left; }
.compare td, .compare th { vertical-align: top; }

/* 8. Forms & buttons: consistent height and alignment */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 2.75rem; }
.cta-pair { align-items: center; }

/* 9. Mobile: everything stacks neatly, buttons full-width, no half-widths */
@media (max-width: 560px) {
  .cta-pair { flex-direction: column; align-items: stretch; }
  .cta-pair .btn { width: 100%; }
  .venue-card .venue-body .btn { align-self: stretch; text-align: center; }
  .section, .section--tight { padding-top: 1.6rem; padding-bottom: 1.6rem; }
  .hp-toggle { display: flex; width: 100%; }
  .hp-tab { flex: 1; text-align: center; }
}

/* 10. Footer columns share a top line */
.footer-grid { align-items: start; }

/* Per-night stay chips inside itinerary day rows */
.itn-stay { grid-column: 2; display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin-top: 0.45rem; }
.itn-stay > b { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--willow-deep); margin-right: 0.15rem; }
.itn-stay-chip { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid var(--sand); background: var(--white); border-radius: 999px; padding: 3px 10px 3px 3px; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.itn-stay-chip:hover, .itn-stay-chip:focus-visible { border-color: var(--brass); box-shadow: var(--shadow); outline: none; }
.itn-stay-chip img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; display: block; }
.itn-stay-chip i { font-style: normal; font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; color: var(--ink); }
.itn-stay-chip u { text-decoration: none; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass-deep); background: var(--bone); border-radius: 999px; padding: 1px 6px; }
@media (max-width: 560px) { .itn-stay { grid-column: 1; } }

/* "Where you'll stay" picker inside each itinerary card */
.itn-lodges { margin-top: 1.6rem; border-top: 1px solid var(--bone); padding-top: 1.2rem; }
.itn-lodges .eyebrow { margin-bottom: 0.2rem; }
.itn-lodges-h { font-family: var(--font-display) !important; font-size: 1.35rem; margin: 0 0 0.4rem; color: var(--charcoal); }
.itn-lodges-lede { font-size: 0.92rem; color: var(--ink-soft); max-width: 46rem; }
.itn-lodges h5.hp-region { margin: 1.4rem 0 0.25rem; font-size: 0.72rem; }

/* ── Heading rhythm (site-wide, uniform) ─────────────────────── */
.sub-head { margin-top: 2.75rem; }
.sub-head-3 { margin-top: 2.25rem; }
.list-head { margin-top: 2rem; }
.list-head-next { margin-top: 1.5rem; }
.tight-head { margin-bottom: 0.4rem; }
.page-title { font-size: var(--step-4); }

/* ── Language switcher ───────────────────────────────────────── */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: 1px solid rgba(25,25,23,0.22); border-radius: var(--radius);
  padding: 0.42rem 0.7rem; cursor: pointer; color: var(--charcoal);
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.06em;
}
.lang-btn:hover { border-color: var(--brass); color: var(--brass); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 0.5rem); z-index: 300;
  min-width: 11rem; margin: 0; padding: 0.4rem 0; list-style: none;
  background: var(--ivory); border: 1px solid rgba(25,25,23,0.12);
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  max-height: 70vh; overflow: auto;
}
.lang-menu li { margin: 0; }
.lang-menu button {
  display: block; width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 0.5rem 1rem; font-family: var(--font-body); font-size: 0.88rem; color: var(--charcoal);
}
.lang-menu button:hover { background: rgba(163,120,55,0.1); color: var(--brass); }
.lang-menu button[aria-selected="true"] { color: var(--brass); font-weight: 600; }
.lang-note { padding: 0.45rem 1rem 0.25rem; font-size: 0.68rem; color: rgba(25,25,23,0.45); border-top: 1px solid rgba(25,25,23,0.08); margin-top: 0.3rem !important; }
@media (max-width: 900px) { .lang-switch { margin-left: auto; } }

/* Suppress Google Translate's default banner/tooltips (custom UI instead) */
.goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, .skiptranslate > iframe { display: none !important; }
body { top: 0 !important; }
font { background: transparent !important; box-shadow: none !important; }

/* ── Trust stats band ────────────────────────────────────────── */
.stats-band { background: var(--charcoal); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  list-style: none; margin: 0; padding: 2.2rem 0; text-align: center;
}
.stats-grid li { margin: 0; }
.stats-grid strong {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--brass-light); line-height: 1.1;
}
.stats-grid span {
  display: block; margin-top: 0.3rem; color: rgba(245,241,232,0.75);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; } }
