/* ============================================
   CAMP & GLAMP GUIDE - Editorial Design System
   Strict palette from logo: charcoal + cream
   ============================================ */

:root {
  /* Logo colors (extracted) */
  --charcoal: #262625;
  --charcoal-deep: #1a1a19;
  --charcoal-soft: #34342f;
  --cream: #e8e4d8;
  --cream-warm: #efece1;
  --cream-bright: #f6f3e8;

  /* Default = light/cream theme */
  --bg: var(--cream-warm);
  --bg-elevated: var(--cream-bright);
  --bg-inset: #e0dccd;
  --fg: var(--charcoal-deep);
  --fg-muted: #635f55;
  --fg-soft: #6e6c62;
  --border: rgba(38, 38, 37, 0.14);
  --border-strong: rgba(38, 38, 37, 0.32);
  --rule: rgba(38, 38, 37, 0.18);
  --overlay-scrim: rgba(26, 26, 25, 0.42);
  --tag-bg: rgba(38, 38, 37, 0.06);

  /* Type stacks (overridable via tweaks) */
  --font-display: "League Spartan", "Helvetica Neue", Arial, sans-serif;
  --font-body: "League Spartan", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* Type scale (editorial - large) */
  --fs-mega: clamp(56px, 9vw, 144px);
  --fs-display: clamp(44px, 6vw, 96px);
  --fs-h1: clamp(36px, 4.5vw, 72px);
  --fs-h2: clamp(28px, 3vw, 48px);
  --fs-h3: clamp(22px, 2vw, 32px);
  --fs-body-lg: 20px;
  --fs-body: 17px;
  --fs-sm: 14px;
  --fs-xs: 12px;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 72px);
  --section: clamp(56px, 8vh, 112px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-theme="dark"] {
  --bg: var(--charcoal);
  --bg-elevated: var(--charcoal-soft);
  --bg-inset: #2f2f2b;
  --fg: var(--cream);
  --fg-muted: #bcb8ab;
  --fg-soft: #a8a594;
  --border: rgba(232, 228, 216, 0.16);
  --border-strong: rgba(232, 228, 216, 0.36);
  --rule: rgba(232, 228, 216, 0.22);
  --overlay-scrim: rgba(0, 0, 0, 0.5);
  --tag-bg: rgba(232, 228, 216, 0.08);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 320ms var(--ease), color 320ms var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ----- Typography ----- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.15; }

.mega { font-size: var(--fs-mega); line-height: 0.92; letter-spacing: -0.03em; }
.display-lg { font-size: var(--fs-display); }

p { margin: 0 0 1em; text-wrap: pretty; }
.lede { font-size: var(--fs-body-lg); line-height: 1.55; color: var(--fg); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}

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

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule { border: 0; border-top: 1px solid var(--border-strong); margin: 0; }

/* ----- Header / Nav ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
}
.site-header .right { display: flex; gap: 28px; align-items: center; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-label { line-height: 1; padding-top: 0.12em; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 18px; height: 18px; color: var(--bg); }
.brand-mark .brand-mark-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
}
.brand-mark { overflow: hidden; }

.nav-link {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg);
  position: relative;
  padding: 4px 0;
  transition: opacity 200ms var(--ease);
}
.nav-link:hover { opacity: 0.65; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--fg);
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--fg);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.icon-btn:hover { background: var(--fg); color: var(--bg); }
.icon-btn svg { width: 16px; height: 16px; }

.menu-toggle { display: none; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 80px var(--gutter) 40px;
  gap: 8px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 380ms var(--ease), visibility 0s linear 380ms;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(232,228,216,0.14);
}
.mobile-nav .close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  color: var(--cream);
  border-color: rgba(232,228,216,0.4);
}
.mobile-nav .close:hover { background: var(--cream); color: var(--charcoal); }

.brand-label { white-space: nowrap; }

@media (max-width: 1000px) {
  .site-header .right .nav-link,
  .site-header .right .nav-dropdown,
  .site-header .right .nav-pill { display: none; }
  .brand { font-size: 18px; }
  .menu-toggle { display: grid; }
  .mobile-nav { display: flex; }
  .mobile-nav.open { transform: translateY(0); visibility: visible; transition: transform 380ms var(--ease); }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  border-radius: 0;
  transition: background 220ms var(--ease), color 220ms var(--ease);
  font-family: var(--font-body);
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn.primary { background: var(--fg); color: var(--bg); }
.btn.primary:hover { background: transparent; color: var(--fg); }
.btn svg { width: 14px; height: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 4px;
}
.link-arrow:hover { gap: 16px; transition: gap 220ms var(--ease); }

/* ----- Image placeholder (striped, monospace label) ----- */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--bg-inset) 0 8px,
      transparent 8px 22px
    ),
    var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 16px 16px auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  padding: 6px 10px;
  border: 1px solid var(--border);
  text-transform: lowercase;
}

/* ----- Footer ----- */
.footer-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer-news-copy { flex: 1 1 360px; }
.footer-news-h {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0 0 8px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg);
  font-weight: 500;
}
.footer-news-copy p { margin: 0; font-size: 14px; color: var(--fg-muted); }
.footer-news-form {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 460px;
}
.footer-news-fields { display: flex; gap: 10px; }
.footer-news-row { display: flex; gap: 12px; }
.footer-news-form select,
.footer-news-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 14px;
  outline: 0;
  border-radius: 0;
  transition: border-color 200ms var(--ease);
}
.footer-news-form select { cursor: pointer; }
.footer-news-form option { color: var(--charcoal); }
.footer-news-form input::placeholder { color: var(--fg-soft); }
.footer-news-form select:focus,
.footer-news-form input:focus { border-color: var(--fg); }
.footer-news-form button {
  background: var(--fg);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 24px;
  white-space: nowrap;
  transition: opacity 200ms var(--ease);
}
.footer-news-form button:hover { opacity: 0.82; }
/* Invalid required field highlight */
.footer-news-form .news-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 1px #c0392b;
}
.footer-news-consent.news-invalid {
  border: 0 !important;
  box-shadow: none;
}
.footer-news-consent.news-invalid input { border-color: #c0392b !important; box-shadow: 0 0 0 1px #c0392b; }
.footer-news-consent.news-invalid span { color: #d66b5f; }
@media (max-width: 600px){ .footer-news-fields { flex-direction: column; } .footer-news-row { flex-direction: column; } .footer-news-form button { width: 100%; } }
.footer-news-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg-muted);
  cursor: pointer;
}
.footer-news-consent input {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 1px 0 0;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  align-self: flex-start;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.footer-news-consent input:checked { background: transparent; border-color: var(--fg); }
.footer-news-consent input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 5px;
  height: 9px;
  border: solid var(--fg);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.footer-news-consent a { color: var(--fg); border-bottom: 1px solid var(--border-strong); }
.footer-news-consent a:hover { border-bottom-color: var(--fg); }

/* ----- Homepage newsletter section ----- */
.home-news { padding: clamp(56px, 9vh, 110px) 0; border-top: 1px solid var(--rule); }
.home-news-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.home-news-copy { flex: 1 1 420px; }
.home-news-copy .eyebrow { display: block; margin-bottom: 14px; }
.home-news-copy h2 { font-size: clamp(26px, 3vw, 42px); line-height: 1.08; margin: 0 0 12px; max-width: 20ch; }
.home-news-copy p { margin: 0; color: var(--fg-muted); font-size: 16px; }
.home-news-form {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}
.home-news-selects { display: flex; gap: 12px; }
.home-news-row { display: flex; gap: 12px; }
.home-news-form select,
.home-news-form input {
  flex: 1;
  min-width: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px 18px;
  outline: 0;
  border-radius: 0;
  transition: border-color 200ms var(--ease);
}
.home-news-form select { cursor: pointer; }
.home-news-form option { color: var(--charcoal); }
.home-news-form input::placeholder { color: var(--fg-soft); }
.home-news-form select:focus,
.home-news-form input:focus { border-color: var(--fg); }
.home-news-form button { white-space: nowrap; }
@media (max-width: 600px){ .home-news-selects { flex-direction: column; } .home-news-row { flex-direction: column; } .home-news-form button { width: 100%; justify-content: center; } }

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: var(--section);
  padding: 48px 0 32px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--fg-muted);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid li a { font-size: 15px; color: var(--fg); }
.footer-grid li a:hover { color: var(--fg-muted); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}
.footer-tag {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  max-width: 320px;
  line-height: 1.2;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ----- Hero (full-bleed) ----- */
.hero {
  position: relative;
  height: auto;
  min-height: calc(100vh - 75px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--charcoal);
}
.hero .photo {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(232,228,216,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 30% 40%, #3a3a35 0%, #1a1a18 65%);
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.home-cats .cat-tile .cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .photo::after {
  content: "hero photo · drop a full-bleed landscape shot of your hero campsite here";
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,228,216,0.6);
  background: rgba(0,0,0,0.45);
  padding: 6px 10px;
  border: 1px solid rgba(232,228,216,0.2);
  letter-spacing: 0.04em;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 100%);
}
.hero .content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.hero .eyebrow { color: rgba(232,228,216,0.85); margin-bottom: 18px; display: block; }
.hero h1 { color: var(--cream); max-width: 20ch; font-weight: 400; font-size: clamp(34px, 4.4vw, 64px); }
.hero-review-btn {
  margin-top: 32px;
  border-color: rgba(232,228,216,0.6);
  color: var(--cream);
}
.hero-review-btn:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.hero .meta {
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,228,216,0.8);
  line-height: 1.8;
}
.hero .meta strong { color: var(--cream); font-weight: 600; }

/* ----- Hero slider ----- */
.hero-slider { position: relative; }
.hero-slides { display: grid; width: 100%; }
.hero-slide {
  grid-area: 1 / 1;
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(232,228,216,0.35);
  background: rgba(20,20,18,0.32);
  color: var(--cream);
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-arrow:hover { background: rgba(20,20,18,0.6); border-color: var(--cream); }
.hero-prev { left: clamp(12px, 2vw, 28px); }
.hero-next { right: clamp(12px, 2vw, 28px); }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(232,228,216,0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active { background: var(--cream); transform: scale(1.15); }
@media (max-width: 700px) {
  .hero-arrow { display: none; }
  /* Bigger, button-like dots on a subtle pill so it's clear the banner
     has multiple slides you can swipe between. */
  .hero-dots {
    bottom: 16px;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(20, 20, 18, 0.34);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.is-active { width: 22px; border-radius: 999px; transform: none; }
}

.hero-cta {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,228,216,0.7);
}

/* Hero variants (tweakable) */
.hero[data-variant="cover"] {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero[data-variant="cover"] .content {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-bottom: 0;
}
.hero[data-variant="cover"] h1 { max-width: 20ch; }
.hero[data-variant="cover"] .meta { display: none; }

.hero[data-variant="split"] {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--bg);
  color: var(--fg);
  height: auto;
  min-height: 640px;
}
.hero[data-variant="split"] .photo { position: relative; }
.hero[data-variant="split"] .scrim { display: none; }
.hero[data-variant="split"] .content {
  position: relative;
  padding: clamp(48px, 8vh, 96px) var(--gutter);
  grid-template-columns: 1fr;
  align-content: center;
}
.hero[data-variant="split"] h1 { color: var(--fg); }
.hero[data-variant="split"] .eyebrow { color: var(--fg-muted); }
.hero[data-variant="split"] .meta { text-align: left; color: var(--fg-muted); }
.hero[data-variant="split"] .meta strong { color: var(--fg); }
.hero[data-variant="split"] .hero-cta { color: var(--fg-muted); }

/* ----- Sections ----- */
.section { padding: var(--section) 0; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
.section-head .title-block { grid-column: 1 / 3; max-width: 700px; }
.section-head .title-block .eyebrow { display: block; margin-bottom: 16px; }
.section-head .action { align-self: end; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .title-block { grid-column: 1; }
}

/* ----- Cards ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}
@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 28px; } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; gap: 56px; } }

.review-card {
  display: block;
  cursor: pointer;
  position: relative;
}
.review-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--bg-elevated);
}
.review-card .img-wrap .placeholder {
  width: 100%; height: 100%;
  transition: transform 700ms var(--ease);
}
.review-card .img-wrap .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 700ms var(--ease);
}
.review-card:hover .img-wrap .placeholder { transform: scale(1.04); }
.review-card:hover .img-wrap .card-img { transform: scale(1.04); }

.review-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.review-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--tag-bg);
  border-radius: 999px;
}
.review-card .tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg);
}
.review-card h3 {
  font-size: clamp(22px, 1.6vw, 30px);
  margin: 0 0 10px;
  line-height: 1.15;
}
.review-card .excerpt {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 16px;
  line-height: 1.55;
  min-height: 4.65em;
}
.review-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-soft);
  letter-spacing: 0.06em;
}
.review-card .score {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--fg);
}

/* Card style variants (tweakable) */
.card-grid[data-style="bordered"] .review-card {
  border: 1px solid var(--border);
  padding: 18px 18px 22px;
}
.card-grid[data-style="bordered"] .review-card .img-wrap { margin: -18px -18px 22px; }

.card-grid[data-style="overlay"] .review-card { color: var(--cream); }
.card-grid[data-style="overlay"] .review-card .img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
}
.card-grid[data-style="overlay"] .review-card .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, rgba(0,0,0,0.45) 62%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.card-grid[data-style="overlay"] .review-card .body {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.6);
}
.card-grid[data-style="overlay"] .review-card h3 { color: var(--cream); }
.card-grid[data-style="overlay"] .review-card .excerpt { display: none; }
.card-grid[data-style="overlay"] .review-card .meta-row,
.card-grid[data-style="overlay"] .review-card .footer { color: rgba(232,228,216,0.8); }
.card-grid[data-style="overlay"] .review-card .tag { background: rgba(232,228,216,0.15); }
.card-grid[data-style="overlay"] .review-card .score { color: var(--cream); }

/* ----- Featured Video block ----- */
.featured-video {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}
.featured-video .video-frame {
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.featured-video .video-frame .placeholder { width: 100%; height: 100%; }
.featured-video .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.featured-video .play-circle {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: transform 280ms var(--ease);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.featured-video .video-frame:hover .play-circle { transform: scale(1.06); }
.featured-video .play-circle svg { width: 28px; height: 28px; color: var(--charcoal); margin-left: 4px; }
@media (max-width: 880px) {
  .featured-video { grid-template-columns: 1fr; gap: 32px; }
}

/* ----- Tabs / Filter bar ----- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.tabs { display: flex; gap: 4px; }
.tab {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--font-body);
  border-radius: 999px;
  transition: all 220ms var(--ease);
}
.tab:hover { color: var(--fg); }
.tab.active {
  background: var(--fg);
  color: var(--bg);
}
.tab .count { opacity: 0.6; margin-left: 6px; font-weight: 400; }

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--fg);
  padding: 6px 4px;
  min-width: 240px;
}
.search-box input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  padding: 4px 0;
}
.search-box input::placeholder { color: var(--fg-soft); }
.search-box svg { width: 16px; height: 16px; color: var(--fg-muted); }

.sort-select {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
}

/* ============================================
   Directory page
   ============================================ */
.directory-head { padding-top: clamp(36px, 6vh, 64px); padding-bottom: clamp(28px, 4vh, 44px); }
.directory-head .eyebrow { display: block; }

.dir-titlebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.dir-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.04;
  margin: 12px 0 0;
}
.dir-tally {
  display: none;
}
.dir-tally span { color: var(--fg); font-weight: 500; }

.prov-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.prov-chips .province-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  cursor: pointer;
}
.prov-chips .province-chip .pc-n {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0;
}
.prov-chips .province-chip.current .pc-n { opacity: 0.8; }

.reviewed-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
  cursor: pointer;
  user-select: none;
}
.reviewed-toggle input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
.reviewed-toggle input:checked { border-color: var(--fg); }
.reviewed-toggle input:checked::after {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: 4px; height: 8px;
  border: solid var(--fg);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.dir-resultcount {
  display: none;
}

.dir-grid { gap: 44px 32px; }

.dir-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.dir-card:hover { transform: translateY(-3px); }

.dir-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
}
.dir-media .placeholder { width: 100%; height: 100%; }
.dir-media .card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 700ms var(--ease);
}
.dir-card:hover .dir-media .card-img { transform: scale(1.04); }

.dir-badge {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  background: var(--fg);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.dir-badge svg { width: 12px; height: 12px; }
.dir-sample {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  padding: 5px 10px;
  background: rgba(38,38,37,0.78);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dir-body {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
  flex: 1;
}
.dir-body .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 13px;
}
.dir-body .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--tag-bg);
  border-radius: 999px;
}
.dir-body .tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg);
}
.dir-prov { font-size: 10px; color: var(--fg-soft); }
.dir-body h3 {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.16;
  margin: 0 0 10px;
}
.dir-loc {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 16px;
  line-height: 1.4;
}
.dir-loc svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 1px; color: var(--fg-soft); }

.dir-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.dir-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg);
  line-height: 1.3;
  transition: color 160ms var(--ease);
  word-break: break-word;
}
.dir-contact-row svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--fg-soft); }
a.dir-contact-row:hover { color: var(--accent, var(--fg)); }
a.dir-contact-row:hover svg { color: var(--fg); }
.dir-contact-row.is-muted { color: var(--fg-soft); }

.dir-review-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg);
  padding: 11px 18px;
  border: 1px solid var(--fg);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.dir-review-link:hover { background: var(--fg); color: var(--bg); }
.feat-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

/* Filters button — hidden on desktop, shown on mobile */
.filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 999px;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.filters-toggle:hover { border-color: var(--fg); }
.filters-toggle.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.filters-toggle .ft-count {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  letter-spacing: 0;
  border-radius: 999px;
  background: var(--accent, #b4593f);
  color: #fff;
}
.filters-toggle.active .ft-count { background: var(--bg); color: var(--fg); }

/* Filters panel — always visible on desktop */
.dir-filters { display: block; }
.dir-filters .reviewed-toggle { margin-top: 4px; }
.dir-feat-more { opacity: 0.65; }

/* "Show results" button — mobile only (desktop panel is always open) */
.filters-done { display: none; }
.feat-chip {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  border-radius: 999px;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.feat-chip:hover { border-color: var(--fg); color: var(--fg); }
.feat-chip.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.dir-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.dir-feat-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 4px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}


  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
}

/* Reviewed cards stand out from plain listings */
.dir-card.is-reviewed { border-color: var(--border-strong); }
.dir-card.is-reviewed:hover {
  border-color: var(--fg);
  box-shadow: 0 18px 44px rgba(26,26,25,0.12);
}

.dir-empty {
  text-align: center;
  color: var(--fg-muted);
  font-size: 16px;
  padding: 40px 0;
}

/* Invite-to-review CTA */
.dir-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 72px;
  padding: 40px clamp(28px, 4vw, 56px);
  background: var(--charcoal-deep, #1f1f1e);
  color: var(--cream);
}
.dir-invite h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--cream-bright, #f7f3e8);
  max-width: 22ch;
}
.dir-invite p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(232,228,216,0.78);
  max-width: 52ch;
}
.dir-invite-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal-deep, #1f1f1e);
  background: var(--cream-bright, #f7f3e8);
  padding: 15px 26px;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.dir-invite-btn:hover { opacity: 0.9; transform: translateY(-1px); }

@media (max-width: 640px) {
  /* Get straight to the listings: compact header, no long intro */
  .directory-head { padding-top: 22px; padding-bottom: 14px; }
  .dir-titlebar { margin-bottom: 18px; }
  .dir-title { font-size: clamp(30px, 9vw, 40px); }
  .dir-tally { font-size: 12px; }

  /* Province chips: wrap so every province is visible (no sideways scroll) */
  .prov-chips {
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 18px;
  }
  .prov-chips .province-chip {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  /* Filters collapse behind the Filters button on mobile */
  #listings .filter-bar { align-items: center; margin-bottom: 26px; }
  .filters-toggle { display: inline-flex; }
  .dir-filters { display: none; padding-top: 0; }
  .dir-filters.open { display: block; padding-bottom: 30px; }
  .dir-filters .feat-chips-row { margin-bottom: 18px; }
  .dir-filters .reviewed-toggle { margin-top: 0; }
  /* "Show results" button closes the panel */
  .filters-done {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--bg);
    background: var(--fg);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
  }

  /* Keep the three type tabs on one row */
  #listings .filter-bar .tabs { gap: 4px; flex-wrap: nowrap; }
  #listings .filter-bar .tab { padding: 9px 13px; letter-spacing: 0.1em; white-space: nowrap; }

  .dir-resultcount { margin: 22px 0 20px; }
  .dir-grid { gap: 32px; }
  .dir-body { padding: 18px 18px 20px; }
  /* Tighten card: no dead gap above the review button */
  .dir-review-link, .dir-noreview { margin-top: 6px; }

  .dir-invite { margin-top: 48px; padding: 28px 24px; }
  .dir-invite-btn { width: 100%; justify-content: center; }
}

/* ----- Blog index ----- */
.blog-head {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(44px, 7vh, 88px) 0 clamp(40px, 6vh, 64px);
}
.blog-head .bh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(135deg, rgba(232,228,216,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 72% 28%, #3a3a35 0%, #1a1a18 70%);
}
.blog-head .bh-bg::after {
  content: "reviews header photo · drop a wide landscape at assets/blog-hero.jpg";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,228,216,0.5);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(232,228,216,0.2);
  letter-spacing: 0.04em;
  max-width: 55%;
}
.blog-head .bh-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-head .bh-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.32) 45%, rgba(0,0,0,0.72) 100%);
}
.blog-head .container { position: relative; z-index: 3; }
.blog-head .eyebrow { display: block; margin-bottom: 16px; color: rgba(232,228,216,0.82); }
.blog-head h1 { max-width: 16ch; color: var(--cream); }
.blog-head p { max-width: 56ch; margin-top: 18px; color: rgba(232,228,216,0.85); }

.empty {
  padding: 64px 0;
  text-align: center;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
}

/* ----- Review page ----- */
.review-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(44px, 7vh, 88px) 0 clamp(40px, 6vh, 64px);
}
.review-hero .rh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(135deg, rgba(232,228,216,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 70% 30%, #3a3a35 0%, #1a1a18 70%);
}
.review-hero .rh-bg::after {
  content: "campsite hero photo · drop a wide landscape shot at assets/review-hero.jpg";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,228,216,0.55);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(232,228,216,0.2);
  letter-spacing: 0.04em;
  max-width: 60%;
}
.review-hero .rh-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-hero .rh-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.86) 100%);
}
/* Extra readability layer: a soft dark pool behind the text column (left side)
   so bright photos never wash out the title. Fades to clear on the right. */
.review-hero .rh-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 42%, transparent 72%);
}
.review-hero .container {
  position: relative;
  z-index: 3;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid var(--cream);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.hero-watch:hover { background: transparent; color: var(--cream); }
.hero-watch svg { flex-shrink: 0; }
.hero-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(232,228,216,0.5);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.hero-read:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.review-hero .eyebrow,
.review-hero h1,
.review-hero .tagline,
.review-hero .meta-strip,
.review-hero .crumbs { text-shadow: 0 1px 16px rgba(0,0,0,0.65), 0 2px 5px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.7); }
.review-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,228,216,0.8);
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.review-hero .crumbs a:hover { color: var(--cream); }
.review-hero .crumbs span { color: rgba(232,228,216,0.5); }
.review-hero .crumbs .crumb-current { color: var(--cream); }
.review-hero .eyebrow { color: rgba(232,228,216,0.85); }
.review-hero h1 { max-width: 22ch; font-size: clamp(40px, 5.5vw, 88px); color: var(--cream); }
.review-hero .tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  color: rgba(232,228,216,0.85);
  margin: 18px 0 0;
  max-width: 38ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-hero .meta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(232,228,216,0.25);
  border-bottom: 1px solid rgba(232,228,216,0.25);
  margin: 48px 0 0;
}
.review-hero .meta-strip .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
/* Tablet: 6 across gets cramped, so wrap to a tidy 3-column grid */
@media (max-width: 1024px) {
  .review-hero .meta-strip { grid-template-columns: repeat(3, 1fr); }
}
.review-hero .meta-strip .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(232,228,216,0.7);
  white-space: nowrap;
}
.review-hero .meta-strip .value {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--cream);
}

.video-block { padding: 24px 0 var(--section); }
.video-block .video-frame {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  border: 1px solid var(--border);
}
.video-block .video-frame .placeholder { width: 100%; height: 100%; }
.video-block .yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
/* Branded poster: our thumb + cream play button sit over the real player until the
   user hits play. This is why Google reports "video isn't on a watch page" - a
   deliberate trade of a video rich result for the on-brand look on the page. */
.video-block .video-frame.is-playing .yt-thumb,
.video-block .video-frame.is-playing .play-circle { display: none; }
.video-block .video-frame.is-playing { cursor: default; }
.video-block .yt-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-block .yt-unmute {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 20, 18, 0.82);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  animation: ytUnmutePulse 2.4s ease-in-out infinite;
}
.video-block .yt-unmute svg { display: block; }
@keyframes ytUnmutePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.video-block .play-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 3;
  box-shadow: 0 12px 60px rgba(0,0,0,0.4);
  transition: transform 280ms var(--ease);
}
.video-block .play-circle svg { width: 36px; height: 36px; color: var(--charcoal); margin-left: 6px; }
.video-block .video-frame:hover .play-circle { transform: scale(1.06); }
@media (max-width: 700px) {
  .video-block .play-circle { width: 68px; height: 68px; }
  .video-block .play-circle svg { width: 22px; height: 22px; margin-left: 4px; }
}
.video-block .caption {
  margin-top: 18px;
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-block .caption .yt-stats { display: flex; gap: 24px; letter-spacing: 0.06em; }

/* Video intro band (bridges hero → embed) */
.video-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.video-intro .eyebrow { display: block; margin-bottom: 16px; }
.video-standfirst {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--fg);
  margin: 0 auto 24px;
  text-wrap: pretty;
}
.video-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}
.video-byline .by { display: inline-flex; align-items: center; gap: 12px; }
.video-byline .avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.video-byline .watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.video-byline .watch::before {
  content: "";
  width: 0; height: 0;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 720px 1fr;
  gap: 0 48px;
}
.article-layout > * { grid-column: 2; }
.article-layout > .wide { grid-column: 1 / -1; }
.article-layout > .left-rail { grid-column: 1; align-self: start; position: sticky; top: 100px; max-height: calc(100vh - 140px); overflow: auto; }
/* breathing room so the sticky TOC releases before the next section */
section[data-screen-label="03 Article"] { padding-bottom: clamp(48px, 9vh, 110px); }

@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-layout > * { grid-column: 1; }
  .article-layout > .left-rail { position: static; }
}
/* Tablet only: once the TOC stacks above the article, the "In short" box needs a gap.
   Phones already have their own tuned spacing, so this stops at 701px. */
@media (max-width: 1100px) and (min-width: 701px) {
  .article-layout > .left-rail { margin-bottom: 34px; }
  .article-body .review-summary { margin-top: 4px; }
  /* Gallery sits directly above the Location block - trim the doubled gap */
  section[data-screen-label="04 Gallery"] { padding-bottom: 28px; }
  /* Video sits directly above the stacked "In this review" list - trim the gap */
  .video-block { padding-bottom: 40px; }
  /* Footer signup: the form is capped at 460px for the desktop side-by-side layout.
     Once it stacks under the heading, let it use the full column. */
  .footer-news-form { max-width: none; }
  /* Comfortable touch targets on a tablet */
  .footer-news-form select,
  .footer-news-form input[type="text"],
  .footer-news-form input[type="email"],
  .footer-news-form button { min-height: 44px; }
  .footer-news-consent input[type="checkbox"] { flex: 0 0 22px; width: 22px; height: 22px; min-width: 22px; }
  /* The Practical/FAQ blocks carry an inline grid-column:2, which beats the
     single-column rule above and shunts them into an implicit 2nd column.
     Force them full width so they align with the map and gallery. */
  .article-layout > [style*="grid-column"] { grid-column: 1 / -1 !important; }
  .article-faq-wrap .article-layout > div,
  .review-faq-wrap .article-layout > div { grid-column: 1 / -1 !important; }
}

.article-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
}
.article-body p { margin: 0 0 1.4em; }
.article-body h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 2em 0 0.6em;
}
.article-body h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 1.8em 0 0.4em;
}
.article-body blockquote {
  margin: 2em 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--fg);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
  color: var(--fg);
}
.article-body .review-nearby {
  margin: 2em 0 0;
  padding: 20px 24px;
  border-left: 2px solid var(--ember-deep, #b5612a);
  background: var(--bg-elevated);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.article-body .review-nearby a {
  color: var(--fg);
  border-bottom: 1px solid var(--border-strong);
  font-weight: 600;
}
.article-body .review-nearby a:hover { border-bottom-color: var(--fg); }

.article-body blockquote footer {
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.article-body .dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 6em;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  font-weight: 400;
}

.toc {
  padding-right: 24px;
}
.toc h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-muted);
  margin: 0 0 18px;
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: grid;
  gap: 10px;
}
.toc li {
  counter-increment: toc;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
  transition: color 200ms var(--ease);
}
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-soft);
}
.toc li:hover { color: var(--fg-muted); }
.toc li.active { color: var(--fg-muted); font-weight: 600; }

/* Pros / Cons */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 48px 0;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
@media (max-width: 640px) { .proscons { grid-template-columns: 1fr; padding: 28px; } }
.proscons h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.proscons h4::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--fg-muted);
}
.proscons ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.proscons li {
  font-size: 16px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  line-height: 1.45;
}
.proscons .pros li::before { content: "+"; font-family: var(--font-mono); color: var(--fg); font-weight: 700; line-height: 1.45; }
.proscons .cons li::before { content: "-"; font-family: var(--font-mono); color: var(--fg-muted); font-weight: 700; line-height: 1.45; }

/* Practical info card */
.practical {
  border: 1px solid var(--border);
  padding: 32px;
  margin: 48px 0;
  background: var(--bg-elevated);
}
.practical h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--fg-muted);
}
.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
.practical .row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.practical .row .key {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.practical .row .val {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
  text-align: left;
}
.practical .book {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 640px) { .practical-grid { grid-template-columns: 1fr; } }

/* ===== Weekend weather strip (review pages) ===== */
.weather { border: 1px solid var(--border); background: var(--bg-elevated); padding: 26px 32px 28px; margin-bottom: 24px; overflow: hidden; }
.weather-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.weather-head .eyebrow { display: block; }
.weather-head-l { display: flex; flex-direction: column; gap: 7px; }
.weather-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.1;
}
.weather-loc svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--fg-soft); }
.weather-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--fg-soft);
  white-space: nowrap;
}
.weather-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.wx-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 4px 8px;
  border-right: 1px dashed var(--border);
}
.wx-day:first-child { padding-left: 0; }
.wx-day:last-child { border-right: 0; padding-right: 0; }
.wx-dow { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--fg-muted); }
.wx-date { font-family: var(--font-mono); font-size: 10px; color: var(--fg-soft); margin-top: -2px; }
.wx-icon { color: var(--fg); margin: 4px 0 2px; }
.wx-icon svg { width: 28px; height: 28px; display: block; }
.wx-temp { font-family: var(--font-display); font-size: 17px; color: var(--fg); line-height: 1; white-space: nowrap; }
.wx-temp .lo { color: var(--fg-soft); }
.wx-rain { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.02em; color: var(--fg-muted); display: inline-flex; align-items: center; gap: 3px; }
.wx-rain svg { width: 10px; height: 10px; }
@media (max-width: 720px) {
  .weather { padding: 22px 20px 24px; }
  .article-layout > [style*="grid-column"] { min-width: 0; }
  .weather, .weather-days { min-width: 0; max-width: 100%; }
  .weather-days {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .wx-day {
    flex: 0 0 auto;
    width: 72px;
    scroll-snap-align: start;
    padding: 4px 0;
    border-right: 1px dashed var(--border);
  }
  .wx-day:first-child { padding-left: 0; }
  .wx-day:last-child { border-right: 0; }
}

/* Activities card (chip groups by proximity) */
.activities {
  border: 1px solid var(--border);
  padding: 32px;
  margin: 48px 0;
  background: var(--bg-elevated);
}
.activities h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--fg-muted);
}
.activities .intro {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 24px;
  max-width: 52ch;
  line-height: 1.5;
}
.activity-group + .activity-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
}
.activity-group .group-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.activity-group .group-label .where {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  text-transform: none;
  white-space: nowrap;
}
.activity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.activity-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--bg);
}
.activity-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg);
  flex-shrink: 0;
}
.activities .empty-group {
  font-size: 13px;
  color: var(--fg-soft);
  font-style: italic;
}

/* Score rail */
.scores {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 48px 0;
}
.scores .item { text-align: center; }
.scores .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}
.scores .max { font-size: 14px; color: var(--fg-muted); margin-left: 2px; }
.scores .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 10px;
  font-weight: 600;
}
@media (max-width: 720px) { .scores { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 48px 0;
}
.gallery .ph {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  transition: opacity 200ms var(--ease);
  background: var(--bg-elevated);
}
.gallery .ph:hover { opacity: 0.88; }
.gallery .ph .placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery .ph .gal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .gallery { grid-template-columns: 1fr; }
}

/* Map */
.map-block { margin: 48px 0; }
.map-wrap {
  position: relative;
  aspect-ratio: 21 / 9;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap .map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-wrap .map-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  bottom: auto;
  right: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg);
  padding: 6px 10px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 2;
}
.map-wrap .map-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, transparent calc(100% - 1px), var(--border) 100%) 0 0/40px 40px,
    linear-gradient(90deg, transparent calc(100% - 1px), var(--border) 100%) 0 0/40px 40px,
    radial-gradient(circle at 40% 50%, color-mix(in oklab, var(--fg-muted) 14%, transparent) 0%, transparent 60%),
    var(--bg-elevated);
}
.map-pin {
  position: absolute;
  top: 50%; left: 38%;
  transform: translate(-50%, -100%);
  display: grid;
  place-items: center;
  z-index: 2;
}
.map-pin .dot {
  width: 14px; height: 14px;
  background: var(--fg);
  border-radius: 50%;
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--fg) 20%, transparent);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px color-mix(in oklab, var(--fg) 20%, transparent); }
  50% { box-shadow: 0 0 0 14px color-mix(in oklab, var(--fg) 0%, transparent); }
}
.map-pin .label {
  position: absolute;
  top: -36px;
  white-space: nowrap;
  background: var(--fg);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
}

/* Author card */
.author {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  margin: 48px 0;
}
.author .avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--charcoal);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 32px;
}
.author .name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 4px;
}
.author .role { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; margin-bottom: 8px; }
.author .bio { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* Comments */
.comments { margin: clamp(40px, 6vh, 72px) 0 0; padding-top: 0; }
.comments .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.comments h2 { font-size: clamp(24px, 2.4vw, 36px); }
.comments .count { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.1em; }

.comment-form {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  background: var(--bg-elevated);
  align-items: center;
}
.comment-form .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
}
.comment-form textarea {
  border: 0;
  background: transparent;
  outline: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  resize: none;
  padding: 12px 0;
  line-height: 1.5;
  min-height: 44px;
}

.comment {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.comment .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-inset);
  color: var(--fg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
}
.comment .head-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
}
.comment .name { font-weight: 700; font-size: 14px; }
.comment .time { font-size: 12px; color: var(--fg-soft); letter-spacing: 0.06em; }
.comment .body { font-size: 15px; color: var(--fg); line-height: 1.55; margin: 0 0 10px; }
.comment .actions {
  display: flex; gap: 18px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600;
}
.comment .actions button {
  background: transparent; border: 0; padding: 0;
  font: inherit; color: inherit; letter-spacing: inherit; text-transform: inherit;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.comment .actions button:hover { color: var(--fg); }
.comment .actions button.liked { color: var(--fg); }

/* Related */
.related { padding: var(--section) 0 0; }

/* ----- About page ----- */
.about-hero {
  padding: clamp(48px, 7vh, 88px) 0 clamp(24px, 4vh, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero .img { aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.about-hero .img .placeholder { width: 100%; height: 100%; }
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-hero h1 { font-size: clamp(40px, 5vw, 76px); }
.about-hero .lede { margin-top: 24px; max-width: 44ch; }
@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; } .about-hero .img { aspect-ratio: 16 / 10; } }

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: start;
  padding: 56px 0;
  margin: clamp(48px, 7vh, 80px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-stats .stat { text-align: center; }
.about-stats .stat .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 80px);
  line-height: 1;
  margin-bottom: 12px;
}
.about-stats .stat .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
@media (max-width: 880px) { .about-stats { grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 40px 0; } }
@media (max-width: 560px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.hosts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.host .img {
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.host .img .host-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
}
.host h3 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 6px;
}
.host .role { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; margin-bottom: 16px; }
.host p { color: var(--fg-muted); font-size: 16px; max-width: 48ch; }
@media (max-width: 720px) { .hosts { grid-template-columns: 1fr; gap: 48px; } }

/* ----- Contact page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
  padding: clamp(64px, 10vh, 120px) 0;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-form { display: grid; gap: 24px; align-content: start; }
.contact-form .m-stack-sm { align-items: end; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 10px 0;
  outline: 0;
  transition: border-color 200ms var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--fg);
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-info .item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-info .item:last-child { border-bottom: 0; }
.contact-info h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-muted);
  margin: 0 0 10px;
}
.contact-info .item .val {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
}
.contact-info .item p { color: var(--fg-muted); font-size: 14px; margin: 6px 0 0; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--fg);
  color: var(--bg);
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  transition: all 300ms var(--ease);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px;
}
.lightbox.open { display: flex; }
.lightbox .img {
  width: auto;
  height: auto;
  max-width: min(1280px, 94vw);
  max-height: 88vh;
  background: transparent;
  position: relative;
  display: flex;
}
.lightbox .img .placeholder { display: none; }
.lightbox .img .lb-img { position: static; display: block; width: auto; height: auto; max-width: min(1280px, 94vw); max-height: 88vh; object-fit: contain; z-index: 1; }
.lightbox .close-x {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.lightbox .nav-btn.prev { left: 24px; }
.lightbox .nav-btn.next { right: 24px; }
@media (max-width: 640px) {
  .lightbox .nav-btn { top: auto; bottom: 20px; transform: none; width: 48px; height: 48px; background: rgba(0,0,0,0.45); }
  .lightbox .nav-btn.prev { left: 20px; }
  .lightbox .nav-btn.next { right: 20px; }
  .lightbox .counter { bottom: 34px; }
}
.lightbox .counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* YT video modal */
.yt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.yt-modal.open { display: flex; }
.yt-modal .frame {
  width: min(1100px, 100%);
  aspect-ratio: 16/9;
  background: var(--charcoal);
  position: relative;
}
.yt-modal .ph { width: 100%; height: 100%; }
.yt-modal .label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 28px;
  text-align: center;
  padding: 32px;
}
.yt-modal .close-x {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

/* Newsletter strip */
.newsletter {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}
[data-theme="dark"] .newsletter { background: var(--cream); color: var(--charcoal); }
.newsletter .eyebrow { color: rgba(232,228,216,0.7); }
[data-theme="dark"] .newsletter .eyebrow { color: rgba(38,38,37,0.6); }
.newsletter h2 { color: inherit; max-width: 18ch; margin: 16px auto 24px; }
.newsletter form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(232,228,216,0.4);
}
[data-theme="dark"] .newsletter form { border-bottom-color: rgba(38,38,37,0.4); }
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: inherit;
  padding: 14px 0;
}
.newsletter input::placeholder { color: rgba(232,228,216,0.5); }
[data-theme="dark"] .newsletter input::placeholder { color: rgba(38,38,37,0.5); }
.newsletter button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Quote of the page */
.quote-strip {
  padding: clamp(80px, 12vh, 140px) 0;
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.18;
  margin: 0 auto;
  max-width: 22ch;
  font-style: italic;
}
.quote-strip cite {
  display: block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}

/* Misc */
.divider-mark {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.divider-mark span {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg-muted);
  letter-spacing: 0.6em;
}

/* hide focus ring on mouse, keep for keyboard */
:focus { outline: 0; }
:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }

/* ============================================
   South Africa map
   ============================================ */
.sa-map-wrap {
  position: relative;
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}
.sa-map-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  margin: 0 auto;
}
.sa-province-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  fill: var(--fg-muted);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.sa-lesotho-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  fill: var(--fg-muted);
  opacity: 0.7;
}
.sa-border {
  stroke: var(--border-strong);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0.7;
}

/* Pins */
.sa-pin { cursor: pointer; }
.sa-pin-aura {
  fill: var(--fg);
  opacity: 0;
  transform-origin: center;
  transition: opacity 240ms var(--ease);
}
.sa-pin-ring {
  fill: var(--bg);
  stroke: var(--fg);
  stroke-width: 1.6;
  transition: r 220ms var(--ease), fill 220ms var(--ease);
}
.sa-pin-dot {
  fill: var(--fg);
  transition: r 220ms var(--ease);
}
.sa-pin:hover .sa-pin-aura,
.sa-pin:focus-visible .sa-pin-aura { opacity: 0.18; animation: sa-pulse 1.8s ease-in-out infinite; }
.sa-pin:hover .sa-pin-ring,
.sa-pin:focus-visible .sa-pin-ring { fill: var(--fg); }
.sa-pin:hover .sa-pin-dot,
.sa-pin:focus-visible .sa-pin-dot { fill: var(--bg); }
@keyframes sa-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.22; }
  50%      { transform: scale(1.25); opacity: 0; }
}

/* Tooltip */
.sa-tooltip {
  position: absolute;
  transform: translate(-50%, -100%);
  background: var(--fg);
  color: var(--bg);
  padding: 14px 18px;
  width: auto;
  min-width: 240px;
  max-width: 280px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms var(--ease);
  z-index: 5;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}
.sa-tooltip.show { opacity: 1; }
.sa-tip-body { padding: 0; }
.sa-tooltip::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -7px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--fg);
}
.sa-tip-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 6px;
}
.sa-tip-title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.sa-tip-loc {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 10px;
}
.sa-tip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 30%, transparent);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.sa-tip-arrow { opacity: 0.7; }

.sa-map-legend {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  left: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.sa-legend-row { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.sa-legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.4px solid var(--fg);
  position: relative;
}
.sa-legend-dot::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  background: var(--fg);
  border-radius: 50%;
}
.sa-legend-hint { color: var(--fg-muted); font-size: 11px; }

/* ============================================
   Nav: Provinces dropdown
   ============================================ */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: -20px;
  transform: translateY(8px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  padding: 22px;
  min-width: 480px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: all 220ms var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
/* invisible bridge so the hover doesn't drop in the gap above the panel */
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-panel .nav-dd-title {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 24px;
}
.nav-dropdown-grid a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 8px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
  border-bottom: 1px solid var(--rule);
  transition: padding 200ms var(--ease);
}
.nav-dropdown-grid a:hover { padding-left: 14px; }
.nav-dropdown-grid a .num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Travel Club nav pill */
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--fg);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
}
.nav-pill:hover { background: var(--fg); color: var(--bg); }
.nav-pill .star {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
}

/* ============================================
   Travel Club page
   ============================================ */
.tc-hero {
  position: relative;
  padding: clamp(80px, 14vh, 180px) 0 clamp(60px, 10vh, 120px);
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
[data-theme="dark"] .tc-hero { background: var(--charcoal); color: var(--cream); }
.tc-hero .tc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(135deg, rgba(232,228,216,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 72% 28%, #3a3a35 0%, #1a1a18 70%);
}
.tc-hero .tc-bg::after {
  content: "travel club header photo · drop a wide landscape at assets/travel-club-hero.jpg";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,228,216,0.5);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(232,228,216,0.2);
  letter-spacing: 0.04em;
  max-width: 50%;
}
.tc-hero .tc-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc-hero .tc-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.72) 100%);
}
.tc-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.tc-hero .eyebrow { color: rgba(232,228,216,0.8); display: block; margin-bottom: 24px; }
[data-theme="dark"] .tc-hero .eyebrow { color: rgba(232,228,216,0.8); }
.tc-hero h1 {
  font-size: clamp(56px, 8vw, 128px);
  color: inherit;
  max-width: 14ch;
  margin: 0;
  line-height: 0.95;
}
.tc-hero h1 .serif-italic { display: block; }
.tc-hero .lede {
  color: rgba(232,228,216,0.85);
  font-size: 19px;
  line-height: 1.55;
  max-width: 42ch;
}
[data-theme="dark"] .tc-hero .lede { color: rgba(232,228,216,0.85); }
.tc-hero .pricebox {
  border: 1px solid rgba(232,228,216,0.4);
  padding: 28px;
  margin-top: 32px;
  text-align: left;
}
[data-theme="dark"] .tc-hero .pricebox { border-color: rgba(232,228,216,0.4); }
.tc-hero .price {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  color: inherit;
}
.tc-hero .price-unit {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-left: 6px;
}
.tc-hero .pricebox .small {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 8px;
  display: block;
}
.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--cream);
  color: var(--charcoal);
  border: 0;
  cursor: pointer;
  margin-top: 20px;
  transition: transform 220ms var(--ease);
}
[data-theme="dark"] .tc-btn { background: var(--charcoal); color: var(--cream); }
.tc-btn:hover { transform: translateY(-2px); }
@media (max-width: 880px) {
  .tc-hero .container { grid-template-columns: 1fr; gap: 32px; }
}

.tc-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: var(--section) 0;
}
@media (max-width: 880px) { .tc-perks { grid-template-columns: 1fr; gap: 40px; } }
.tc-perk .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-soft);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.tc-perk h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  margin: 0 0 14px;
}
.tc-perk p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
}

.tc-current {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0;
}
.tc-current .row {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.tc-current .row:last-child { border-bottom: 0; }
.tc-current .row .left h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  margin: 0 0 6px;
}
.tc-current .row .left .loc {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.tc-current .row .right {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 32px;
  justify-content: end;
  align-items: baseline;
}
.tc-current .item-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; margin-bottom: 4px; }
.tc-current .item-val { font-family: var(--font-display); font-size: 22px; line-height: 1; }
.tc-current .item-val.strike { color: var(--fg-soft); text-decoration: line-through; }
.tc-current .badge {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: start;
}
@media (max-width: 720px) {
  .tc-current .row { grid-template-columns: 1fr; gap: 16px; }
  .tc-current .row .right { grid-template-columns: 1fr 1fr; justify-content: start; gap: 16px; }
}

.tc-signup {
  padding: var(--section) 0;
  background: var(--bg-elevated);
}
.tc-signup .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 880px) { .tc-signup .inner { grid-template-columns: 1fr; gap: 40px; } }
.tc-signup h2 { font-size: clamp(32px, 4vw, 56px); }
.tc-form { display: grid; gap: 20px; }
.tc-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tc-form .totals {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.tc-form .totals .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; }
.tc-form .totals .amt { font-family: var(--font-display); font-size: 36px; }

.tc-faq summary {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
}

/* ============================================
   Province page header
   ============================================ */
.province-head {
  padding: clamp(56px, 9vh, 120px) 0 32px;
}
.province-head .crumbs {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
}
.province-head .row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.province-head h1 { max-width: 16ch; }
.province-head .mini-stats {
  display: flex;
  gap: 32px;
  text-align: right;
}
.province-head .mini-stats .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
}
.province-head .mini-stats .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-top: 6px;
}

.province-other {
  border-top: 1px solid var(--rule);
  margin-top: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.province-other h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-muted);
  margin: 0 0 24px;
}
.province-other-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.province-chip {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  transition: all 180ms var(--ease);
}
.province-chip:hover { background: var(--fg); color: var(--bg); }
.province-chip.current { background: var(--fg); color: var(--bg); }

/* ----- Provinces index page ----- */
.provinces-hero,
.province-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(44px, 7vh, 88px) 0 clamp(40px, 6vh, 64px);
}
.provinces-hero .container,
.province-hero .container { padding-top: 0; padding-bottom: 0; }
/* hero scroll-down button (blog + provinces) */
.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(232,228,216,0.6);
  color: var(--cream);
  background: transparent;
  transition: background 220ms var(--ease), color 220ms var(--ease), gap 220ms var(--ease);
}
.hero-scroll-btn:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); gap: 16px; }
.hero-scroll-btn svg { flex-shrink: 0; }

/* Hero footer row: scroll button + count/stats on one line */
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(28px, 5vh, 48px);
}
.hero-foot .hero-scroll-btn { margin-top: 0; }
.hero-foot .mini-stats { margin: 0; }
.hero-count {
  text-align: right;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  color: var(--cream);
  flex-shrink: 0;
}
.hero-count-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,228,216,0.7);
  font-weight: 600;
  margin-top: 6px;
}
@media (max-width: 460px) {
  .hero-foot { gap: 16px; }
  .hero-count { font-size: clamp(40px, 13vw, 64px); }
}

/* ============================================
   Cookie consent banner
   ============================================ */
#cgg-cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 400;
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid rgba(232,228,216,0.25);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: translateY(140%);
  transition: transform 420ms var(--ease);
  max-width: 760px;
  margin: 0 auto;
}
#cgg-cookie.show { transform: translateY(0); }
.cgg-cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
}
.cgg-cookie-inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(232,228,216,0.85);
}
.cgg-cookie-inner a { color: var(--cream); text-decoration: underline; }
.cgg-cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cgg-cookie-btns button {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 18px;
  cursor: pointer;
  border: 1px solid rgba(232,228,216,0.5);
  background: transparent;
  color: var(--cream);
  white-space: nowrap;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.cgg-cookie-btns .cgg-cookie-accept { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.cgg-cookie-btns button:hover { opacity: 0.85; }
@media (max-width: 640px) {
  .cgg-cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cgg-cookie-btns { width: 100%; }
  .cgg-cookie-btns button { flex: 1; }
}

/* ============================================
   Legal / long-form pages (privacy, terms)
   ============================================ */
.legal-hero { padding-top: clamp(56px, 9vh, 120px); padding-bottom: 24px; }
.legal-hero .eyebrow { display: block; margin-bottom: 16px; }
.legal-hero h1 { max-width: 18ch; }
.legal-hero .updated {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.legal-body { padding-top: 32px; }
.legal-body h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 48px 0 14px;
}
.legal-body h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-body p, .legal-body li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
}
.legal-body p { margin: 0 0 1em; max-width: 70ch; }
.legal-body ul, .legal-body ol { max-width: 70ch; padding-left: 22px; margin: 0 0 1.4em; }
.legal-body li { margin-bottom: 0.5em; }
.legal-body a { color: var(--fg); text-decoration: underline; }
.legal-body .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 62ch;
}
.legal-body strong { font-weight: 700; }

/* ============================================
   Review summary line + FAQ section
   ============================================ */
.review-summary {
  margin: 0 0 36px;
  padding: 22px 26px;
  background: var(--bg-elevated);
  border-left: 3px solid var(--fg);
}
.review-summary .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 8px;
}
.review-summary p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
}

.review-faq { margin: 56px 0 0; }
.review-faq h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 8px;
}
.review-faq .faq-sub {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0 0 28px;
}
.review-faq .faq-item {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
}
.review-faq .faq-item:last-child { border-bottom: 1px solid var(--rule); }
.review-faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.3;
}
.review-faq summary::-webkit-details-marker { display: none; }
.review-faq .faq-mark { font-family: var(--font-mono); font-size: 22px; color: var(--fg-muted); flex-shrink: 0; }
.review-faq .faq-item[open] .faq-mark { color: var(--fg); }
.review-faq .faq-answer {
  padding-top: 14px;
  max-width: 70ch;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================
   Feature filter (Reviews page)
   ============================================ */
.feature-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 22px 0 0;
  margin-bottom: 8px;
}
.feature-filter .ff-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-muted);
  margin-right: 6px;
}
.feature-chip {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  border-radius: 999px;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.feature-chip:hover { border-color: var(--fg); }
.feature-chip.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ============================================
   Mobile refinements (phones)
   ============================================ */
@media (max-width: 700px) {
  /* Drop breadcrumbs on hero headers so the title sits higher */
  .review-hero .crumbs,
  .province-hero .crumbs { display: none; }

  /* Article-layout: the centered column (inline grid-column:2) must go full width */
  .article-layout > [style*="grid-column"] { grid-column: 1 / -1 !important; }
  .article-faq-wrap .article-layout > div,
  .review-faq-wrap .article-layout > div { grid-column: 1 / -1 !important; }

  /* Summary box needs breathing room from the stacked TOC, and the text below it */
  .article-body .review-summary { margin: 24px 0 28px; }
  .toc { margin-bottom: 8px; }
  /* Video sits directly above the stacked "In this review" list - trim the gap */
  .video-block { padding-bottom: 32px; }

  /* Square map on mobile */
  .map-wrap { aspect-ratio: 1 / 1; }

  /* Stronger hero scrim + text shadow for legible text over busy photos */
  .hero .scrim {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.32) 42%, rgba(0,0,0,0.88) 100%);
  }
  .hero .content h1,
  .hero .content .eyebrow,
  .hero .meta { text-shadow: 0 1px 18px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.6); }
  .rh-scrim { background: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.34) 45%, rgba(0,0,0,0.74) 100%) !important; }
  /* On phones the text spans full width, so use a uniform top-down boost instead of the side pool */
  .review-hero .rh-scrim::after { background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, transparent 40%) !important; }

  /* Hero headers: size to content so the scroll button stays on the image */
  .blog-head, .provinces-hero, .province-hero {
    min-height: calc(100svh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: clamp(40px, 9vh, 80px);
    padding-bottom: clamp(28px, 5vh, 48px);
  }
  /* Review hero: size to its content so there's no leftover/empty space and
     every element sits above the fold. Comfortable, even spacing throughout;
     the next section simply begins right after the hero. */
  .review-hero {
    min-height: 0;
    padding-top: clamp(28px, 5vh, 48px);
    padding-bottom: clamp(34px, 6vh, 56px);
  }
  .review-hero .container { display: block; }
  .review-hero h1 { font-size: clamp(32px, 8.4vw, 46px); margin-top: 14px !important; line-height: 1.05; }
  .review-hero .tagline { font-size: 18px; margin-top: 16px; line-height: 1.4; }
  .review-hero .hero-cta-row { margin-top: 28px; margin-bottom: 0; gap: 16px 22px; }
  .review-hero .meta-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
    padding: 24px 0 0;
    gap: 22px 24px;
  }
  .review-hero .meta-strip .label { font-size: 10px; margin-bottom: 5px; }
  .review-hero .meta-strip .value { font-size: 16px; line-height: 1.25; }
  .hero-scroll-btn { margin-top: 24px; }

  /* Filter bar: give the controls room so they don't bunch up */
  .filter-bar { gap: 16px 18px; padding: 20px 0; }
  .filter-bar .tabs { flex-wrap: wrap; gap: 8px; }
  .filter-bar > div:last-child { width: 100%; gap: 16px; }
  .search-box { flex: 1 1 100%; min-width: 0; }
  .sort-select { flex: 0 0 auto; }
}

@media (max-width: 700px) {
  /* Uniform vertical rhythm: tame oversized section padding on phones */
  .section { padding: 56px 0; }
  .tc-perks, .tc-signup, .about-stats { padding-top: 56px; padding-bottom: 56px; }
  .hosts { padding-bottom: 0; }
  .contact-grid { padding-top: 40px; padding-bottom: 24px; }
  .review-faq { margin-top: 36px; }
  /* Trailing FAQ divider on travel-club/contact shouldn't add a big gap */
  #faq > div:last-child { display: none; }

  /* Section header rows (title + action/link) wrap instead of squashing */
  .section [style*="space-between"][style*="align-items: end"],
  .section [style*="space-between"][style*="align-items:end"] { flex-wrap: wrap; gap: 8px 16px; }
  .section [style*="space-between"][style*="align-items: end"] h2 { font-size: clamp(24px, 6.5vw, 32px); }

  /* Review page: trim the big gaps above gallery / map / practical / faq */
  [data-screen-label="03 Article"] { padding-bottom: 8px; }
  .article-body > *:last-child { margin-bottom: 0; }
  .article-body blockquote { margin: 1.5em 0; }
  [data-screen-label="04 Gallery"].section { padding-top: 8px; padding-bottom: 20px; }
  [data-screen-label="05 Map"].section { padding-top: 8px; }
  .map-block { margin: 24px 0; }
  .practical { padding: 24px; }
  .review-faq-wrap { margin-top: 0; }
  .review-faq-wrap .review-faq { margin-top: 24px; }

  /* Homepage: tighten the dividers / blocks that read as big gaps */
  .home-cats { padding-top: 8px; }
  .intro-actions { margin-top: 24px; }

  /* Footer sits closer on phones (kills the big gap before the footer rule) */
  .site-footer { margin-top: 0; padding: 44px 0 28px; }
  .footer-news { padding-bottom: 32px; margin-bottom: 32px; gap: 20px; }
  .home-news { padding: 48px 0; }
  .home-news-inner { gap: 24px; }

  /* SA map doesn't read well at phone size - remove the whole section + its trailing divider */
  [data-screen-label="03 Map of SA"],
  [data-screen-label="03 Map of SA"] + hr { display: none; }
}
.provinces-hero .ph-bg,
.province-hero .ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(135deg, rgba(232,228,216,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 72% 28%, #3a3a35 0%, #1a1a18 70%);
}
.provinces-hero .ph-bg::after {
  content: "provinces header photo · using province-hero.jpg";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,228,216,0.5);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(232,228,216,0.2);
  letter-spacing: 0.04em;
  max-width: 55%;
}
.province-hero .ph-bg::after {
  content: "province header photo · drop a wide landscape at assets/province-hero.jpg";
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,228,216,0.5);
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(232,228,216,0.2);
  letter-spacing: 0.04em;
  max-width: 55%;
}
.provinces-hero .ph-photo,
.province-hero .ph-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provinces-hero .ph-scrim,
.province-hero .ph-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.32) 45%, rgba(0,0,0,0.72) 100%);
}
.provinces-hero .container,
.province-hero .container { position: relative; z-index: 3; }
.provinces-hero .eyebrow,
.province-hero .eyebrow { color: rgba(232,228,216,0.82); }
.provinces-hero h1,
.province-hero h1 { color: var(--cream); }
.provinces-hero .lede,
.province-hero .lede { color: rgba(232,228,216,0.85); }
.provinces-hero .mini-stats .num,
.province-hero .mini-stats .num { color: var(--cream); }
.provinces-hero .mini-stats .label,
.province-hero .mini-stats .label { color: rgba(232,228,216,0.7); }
.province-hero .crumbs { color: rgba(232,228,216,0.8); }
.province-hero .crumbs a:hover { color: var(--cream); }
.province-hero .crumbs span { color: rgba(232,228,216,0.5); }
.province-hero .crumbs .crumb-current { color: var(--cream); }

.province-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.province-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: 36px 32px 32px;
  transition: background 220ms var(--ease);
}
.province-card:hover { background: var(--bg-elevated); }
.province-card .pc-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.province-card .pc-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}
.province-card .pc-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}
.province-card h3 {
  font-size: clamp(24px, 2vw, 30px);
  margin: 0 0 12px;
}
.province-card .pc-intro {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 18px;
}
.province-card .pc-sample {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  margin: 0 0 24px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.province-card .pc-sample.pc-empty { font-style: italic; }
.province-card .pc-link {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 880px) {
  .province-index { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .province-index { grid-template-columns: 1fr; }
}

/* ============================================
   Homepage intro block
   ============================================ */
.intro-block {
  padding: clamp(64px, 9vh, 110px) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.intro-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
}
.intro-portrait .placeholder { position: absolute; inset: 0; }
.intro-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.intro-portrait-caption {
  position: absolute;
  bottom: -40px;
  left: -32px;
  background: var(--bg);
  padding: 18px 22px;
  border: 1px solid var(--border);
  max-width: 260px;
}
.intro-text .eyebrow { display: block; margin-bottom: 22px; }
.intro-text h2 {
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.05;
  margin: 0 0 32px;
  max-width: 22ch;
}
.intro-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 18px;
  max-width: 52ch;
}
.intro-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 64px; }
  .intro-portrait-caption { left: 0; bottom: -32px; }
}

/* ============================================
   Final CTA strip
   ============================================ */
.final-cta {
  position: relative;
  padding: clamp(64px, 11vh, 140px) 0;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
[data-theme="dark"] .final-cta { background: var(--cream); color: var(--charcoal); }
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(232,228,216,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 70% 30%, rgba(232,228,216,0.06) 0%, transparent 60%);
  pointer-events: none;
}
[data-theme="dark"] .final-cta::before {
  background:
    repeating-linear-gradient(135deg, rgba(38,38,37,0.04) 0 12px, transparent 12px 28px),
    radial-gradient(circle at 70% 30%, rgba(38,38,37,0.06) 0%, transparent 60%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
.final-cta h2 {
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  color: inherit;
  margin: 0 0 48px;
  max-width: 18ch;
}
.final-cta .actions {
  display: flex;
  gap: 56px;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid color-mix(in oklab, currentColor 22%, transparent);
}
.final-cta .actions .col {
  flex: 1 1 280px;
  min-width: 240px;
}
.final-cta .actions .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.65;
  margin-bottom: 14px;
}
.final-cta .actions a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  transition: gap 220ms var(--ease);
}
.final-cta .actions a:hover { gap: 22px; }
.final-cta .actions a svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================
   Responsive / mobile
   ============================================ */

/* Inline-grid helpers (override inline grid-template-columns) */
@media (max-width: 760px) {
  .m-stack { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 600px) {
  .m-stack-sm { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* Tablet/large-phone */
@media (max-width: 760px) {
  /* Hero: let the headline own the row, drop the side meta beneath it */
  .hero {
    min-height: calc(100svh - 72px);
  }
  /* Match the slide to the small-viewport height so the meta + dots fit
     above the fold on load (before iOS collapses its toolbar). */
  .hero-slide {
    min-height: calc(100svh - 72px);
  }
  .hero .content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 64px;
  }
  .hero .meta { text-align: left; line-height: 1.5; font-size: 12px; }
  .hero-review-btn { margin-top: 22px; }
  .hero[data-variant="split"] { grid-template-columns: 1fr; }

  /* Province header stacks */
  .province-head .row { grid-template-columns: 1fr; gap: 20px; }
  .province-head .mini-stats { text-align: left; }

  /* Article side rail + TOC already stack via 1100bp; tighten comments */
  .comment-form { grid-template-columns: 44px 1fr; }
  .comment-form .btn { grid-column: 2; justify-self: start; }

  /* Travel club signup name/expiry rows */
  .tc-form .row2 { grid-template-columns: 1fr; }
  .tc-current .row .right { grid-template-columns: 1fr 1fr; }

  /* Filter bars wrap cleanly */
  .filter-bar { gap: 16px; }
  .filter-bar .tabs { flex-wrap: wrap; }
  .search-box { min-width: 0; flex: 1 1 100%; }
}

/* Phones */
@media (max-width: 560px) {
  :root { --section: 64px; }

  /* Brand shrinks so it never collides with the menu button */
  .brand { font-size: 16px; gap: 9px; }
  .brand-mark { width: 40px; height: 40px; }

  /* Mega/display type eases down a touch beyond the clamp floor */
  .hero h1 { font-size: clamp(30px, 8.6vw, 46px); line-height: 1.05; }
  .mega { font-size: clamp(44px, 16vw, 80px); }

  /* Category tiles get a touch shorter when stacked */
  .home-cats .cat-tile { aspect-ratio: 3 / 4; }

  /* Practical / overview into single column */
  .practical { padding: 24px; }
  .activities { padding: 24px; }

  /* Meta-strip: tidy 2-column grid (6 facts = 3 even rows, no empty cell) */

  /* Section headers never crowd */
  .section-head { gap: 20px; margin-bottom: 40px; }

  /* Newsletter / forms breathing room */
  .contact-grid { gap: 36px; }

  /* About stats: 2-up stays, but tighten */
  .about-stats { gap: 24px; }

  /* Footer to single column on the smallest screens */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  /* The brand + blurb takes the full width, so the three link columns get a
     proper half each - stops "Western Cape" and "All provinces" wrapping. */
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 4px; }
  /* The province list is much taller than "The site", which left a hole to its
     right. Let it span two rows so The site + Follow stack beside it instead. */
  .footer-grid > div:nth-child(2) { grid-row: span 2; }

  /* Quote / big display blocks */
  .display-lg { font-size: clamp(34px, 11vw, 56px); }
}

/* Very small phones */
@media (max-width: 380px) {
  .brand-label { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Toast - lift clear of bottom browser chrome / sticky bars on phones */
@media (max-width: 600px) {
  .toast { bottom: calc(76px + env(safe-area-inset-bottom, 0px)); left: 16px; right: 16px; transform: translateX(0) translateY(60px); text-align: center; }
  .toast.show { transform: translateX(0) translateY(0); }
}

