@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   We Are Wilderness Africa — shared stylesheet
   Design tokens live here at the top. Swap these values to
   re-skin the entire site. Built on a warm earth-tone system:
   terracotta = interaction, camel/espresso = brand, stone
   neutrals are always warm (never cool/blue grays).
   ============================================================ */

:root {
  /* ---- Colour ---- */
  --color-terracotta:       #C2410C;   /* primary — CTAs, links, active */
  --color-terracotta-hover: #9A3412;   /* burnt sienna — hover */
  --color-amber:            #F59E0B;    /* attention accent */
  --color-camel:            #C29B5B;    /* brand gold (from logo lion) */
  --color-camel-soft:       #DCC49A;    /* lighter gold for dark grounds */
  --color-espresso:         #2B2018;    /* brand dark (logo disc) */
  --color-espresso-2:       #3A2C21;    /* raised dark surface */

  --color-cream:            #FBF8F3;    /* page background */
  --color-sand:             #F3ECE1;    /* alt section wash */
  --color-surface:          #FFFFFF;    /* cards / panels */
  --color-stone:            #837B72;    /* muted / meta text */
  --color-ink:              #211B15;    /* warm near-black headings/body */
  --color-ink-soft:         #57514A;    /* body secondary */
  --color-border:           #E4DCCF;    /* warm hairline borders */

  --color-success:          #15803D;
  --color-warning:          #B45309;
  --color-error:            #DC2626;

  /* ---- Type ---- */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;

  /* ---- Spacing (4px grid) ---- */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px;

  /* ---- Radius ---- */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-xl:   26px;
  --radius-pill: 9999px;

  /* ---- Elevation (warm-tinted, never neutral black) ---- */
  --shadow-sm: 0 1px 2px rgba(43,32,24,0.05);
  --shadow-md: 0 6px 20px rgba(43,32,24,0.08);
  --shadow-lg: 0 18px 48px rgba(43,32,24,0.14);
  --shadow-cta:0 8px 22px rgba(194,65,12,0.28);

  /* ---- Layout ---- */
  --container: 1200px;
  --nav-h: 76px;
  --focus-ring: 0 0 0 3px rgba(194,65,12,0.30);
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ============================================================
   Base / reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: var(--weight-bold);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.2rem; letter-spacing: -0.01em; }
p  { margin: 0 0 var(--space-4); text-wrap: pretty; }
a  { color: var(--color-terracotta); text-decoration: none; }
a:hover { color: var(--color-terracotta-hover); }

:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
.section--tight { padding-block: clamp(var(--space-12), 7vw, var(--space-20)); }
.section--sand { background: var(--color-sand); }
.section--dark { background: var(--color-espresso); color: #E9E0D4; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #FBF6EE; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: var(--weight-bold);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-4);
}
.section--dark .eyebrow { color: var(--color-camel-soft); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }

.lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--color-ink-soft); line-height: 1.6; }
.section--dark .lead { color: #D9CFC1; }
.measure { max-width: 60ch; }
.center { text-align: center; margin-inline: auto; }
.section-head { max-width: 64ch; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --b: var(--color-terracotta);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: 1rem; font-weight: var(--weight-semibold);
  line-height: 1; padding: 15px 26px; border-radius: var(--radius-md);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease), transform .15s var(--ease), border-color .15s var(--ease);
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--color-terracotta); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--color-terracotta-hover); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-border); }
.btn--ghost:hover { background: var(--color-surface); border-color: var(--color-stone); color: var(--color-ink); transform: translateY(-2px); }
.btn--on-dark { background: transparent; color: #FBF6EE; border-color: rgba(255,255,255,0.35); }
.btn--on-dark:hover { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

.textlink { font-weight: var(--weight-semibold); display: inline-flex; align-items: center; gap: 6px; }
.textlink svg { width: 16px; height: 16px; transition: transform .15s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* ============================================================
   Top navigation (CSS-only mobile menu)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: var(--space-6); }
.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius-md);
  border: 1px solid var(--color-border); background: var(--color-surface);
  cursor: pointer; color: var(--color-ink);
}
.nav-burger svg { width: 24px; height: 24px; }
.nav-burger .close-ic { display: none; }
.nav-toggle:checked ~ .nav-burger .open-ic { display: none; }
.nav-toggle:checked ~ .nav-burger .close-ic { display: block; }
.nav-toggle:focus-visible ~ .nav-burger { box-shadow: var(--focus-ring); }

.nav-links {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-cream); border-bottom: 1px solid var(--color-border);
  display: grid; gap: var(--space-1);
  padding: var(--space-4) var(--space-5) var(--space-6);
  max-height: 0; overflow: hidden; visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: max-height .3s var(--ease), visibility .3s var(--ease);
}
.nav-toggle:checked ~ .nav-links { max-height: 460px; visibility: visible; }
.nav-links a:not(.btn) {
  font-weight: var(--weight-semibold); color: var(--color-ink);
  padding: 12px 8px; border-radius: var(--radius-sm); font-size: 1.05rem;
}
.nav-links a:not(.btn):hover { background: var(--color-sand); color: var(--color-terracotta); }
.nav-links a.is-active { color: var(--color-terracotta); }
.nav-links .btn { margin-top: var(--space-2); }

@media (min-width: 940px) {
  .nav-burger { display: none; }
  .nav-links {
    position: static; display: flex; align-items: center; gap: var(--space-2);
    max-height: none; visibility: visible; overflow: visible; padding: 0;
    background: none; border: 0; box-shadow: none;
  }
  .nav-links a:not(.btn) { padding: 8px 14px; font-size: 1rem; }
  .nav-links a.is-active { position: relative; }
  .nav-links a.is-active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
    background: var(--color-terracotta); border-radius: 2px;
  }
  .nav-links .btn { margin-top: 0; margin-left: var(--space-3); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; color: #FBF6EE; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(43,32,24,0.55) 0%, rgba(43,32,24,0.42) 35%, rgba(43,32,24,0.82) 100%);
}
.hero__inner { padding-block: clamp(var(--space-20), 16vw, 200px); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: var(--space-5); }
.hero .lead { color: rgba(255,255,255,0.92); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.hero--page .hero__inner { padding-block: clamp(var(--space-16), 11vw, 140px); max-width: 720px; }
.hero__crumbs { font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); margin-bottom: var(--space-4); }
.hero__crumbs a { color: rgba(255,255,255,0.8); }
.hero__crumbs a:hover { color: #fff; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D6CBB7; }
.card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--color-sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card--hover:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: rgba(43,32,24,0.82); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.72rem; font-weight: var(--weight-semibold); letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill);
}
.card__body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: var(--space-2); }
.card__body p { font-size: 1rem; margin-bottom: var(--space-5); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.card__meta { font-size: 0.85rem; color: var(--color-stone); font-weight: var(--weight-semibold); }

/* icon feature cards */
.feature { padding: var(--space-8); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); height: 100%; }
.feature .ic {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: rgba(194,65,12,0.08); color: var(--color-terracotta); margin-bottom: var(--space-5);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.3rem; }
.feature p { font-size: 1rem; margin-bottom: 0; }
.section--dark .feature { background: var(--color-espresso-2); border-color: rgba(255,255,255,0.10); }
.section--dark .feature p { color: #CFC4B5; }
.section--dark .feature .ic { background: rgba(220,196,154,0.14); color: var(--color-camel-soft); }

/* ============================================================
   Split / editorial
   ============================================================ */
.split { display: grid; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split__media--tall img { aspect-ratio: 4/5; }
.split__badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6); box-shadow: var(--shadow-lg); max-width: 230px;
}
.split__badge .num { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 2.4rem; color: var(--color-terracotta); line-height: 1; }
.split__badge .lbl { font-size: 0.9rem; color: var(--color-ink-soft); }
@media (max-width: 560px) { .split__badge { position: static; margin-top: var(--space-5); max-width: none; } }

.tile-stack { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.tile-stack img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; width: 100%; }
.tile-stack img:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; }

/* ============================================================
   Stats band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--color-camel); line-height: 1; letter-spacing: -0.02em; }
.stat .l { display: block; margin-top: var(--space-2); font-size: 0.95rem; color: #D9CFC1; letter-spacing: 0.02em; }
.section:not(.section--dark) .stat .n { color: var(--color-terracotta); }
.section:not(.section--dark) .stat .l { color: var(--color-ink-soft); }

/* ============================================================
   Process timeline
   ============================================================ */
.timeline { display: grid; gap: var(--space-6); counter-reset: step; }
@media (min-width: 760px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.tl-step { position: relative; padding-top: var(--space-8); }
.tl-step .no {
  font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.5rem;
  width: 52px; height: 52px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-espresso); color: var(--color-camel-soft);
  margin-bottom: var(--space-4);
}
.tl-step h4 { margin-bottom: var(--space-2); font-size: 1.25rem; }
.tl-step p { font-size: 0.98rem; margin-bottom: 0; }
.tl-step::before {
  content: ""; position: absolute; top: calc(var(--space-8) + 26px); left: 60px; right: -20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-camel) 0 8px, transparent 8px 16px);
}
@media (max-width: 759px) { .tl-step::before { display: none; } }
.timeline .tl-step:last-child::before { display: none; }

/* ============================================================
   Comparison table
   ============================================================ */
.compare-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); }
table.compare { width: 100%; border-collapse: collapse; min-width: 540px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 1rem; }
table.compare thead th { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-ink); background: var(--color-sand); }
table.compare thead th:first-child { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-stone); font-weight: var(--weight-bold); }
table.compare tbody th { font-weight: var(--weight-semibold); color: var(--color-ink); }
table.compare td { color: var(--color-ink-soft); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare .yes { color: var(--color-success); font-weight: var(--weight-semibold); display: inline-flex; align-items: center; gap: 6px; }
table.compare .no { color: var(--color-stone); }
table.compare .yes svg { width: 18px; height: 18px; }
.col-accent { background: rgba(194,65,12,0.04); }

/* ============================================================
   Pricing / package tiers
   ============================================================ */
.tier {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-8); display: flex; flex-direction: column; height: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--featured { border: 1.5px solid var(--color-terracotta); box-shadow: var(--shadow-md); position: relative; }
.tier__flag { position: absolute; top: var(--space-5); right: var(--space-5); background: var(--color-terracotta); color: #fff; font-size: 0.7rem; font-weight: var(--weight-bold); letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); }
.tier .days { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 2.6rem; color: var(--color-terracotta); line-height: 1; }
.tier .days small { font-size: 1rem; color: var(--color-stone); font-family: var(--font-body); font-weight: var(--weight-semibold); display: block; letter-spacing: 0.02em; }
.tier h3 { margin: var(--space-4) 0 var(--space-2); }
.tier .sub { color: var(--color-stone); font-size: 0.95rem; margin-bottom: var(--space-5); }
.tier ul { list-style: none; margin: 0 0 var(--space-6); padding: 0; display: grid; gap: var(--space-3); border-top: 1px solid var(--color-border); padding-top: var(--space-5); }
.tier ul li { display: flex; gap: var(--space-3); font-size: 0.98rem; color: var(--color-ink-soft); }
.tier ul li svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--color-camel); margin-top: 3px; }
.tier .btn { margin-top: auto; }

/* ============================================================
   FAQ accordion (pure CSS via <details>)
   ============================================================ */
.faq { display: grid; gap: var(--space-3); max-width: 820px; }
.faq details {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface); overflow: hidden;
}
.faq details[open] { border-color: #D6CBB7; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.15rem; color: var(--color-ink);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex-shrink: 0; transition: transform .25s var(--ease); color: var(--color-terracotta); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq__a { padding: 0 22px 22px; }
.faq .faq__a p { margin: 0; font-size: 1rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.quote-grid { display: grid; gap: var(--space-6); }
@media (min-width: 760px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); display: flex; flex-direction: column; }
.quote .stars { display: flex; gap: 2px; color: var(--color-amber); margin-bottom: var(--space-4); }
.quote .stars svg { width: 18px; height: 18px; }
.quote blockquote { margin: 0 0 var(--space-6); font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--color-ink); }
.quote .who { margin-top: auto; display: flex; align-items: center; gap: var(--space-3); }
.quote .av { width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--color-espresso); color: var(--color-camel-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: var(--weight-bold); }
.quote .who b { display: block; color: var(--color-ink); font-weight: var(--weight-semibold); }
.quote .who span { font-size: 0.88rem; color: var(--color-stone); }

/* ============================================================
   Destination chips / strip
   ============================================================ */
.dest-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (min-width: 680px) { .dest-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .dest-strip { grid-template-columns: repeat(6, 1fr); } }
.dest { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dest:hover img { transform: scale(1.06); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(43,32,24,0.78)); }
.dest span { position: absolute; left: 12px; bottom: 12px; right: 12px; z-index: 1; color: #fff; font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.05rem; }

/* generic checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.checklist li { display: flex; gap: var(--space-3); align-items: flex-start; }
.checklist li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-terracotta); margin-top: 4px; }
.checklist.two { gap: var(--space-3) var(--space-8); }
@media (min-width: 680px) { .checklist.two { grid-template-columns: 1fr 1fr; } }

/* pill tags row */
.pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill { border: 1px solid var(--color-border); background: var(--color-surface); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 0.92rem; font-weight: var(--weight-semibold); color: var(--color-ink-soft); }
.section--dark .pill { background: var(--color-espresso-2); border-color: rgba(255,255,255,0.12); color: #D9CFC1; }

/* CTA band */
.cta-band { background: var(--color-espresso); color: #EDE3D6; border-radius: var(--radius-xl); padding: clamp(var(--space-10), 6vw, var(--space-20)); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #FBF6EE; }
.cta-band p { color: #D9CFC1; max-width: 52ch; margin-inline: auto; }
.cta-band .hero__cta { justify-content: center; }

/* ============================================================
   Forms
   ============================================================ */
.form-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 4vw, var(--space-10)); box-shadow: var(--shadow-sm); }
.field { margin-bottom: var(--space-5); }
.field label { display: block; font-weight: var(--weight-semibold); color: var(--color-ink); font-size: 0.95rem; margin-bottom: var(--space-2); }
.field label .req { color: var(--color-terracotta); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--color-ink);
  background: var(--color-cream); border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  padding: 13px 15px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #A89E90; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-terracotta); box-shadow: var(--focus-ring); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--color-error); }
.field-row { display: grid; gap: var(--space-5); }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.85rem; color: var(--color-stone); margin-top: var(--space-3); }
fieldset { border: 0; padding: 0; margin: 0; }

/* contact rows */
.contact-row { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-md); background: rgba(194,65,12,0.08); color: var(--color-terracotta); display: flex; align-items: center; justify-content: center; }
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row b { display: block; color: var(--color-ink); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row a, .contact-row p { color: var(--color-ink-soft); margin: 2px 0 0; font-size: 1.05rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--color-espresso); color: #C9BEAF; padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; gap: var(--space-10); grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer-brand .wordmark { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.5rem; color: #FBF6EE; line-height: 1.1; }
.footer-brand .wordmark span { color: var(--color-camel); letter-spacing: 0.18em; font-size: 0.95rem; display: block; }
.footer-brand p { color: #B6AB9C; max-width: 38ch; margin-top: var(--space-4); }
.footer-col h4 { color: #FBF6EE; font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: var(--weight-bold); margin-bottom: var(--space-5); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.footer-col a { color: #C9BEAF; font-size: 0.98rem; }
.footer-col a:hover { color: var(--color-camel-soft); }
.socials { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.socials a { width: 42px; height: 42px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; color: #C9BEAF; }
.socials a:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center; font-size: 0.88rem; color: #998E7F; }
.footer-bottom a { color: #998E7F; }
.footer-bottom a:hover { color: var(--color-camel-soft); }

/* utilities */
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.maxw-720 { max-width: 720px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--color-terracotta); color: #fff; padding: 10px 16px; border-radius: var(--radius-md); z-index: 100; }
.skip-link:focus { left: 8px; color: #fff; }

/* ============================================================
   Eyebrow — centered chevron variant (Tripitika-style)
   ============================================================ */
.eyebrow--center { justify-content: center; }
.eyebrow--chev::before { display: none; }
.eyebrow--chev { gap: var(--space-2); }
.eyebrow--chev svg { width: 15px; height: 15px; }

/* ============================================================
   Exotic destinations masonry (Go To Exotic Places)
   ============================================================ */
.exotic { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 620px) { .exotic { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) {
  .exotic { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 248px); }
  .exo--tall { grid-column: 3; grid-row: 1 / span 2; }
}
.exo { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; min-height: 248px; isolation: isolate; }
.exo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); z-index: -2; }
.exo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43,32,24,0) 35%, rgba(43,32,24,0.8)); }
.exo:hover img { transform: scale(1.06); }
.exo__label { position: absolute; left: var(--space-6); bottom: var(--space-6); color: #fff; }
.exo__label .name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.6rem; line-height: 1.05; }
.exo__label .place { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-top: 4px; }
.exo__btn { position: absolute; right: var(--space-5); bottom: var(--space-5); width: 48px; height: 48px; border-radius: var(--radius-pill); background: var(--color-terracotta); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-cta); transition: background .15s var(--ease), transform .15s var(--ease); }
.exo__btn svg { width: 20px; height: 20px; }
.exo:hover .exo__btn { background: var(--color-terracotta-hover); transform: translate(2px,-2px); }

/* ============================================================
   Tour & Travel types — icon cards (dark band)
   ============================================================ */
.types { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .types { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .types { grid-template-columns: repeat(5, 1fr); } }
.type { background: var(--color-surface); border-radius: var(--radius-lg); padding: var(--space-8) var(--space-5); text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.type:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.type .ic { width: 64px; height: 64px; margin: 0 auto var(--space-4); color: var(--color-terracotta); }
.type .ic svg { width: 100%; height: 100%; }
.type h3 { font-size: 1.3rem; margin-bottom: var(--space-3); }
.type .count { display: inline-block; background: var(--color-terracotta); color: #fff; font-size: 0.78rem; font-weight: var(--weight-semibold); padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: var(--space-3); }
.type .start { font-size: 0.9rem; color: var(--color-stone); margin: 0; }
.type .start b { color: var(--color-ink); font-weight: var(--weight-semibold); }

/* ============================================================
   Travel choice cards (Find Out The Best Travel Choice)
   ============================================================ */
.choices { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 620px) { .choices { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .choices { grid-template-columns: repeat(3, 1fr); } }
.choice { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5 / 6; isolation: isolate; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.choice:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.choice img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); z-index: -2; }
.choice:hover img { transform: scale(1.05); }
.choice__rating, .choice__days { position: absolute; top: var(--space-4); background: rgba(251,248,243,0.95); backdrop-filter: blur(4px); border-radius: var(--radius-pill); padding: 6px 13px; font-size: 0.82rem; font-weight: var(--weight-semibold); color: var(--color-ink); display: flex; align-items: center; gap: 5px; }
.choice__rating { left: var(--space-4); }
.choice__rating svg { width: 14px; height: 14px; color: var(--color-amber); }
.choice__days { right: var(--space-4); }
.choice__bar { position: absolute; left: var(--space-3); right: var(--space-3); bottom: var(--space-3); background: rgba(251,248,243,0.96); backdrop-filter: blur(6px); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.choice__bar .nm { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.25rem; color: var(--color-ink); line-height: 1.1; }
.choice__bar .loc { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--color-stone); margin-top: 3px; }
.choice__bar .loc svg { width: 14px; height: 14px; color: var(--color-terracotta); }
.choice__bar .price { text-align: right; flex-shrink: 0; }
.choice__bar .price small { display: block; font-size: 0.7rem; color: var(--color-stone); text-transform: uppercase; letter-spacing: 0.06em; }
.choice__bar .price b { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.3rem; color: var(--color-terracotta); }

/* ============================================================
   Footer — newsletter + payment row
   ============================================================ */
.footer-extra { margin-top: var(--space-12); padding-top: var(--space-10); border-top: 1px solid rgba(255,255,255,0.12); display: grid; gap: var(--space-8); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .footer-extra { grid-template-columns: auto 1fr auto; gap: var(--space-12); align-items: center; } }
.footer-extra h4 { color: #FBF6EE; font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: var(--weight-bold); margin-bottom: var(--space-4); }
.subscribe { display: flex; gap: var(--space-2); max-width: 460px; }
.subscribe input { flex: 1; min-width: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-md); padding: 13px 16px; color: #FBF6EE; font-family: var(--font-body); font-size: 0.98rem; }
.subscribe input::placeholder { color: #998E7F; }
.subscribe input:focus { outline: none; border-color: var(--color-camel); box-shadow: 0 0 0 3px rgba(194,155,91,0.2); }
.subscribe button { flex-shrink: 0; }
.paylist { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.paylist span { width: 46px; height: 30px; border-radius: var(--radius-sm); background: #FBF6EE; display: flex; align-items: center; justify-content: center; }
.paylist svg { height: 13px; width: auto; display: block; }

/* ============================================================
   Contact — "Get closer" split with overlapping form card
   ============================================================ */
.contact-split { display: grid; gap: clamp(var(--space-8), 5vw, var(--space-16)); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .contact-split { grid-template-columns: 1fr 1fr; } }
.contact-pull { position: relative; z-index: 5; }
@media (min-width: 920px) { .contact-pull { margin-top: -180px; } }
.ic-circle { width: 50px; height: 50px; flex-shrink: 0; border-radius: var(--radius-pill); border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-terracotta); display: flex; align-items: center; justify-content: center; }
.ic-circle svg { width: 22px; height: 22px; }
.contact-list { display: grid; gap: var(--space-5); margin: var(--space-8) 0; }
.contact-list .row { display: flex; align-items: center; gap: var(--space-4); }
.contact-list .row b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-stone); margin-bottom: 2px; }
.contact-list .row a, .contact-list .row p { color: var(--color-ink); font-size: 1.1rem; font-weight: var(--weight-semibold); margin: 0; }
.contact-list .row a:hover { color: var(--color-terracotta); }

/* Map embed */
.map-embed { width: 100%; border: 0; display: block; border-radius: var(--radius-lg); min-height: 380px; filter: saturate(0.9); }
.map-full { width: 100%; height: clamp(340px, 42vw, 480px); border: 0; display: block; }

/* ============================================================
   Destination detail
   ============================================================ */
.dd-head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-6); margin-bottom: var(--space-6); }
.dd-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--color-stone); font-weight: var(--weight-semibold); font-size: 1.02rem; }
.dd-loc svg { width: 18px; height: 18px; color: var(--color-terracotta); }
.dd-stars { display: inline-flex; gap: 3px; color: var(--color-amber); }
.dd-stars svg { width: 20px; height: 20px; }
.dd-stars .empty { color: var(--color-border); }
.dd-hero-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: var(--space-8) 0; }
.inc-pills { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.inc-pill { display: inline-flex; align-items: center; gap: var(--space-3); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 14px 22px; font-weight: var(--weight-semibold); color: var(--color-ink); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.inc-pill:hover { border-color: #D6CBB7; box-shadow: var(--shadow-sm); }
.inc-pill svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-terracotta); }
.inc-pill.is-ex svg { color: var(--color-stone); }
.trip-detail { display: grid; gap: var(--space-6); }
.trip-row { display: flex; align-items: center; gap: var(--space-4); }
.trip-row .ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--radius-md); background: rgba(194,65,12,0.08); color: var(--color-terracotta); display: flex; align-items: center; justify-content: center; }
.trip-row .ic svg { width: 26px; height: 26px; }
.trip-row .lbl { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.25rem; color: var(--color-ink); line-height: 1.1; }
.trip-row .val { font-size: 0.98rem; color: var(--color-stone); }
