/* ==========================================================================
   BELVI — Travel club. Beautiful places. Beautiful pace.
   Design v18 — refreshed editorial: brighter ivory palette, deeper ink,
   vivid terracotta accent, DM Serif Display + Plus Jakarta Sans.
   Colorblind-safe: dark on light, high contrast, no color-only meaning.
   ========================================================================== */

:root {
  --sand: #FFFFFF;         /* Bright white — primary background */
  --salt: #FFFFFF;         /* White — surfaces / cards */
  --cream: #F7F6F2;        /* Warm off-white — subtle secondary surface */
  --ink: #1F1B16;          /* Deep espresso — primary text */
  --ink-soft: #6B6358;     /* muted body copy */
  --olive: #6E7A5E;        /* Sage — nature, contemplation */
  --blue: #2A6478;         /* Mediterranean Blue — sky, water */
  --terra: #E0683C;        /* Terracotta — vivid warm accent, primary action */
  --terra-dark: #C1532F;   /* Terracotta hover */
  --gold: #B08D57;         /* soft sand-gold — legacy accent */
  --gold-soft: #EDE6D8;    /* soft tan — dividers, highlights */
  --white: #FFFFFF;
  --ok: #4A6F5A;
  --radius: 6px;           /* editorial with a touch of softness */
  --radius-sm: 3px;
  --shadow: 0 8px 30px rgba(31, 27, 22, 0.06);
  --shadow-lg: 0 24px 60px rgba(31, 27, 22, 0.12);
  --font-display: "DM Serif Display", "Fraunces", Georgia, serif;
  --font-serif-italic: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Inter", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.62;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--terra-dark); }

.container { width: min(1140px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.06; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 400; }
h3 { font-size: 1.55rem; font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}

.serif-italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 500;
}

.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 46rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: #fff; color: var(--ink); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.08rem; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.96);
  border-bottom: 1px solid rgba(34, 28, 20, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.brand {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--ink); text-decoration: none;
}
.brand span { color: var(--terra); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.97rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--terra-dark); text-decoration: underline; text-underline-offset: 5px; }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-cta { padding: 0.6rem 1.3rem; font-size: 0.95rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s; }
.mobile-menu { display: none; background: var(--cream); border-bottom: 1px solid rgba(34,28,20,0.1); }
.mobile-menu ul { list-style: none; padding: 1rem 0 1.4rem; }
.mobile-menu li a { display: block; padding: 0.65rem 0; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1.05rem; }
.mobile-menu.open { display: block; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20, 14, 8, 0.78) 0%, rgba(20, 14, 8, 0.25) 45%, rgba(20, 14, 8, 0.18) 100%),
    var(--hero-img) center / cover no-repeat;
}
.hero .container { position: relative; padding: 4.5rem 0 3.5rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; max-width: 16ch; text-wrap: balance; }
.hero p { margin-top: 1rem; font-size: 1.15rem; max-width: 40rem; color: rgba(255,255,255,0.92); }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-sand { background: var(--sand); }
.section-head { max-width: 46rem; margin-bottom: 2.6rem; }

/* ---------- Path choice (Join a group / Own way) ---------- */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 800px) { .path-grid { grid-template-columns: 1fr; } }
.path-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  color: #fff; text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.82) 0%, rgba(20,14,8,0.12) 55%), var(--card-img) center / cover no-repeat;
  transition: transform 0.4s ease;
}
.path-card:hover::before { transform: scale(1.04); }
.path-card-body { position: relative; padding: 1.8rem; }
.path-card .tag {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 0.8rem;
}
.path-card h3 { font-size: 2rem; color: #fff; }
.path-card p { margin-top: 0.5rem; color: rgba(255,255,255,0.9); max-width: 34rem; }
.path-card .cta { margin-top: 1rem; display: inline-block; font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 2px; color: #fff; }

/* ---------- Country / destination grid ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 360px; display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--ink);
}
.dest-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.8) 5%, rgba(20,14,8,0.05) 60%), var(--card-img) center / cover no-repeat;
  transition: transform 0.4s ease;
}
a.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
a.dest-card:hover::before { transform: scale(1.05); }
.dest-card-body { position: relative; padding: 1.3rem 1.4rem; width: 100%; }
.dest-card .flag { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.dest-card h3 { color: #fff; font-size: 1.6rem; }
.dest-card p { font-size: 0.92rem; color: rgba(255,255,255,0.88); }
.dest-card .status {
  position: absolute; top: 1rem; inset-inline-end: 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px;
}
.status-open { background: #fff; color: var(--ok); }
.status-soon { background: rgba(255,255,255,0.92); color: var(--ink-soft); }

.dest-card.soon { cursor: default; }
.dest-card.soon::before { filter: grayscale(35%); }

/* ---------- Steps / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold);
  display: block; margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Feature list ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature { background: #fff; border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.feature .icon { font-size: 1.8rem; display: block; margin-bottom: 0.7rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery img {
  width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.gallery img.tall { grid-row: span 2; height: 100%; }

/* ---------- Wizard ---------- */
.wizard {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  max-width: 880px;
}
.wizard-steps { display: flex; gap: 0.5rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.wizard-steps .ws {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: var(--sand); color: var(--ink-soft);
  border: 1.5px solid transparent;
}
.wizard-steps .ws.active { background: var(--ink); color: var(--cream); }
.wizard-steps .ws.done { border-color: var(--ok); color: var(--ok); background: #fff; }
.wizard h3 { margin-bottom: 1.2rem; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .choice-grid { grid-template-columns: 1fr; } }
.choice {
  position: relative; border: 2px solid rgba(34,28,20,0.15); border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem; cursor: pointer; background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice:hover { border-color: var(--terra); }
.choice.selected { border-color: var(--terra); background: #FDF1EA; }
.choice.selected::after {
  content: "✓"; position: absolute; top: 0.8rem; inset-inline-end: 0.9rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--terra); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.choice h4 { font-size: 1.08rem; margin-bottom: 0.25rem; padding-inline-end: 2rem; }
.choice p { font-size: 0.9rem; color: var(--ink-soft); }
.choice .price { display: block; margin-top: 0.5rem; font-weight: 700; color: var(--terra-dark); font-size: 0.95rem; }

/* Add-on rows */
.addon {
  display: flex; align-items: flex-start; gap: 0.9rem;
  border: 2px solid rgba(34,28,20,0.15); border-radius: var(--radius-sm);
  padding: 1rem 1.1rem; cursor: pointer; background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.addon:hover { border-color: var(--terra); }
.addon.selected { border-color: var(--terra); background: #FDF1EA; }
.addon input { margin-top: 0.3rem; accent-color: var(--terra); width: 18px; height: 18px; flex: none; }
.addon .a-body { flex: 1; }
.addon h4 { font-size: 1rem; }
.addon p { font-size: 0.86rem; color: var(--ink-soft); }
.addon .price { font-weight: 700; color: var(--terra-dark); white-space: nowrap; font-size: 0.95rem; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 700px) { .addon-grid { grid-template-columns: 1fr; } }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.estimate {
  background: var(--sand); border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem; font-size: 0.95rem;
}
.estimate strong { font-size: 1.25rem; color: var(--terra-dark); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.75rem 0.9rem;
  border: 2px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra);
}
.check-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.check-row input { margin-top: 0.25rem; accent-color: var(--terra); width: 17px; height: 17px; flex: none; }

.form-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3.5vw, 2.6rem); max-width: 760px;
}

.notice-ok {
  background: #EAF4EC; border: 2px solid var(--ok); color: var(--ok);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-weight: 600;
}

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 800px) { .tour-grid { grid-template-columns: 1fr; } }
.tour-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tour-card img { height: 230px; width: 100%; object-fit: cover; }
.tour-card .t-body { padding: 1.5rem 1.6rem 1.8rem; }
.tour-card ul { margin: 0.8rem 0 0 1.1rem; color: var(--ink-soft); font-size: 0.95rem; }
.tour-card li { margin-bottom: 0.25rem; }

/* ---------- Trip page: facts bar ---------- */
.facts {
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem;
  margin-top: 1.8rem;
}
.fact {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30); color: #fff;
  border-radius: 999px; padding: 0.55rem 1.05rem;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em;
}
.fact .fi { font-size: 1.05rem; line-height: 1; }
/* Light variant for facts placed on a pale background (not over a photo) */
.section .fact { background: #fff; border-color: rgba(34,28,20,0.12); color: var(--ink); }

/* ---------- Trip page: day-by-day program ---------- */
.day-list { max-width: 780px; }
.day {
  display: flex; gap: 1.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(34,28,20,0.12);
}
.day:last-child { border-bottom: none; }
.day-num {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  background: var(--ink); color: var(--gold-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); line-height: 1;
}
.day-num small { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
.day-num strong { font-size: 1.7rem; }
.day-body h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.day-body p { color: var(--ink-soft); font-size: 0.98rem; }
.day-body .day-tag {
  display: inline-block; margin-top: 0.5rem;
  font-size: 0.78rem; font-weight: 700; color: var(--terra-dark);
  background: #FDF1EA; border-radius: 999px; padding: 0.25rem 0.75rem;
}

/* ---------- Trip page: optional activities ---------- */
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .extras-grid { grid-template-columns: 1fr; } }
.extra {
  background: #fff; border-radius: var(--radius); padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.extra .ei { font-size: 1.7rem; line-height: 1; }
.extra h3 { font-size: 1.12rem; margin: 0.55rem 0 0.3rem; }
.extra p { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }
.extra .from { margin-top: 0.75rem; font-weight: 700; color: var(--terra-dark); font-size: 0.9rem; }

/* ---------- Trip page: included lists ---------- */
.split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 700px) { .split-list { grid-template-columns: 1fr; } }
.list-card { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.list-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.list-card ul { list-style: none; }
.list-card li { padding: 0.35rem 0 0.35rem 1.7rem; position: relative; color: var(--ink-soft); font-size: 0.96rem; }
.list-card li::before { position: absolute; left: 0; font-weight: 700; }
.list-card.yes li::before { content: "✓"; color: var(--ok); }
.list-card.no li::before { content: "✕"; color: var(--terra-dark); }

/* ---------- Perks / gift block in forms ---------- */
.perks {
  border: 2px dashed var(--gold); border-radius: var(--radius-sm);
  background: #FFFDF7; padding: 1.1rem 1.2rem; margin-top: 1.2rem;
}
.perks h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.perks p { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; color: #fff; text-align: center;
  padding: 5rem 0; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20,14,8,0.72), rgba(20,14,8,0.72)), var(--band-img) center / cover no-repeat;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 38rem; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 3.5rem 0 2rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-brand p { margin-top: 0.8rem; font-size: 0.95rem; max-width: 26rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.4rem; inset-inline-end: 1.4rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-soft); }

/* ---------- Misc ---------- */
.badge-soon {
  display: inline-block; background: var(--sand); color: var(--ink-soft);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px; border: 1.5px solid rgba(34,28,20,0.2);
}
.hidden { display: none !important; }

/* ---------- Booking page ---------- */
.book-summary {
  display: flex; gap: 1.2rem; align-items: center;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.2rem; margin-bottom: 1.8rem;
}
.book-summary img { width: 108px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.book-summary .bs-body h2 { font-size: 1.35rem; }
.book-summary .bs-body p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.15rem; }

.pay-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 0.4rem 0 0.5rem; }
@media (max-width: 620px) { .pay-choice { grid-template-columns: 1fr; } }
.pay-opt {
  position: relative; border: 2px solid rgba(34,28,20,0.16); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; cursor: pointer; background: #fff; transition: border-color 0.15s ease, background 0.15s ease;
}
.pay-opt:hover { border-color: var(--terra); }
.pay-opt.selected { border-color: var(--terra); background: #FDF1EA; }
.pay-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pay-opt .po-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.pay-opt h4 { font-size: 1.05rem; }
.pay-opt .po-amt { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--terra-dark); white-space: nowrap; }
.pay-opt p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.35rem; }
.pay-opt .po-tag { display: inline-block; margin-top: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ok); background: #EAF4EC; border-radius: 999px; padding: 0.2rem 0.6rem; }

.passport-row { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.passport-row select { flex: 1; }
.passport-row .rm { flex: none; border: none; background: var(--sand); color: var(--ink-soft); width: 38px; height: 38px; border-radius: var(--radius-sm); cursor: pointer; font-size: 1.1rem; }
.passport-row .rm:hover { background: #f0e2cf; color: var(--terra-dark); }
.add-passport { background: none; border: none; color: var(--terra-dark); font-weight: 600; cursor: pointer; padding: 0.3rem 0; font-size: 0.9rem; }
.add-passport:hover { text-decoration: underline; }

.member-banner {
  display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap;
  background: var(--gold-soft); border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem; margin-bottom: 1.4rem; font-size: 0.92rem;
}
.member-banner a { font-weight: 700; }

/* Required-field asterisk */
.req { color: var(--terra); font-weight: 700; margin-inline-start: 2px; }

/* WhatsApp: dial-code select + number */
.phone-group { display: flex; gap: 0.5rem; }
.phone-group select { flex: 0 0 40%; max-width: 180px; }
.phone-group input { flex: 1; }

/* Airport autocomplete */
.airport-ac { position: relative; }
.airport-ac-list {
  position: absolute; z-index: 20; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); max-height: 260px; overflow-y: auto; list-style: none; padding: 0.3rem;
}
.airport-ac-list[hidden] { display: none; }
.airport-ac-list li {
  padding: 0.55rem 0.7rem; border-radius: 8px; cursor: pointer; font-size: 0.92rem;
  display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline;
}
.airport-ac-list li:hover, .airport-ac-list li.active { background: var(--sand); }
.airport-ac-list .ac-city { font-weight: 600; color: var(--ink); }
.airport-ac-list .ac-name { color: var(--ink-soft); font-size: 0.82rem; }
.airport-ac-list .ac-iata { font-weight: 700; color: var(--terra-dark); flex: none; }
.airport-ac-empty { padding: 0.6rem 0.7rem; color: var(--ink-soft); font-size: 0.88rem; }

/* Reveal block for flight help */
.reveal { margin-top: 0.9rem; }
.reveal[hidden] { display: none; }

/* Addon "see details" link + tour modal */
.addon .a-body .a-details {
  display: inline-block; margin-top: 0.4rem; font-size: 0.82rem; font-weight: 700;
  color: var(--terra-dark); background: none; border: none; padding: 0; cursor: pointer;
  border-bottom: 1.5px solid var(--gold);
}
.addon .a-body .a-details:hover { color: var(--terra); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,14,8,0.55);
  display: flex; align-items: flex-start; justify-content: center; padding: 4vh 1rem;
  overflow-y: auto; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--cream); border-radius: var(--radius); max-width: 720px; width: 100%;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.modal-head { padding: 1.5rem 1.6rem 0.8rem; }
.modal-head h3 { font-size: 1.6rem; }
.modal-head p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.2rem; }
.modal-close {
  position: absolute; top: 0.9rem; inset-inline-end: 0.9rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; box-shadow: var(--shadow); font-size: 1.2rem; color: var(--ink);
}
.modal-body { padding: 0 1.6rem 1.6rem; }
.modal-included {
  background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.2rem;
}
.modal-included h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terra-dark); margin-bottom: 0.5rem; }
.modal-included ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.modal-included li { font-size: 0.9rem; color: var(--ink-soft); }
.modal-included li::before { content: "✓ "; color: var(--ok); font-weight: 700; }
.tour-stop { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.tour-stop img { width: 120px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.tour-stop .ts-no-img { width: 120px; height: 84px; border-radius: var(--radius-sm); background: var(--sand); flex: none; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.tour-stop h5 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.tour-stop p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.15rem; }
.modal-credit { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* Nav account chip */
.nav-account { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
@media (max-width: 900px) { .nav-account { display: none; } }

/* Member dashboard */
.dash-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: start; }
@media (max-width: 800px) { .dash-grid { grid-template-columns: 1fr; } }
.wallet-card {
  background: linear-gradient(135deg, #2A2118, #4A3D2C); color: #fff;
  border-radius: var(--radius); padding: 1.7rem 1.9rem; box-shadow: var(--shadow-lg);
}
.wallet-card .wl-label { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }
.wallet-card .wl-balance { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; margin: 0.15rem 0 0.5rem; line-height: 1; }
.wallet-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.wallet-card .btn { margin-top: 1.1rem; }
.dash-card { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.dash-card h3 { margin-bottom: 0.5rem; }
.dash-card .muted { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; }
.trip-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(34,28,20,0.1); align-items: center; }
.trip-row:last-child { border-bottom: none; }
.trip-row h4 { font-size: 1.05rem; }
.trip-row p { font-size: 0.85rem; color: var(--ink-soft); }
.tr-status { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.7rem; border-radius: 999px; white-space: nowrap; }
.tr-upcoming { background: #EAF4EC; color: var(--ok); }
.tr-past { background: var(--sand); color: var(--ink-soft); }
.dash-empty { color: var(--ink-soft); font-size: 0.94rem; padding: 0.4rem 0; }
.dash-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1.6rem; text-align: center; }

/* Wizard date field + custom date picker (DD/MM/YYYY) */
.wiz-date .date-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.35rem; }
.dp { position: relative; }
.dp-input {
  font: inherit; padding: 0.75rem 0.9rem; width: 100%; cursor: pointer;
  border: 2px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.dp-input:focus { outline: none; border-color: var(--terra); }
.dp-pop {
  position: absolute; z-index: 40; top: calc(100% + 4px); inset-inline-start: 0;
  background: #fff; border: 1.5px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 0.8rem; width: 290px;
}
.dp-pop[hidden] { display: none; }
.dp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.dp-head span { font-weight: 600; font-size: 0.95rem; }
.dp-head button { border: none; background: var(--sand); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 1.1rem; color: var(--ink); }
.dp-head button:hover { background: #efe1cd; }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.dp-dow { font-size: 0.68rem; color: var(--ink-soft); padding: 4px 0; font-weight: 600; }
.dp-day { border: none; background: none; padding: 7px 0; border-radius: 8px; cursor: pointer; font: inherit; font-size: 0.88rem; }
.dp-day:hover:not(:disabled) { background: var(--sand); }
.dp-day.sel { background: var(--terra); color: #fff; }
.dp-day:disabled { color: rgba(34,28,20,0.22); cursor: default; }

/* ---------- Departures ---------- */
.dep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 820px) { .dep-grid { grid-template-columns: 1fr; } }
.dep-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.7rem 1.8rem; border-top: 4px solid var(--terra);
}
.dep-card .dep-dates { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink); }
.dep-card .dep-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 0.15rem 0 1.1rem; }
.airport-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.airport-list li {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  background: var(--sand); border-radius: 999px; padding: 0.42rem 0.9rem; font-size: 0.9rem; color: var(--ink);
}
.airport-list .code { font-weight: 700; color: var(--terra-dark); letter-spacing: 0.02em; }
.flights-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--sand); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 1.6rem;
}
.flights-note .fn-icon { font-size: 1.7rem; line-height: 1; flex: none; }
.flights-note h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.flights-note p { color: var(--ink-soft); font-size: 0.96rem; }


/* Section rhythm — more air, calmer pace */
.section { padding: 5.5rem 0; }
.hero-editorial { padding: 6rem 0 5rem; }
.manifesto { padding: 7rem 0 6rem; }
.escapes { padding: 6rem 0 7rem; }
.pillars { padding: 6rem 0; }
.ed-section { padding: 6rem 0; }
.enquire { padding: 7rem 0 6rem; }

/* Hero headline — slightly larger, more presence */
.hero-editorial h1 { font-size: clamp(3rem, 8vw, 6.4rem); letter-spacing: -0.025em; }
.dest-hero h1 { font-size: clamp(3rem, 7vw, 5.6rem); }

/* Card imagery — gentle inner rounding */
.escape-card .img-wrap, .jp-card .img-wrap, .path-card .img-wrap,
.tour-card img, .dest-card, .stack-gallery img, .gallery img {
  border-radius: var(--radius);
}

/* Quote marks on manifesto */
.manifesto p { letter-spacing: -0.01em; }

/* Footer — slightly tighter, refined */
.site-footer { padding: 4rem 0 2rem; }

/* Buttons — consistent pill-free editorial, but softer radius */
.btn-editorial, .nav-cta { border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   DESIGN v18 — POLISH
   Focus states, smooth transitions, refined buttons/forms, selection.
   These rules use higher-specificity selectors to win over per-page
   inline <style> blocks without editing 20 HTML files.
   ========================================================================== */

/* Focus visibility (a11y + pro feel) */
:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Smooth image hover everywhere */
img { transition: transform 0.6s ease, opacity 0.4s ease; }

/* Links: subtle underline animation */
a { transition: color 0.2s ease; }

/* Selection */
::selection { background: rgba(222, 107, 74, 0.22); color: var(--ink); }

/* Refined scrollbar (WebKit) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Buttons — consistent editorial CTA */
.btn-editorial, .btn {
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-editorial:hover, .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Inputs & selects — softer borders, consistent focus */
.field input, .field select, .field textarea,
.form-editorial .field input, .form-editorial .field select, .form-editorial .field textarea,
.contact-card .field input, .contact-card .field select, .contact-card .field textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border-radius: var(--radius-sm);
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: var(--gold);
}

/* Cards: gentle lift + shadow on hover */
.escape-card, .jp-card, .path-card, .dest-card, .tour-card, .step, .feature,
.dep-card, .extra, .list-card, .dash-card, .book-form-card, .form-card, .wizard {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.escape-card:hover, .jp-card:hover, .tour-card:hover, .extra:hover, .list-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Header: refined sticky bar (wins over per-page inline rgba values) */
header.site-header, .site-header {
  background: rgba(245, 239, 228, 0.88) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(41, 36, 32, 0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
}

/* Brand: consistent display serif */
.brand, header.site-header .brand {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

/* Eyebrow labels — refined */
.eyebrow {
  letter-spacing: 0.24em !important;
  font-weight: 600 !important;
}

/* Footer links hover */
.site-footer a { transition: color 0.2s ease, padding-inline-start 0.2s ease; }
.site-footer a:hover { padding-inline-start: 3px; }

/* WhatsApp float: warmer, subtle pulse ring */
.whatsapp-float {
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(222, 107, 74, 0.08);
}
.whatsapp-float:hover { transform: scale(1.06); }

/* Language switcher — matches new palette */
.lang-btn { border-radius: 999px; }
.lang-menu { border-radius: var(--radius); }

/* Mobile menu smooth */
.mobile-menu { transition: max-height 0.3s ease; overflow: hidden; }


/* ==========================================================================
   LANDING v19 — TRAVEL TYPE CIRCLES
   Minimal landing: clickable circles = travel styles, panels below.
   ========================================================================== */

.land-hero { padding: 6rem 0 2rem; background: var(--sand); text-align: center; }
.land-hero .container { max-width: 860px; }
.land-hero .eyebrow { color: var(--olive); }
.land-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.land-title em { font-family: var(--font-serif-italic); font-style: italic; color: var(--terra); font-weight: 400; }
.land-lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Circles grid */
.land-circles { padding: 3.5rem 0 5rem; background: var(--sand); }
.circle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .circle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .circle-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }

.circle {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  color: inherit;
}
.circle-inner {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--gold-soft);
  border: 3px solid var(--salt);
  box-shadow: var(--shadow), 0 0 0 1px var(--gold-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 560px) { .circle-inner { width: 104px; height: 104px; } }
.circle-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.circle:hover .circle-inner {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--terra);
  border-color: var(--salt);
}
.circle:hover .circle-img { transform: scale(1.07); }
.circle:focus-visible { outline: 2px solid var(--terra); outline-offset: 4px; border-radius: 999px; }
.circle-label {
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  text-align: center; line-height: 1.3; max-width: 130px;
  letter-spacing: 0.01em;
}
.circle-label small { display: block; font-size: 0.68rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.06em; margin-top: 0.2rem; text-transform: uppercase; }

/* Panels */
.land-panels { padding: 1rem 0 5rem; background: var(--sand); }
.cat-panel {
  background: var(--salt);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  animation: panelIn 0.35s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.cat-panel[hidden] { display: none; }
.cat-panel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cat-panel h2 em { font-family: var(--font-serif-italic); font-style: italic; color: var(--terra); font-weight: 400; }
.trip-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .trip-mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .trip-mini-grid { grid-template-columns: 1fr; } }
.trip-mini {
  display: block;
  background: var(--sand);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trip-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--terra); }
.trip-mini h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.trip-mini p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; margin-bottom: 0.9rem; }
.trip-mini .arrow { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.trip-mini:hover .arrow { color: var(--terra-dark); }

/* Note */
.land-note { padding: 3rem 0 5rem; background: var(--sand); text-align: center; }
.land-note p { color: var(--ink-soft); font-size: 1.05rem; }
.land-note a { color: var(--blue); font-weight: 600; }

/* Print / reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cat-panel { animation: none; }
}


/* ==========================================================================
   DESIGN v21 — BRIGHT WHITE THEME
   Airy, luminous, minimal. Sections separated by soft dividers, not color.
   ========================================================================== */

body { background: #FFFFFF; }

/* Landing sections on bright white with hairline dividers */
.land-hero, .land-circles, .land-panels, .land-note { background: #FFFFFF; }
.land-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF6 100%) !important;
}
.land-circles { border-top: 1px solid var(--gold-soft); margin-top: 2rem; }
.land-panels { border-top: 1px solid var(--gold-soft); }

/* Cards pop on white with soft shadows */
.circle-inner {
  background: #FFFFFF;
  border-color: var(--gold-soft);
  box-shadow: 0 4px 20px -8px rgba(31, 27, 22, 0.10);
}
.trip-mini {
  background: #FFFFFF;
  border-color: var(--gold-soft);
  box-shadow: 0 2px 12px -6px rgba(31, 27, 22, 0.06);
}
.trip-mini:hover { border-color: var(--terra); box-shadow: 0 10px 28px -12px rgba(31, 27, 22, 0.16); }
.cat-panel {
  background: #FFFFFF;
  box-shadow: 0 20px 50px -30px rgba(31, 27, 22, 0.18);
}

/* Header glass on white */
.site-header { background: rgba(255, 255, 255, 0.88) !important; }

/* Text depth */
main, section, article, h1, h2, h3, h4 { color: var(--ink); }
.land-title { color: var(--ink); }
.land-lede { color: var(--ink-soft); }
.eyebrow { color: var(--terra-dark); }

/* Divider lines softer */
hr, .divider { border-color: var(--gold-soft); }


/* ==========================================================================
   CATEGORY PAGES (v21) — one page per travel circle
   ========================================================================== */

.cat-hero {
  padding: 5.5rem 0 2.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF6 100%);
  text-align: center;
}
.cat-hero .container { max-width: 860px; }
.cat-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.8rem 0 0;
}
.cat-title em { font-family: var(--font-serif-italic); font-style: italic; color: var(--terra); font-weight: 400; }

.cat-trips { padding: 3rem 0 4rem; background: #FFFFFF; border-top: 1px solid var(--gold-soft); }
.cat-trips .container { max-width: 1080px; }
.trip-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .trip-mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .trip-mini-grid { grid-template-columns: 1fr; } }

.cat-note { padding: 1rem 0 5rem; background: #FFFFFF; text-align: center; }
.cat-note p { color: var(--ink-soft); font-size: 1.05rem; }
.cat-note a { color: var(--blue); font-weight: 600; }


/* ==========================================================================
   PARTNER CARD (ladies-only → Madame Cruise)
   Marine deep blue to echo the partner's identity, still in Belvi's system.
   ========================================================================== */

.trip-partner {
  background: linear-gradient(160deg, #1C2B4A 0%, #24365C 60%, #2E4268 100%);
  border: 1px solid #1C2B4A;
  color: #F5F1E8;
  position: relative;
  overflow: hidden;
}
.trip-partner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 85% -10%, rgba(255,255,255,0.10), transparent 60%);
  pointer-events: none;
}
.trip-partner:hover {
  border-color: #3E5A8C;
  box-shadow: 0 16px 40px -14px rgba(28, 43, 74, 0.45);
  transform: translateY(-3px);
}
.trip-partner h3 { color: #FFFFFF; font-family: var(--font-serif-italic); font-style: italic; font-weight: 500; font-size: 1.45rem; }
.trip-partner p { color: rgba(245, 241, 232, 0.78); }
.trip-partner .arrow { color: #C9D6EC; }
.trip-partner:hover .arrow { color: #FFFFFF; }

.partner-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1C2B4A;
  background: #E8C87E;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}


/* ==========================================================================
   LLUMA PARTNER BADGE (floating, bottom-right on landing)
   Echoes lluma.fit identity: warm cream, peach, soft terracotta, deep plum.
   ========================================================================== */

.lluma-badge {
  position: fixed;
  bottom: 1.4rem;
  inset-inline-end: 1.4rem;
  z-index: 59;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: min(320px, calc(100vw - 2.8rem));
  padding: 0.7rem 0.9rem 0.7rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #F9E2D3 0%, #F2B89A 55%, #E09B76 100%);
  border: 1px solid rgba(50, 37, 51, 0.12);
  box-shadow: 0 14px 34px -12px rgba(50, 37, 51, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lluma-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -14px rgba(50, 37, 51, 0.45);
}
.lluma-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.lluma-badge-kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(50, 37, 51, 0.72);
  margin-bottom: 0.2rem;
}
.lluma-badge-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #322533;
  text-transform: lowercase;
}
.lluma-badge-sub {
  font-size: 0.68rem;
  color: rgba(50, 37, 51, 0.78);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lluma-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #322533;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(50, 37, 51, 0.12);
}

/* WhatsApp float stacks ABOVE the LLUMA badge (badge owns the corner) */
.whatsapp-float {
  bottom: 6.4rem !important;
  inset-inline-end: 1.4rem !important;
  z-index: 58 !important;
}
@media (max-width: 560px) {
  .whatsapp-float { bottom: 7.2rem !important; }
}

/* Reduced motion safety */

/* Section rhythm — more air, calmer pace */
.section { padding: 5.5rem 0; }
.hero-editorial { padding: 6rem 0 5rem; }
.manifesto { padding: 7rem 0 6rem; }
.escapes { padding: 6rem 0 7rem; }
.pillars { padding: 6rem 0; }
.ed-section { padding: 6rem 0; }
.enquire { padding: 7rem 0 6rem; }

/* Hero headline — slightly larger, more presence */
.hero-editorial h1 { font-size: clamp(3rem, 8vw, 6.4rem); letter-spacing: -0.025em; }
.dest-hero h1 { font-size: clamp(3rem, 7vw, 5.6rem); }

/* Card imagery — gentle inner rounding */
.escape-card .img-wrap, .jp-card .img-wrap, .path-card .img-wrap,
.tour-card img, .dest-card, .stack-gallery img, .gallery img {
  border-radius: var(--radius);
}

/* Quote marks on manifesto */
.manifesto p { letter-spacing: -0.01em; }

/* Footer — slightly tighter, refined */
.site-footer { padding: 4rem 0 2rem; }

/* Buttons — consistent pill-free editorial, but softer radius */
.btn-editorial, .nav-cta { border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
