:root {
  --ink: #0C0D0B;
  --sable: #161815;
  --kopje: #2B2E29;
  --bone: #E6DFCD;
  --paper: #F1EBDA;
  --paper-2: #E7DFC9;
  --haze: #9E9077;
  --ochre: #B7852C;
  --ochre-2: #D9A24A;
  --madder: #983029;
  --olive: #5B5D3E;

  --bg: var(--ink);
  --fg: var(--bone);
  --muted: #A79A80;
  --accent: var(--ochre-2);
  --contra: var(--madder);
  --panel: var(--sable);
  --hairline: rgba(230, 223, 205, 0.16);

  --display: "Bodoni 72", "Bodoni Moda", "Didot", "Didot LT STD",
             "Playfair Display", "Iowan Old Style", "Book Antiqua",
             "Palatino Linotype", "Palatino", Georgia, serif;
  --body: "Iowan Old Style", "Sitka Text", "Charter", Georgia,
          "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
          "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Roboto Mono",
          Menlo, Consolas, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --measure: 68ch;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: var(--paper);
    --fg: var(--ink);
    --muted: #6a6353;
    --panel: var(--paper-2);
    --accent: #8a5f1c;
    --hairline: rgba(12, 13, 11, 0.16);
  }
}
:root[data-theme="dark"] {
  --bg: var(--ink); --fg: var(--bone); --muted: #A79A80;
  --panel: var(--sable); --accent: var(--ochre-2);
  --hairline: rgba(230, 223, 205, 0.16);
}
:root[data-theme="light"] {
  --bg: var(--paper); --fg: var(--ink); --muted: #6a6353;
  --panel: var(--paper-2); --accent: #8a5f1c;
  --hairline: rgba(12, 13, 11, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { background: var(--bg); color: var(--fg); margin: 0; padding: 0; }
body {
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 1px solid var(--accent); outline-offset: 3px;
}
::selection { background: var(--ochre-2); color: var(--ink); }

.mono { font-family: var(--mono); font-feature-settings: "tnum" 1; }
.sans { font-family: var(--sans); }
.label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.rule { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* topbar */
.topbar {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  padding: 20px var(--gutter);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px; color: var(--bone);
}
.topbar.solid { position: relative; background: var(--ink); border-bottom: 1px solid var(--hairline); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; display: block; }
.brand .name {
  font-family: var(--display); font-size: 20px; letter-spacing: -0.005em;
  line-height: 1.05; color: var(--bone);
}
.brand .name small {
  display: block; font-family: var(--sans); font-size: 9.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(230,223,205,0.65); margin-top: 3px;
}
:root[data-theme="light"] .topbar.solid { background: var(--paper); }
:root[data-theme="light"] .topbar.solid .brand .name,
:root[data-theme="light"] .topbar.solid nav.primary a { color: var(--ink); }

nav.primary {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
nav.primary a { opacity: 0.85; transition: opacity 160ms, color 160ms; }
nav.primary a:hover, nav.primary a.on { opacity: 1; color: var(--ochre-2); }

.topbar-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.book-cta {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 11px 18px;
  background: var(--ochre-2); color: var(--ink); transition: background 160ms;
}
.book-cta:hover { background: #f0b658; }
.theme-toggle {
  font-family: var(--mono); font-size: 11px; background: transparent;
  border: 1px solid rgba(230,223,205,0.35); color: var(--bone);
  padding: 6px 10px; cursor: pointer; letter-spacing: 0.1em;
}
:root[data-theme="light"] .topbar.solid .theme-toggle {
  color: var(--ink); border-color: rgba(12,13,11,0.35);
}
/* Hide mobile-only chrome on desktop (default). Media queries below re-show it. */
.mobile-drawer-cta { display: none; }

/* ---- Hamburger (mobile only) ---- */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(230,223,205,0.45);
  color: var(--bone); cursor: pointer;
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  position: relative;
}
.topbar.solid .nav-toggle { color: var(--fg); border-color: var(--hairline); }
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: currentColor;
  position: relative;
  transition: transform 220ms, opacity 220ms;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: currentColor;
  transition: transform 220ms, top 220ms;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(90deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; opacity: 0; }

@media (max-width: 1080px) {
  .topbar { grid-template-columns: auto 1fr auto; row-gap: 0; gap: 12px; }
  .topbar .book-cta { padding: 10px 14px; font-size: 11px; letter-spacing: 0.16em; }
  nav.primary { grid-column: 1 / -1; justify-content: flex-start; gap: 18px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .topbar { grid-template-columns: auto 1fr auto auto; padding: 14px var(--gutter); gap: 10px; row-gap: 0; }
  .topbar .theme-toggle { display: none; }
  .topbar .brand .name { font-size: 16px; }
  .topbar .brand .name small { font-size: 8.5px; letter-spacing: 0.2em; }
  .topbar .brand img { width: 34px; height: 34px; }
  .topbar .book-cta { display: none; }

  /* Slide-down overlay drawer */
  nav.primary {
    position: fixed; inset: 0;
    background: rgba(6,6,4,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 96px var(--gutter) 40px;
    gap: 0;
    z-index: 30;
    overflow-y: auto;
  }
  nav.primary a {
    display: block;
    padding: 20px 4px;
    border-top: 1px solid rgba(230,223,205,0.12);
    font-family: var(--display);
    font-size: 26px;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--bone);
    opacity: 1;
    line-height: 1.15;
  }
  nav.primary a:last-child { border-bottom: 1px solid rgba(230,223,205,0.12); }
  nav.primary a:hover, nav.primary a.on { color: var(--ochre-2); }

  body[data-menu-open="true"] nav.primary { display: flex; }
  body[data-menu-open="true"] { overflow: hidden; }
  body[data-menu-open="true"] .topbar {
    position: fixed; inset: 0 0 auto 0;
    z-index: 50;                              /* above the drawer at z:30 */
    background: rgba(6,6,4,0.97);
    border-bottom: 1px solid rgba(230,223,205,0.14);
  }
  /* Keep the hamburger reliably tappable regardless of stacking */
  .topbar .topbar-right { position: relative; z-index: 55; }
  .nav-toggle { position: relative; z-index: 55; }

  /* Drawer CTAs at the bottom */
  nav.primary::after {
    content: "";
    display: block;
    height: 20px;
  }
  .mobile-drawer-cta {
    display: none;
  }
  body[data-menu-open="true"] .mobile-drawer-cta {
    display: grid;
    grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0;
    padding: 16px var(--gutter);
    background: rgba(6,6,4,0.98);
    border-top: 1px solid rgba(230,223,205,0.14);
    z-index: 40;
  }
  .mobile-drawer-cta a {
    text-align: center; padding: 14px 12px;
    font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 600;
  }
  .mobile-drawer-cta .book { background: var(--ochre-2); color: var(--ink); }
  .mobile-drawer-cta .wa   { background: #25D366; color: #fff; }
}

/* Hero + form tweaks for narrow screens */
@media (max-width: 640px) {
  .hero-inner { padding: 34vh var(--gutter) 40px; }
  .hero h1 { font-size: clamp(38px, 12vw, 60px); letter-spacing: -0.03em; }
  .hero-sub { font-size: 15px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-actions .trust { margin-left: 0; width: 100%; justify-content: flex-start; }
  .hero-foot { grid-template-columns: 1fr; text-align: left; gap: 8px; padding-bottom: 20px; }
  .hero-foot .scroll { justify-self: start; }
  .booking-block .booking-intro h2 { font-size: clamp(28px, 8vw, 40px); }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

/* page hero (inner pages) */
.page-hero {
  position: relative; padding: 160px var(--gutter) 80px;
  background: #050604; color: var(--bone); overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.page-hero.with-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover; background-position: center 35%;
  filter: saturate(0.85);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,4,0.6) 0%, rgba(6,6,4,0.05) 30%, rgba(6,6,4,0.3) 60%, rgba(6,6,4,0.92) 100%);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero .inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 24px;
}
.crumbs {
  font-family: var(--mono); font-size: 11.5px; color: rgba(230,223,205,0.7);
  letter-spacing: 0.06em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.crumbs a { transition: color 160ms; }
.crumbs a:hover { color: var(--ochre-2); }
.crumbs .sep { opacity: 0.5; }
.page-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0; max-width: 20ch;
}
.page-hero h1 em { font-style: italic; color: var(--ochre-2); }
.page-hero .lede {
  max-width: 60ch; font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55; color: rgba(230,223,205,0.86); margin: 0;
}
.page-hero .meta {
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  margin-top: 8px;
  font-family: var(--mono); font-size: 11.5px; color: rgba(230,223,205,0.7);
  letter-spacing: 0.08em;
}
.page-hero .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(230,223,205,0.5); }

/* prose */
.prose-wrap { padding: 80px var(--gutter); max-width: var(--max); margin: 0 auto; }
.prose-grid { display: grid; grid-template-columns: 220px 1fr; gap: 60px; }
.prose-grid .side {
  position: sticky; top: 40px; align-self: start;
  font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.14em;
}
.prose-grid .side .k { display: block; margin-bottom: 6px; text-transform: uppercase; }
.prose-grid .side .v { color: var(--fg); font-family: var(--body); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 15px; }
@media (max-width: 900px) {
  .prose-grid { grid-template-columns: 1fr; gap: 24px; }
  .prose-grid .side { position: static; }
}

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1em; }
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--display); font-weight: 400;
  letter-spacing: -0.02em; text-wrap: balance; line-height: 1.15;
  margin-top: 2em; margin-bottom: 0.4em;
}
.prose h1 { font-size: clamp(30px, 3.4vw, 44px); }
.prose h2 { font-size: clamp(26px, 2.6vw, 34px); border-top: 1px solid var(--hairline); padding-top: 1em; }
.prose h3 { font-size: clamp(20px, 1.7vw, 24px); color: var(--fg); }
.prose h4 { font-size: 18px; color: var(--accent); font-family: var(--sans); font-weight: 500; letter-spacing: 0.02em; text-transform: none; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--fg); }
/* Note: drop-cap intentionally NOT applied to generic .prose paragraphs.
   It was firing on the first <p> in every <section> (see contact page),
   which read as noise. Drop-cap now lives only on:
     .about-2col .prose-body p:first-of-type::first-letter  (homepage About)
     .chapters .intro p:first-of-type::first-letter         (article intros) */
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 8px; font-size: 17px; line-height: 1.6; }
.prose ul li::marker { color: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--fg); }
.prose blockquote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.3;
  border-left: 2px solid var(--contra); padding-left: 22px;
  color: var(--fg); margin: 1.5em 0;
}
.prose img { margin: 1.5em auto; border: 1px solid var(--hairline); }
.prose hr { border: 0; border-top: 1px solid var(--hairline); margin: 2em 0; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 15px; margin: 1.5em 0; }
.prose th, .prose td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--hairline); }
.prose th { color: var(--muted); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }

/* CTA rail */
.rail {
  margin-top: 60px; padding: 32px;
  border: 1px solid var(--hairline); background: var(--panel);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
}
.rail h4 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 2vw, 28px); margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.rail p { margin: 0; color: var(--muted); font-size: 15px; max-width: 46ch; }
.rail .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ochre-2); color: var(--ink);
  padding: 14px 22px; font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 160ms; display: inline-block;
}
.btn-primary:hover { background: #f0b658; }
.btn-ghost {
  padding: 14px 22px; border: 1px solid var(--hairline);
  color: var(--fg); font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 780px) {
  .rail { grid-template-columns: 1fr; }
}

/* related links strip */
.related {
  background: var(--panel);
  padding: 60px var(--gutter);
  border-top: 1px solid var(--hairline);
}
.related-inner { max-width: var(--max); margin: 0 auto; }
.related h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}
.related h3 em { font-style: italic; color: var(--accent); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-grid a {
  display: grid; gap: 8px; padding: 20px;
  border: 1px solid var(--hairline); background: var(--bg);
  transition: border-color 160ms;
}
.related-grid a:hover { border-color: var(--accent); }
.related-grid .k { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.related-grid .t { font-family: var(--display); font-size: 20px; letter-spacing: -0.01em; line-height: 1.15; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* footer */
footer.foot {
  padding: 60px var(--gutter) 40px;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; border-top: 1px solid var(--hairline);
  font-family: var(--sans); font-size: 13px; color: var(--muted);
}
footer.foot h5 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; margin: 0 0 16px 0;
  color: var(--fg); font-weight: 500;
}
footer.foot .mark { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 12px; }
footer.foot .mark img { width: 40px; height: 40px; display: block; }
footer.foot .mark .name {
  font-family: var(--display); font-size: 22px; color: var(--fg); letter-spacing: -0.01em;
}
footer.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.foot a:hover { color: var(--accent); }
.colophon {
  max-width: var(--max); margin: 0 auto;
  padding: 20px var(--gutter) 40px;
  display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
@media (max-width: 780px) { footer.foot { grid-template-columns: 1fr 1fr; } }

/* homepage-specific */
.hero { position: relative; min-height: 100svh; background: #050604; color: var(--bone); overflow: hidden; display: grid; grid-template-rows: 1fr auto; }
.hero-photo { position: absolute; inset: 0; background-image: url("/wp-content/uploads/2025/10/jawai-leopard-safari-image-2.webp"); background-size: cover; background-position: center 35%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,4,0.55) 0%, rgba(6,6,4,0.05) 24%, rgba(6,6,4,0.15) 55%, rgba(6,6,4,0.85) 100%), linear-gradient(90deg, rgba(6,6,4,0.55) 0%, rgba(6,6,4,0) 55%); }
.hero-inner { position: relative; padding: 40vh var(--gutter) 60px; max-width: var(--max); margin: 0 auto; width: 100%; z-index: 2; }
.hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(48px, 8vw, 128px); line-height: 0.94; letter-spacing: -0.035em; margin: 0 0 32px 0; max-width: 14ch; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--ochre-2); font-weight: 400; }
.hero-sub { max-width: 52ch; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.55; color: rgba(230,223,205,0.86); }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow .tick { width: 32px; height: 1px; background: var(--ochre-2); }
/* Eyebrow label sits on a dark pill so it reads over ANY photo — bright or shadowed */
.hero-eyebrow .label {
  color: var(--ochre-2);
  background: rgba(6, 6, 4, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 7px 14px;
  border: 1px solid rgba(217, 162, 74, 0.35);
  border-radius: 999px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
/* WhatsApp CTA in the hero uses the real WhatsApp green so it's instantly recognisable */
.hero .btn-ghost[data-whatsapp],
.hero-actions .btn-ghost[data-whatsapp] {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 160ms, transform 160ms;
}
.hero .btn-ghost[data-whatsapp]:hover,
.hero-actions .btn-ghost[data-whatsapp]:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #ffffff;
  transform: translateY(-1px);
}
.hero .btn-ghost[data-whatsapp]::before {
  content: "";
  width: 16px; height: 16px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'><path d='M25.7 6.3A13.4 13.4 0 0 0 16 2C8.3 2 2 8.3 2 16c0 2.5.7 4.9 1.9 7L2 30l7.2-1.9c2 1.1 4.4 1.7 6.8 1.7C23.7 29.8 30 23.5 30 15.8c0-3.6-1.5-7-4.3-9.5zm-9.7 21.4c-2.2 0-4.3-.6-6.2-1.7l-.4-.2-4.3 1.1 1.1-4.2-.3-.4a11.6 11.6 0 0 1-1.8-6.3c0-6.4 5.2-11.6 11.6-11.6 3.1 0 6 1.2 8.2 3.4a11.5 11.5 0 0 1 3.4 8.2c0 6.4-5.2 11.7-11.6 11.7zm6.4-8.8c-.3-.2-1.9-1-2.2-1.1-.3-.1-.5-.2-.8.2-.2.3-.9 1.1-1.1 1.4-.2.2-.4.3-.7.1-.3-.2-1.4-.5-2.6-1.6-1-.9-1.6-2-1.8-2.3-.2-.3 0-.5.1-.7.1-.1.3-.4.5-.6.2-.2.2-.3.3-.5.1-.2.1-.4 0-.5s-.8-1.9-1-2.6c-.3-.7-.5-.6-.7-.6h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.1 3.2 5.1 4.5.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.1-.3-.2-.6-.4z'/></svg>");
  background-size: contain;
}

/* Non-WhatsApp ghost buttons on the dark hero — stronger outline than the hairline default */
.hero .btn-ghost:not([data-whatsapp]),
.hero-actions .btn-ghost:not([data-whatsapp]) {
  border: 1px solid rgba(230, 223, 205, 0.65);
  color: var(--bone);
  background: rgba(6, 6, 4, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background 160ms, border-color 160ms, color 160ms;
}
.hero .btn-ghost:not([data-whatsapp]):hover,
.hero-actions .btn-ghost:not([data-whatsapp]):hover {
  background: rgba(230, 223, 205, 0.14);
  border-color: var(--ochre-2);
  color: var(--ochre-2);
}
.trust { display: inline-flex; align-items: center; gap: 14px; margin-left: 12px; font-family: var(--mono); font-size: 12px; color: rgba(230,223,205,0.75); letter-spacing: 0.06em; }
.trust .stars { color: var(--ochre-2); letter-spacing: 2px; }
.hero-foot { position: relative; z-index: 2; grid-row: 2; padding: 22px var(--gutter) 26px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: end; border-top: 1px solid rgba(230,223,205,0.14); max-width: var(--max); margin: 0 auto; width: 100%; font-family: var(--mono); font-size: 12px; color: rgba(230,223,205,0.7); }
.field-strip { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 28px var(--gutter); max-width: var(--max); margin: 0 auto; }
.field-strip ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.field-strip li { display: grid; gap: 8px; }
.field-strip .k { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field-strip .v { font-family: var(--display); font-size: clamp(24px, 2.6vw, 38px); letter-spacing: -0.02em; line-height: 1; }
.field-strip .v small { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; padding-left: 6px; }
@media (max-width: 780px) { .field-strip ul { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* booking form (used on /safari-booking/) */
.booking-wrap { background: var(--panel); padding: clamp(60px, 8vw, 110px) var(--gutter); }
.booking { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.booking h3 { font-family: var(--display); font-weight: 400; font-size: clamp(36px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 24px 0; max-width: 14ch; text-wrap: balance; }
.booking h3 em { font-style: italic; color: var(--accent); }
.form { display: grid; gap: 0; border: 1px solid var(--hairline); background: var(--bg); }
.form .field { display: grid; grid-template-columns: 130px 1fr; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--hairline); gap: 20px; }
.form .field:last-of-type { border-bottom: 0; }
.form .field label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form .field input, .form .field select, .form .field textarea { background: transparent; border: 0; color: var(--fg); font-family: var(--body); font-size: 17px; padding: 6px 0; width: 100%; resize: vertical; }
.form .segmented { display: flex; border: 1px solid var(--hairline); }
.form .segmented button { flex: 1; background: transparent; border: 0; color: var(--fg); padding: 10px 12px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; border-right: 1px solid var(--hairline); }
.form .segmented button:last-child { border-right: 0; }
.form .segmented button.on { background: var(--accent); color: var(--ink); }
.form .stepper { display: inline-flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 16px; }
.form .stepper button { width: 28px; height: 28px; border: 1px solid var(--hairline); background: transparent; color: var(--fg); cursor: pointer; font-family: var(--mono); }
.form .reserve { display: grid; grid-template-columns: 1fr auto; align-items: center; background: var(--fg); color: var(--bg); padding: 22px 24px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; border: 0; }
.form .reserve:hover { background: var(--accent); color: var(--ink); }
.form .reserve .price { font-family: var(--display); font-size: 22px; letter-spacing: -0.01em; text-transform: none; }
@media (max-width: 900px) { .booking { grid-template-columns: 1fr; gap: 40px; } .form .field { grid-template-columns: 1fr; gap: 8px; } }

/* Ensure prose section on inner pages has a subtle background break */
.body-wrap { background: var(--bg); }

/* ============ landing-page sections ============ */

/* two-column with photo plate */
.about-2col {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(70px,9vw,130px) var(--gutter);
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center;
}
.about-2col .prose-body p {
  font-size: clamp(16px,1.15vw,18px); line-height: 1.7; margin: 0 0 1.1em 0; max-width: 54ch;
}
.about-2col .prose-body p:first-of-type::first-letter {
  font-family: var(--display); font-size: 5.4em; line-height: 0.85;
  float: left; padding: 4px 12px 0 0; color: var(--accent); font-style: italic;
}
.plate {
  position: relative; aspect-ratio: 4/5;
  border: 1px solid var(--hairline);
  background-color: #1a1c17; background-size: cover; background-position: center;
  display: grid; grid-template-rows: 1fr auto;
}
.plate .caption {
  padding: 14px 18px; background: rgba(6,6,4,0.72); color: #E6DFCD;
  border-top: 1px solid rgba(230,223,205,0.18);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; align-self: end;
}
@media (max-width: 900px) { .about-2col { grid-template-columns: 1fr; gap: 48px; } }

/* section head shared */
.sec {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(70px,9vw,130px) var(--gutter);
}
.sec .head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: baseline;
  margin-bottom: 56px;
}
.sec .head .idx {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.16em; padding-top: 8px;
}
.sec .head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px,4vw,54px); line-height: 1.02;
  letter-spacing: -0.02em; text-wrap: balance; margin: 0; max-width: 24ch;
}
.sec .head h2 em { font-style: italic; color: var(--accent); }
@media (max-width: 760px) {
  .sec .head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
}

/* inclusions grid */
.inclusions {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.inclusions > div { padding: 44px 40px; }
.inclusions .in { border-right: 1px solid var(--hairline); }
.inclusions h4 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 28px 0; font-weight: 500;
}
.inclusions .list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.inclusions .list li { display: grid; grid-template-columns: 22px 1fr; gap: 16px; }
.inclusions .list .m { font-family: var(--mono); font-size: 16px; line-height: 1; color: var(--accent); padding-top: 6px; }
.inclusions .out .list .m { color: var(--contra); }
.inclusions .list .head-line { font-family: var(--display); font-size: 21px; letter-spacing: -0.01em; line-height: 1.15; }
.inclusions .list .sub { font-size: 14.5px; color: var(--muted); line-height: 1.5; margin-top: 4px; max-width: 42ch; }
@media (max-width: 780px) {
  .inclusions { grid-template-columns: 1fr; }
  .inclusions .in { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .inclusions > div { padding: 32px 24px; }
}

/* knowledge box */
.know-wrap { background: var(--panel); padding: clamp(60px,8vw,110px) var(--gutter); }
.know {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr; gap: 60px;
}
.know .toc { position: sticky; top: 40px; align-self: start; }
.know .toc h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px,3vw,40px); letter-spacing: -0.02em; line-height: 1.05;
  margin: 12px 0 20px 0;
}
.know .toc ol { list-style: none; padding: 0; margin: 0; display: grid; }
.know .toc a {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px; padding: 12px 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.06em; color: var(--fg);
}
.know .toc a:hover { color: var(--accent); }
.know .toc a:last-child { border-bottom: 1px solid var(--hairline); }
.know .toc a .n { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.entries { display: grid; gap: 46px; }
.entry .meta { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 10px; }
.entry h4 { font-family: var(--display); font-weight: 400; font-size: clamp(22px,2.2vw,30px); letter-spacing: -0.015em; margin: 0 0 12px 0; }
.entry h4 em { font-style: italic; color: var(--accent); }
.entry p { margin: 0 0 12px 0; color: var(--fg); max-width: 62ch; line-height: 1.65; }
.entry dl.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; margin-top: 10px; font-family: var(--mono); font-size: 13px; color: var(--fg); }
.entry dl.grid dt { color: var(--muted); }
.entry dl.grid dd { margin: 0; }
@media (max-width: 900px) { .know { grid-template-columns: 1fr; gap: 40px; } .know .toc { position: static; } }

/* initiatives grid */
.initiatives {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline);
}
.init {
  padding: 36px 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid; gap: 12px; align-content: start;
}
.init .n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.14em; }
.init h5 { font-family: var(--display); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; margin: 0; }
.init p { color: var(--muted); font-size: 15px; margin: 0; }
@media (max-width: 780px) { .initiatives { grid-template-columns: 1fr; } }

/* gallery strip */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding: 0 4px;
}
.gallery a {
  aspect-ratio: 4/5; background-color: #1a1c17; background-size: cover; background-position: center;
  display: block; position: relative; overflow: hidden;
}
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,4,0) 55%, rgba(6,6,4,0.75) 100%);
}
.gallery span {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--mono); font-size: 11px; color: rgba(230,223,205,0.9);
  letter-spacing: 0.08em;
}
@media (max-width: 780px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* policies row */
.policies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.policy h5 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
  margin: 0 0 14px 0;
}
.policy p { margin: 0 0 8px 0; color: var(--fg); font-size: 15px; line-height: 1.6; max-width: 44ch; }
@media (max-width: 780px) { .policies { grid-template-columns: 1fr; } }

/* blog cards */
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card {
  display: grid; gap: 12px;
  border-top: 1px solid var(--hairline); padding-top: 20px;
}
.blog-card .kicker { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.blog-card h5 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px,1.7vw,24px); letter-spacing: -0.01em; line-height: 1.15; margin: 0;
}
.blog-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 44ch; }
.blog-card .more {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-top: 8px;
}
.blog-card:hover h5 { color: var(--accent); }
@media (max-width: 900px) { .blogs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blogs-grid { grid-template-columns: 1fr; } }

/* content page TOC */
.article-layout {
  max-width: var(--max); margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid; grid-template-columns: 260px 1fr; gap: 60px;
}
.article-layout .article-toc {
  position: sticky; top: 30px; align-self: start;
  border-top: 1px solid var(--hairline); padding-top: 14px;
}
.article-toc .k {
  font-family: var(--sans); font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.22em; text-transform: uppercase; display: block; margin-bottom: 14px;
}
.article-toc ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; counter-reset: toc; }
.article-toc li { counter-increment: toc; }
.article-toc a {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px;
  padding: 8px 0;
  font-family: var(--sans); font-size: 13px; line-height: 1.35;
  color: var(--fg); border-top: 1px solid rgba(0,0,0,0);
  transition: color 160ms;
}
.article-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.06em; padding-top: 2px;
}
.article-toc a:hover, .article-toc a.active { color: var(--accent); }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-layout .article-toc { position: static; }
}

/* ---- Chapter accordion (content pages) ---- */
.chapters { display: grid; gap: 0; margin-top: 12px; counter-reset: ch; }
.chapters .intro {
  padding: 24px 28px; margin-bottom: 4px;
  background: var(--panel); border: 1px solid var(--hairline);
}
.chapters .intro > * + * { margin-top: 12px; }
.chapters .intro p { font-size: 17px; line-height: 1.7; max-width: 64ch; color: var(--fg); }
.chapters .intro p:first-of-type::first-letter {
  font-family: var(--display); font-size: 4.2em; line-height: 0.85;
  float: left; padding: 4px 12px 0 0; color: var(--accent); font-style: italic;
}

.expand-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 20px; margin: 20px 0 0 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.expand-bar button {
  background: transparent; border: 1px solid var(--hairline); color: var(--fg);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; cursor: pointer; transition: border-color 160ms, color 160ms;
}
.expand-bar button:hover { border-color: var(--accent); color: var(--accent); }

details.chapter {
  counter-increment: ch;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
}
details.chapter:first-of-type { border-top: 1px solid var(--hairline); }
details.chapter[open] { background: var(--panel); }
details.chapter > summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 60px 1fr 40px;
  gap: 20px; align-items: baseline;
  padding: 26px 24px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.015em; line-height: 1.2;
  color: var(--fg); text-wrap: balance;
  transition: color 160ms;
}
details.chapter > summary:hover { color: var(--accent); }
details.chapter > summary::-webkit-details-marker { display: none; }
details.chapter > summary::before {
  content: counter(ch, decimal-leading-zero);
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; padding-top: 6px;
}
details.chapter > summary::after {
  content: "+";
  font-family: var(--mono); font-size: 22px; color: var(--muted);
  text-align: right; line-height: 1; padding-top: 4px;
  transition: transform 200ms, color 200ms;
}
details.chapter[open] > summary::after { content: "\2013"; color: var(--accent); }
details.chapter .body {
  padding: 0 24px 32px 104px;
  display: grid; gap: 12px;
}
details.chapter .body > * { max-width: 64ch; }
details.chapter .body p { font-size: 16.5px; line-height: 1.7; color: var(--fg); margin: 0; }
details.chapter .body ul, details.chapter .body ol { padding-left: 22px; margin: 4px 0; }
details.chapter .body li { margin-bottom: 8px; }
details.chapter .body li::marker { color: var(--accent); }
details.chapter .body h3 { font-family: var(--display); font-weight: 400; font-size: 20px; letter-spacing: -0.01em; margin: 12px 0 4px 0; }
details.chapter .body h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin: 12px 0 4px 0; }
details.chapter .body blockquote {
  font-family: var(--display); font-style: italic;
  font-size: 20px; line-height: 1.35;
  border-left: 2px solid var(--contra); padding: 4px 0 4px 18px;
  margin: 12px 0; color: var(--fg);
}
@media (max-width: 640px) {
  details.chapter > summary { grid-template-columns: 44px 1fr 28px; padding: 20px 16px; gap: 12px; }
  details.chapter .body { padding: 0 16px 24px 72px; }
}

/* ---- Homepage FAQ accordion ---- */
.faq-wrap { padding: clamp(70px,9vw,110px) var(--gutter); max-width: var(--max); margin: 0 auto; }
.faq { display: grid; gap: 0; }
details.faq-item {
  border-top: 1px solid var(--hairline);
}
details.faq-item:last-of-type { border-bottom: 1px solid var(--hairline); }
details.faq-item > summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr 32px; gap: 16px; align-items: baseline;
  padding: 24px 4px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.015em; line-height: 1.25;
  color: var(--fg); text-wrap: balance;
  transition: color 160ms;
}
details.faq-item > summary:hover { color: var(--accent); }
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+"; font-family: var(--mono); font-size: 22px; color: var(--muted);
  text-align: right; line-height: 1; padding-top: 4px;
}
details.faq-item[open] > summary::after { content: "\2013"; color: var(--accent); }
details.faq-item .a {
  padding: 0 4px 24px 4px;
  font-size: 16.5px; line-height: 1.7; color: var(--fg);
  max-width: 68ch;
}
details.faq-item .a p { margin: 0 0 12px 0; }
details.faq-item .a p:last-child { margin-bottom: 0; }

/* ---- Alternate rhythm on inner pages ---- */
.article-layout .article-body > .band {
  padding: 0;
}

/* ============ MEDIA GALLERY (/media/) ============ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}
.media-tile {
  position: relative;
  aspect-ratio: 4/3;
  background: #1a1c17 center/cover no-repeat;
  overflow: hidden;
  border: 1px solid var(--hairline);
  display: block;
}
.media-tile.tall { aspect-ratio: 3/4; }
.media-tile.wide { grid-column: span 2; aspect-ratio: 16/9; }
.media-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 18px 14px;
  background: linear-gradient(180deg, rgba(6,6,4,0) 0%, rgba(6,6,4,0.78) 100%);
  color: rgba(230,223,205,0.95);
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.08em;
  display: flex; justify-content: space-between; align-items: end; gap: 10px;
  transform: translateY(6px);
  opacity: 0.9;
  transition: transform 260ms, opacity 260ms;
}
.media-tile:hover figcaption { transform: translateY(0); opacity: 1; }
.media-tile .num {
  font-family: var(--mono); font-size: 10.5px; opacity: 0.7;
}
@media (max-width: 900px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .media-tile.wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .media-grid { grid-template-columns: 1fr; }
  .media-tile, .media-tile.tall, .media-tile.wide { aspect-ratio: 4/3; grid-column: auto; }
}

/* ============ BLOGS INDEX (/blogs/) ============ */
.article-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.article-card {
  display: grid; gap: 10px;
  padding: 22px 22px 24px;
  border: 1px solid var(--hairline);
  background: var(--bg);
  transition: border-color 160ms, transform 200ms;
  min-height: 100%;
}
.article-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.article-card .kicker {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}
.article-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 1.65vw, 22px); letter-spacing: -0.01em;
  line-height: 1.2; margin: 0; color: var(--fg);
  text-wrap: balance;
}
.article-card p {
  margin: 0; color: var(--muted); font-size: 14.5px;
  line-height: 1.55; max-width: 44ch;
}
.article-card .foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em;
}
.article-card .read {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
@media (max-width: 900px) { .article-index { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .article-index { grid-template-columns: 1fr; } }

/* Pull quote (used in some chapter bodies) */
.pullquote {
  margin: 40px auto; padding: 28px 32px;
  background: var(--panel); border-left: 3px solid var(--accent);
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px,1.8vw,24px); line-height: 1.4;
  max-width: 62ch;
}

/* ============ BOOKING SECTION (homepage #book) ============ */
.booking-block {
  background: var(--sable);
  color: var(--bone);
  padding: clamp(60px,8vw,110px) var(--gutter);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
:root[data-theme="light"] .booking-block { background: #22201b; color: var(--bone); }

.booking-block .booking-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.booking-block .booking-intro .kicker {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ochre-2); font-weight: 500;
  display: inline-block; margin-bottom: 16px;
}
.booking-block .booking-intro h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 4.2vw, 54px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0 0 16px 0; color: var(--bone);
  text-wrap: balance; max-width: 16ch;
}
.booking-block .booking-intro h2 em { font-style: italic; color: var(--ochre-2); }
.booking-block .booking-intro .lead {
  font-size: clamp(15px,1.15vw,17px); line-height: 1.6;
  color: rgba(230,223,205,0.85); max-width: 46ch; margin: 0 0 24px 0;
}
.booking-block .trust-list {
  list-style: none; padding: 0; margin: 0 0 32px 0;
  display: grid; gap: 10px;
}
.booking-block .trust-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  font-size: 14.5px; color: rgba(230,223,205,0.9); line-height: 1.5;
}
.booking-block .trust-list li::before {
  content: "\2713";
  font-family: var(--mono); font-size: 14px; line-height: 1.5;
  color: var(--ochre-2); font-weight: bold;
}

.booking-pkg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 24px; border-top: 1px solid rgba(230,223,205,0.14);
}
.booking-pkg h4 {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(230,223,205,0.6);
  margin: 0 0 12px 0; font-weight: 500;
}
.booking-pkg ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.booking-pkg li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: 13.5px; line-height: 1.45; color: rgba(230,223,205,0.9);
}
.booking-pkg .inc li::before { content: "+"; color: var(--ochre-2); font-family: var(--mono); font-weight: bold; }
.booking-pkg .exc li::before { content: "\2212"; color: var(--madder); font-family: var(--mono); font-weight: bold; }

/* Form (enquiry) */
.enquiry-form {
  background: rgba(230,223,205,0.05);
  border: 1px solid rgba(230,223,205,0.16);
  padding: 28px;
  display: grid; gap: 18px;
}
.enquiry-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form .field { display: grid; gap: 6px; }
.enquiry-form label {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(230,223,205,0.7); font-weight: 500;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  background: transparent;
  border: 1px solid rgba(230,223,205,0.24);
  color: var(--bone);
  font-family: var(--body); font-size: 16px;
  padding: 12px 14px;
  width: 100%; box-sizing: border-box;
  transition: border-color 160ms;
  border-radius: 0;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--ochre-2); outline: none;
}
.enquiry-form select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(230,223,205,0.5) 50%), linear-gradient(135deg, rgba(230,223,205,0.5) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat; padding-right: 34px;
}
.enquiry-form textarea { min-height: 90px; resize: vertical; font-family: var(--body); }
.enquiry-form .radios { display: flex; gap: 6px; flex-wrap: wrap; }
.enquiry-form .radios label {
  padding: 10px 14px; border: 1px solid rgba(230,223,205,0.24);
  color: var(--bone); cursor: pointer;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px;
  transition: all 160ms;
}
.enquiry-form .radios input { position: absolute; opacity: 0; width: 0; height: 0; }
.enquiry-form .radios input:checked + label,
.enquiry-form .radios label.on {
  background: var(--ochre-2); color: var(--ink); border-color: var(--ochre-2);
}
.enquiry-form .radios .radio-wrap { position: relative; }

.enquiry-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ochre-2); color: var(--ink);
  padding: 16px 24px; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  transition: background 160ms;
}
.enquiry-submit:hover { background: #f0b658; }
.enquiry-submit:disabled { opacity: 0.6; cursor: wait; }
.enquiry-submit .arrow { font-family: var(--mono); }

.form-status {
  min-height: 20px;
  font-family: var(--sans); font-size: 13px; padding: 0;
  color: rgba(230,223,205,0.7);
}
.form-status.is-loading { color: var(--ochre-2); }
.form-status.is-success { color: #a3d977; }
.form-status.is-error { color: #e08b8b; }
.form-note {
  font-family: var(--sans); font-size: 11.5px; color: rgba(230,223,205,0.5);
  line-height: 1.5; margin: 0;
}

@media (max-width: 900px) {
  .booking-block .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .booking-pkg { grid-template-columns: 1fr; gap: 20px; }
  .enquiry-form .row-2 { grid-template-columns: 1fr; }
  .enquiry-form { padding: 20px; }
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 2px 4px rgba(0,0,0,0.16);
  transition: transform 200ms, box-shadow 200ms, background 200ms;
  color: white;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.32), 0 2px 4px rgba(0,0,0,0.16);
  background: #1ebe57;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.whatsapp-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);  }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);     }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::after { animation: none; }
  .whatsapp-float:hover { transform: none; }
}
@media (max-width: 640px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* pullquote / callout */
.pullquote {
  margin: 40px auto; padding: 28px 32px;
  background: var(--panel); border-left: 3px solid var(--accent);
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px,1.8vw,24px); line-height: 1.4;
  max-width: 62ch;
}

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