/* ============================================================
   Components — nav, footer, buttons, cards, hero, forms, etc.
   ============================================================ */

/* -----------------------------------------------------------
   BUTTONS
   Style: pill, Outfit 600
   Variants: primary (ember gradient), dark, outline-on-dark,
             ghost, small
----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-instant) var(--ease-standard);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elev-hover);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: wait;
  pointer-events: none;
}

.btn--primary {
  background: var(--grad-ember);
  color: var(--color-ink-on-dark);
  box-shadow: var(--shadow-ember);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(135deg, oklch(0.74 0.16 52), oklch(0.58 0.17 40));
  box-shadow: var(--shadow-ember-soft);
  transform: translateY(-2px);
}

.btn--primary span[aria-hidden='true'] {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.btn--primary:hover span[aria-hidden='true'],
.btn--primary:focus-visible span[aria-hidden='true'] {
  transform: translateX(3px);
}

.btn--dark {
  background: var(--color-panel);
  color: var(--color-ink-on-dark);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--color-ember);
  color: var(--color-ink-on-dark);
}

.btn--dark-invert {
  background: var(--color-panel);
  color: var(--color-ink-on-dark);
}

.btn--dark-invert:hover,
.btn--dark-invert:focus-visible {
  background: var(--color-ink-on-dark);
  color: var(--color-ink);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-ink-on-dark);
  border-color: oklch(1 0 0 / 0.35);
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.btn--sm {
  font-size: 13.5px;
  padding: 11px 22px;
}

.btn--md {
  font-size: 15px;
  padding: 13px 26px;
}

/* Text link — underlined pill-less CTA */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-ember);
  padding: 6px 0;
  transition: color var(--duration-fast) var(--ease-standard);
}

.link-arrow:hover,
.link-arrow:focus-visible {
  color: var(--color-ember);
}

.link-arrow--on-dark {
  color: var(--color-ink-on-dark);
  border-bottom-color: var(--color-amber);
}

.link-arrow--on-dark:hover,
.link-arrow--on-dark:focus-visible {
  color: var(--color-amber);
}

/* -----------------------------------------------------------
   CHIPS / BADGES
----------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.chip--sky {
  color: oklch(0.45 0.08 232);
  background: oklch(0.52 0.1 232 / 0.12);
}

.chip--neutral {
  color: var(--color-ink-muted);
  background: var(--color-border);
}

.chip--ember {
  background: var(--color-ember);
  color: var(--color-ink-on-dark);
  font-size: 12px;
  padding: 7px 15px;
}

.chip--ember-sm {
  background: var(--color-ember);
  color: var(--color-ink-on-dark);
  font-size: 11.5px;
  padding: 7px 12px;
}

.chip--glass {
  background: oklch(0.2 0.03 158 / 0.72);
  backdrop-filter: blur(6px);
  color: var(--color-ink-on-dark);
  font-family: var(--font-display);
  font-size: 12px;
  padding: 7px 13px;
  letter-spacing: 0;
  text-transform: none;
}

/* -----------------------------------------------------------
   ICON CHIP — 50×50 rounded square holding a 24×24 icon
----------------------------------------------------------- */
.icon-chip {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-chip);
  background: linear-gradient(135deg, oklch(0.67 0.15 47 / 0.18), oklch(0.67 0.15 47 / 0.06));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.icon-chip--flat {
  background: var(--color-ember-soft);
}

.icon-chip svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-ember);
  stroke-width: 1.6;
  fill: none;
}

/* -----------------------------------------------------------
   BULLET DIAMOND — 8×8 ember square rotated 45°
----------------------------------------------------------- */
.bullet {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--color-ink);
  padding: 0;
  border: 0;
  background: none;
}

.bullet::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-ember);
  transform: rotate(45deg);
  flex: none;
}

.bullet--on-dark::before {
  background: var(--color-amber);
}

/* -----------------------------------------------------------
   RATING (star row)
----------------------------------------------------------- */
.rating {
  color: var(--color-ember);
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

.rating--on-dark { color: var(--color-amber); }

/* -----------------------------------------------------------
   NAV / HEADER — Modern single-bar header with glass-blur scroll
----------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  font-family: var(--font-display);
  background: oklch(0.97 0.012 88);
  border-bottom: 1px solid transparent;
  /* Paint + layout containment. The header is sticky and always in the
     viewport during scroll, so its backdrop-filter repaints every frame the
     source pixels behind it change. Containment tells Chrome:
       - layout: my box's size doesn't depend on the outside world;
       - paint:  my pixels never overflow my padding box, and my paint
                 invalidations can't propagate outward.
     Combined effect: the compositor can cache the header as its own layer
     and skip walking paint invalidation up the tree on every scroll tick.
     Safe now because the fixed-position mobile drawer (#mobile-nav) was
     moved out to be a sibling — see the corresponding <header> block in
     partials/nav.html and every page's inlined nav. */
  contain: layout paint;
  transition:
    background var(--duration-medium) var(--ease-standard),
    border-color var(--duration-medium) var(--ease-standard),
    box-shadow var(--duration-medium) var(--ease-standard);
}

.header[data-scrolled='true'] {
  /* Backdrop-filter removed: blur recomputes every scroll frame when pixels
     behind the sticky header change, which was a major source of scroll jank.
     A near-opaque solid background keeps the header readable without GPU cost. */
  background: oklch(0.97 0.012 88 / 0.95);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 0 oklch(0.9 0.012 80 / 0.4), 0 8px 28px oklch(0.22 0.03 158 / 0.05);
}

/* Adaptive dark-theme: nav flips when a [data-nav-invert] section scrolls behind it */
.header[data-theme='dark'] {
  background: oklch(0.18 0.03 158 / 0.95);
  border-bottom-color: oklch(1 0 0 / 0.08);
  box-shadow: 0 8px 28px oklch(0 0 0 / 0.18);
}

.header[data-theme='dark'] .nav__link {
  color: oklch(0.88 0.015 88);
}

.header[data-theme='dark'] .nav__link:hover,
.header[data-theme='dark'] .nav__link:focus-visible,
.header[data-theme='dark'] .nav__link[aria-current='page'] {
  color: oklch(0.98 0.01 88);
}

.header[data-theme='dark'] .burger span {
  background: oklch(0.9 0.015 88);
}

/* Three-column grid: brand | nav (centered) | actions */
.header__inner {
  width: var(--container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
}

/* Brand — clip container collapses the transparent padding in the 5000×5000 canvas */
.brand {
  display: block;
  text-decoration: none;
  flex: none;
  overflow: hidden;
  height: 48px; /* visible artwork height */
}

.brand__logo {
  display: block;
  height: 107px; /* canvas height: artwork_h / 0.448 */
  width: auto;
  margin-top: -26px; /* shift up to align artwork to container top (canvas × 0.247) */
  transition: opacity var(--duration-fast) var(--ease-standard);
}

/* White logo sits on top of black; both share the same grid cell */
.brand__logo--light {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

/* .brand needs relative positioning so the absolute logo is anchored */
.brand {
  position: relative;
}

/* Swap to white logo on dark-theme header */
.header[data-theme='dark'] .brand__logo--dark {
  opacity: 0;
}

.header[data-theme='dark'] .brand__logo--light {
  opacity: 1;
}

.brand:hover .brand__logo {
  opacity: 0.8;
}

/* Desktop nav — centered via justify-content: center in 1fr column */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav__link {
  position: relative;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 8px 10px;
  color: oklch(0.34 0.025 158);
  border-radius: 9px;
  transition: color var(--duration-fast) var(--ease-standard);
}

/* Animated ember underline — scales from right on hover, left back out */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-ember-2), var(--color-ember-3));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--duration-fast) var(--ease-emphasized);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-ink);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav__link[aria-current='page'] {
  color: oklch(0.26 0.03 158);
  font-weight: 600;
}

.nav__link[aria-current='page']::after {
  transform: scaleX(1);
  background: var(--grad-ember);
}

/* Right actions cluster */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

/* Enquire CTA — ember gradient pill with glow lift */
.header__enquire {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-ember-2), var(--color-ember-3));
  color: var(--color-ink-on-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.18), var(--shadow-ember-soft);
  transition:
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.header__enquire:hover,
.header__enquire:focus-visible {
  color: var(--color-ink-on-dark);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.22), var(--shadow-ember);
  transform: translateY(-1px);
}

.header__enquire:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.12), var(--shadow-ember-soft);
}

/* Burger — tapered bars (18 / 14 / 10px) echo a mountain silhouette */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--color-border-strong);
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  transition:
    background var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard);
}

.burger:hover {
  background: oklch(0.23 0.03 158 / 0.05);
  border-color: oklch(0.7 0.015 82);
}

.burger:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--color-ink);
  border-radius: 2px;
  transition:
    transform var(--duration-fast) var(--ease-emphasized),
    opacity 120ms var(--ease-standard),
    width var(--duration-fast) var(--ease-standard);
}

.burger span:nth-child(1) { width: 18px; }
.burger span:nth-child(2) { width: 14px; }
.burger span:nth-child(3) { width: 10px; }

.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 18px;
}
.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 18px;
}

/* Full-screen mobile drawer.
   IMPORTANT: at rest the panel sits at inset: 0 (fully inside the
   viewport) with visibility/opacity hidden. It is NEVER positioned
   off-canvas — an earlier translateX(100%) approach caused the whole
   page to lay out wider than the viewport in real mobile browsers
   (Samsung Internet, iOS Safari) even with overflow-x: clip on <html>. */
.header__mobile {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 5);
  background: oklch(0.18 0.03 158);
  background-image:
    radial-gradient(55% 45% at 100% 0%, oklch(0.52 0.1 232 / 0.22), transparent 60%),
    radial-gradient(45% 40% at 0% 100%, oklch(0.6 0.15 47 / 0.14), transparent 60%);
  display: flex;
  flex-direction: column;
  padding: 96px var(--container-pad) 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-medium) var(--ease-emphasized),
    visibility 0s linear var(--duration-medium);
}

/* Drawer is now a sibling of <header> (moved out so .header can safely
   `contain: paint layout`). Selectors therefore key off body[data-menu-open]
   mirrored by navigation.js — see js/components/navigation.js setOpen(). */
body[data-menu-open='true'] .header__mobile {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--duration-medium) var(--ease-emphasized),
    visibility 0s linear 0s;
}

/* Subtle vertical slide-in for the menu contents on open — keeps the
   drawer's "enter" motion without any horizontal off-canvas positioning. */
.header__mobile > * {
  transform: translateY(-6px);
  transition: transform var(--duration-medium) var(--ease-emphasized);
}
body[data-menu-open='true'] .header__mobile > * {
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .header__mobile > *,
  body[data-menu-open='true'] .header__mobile > * {
    transform: none;
    transition: none;
  }
}

/* Mobile nav — large display-weight links */
.header__mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  border-top: 1px solid oklch(1 0 0 / 0.07);
}

.header__mobile-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(28px, 6.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: oklch(0.86 0.014 88);
  padding: 17px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--duration-fast) var(--ease-standard);
}

.header__mobile-nav a::after {
  content: '→';
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-ember);
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.header__mobile-nav a:hover,
.header__mobile-nav a:focus-visible {
  color: oklch(0.97 0.01 88);
}

.header__mobile-nav a:hover::after,
.header__mobile-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.header__mobile-nav a[aria-current='page'] {
  color: var(--color-amber);
}

.header__mobile-nav a[aria-current='page']::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-amber);
}

/* Mobile footer — contacts + CTA */
.header__mobile-footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid oklch(1 0 0 / 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.header__mobile-contact a {
  font-family: var(--font-body);
  font-size: 14px;
  color: oklch(0.68 0.018 88);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.header__mobile-contact a:hover,
.header__mobile-contact a:focus-visible {
  color: var(--color-amber);
}

.header__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--color-ember-2), var(--color-ember-3));
  color: var(--color-ink-on-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.18), var(--shadow-ember-soft);
}

/* Responsive — burger shows, desktop nav/enquire hide */
@media (max-width: 1080px) {
  .nav,
  .header__enquire {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .header__inner {
    padding: 13px 0;
  }
}

/* -----------------------------------------------------------
   HERO — Home hero (bento) uses standard tiles
   Inner-page hero uses .hero-banner
----------------------------------------------------------- */
.hero-banner {
  position: relative;
  background: var(--color-hero-cream);
  overflow: hidden;
  color: var(--color-ink-on-dark);
}

.hero-banner__media {
  position: absolute;
  inset: 0;
  background-color: var(--color-hero-cream);
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-banner__scrim {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-scrim);
  pointer-events: none;
}

.hero-banner__inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-y-hero);
}

.hero-banner__title {
  margin-top: 16px;
  font-size: var(--fs-hero-inner);
  color: var(--color-ink-on-dark);
}

.hero-banner .eyebrow {
  color: var(--color-subheading);
}

/* Adventure Workshops hero — 16:9 editorial composition. Coral eyebrow,
   massive white display title, illustration flows full-width beneath.
   Background matches the PNG's own green so text sits on one continuous
   surface with the artwork. */
.hero-banner--workshops {
  background: var(--color-hero-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--color-ink-on-dark);
}
.hero-banner--workshops .hero-banner__inner {
  order: 1;
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 5.5rem) 0;
}
.hero-banner--workshops .hero-banner__media {
  order: 2;
  position: relative;
  z-index: 1;
  inset: auto;
  width: 100%;
  background: transparent;
  margin-top: clamp(-10rem, -8vw, -2rem);
}
.hero-banner--workshops .hero-banner__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}
.hero-banner--workshops .eyebrow {
  justify-content: center;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 38px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-subheading);
}
.hero-banner--workshops .eyebrow::before,
.hero-banner--workshops .eyebrow::after {
  display: none;
}
.hero-banner--workshops .hero-banner__title {
  margin-top: clamp(14px, 1.8vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(22px, 4.3vw, 86px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-ink-on-dark);
  text-wrap: balance;
}
.hero-banner--workshops .breadcrumb {
  display: none;
}

.hero-banner__description {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--color-body-on-dark);
  max-width: 52ch;
  margin: clamp(16px, 2vw, 24px) auto 0;
}

.hero-banner__actions {
  margin-top: clamp(20px, 2.6vw, 32px);
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-banner--workshops .hero-banner__inner {
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
}

/* -----------------------------------------------------------
   TILES — dark mesh panel, ember accent, sky accent, image tile
----------------------------------------------------------- */
.tile {
  position: relative;
  border-radius: var(--radius-tile);
  overflow: hidden;
  /* subtle placeholder while remote images load — prevents white flash */
  background-color: oklch(0.94 0.008 88);
  transition:
    transform var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.tile:hover,
.tile:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow-tile-hover);
}

.tile:active {
  transform: translateY(-1px);
}

.tile--image {
  background-color: oklch(0.35 0.03 158);
}

.tile--dark {
  background: var(--grad-panel-base);
  color: var(--color-ink-on-dark);
  padding: clamp(2.25rem, 4.4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}

.tile--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-panel-mesh);
  pointer-events: none;
}

.tile--dark > * {
  position: relative;
}

/* Softer mesh for smaller dark tiles */
.tile--dark-soft {
  background: var(--grad-panel-base);
  color: var(--color-ink-on-dark);
  padding: 26px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tile--dark-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-panel-mesh-soft);
  pointer-events: none;
}

.tile--dark-soft > * {
  position: relative;
}

.tile--ember-stat {
  background: var(--grad-ember-tile);
  box-shadow: var(--shadow-ember-soft);
  color: oklch(0.18 0.03 158);
  padding: 30px;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tile--ember-stat:hover,
.tile--ember-stat:focus-within {
  box-shadow: var(--shadow-ember-soft);
}

.tile--sky-stat {
  background: var(--grad-sky-tile);
  box-shadow: var(--shadow-sky);
  color: oklch(0.98 0.01 232);
  padding: 28px;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tile--sky-stat:hover,
.tile--sky-stat:focus-within {
  box-shadow: var(--shadow-sky);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}

/* Image tile — a rectangular frame that holds a full-bleed image
   with an optional badge and gradient scrim */
.tile--image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.tile--image img,
.tile--image picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-image-scrim-tall);
  pointer-events: none;
}

.tile--image .tile__body {
  position: absolute;
  left: clamp(1.75rem, 2.4vw, 2.25rem);
  right: clamp(1.75rem, 2.4vw, 2.25rem);
  bottom: clamp(1.75rem, 2.4vw, 2.25rem);
  color: var(--color-ink-on-dark);
  z-index: 1;
  /* Two-layer shadow: tight rim kills ambient bleed, wide diffuse creates depth */
  text-shadow:
    0 0 8px oklch(0.07 0.02 158 / 0.85),
    0 2px 22px oklch(0.07 0.02 158 / 0.65);
}

.tile__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber);
  font-weight: 600;
}

/* All text on image tiles: pure white regardless of image tone */
.tile--image .tile__eyebrow,
.tile--image .tile__desc,
.tile--image .card__foot-text {
  color: var(--color-ink-on-dark);
}

.tile--image .tile__title {
  color: var(--color-subheading);
}

/* Eyebrow stays slightly dimmed — preserves hierarchy below bright title */
.tile--image .tile__eyebrow {
  color: oklch(0.88 0.01 88);
}

/* Desc: 88% white — reads clearly but doesn't compete with title */
.tile--image .tile__desc {
  color: oklch(0.88 0.01 88);
}

.tile__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.tile__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: oklch(0.9 0.01 88);
  margin-top: 8px;
  max-width: 46ch;
}

.tile__badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
}

.tile__badge-glass {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: oklch(0.2 0.03 158 / 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  pointer-events: none;
  color: var(--color-ink-on-dark);
  z-index: 1;
}

.tile__badge-glass span:first-child {
  color: var(--color-amber);
  font-size: 15px;
  letter-spacing: 2px;
}

.tile__badge-glass small {
  font-size: 12.5px;
  font-weight: 500;
}

/* Link tile — makes an entire tile clickable with subtle hover */
a.tile,
a.tile--image {
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

a.tile--image:hover,
a.tile--image:focus-visible {
  opacity: 0.94;
}

/* Flat image tile — used for gallery/social strips where the image IS the
   content. Removes the heavy caption scrim so the photograph reads pure. */
.tile--image-flat::after {
  background: linear-gradient(0deg, oklch(0.18 0.03 158 / 0.28), transparent 40%);
}

a.tile--image-flat:hover,
a.tile--image-flat:focus-visible {
  opacity: 1;
}

a.tile--image-flat:hover img,
a.tile--image-flat:focus-visible img {
  transform: scale(1.04);
}

.tile--image-flat img {
  transition: transform var(--duration-slow) var(--ease-standard);
}

/* Play button overlay (video card) */
.play-btn {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--grad-ember-tile);
  box-shadow: var(--shadow-ember);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 21px solid var(--color-panel);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 5px;
}

.play-btn--sm {
  width: 62px;
  height: 62px;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-ember);
  box-shadow: none;
}

.play-btn--sm::after {
  border-left: 16px solid var(--color-panel);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* -----------------------------------------------------------
   CARDS — content cards (trips, workshops, packages)
----------------------------------------------------------- */
.card {
  background: var(--grad-card-sheen);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-medium) var(--ease-standard);
}

.card:hover,
.card:focus-within {
  border-color: var(--color-ember);
  box-shadow: var(--shadow-elev-hover), var(--shadow-edge-inset);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
  }
}

.card:active {
  transform: translateY(-1px);
}

.card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: oklch(0.35 0.03 158);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .card__media img {
    transform: scale(1.04);
  }
}

.card__media--tall {
  height: 260px;
}

.card__media--xl {
  height: 320px;
}

.card__scrim {
  position: absolute;
  inset: 0;
  background: var(--grad-image-scrim-short);
  pointer-events: none;
}

.card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
}

.card__badge-right {
  position: absolute;
  right: 16px;
  top: 16px;
}

.card__body {
  padding: clamp(1.5rem, 2vw, 1.875rem) clamp(1.5rem, 2vw, 1.875rem) clamp(1.375rem, 1.8vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-subheading);
  margin: 0;
}

.card__title--lg {
  font-size: 24px;
}

.card__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-ink-muted);
  margin: 8px 0 16px;
  flex: 1;
}

.card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--color-border-soft);
  padding-top: 12px;
}

.card__footer > .btn {
  flex: 1 1 auto;
  min-width: 0;
}

.card__price-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.card__foot-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ember);
}

/* -----------------------------------------------------------
   EDITORIAL CARD  (extends .card)
   Shared treatment for camp-site locations (.card--location) and
   corporate packages (.card--package): a small caps kicker above
   a large title, description, and a row of small activity tags.
   Top-left media chip carries the glance value (distance / duration).
----------------------------------------------------------- */
.card--location .card__district,
.card--package .card__district {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ember);
  margin: 0 0 6px;
}

.card--location .card__title,
.card--package .card__title {
  font-size: clamp(22px, 2vw, 26px);
  color: var(--color-ink);
  letter-spacing: -0.025em;
}

.card--location .card__desc,
.card--package .card__desc {
  margin-bottom: 12px;
}

/* Package price / group-size row — sits above the .card__foot-text
   to give B2B buyers the two numbers they scan for. */
.card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin: 4px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-soft);
}
.card__price-row .card__price { font-size: 20px; }
.card__price-row .card__price-label {
  color: var(--color-ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.card__tags li {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  color: var(--color-ink-muted);
  background: var(--color-card-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-chip);
  line-height: 1.2;
}

/* -----------------------------------------------------------
   GROUP LABEL — small caps subhead that sits above a sub-grid
   inside a larger section (e.g., "Day escapes" and "Camps by
   location" inside the Under-the-moon section).
----------------------------------------------------------- */
.group-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 18px;
}

.group-label__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ember);
  flex: none;
}

.group-label__note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink-muted);
}

.group-label__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-border-strong), transparent 90%);
  align-self: center;
}

/* Two-up grid for day programs — reads as a distinct row above the
   larger location grid. Collapses to 1-col on narrow viewports. */
.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

@media (max-width: 720px) {
  .day-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   LOGO STRIP — client trust row
   Text-based marks (uppercase, letter-spaced) that stand in for
   real client SVG logos. Muted greyscale so they read as trust
   signals, not distractions. Swap in real SVGs when available.
----------------------------------------------------------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(1.25rem, 2vw, 2rem);
}

.logo-strip__label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  flex: none;
}

/* Brand SVG marks render black (fill="currentColor" with no color
   cascade into an <img>). Muted opacity + zero saturation give a soft
   monochrome that sits calmly on the warm off-white page; the row
   dims and the hovered mark lights up so it feels alive. */
.logo-strip__mark {
  display: inline-block;
  height: clamp(22px, 2.2vw, 30px);
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  filter: saturate(0);
  transition: opacity var(--duration-fast) var(--ease-standard),
              filter var(--duration-fast) var(--ease-standard),
              transform var(--duration-medium) var(--ease-emphasized);
}

/* Wide wordmarks (Deloitte, Infosys) need more room than the square
   icon marks (Microsoft, TATA). */
.logo-strip__mark--wide { max-width: 180px; }

/* When the row is hovered, unfocused marks dim slightly so the
   focused mark reads as the point of attention. */
.logo-strip:hover .logo-strip__mark { opacity: 0.4; }

.logo-strip__mark:hover,
.logo-strip:hover .logo-strip__mark:hover {
  opacity: 0.95;
  filter: saturate(1);
  transform: translateY(-1px);
}

.logo-strip__more {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--color-ink-muted);
}

/* -----------------------------------------------------------
   VENUE STRIP — three compact tiles that link a corporate
   package section to the actual camp locations that host it.
----------------------------------------------------------- */
.venue-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}

@media (max-width: 720px) {
  .venue-strip { grid-template-columns: 1fr; }
}

.venue-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  color: var(--color-ink-on-dark);
  text-decoration: none;
  box-shadow: var(--shadow-elev);
  transition: transform var(--duration-medium) var(--ease-emphasized),
              box-shadow var(--duration-fast) var(--ease-standard);
}

.venue-tile:hover,
.venue-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elev-hover);
  color: var(--color-ink-on-dark);
}

.venue-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--duration-slow) var(--ease-standard);
}

.venue-tile:hover .venue-tile__img { transform: scale(1.05); }

.venue-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-image-scrim-tall);
  z-index: 1;
  pointer-events: none;
}

.venue-tile__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1rem, 1.6vw, 1.375rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.venue-tile__place {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--color-ink-on-dark);
}

.venue-tile__district {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 4px;
}

.venue-tile__km {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-ink-on-dark);
  background: oklch(1 0 0 / 0.14);
  padding: 6px 10px;
  border-radius: var(--radius-chip);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  flex: none;
}

/* Program feature card used on Home / About / Workshops flow */
.feature {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-border-strong);
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  padding: clamp(1.75rem, 2.4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  min-height: 190px;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    border-top-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-medium) var(--ease-standard),
    transform var(--duration-medium) var(--ease-emphasized);
}

.feature:hover,
.feature:focus-within {
  border-color: var(--color-border);
  border-top-color: var(--color-ember);
  box-shadow: var(--shadow-elev-hover), var(--shadow-edge-inset);
}

@media (hover: hover) and (pointer: fine) {
  .feature:hover { transform: translateY(-3px); }
}

/* Numbered counter — replaces icon chip */
.feature__num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-ember);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.feature__num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-ember-soft) 0%, transparent 85%);
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0;
}

.feature__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-ink-muted);
  margin: 10px 0 0;
}

.feature--sm .feature__title {
  font-size: 19px;
}

.feature--card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  padding: 26px 22px;
}

/* Pillar card (About) */
.pillar {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-tile);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  padding: 32px 28px;
}

.pillar__kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 25px;
  color: var(--color-ember);
  line-height: 1;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.pillar__body {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--color-ink-muted);
  margin-top: 12px;
}

/* Highlight box — bordered small chip used for About "special" grid */
.highlight-tile {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.highlight-tile:hover,
.highlight-tile:focus-within {
  border-color: var(--color-ember);
  box-shadow: var(--shadow-elev-hover), var(--shadow-edge-inset);
}

/* -----------------------------------------------------------
   FORMS
----------------------------------------------------------- */
.form {
  display: grid;
  gap: 14px;
}

.form--grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form--grid-2 .form__row-full {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .form--grid-2 {
    grid-template-columns: 1fr;
  }
  .form--grid-2 .form__row-full {
    grid-column: auto;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  scroll-margin-top: 96px;
}

.field__label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.field__hint,
.form__submit-note {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  margin: 0;
}

.form__submit-note {
  text-align: center;
  margin-top: 4px;
}

.form--on-dark .field__hint,
.form--on-dark .form__submit-note {
  color: var(--color-body-on-dark);
}

.input,
.textarea,
.select {
  font-family: var(--font-body);
  /* 16px on mobile prevents iOS from auto-zooming on focus */
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  scroll-margin-top: 96px;
  padding: 13px 15px;
  min-height: 48px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-input);
  background: var(--color-card);
  color: var(--color-ink);
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard);
}

@media (min-width: 1041px) {
  .input,
  .textarea,
  .select {
    font-size: 15px;
  }
}

.input:hover,
.textarea:hover,
.select:hover {
  border-color: oklch(0.72 0.02 82);
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--color-ember);
  outline: 2px solid oklch(0.67 0.15 47 / 0.25);
  outline-offset: 1px;
}

.textarea {
  resize: vertical;
  min-height: 6.5em;
}

/* Dark form variant (used on interest form) */
.form--on-dark .input,
.form--on-dark .textarea,
.form--on-dark .select {
  background: oklch(1 0 0 / 0.06);
  border-color: var(--color-border-on-dark-strong);
  color: var(--color-ink-on-dark);
  padding: 14px 16px;
}

.form--on-dark .input::placeholder,
.form--on-dark .textarea::placeholder {
  color: oklch(0.78 0.02 88);
}

.form--on-dark .select {
  background: var(--color-panel);
}

.form--on-dark .field__label {
  color: oklch(0.8 0.02 88);
}

/* Error + status text */
.field__error {
  font-family: var(--font-body);
  font-size: 12px;
  color: oklch(0.55 0.19 30);
  margin-top: 4px;
  display: none;
}

.form--on-dark .field__error {
  color: oklch(0.78 0.17 30);
}

.field[data-invalid='true'] .field__error {
  display: block;
}

.field[data-invalid='true'] .input,
.field[data-invalid='true'] .textarea,
.field[data-invalid='true'] .select {
  border-color: oklch(0.55 0.19 30);
}

/* Form status region (live) */
.form-status {
  min-height: 1em;
}

.form-status[data-state='sending'] {
  color: var(--color-ink-soft);
  font-size: 13px;
}

.form-status[data-state='error'] {
  color: oklch(0.55 0.19 30);
  font-size: 13px;
}

/* Checkbox chip group — modern multi-select alternative */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-group__fallback {
  display: flex;
  flex-wrap: wrap;
}

.checkbox-group__category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-group__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.checkbox-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-ink);
  min-height: 44px;
  padding: 9px 14px;
  box-sizing: border-box;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  background: var(--color-card);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.checkbox-chip::before {
  content: '';
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: none;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.55;
}

.checkbox-chip:hover,
.checkbox-chip:has(input:focus-visible) {
  border-color: var(--color-ember);
}

.checkbox-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.checkbox-chip:has(input:checked) {
  background: var(--color-ember);
  border-color: var(--color-ember);
  color: var(--color-ink-on-dark);
  box-shadow: var(--shadow-ember-soft);
}

.checkbox-chip:has(input:checked)::before {
  content: '✓';
  opacity: 1;
}

.checkbox-chip--fallback {
  background: var(--color-ember-soft);
  border-color: oklch(0.67 0.15 47 / 0.35);
}

.form__reveal-all {
  align-self: flex-start;
  min-height: 44px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--color-ember-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.form__reveal-all:hover,
.form__reveal-all:focus-visible {
  color: var(--color-ember);
}

/* Dark-form variant */
.form--on-dark .checkbox-group__title {
  color: oklch(0.8 0.02 88);
}

.form--on-dark .checkbox-chip {
  background: oklch(1 0 0 / 0.06);
  border-color: var(--color-border-on-dark-strong);
  color: var(--color-ink-on-dark);
}

.form--on-dark .checkbox-chip:hover,
.form--on-dark .checkbox-chip:has(input:focus-visible) {
  border-color: var(--color-amber);
}

.form--on-dark .checkbox-chip:has(input:checked) {
  background: var(--color-amber);
  border-color: var(--color-amber);
  color: var(--color-ink);
}

.form--on-dark .checkbox-chip--fallback {
  background: oklch(1 0 0 / 0.08);
  border-color: var(--color-border-on-dark-strong);
}

.form--on-dark .form__reveal-all {
  color: var(--color-amber);
}

.field[data-invalid='true'] .checkbox-group {
  padding: 10px;
  margin: -10px;
  border-radius: var(--radius-input);
  outline: 2px solid oklch(0.55 0.19 30 / 0.6);
}

.form--on-dark .field[data-invalid='true'] .checkbox-group {
  outline-color: oklch(0.78 0.17 30 / 0.8);
}

/* Success panel */
.success-panel {
  background: oklch(0.67 0.15 47 / 0.1);
  border: 1px solid oklch(0.67 0.15 47 / 0.4);
  border-radius: 18px;
  padding: 26px;
}

.success-panel--on-dark {
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(0.8 0.14 52 / 0.5);
}

.success-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-subheading);
  letter-spacing: -0.02em;
}

.success-panel--on-dark .success-panel__title {
  color: var(--color-subheading);
  font-size: 26px;
}

.success-panel__body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-ink-muted);
  margin-top: 8px;
}

.success-panel--on-dark .success-panel__body {
  color: var(--color-body-on-dark);
  font-size: 14px;
}

/* -----------------------------------------------------------
   INTEREST BLOCK (Home dark two-column form)
----------------------------------------------------------- */
.interest {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  scroll-margin-top: 120px;
  color: var(--color-ink-on-dark);
}

.interest__grid {
  position: relative;
  display: grid;
  /* `min(100%, 320px)` lets the column shrink below 320px on 320-360px
     viewports where the outer padding leaves < 320px of usable width. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2.25rem, 4.8vw, 4.25rem);
  padding-block: clamp(2.25rem, 4.8vw, 4rem);
  align-items: center;
}

.interest__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}

.interest__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-amber);
}

.interest__stat-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-soft-on-dark);
}

/* -----------------------------------------------------------
   TESTIMONIAL / QUOTE
----------------------------------------------------------- */
.quote {
  background: var(--grad-panel-base);
  color: var(--color-ink-on-dark);
  border-radius: var(--radius-tile);
  padding: clamp(1.875rem, 2.6vw, 2.5rem);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 90% at 100% 0%, oklch(0.52 0.1 232 / 0.4), transparent 60%),
    radial-gradient(60% 60% at 0% 100%, oklch(0.6 0.15 47 / 0.25), transparent 65%);
  pointer-events: none;
}

.quote > * { position: relative; }

.quote--light {
  background: var(--grad-card-sheen);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  color: var(--color-ink);
}

.quote--light::before { display: none; }

.quote__text {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.4;
  margin: 16px 0 22px;
  color: oklch(0.95 0.01 88);
  letter-spacing: -0.005em;
}

.quote--light .quote__text { color: oklch(0.26 0.03 158); }

.quote__attrib {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: inherit;
}

.quote__role {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-amber);
}

.quote--light .quote__role { color: var(--color-ember); }

/* Quote text inside light cards (Google Reviews) */
.quote-card .quote__text { color: var(--color-ink); }
.quote-card .quote__role { color: var(--color-ember); }

/* -----------------------------------------------------------
   TIMELINE / STEPS (Workshops "how a workshop runs")
----------------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step__num {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-panel);
  color: var(--color-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0;
}

.step__body {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin: 5px 0 0;
}

/* -----------------------------------------------------------
   HORIZONTAL TIMELINE
----------------------------------------------------------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: clamp(2.5rem, 4vw, 3.5rem) 0 0;
  display: flex;
  gap: 16px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-on-dark-strong);
}

.timeline__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
}

.timeline__item::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-amber);
  box-shadow: 0 0 0 4px var(--color-panel);
  z-index: 1;
}

.timeline__time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--color-amber-2);
  line-height: 1;
}

.timeline__label {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color-body-on-dark);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .timeline {
    flex-direction: column;
    gap: 28px;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .timeline__item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .timeline__item::before {
    box-shadow: 0 0 0 4px var(--color-panel);
  }
  .timeline__time {
    min-width: 64px;
    text-align: right;
  }
}

/* -----------------------------------------------------------
   PROGRAM META BLOCKS
----------------------------------------------------------- */
.program-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.program-meta__item {
  background: var(--grad-card-sheen);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-meta__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.program-meta__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  line-height: 1.1;
}

@media (max-width: 640px) {
  .program-meta {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   STATS BAND (About)
----------------------------------------------------------- */
.stats-band {
  background: var(--color-panel);
  color: var(--color-ink-on-dark);
  border-radius: var(--radius-tile);
  padding: clamp(1.875rem, 4.5vw, 3.125rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px;
  text-align: center;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 90% at 100% 0%, var(--color-sky-glow), transparent 60%);
  pointer-events: none;
}

.stats-band > * { position: relative; }

.stats-band__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 52px);
  color: var(--color-amber);
  line-height: 1;
}

.stats-band__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-body-on-dark);
  margin-top: 8px;
}

/* -----------------------------------------------------------
   CTA BANNER (ember)
----------------------------------------------------------- */
.cta-banner {
  background: var(--color-ember);
  border-radius: var(--radius-tile);
  padding: clamp(2.125rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  color: var(--color-panel);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  max-width: 22ch;
}

.cta-banner__note {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: oklch(0.28 0.04 158 / 0.85);
  margin: 10px 0 0;
}

/* -----------------------------------------------------------
   DARK PANEL — used for benefits/activities bands
----------------------------------------------------------- */
.dark-panel {
  background: var(--color-panel);
  color: var(--color-ink-on-dark);
  border-radius: var(--radius-tile);
  padding: clamp(2.125rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.dark-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 90% 5%, oklch(0.5 0.1 232 / 0.4), transparent 60%),
    radial-gradient(80% 80% at 5% 100%, oklch(0.55 0.14 47 / 0.36), transparent 58%);
  pointer-events: none;
}

.dark-panel > * { position: relative; }

.dark-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing: -0.03em;
  margin-top: 12px;
  color: var(--color-ink-on-dark);
}

/* Activity / benefit grid inside dark-panel */
.chip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.chip-list--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.chip-list--compact .chip-tile {
  padding: 14px 16px;
  border-radius: 14px;
}

.chip-list--compact .bullet {
  color: var(--color-ink-on-dark);
}

@media (max-width: 900px) {
  .chip-list--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .chip-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.chip-tile {
  border: 1px solid var(--color-border-on-dark-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-edge-inset-dark);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: border-color var(--duration-fast) var(--ease-standard);
}

.chip-tile:hover,
.chip-tile:focus-within {
  border-color: var(--color-amber);
}

/* Benefit tile with stat + title + body (Corporate Packages) */
.benefit {
  border: 1px solid var(--color-border-on-dark-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-edge-inset-dark);
  padding: 26px 22px;
  transition: border-color var(--duration-fast) var(--ease-standard);
}

.benefit:hover,
.benefit:focus-within {
  border-color: var(--color-amber);
}

.benefit__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--color-amber);
  line-height: 1;
}

.benefit__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-top: 12px;
  color: var(--color-subheading);
}

.benefit__body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-body-on-dark);
  margin-top: 8px;
}

/* -----------------------------------------------------------
   CONTACT CARDS
----------------------------------------------------------- */
.contact-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  padding: 28px 26px;
}

.contact-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0;
}

.contact-card__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-ink-muted);
  margin-top: 8px;
  white-space: pre-line;
}

/* Talk-to-us dark card (Contact page) */
.talk-card {
  background: var(--color-panel);
  color: var(--color-ink-on-dark);
  border-radius: var(--radius-card);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.talk-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 90% at 100% 0%, var(--color-sky-glow), transparent 60%);
  pointer-events: none;
}

.talk-card > * { position: relative; }

.talk-card__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.talk-card__lines a {
  color: var(--color-ink-on-dark);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.talk-card__lines a:hover,
.talk-card__lines a:focus-visible {
  color: var(--color-amber);
}

.talk-card__lines a.talk-card__mail {
  color: var(--color-amber);
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 500;
}

.talk-card__lines a.talk-card__mail:hover,
.talk-card__lines a.talk-card__mail:focus-visible {
  color: var(--color-ink-on-dark);
}

/* -----------------------------------------------------------
   GALLERY (filter buttons + masonry-ish grid + video row)
----------------------------------------------------------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-display);
  cursor: pointer;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background: var(--color-card);
  color: var(--color-ink);
  box-shadow: var(--shadow-edge-inset);
  transition:
    background var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    transform var(--duration-instant) var(--ease-standard);
}

.filter-btn:active { transform: translateY(1px); }

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--color-ember);
  color: var(--color-ember);
}

.filter-btn[aria-pressed='true'] {
  background: var(--color-ember);
  border-color: var(--color-ember);
  color: var(--color-ink-on-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-auto-rows: 180px;
  }
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: unset;
    grid-row: unset;
  }
  .gallery-item--wide.gallery-item--tall {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-ink-on-dark);
  transition: transform var(--duration-medium) var(--ease-standard);
}

.gallery-item[hidden] { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-standard);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: scale(1.05);
  }
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, oklch(0.18 0.03 158 / 0.85), transparent);
  pointer-events: none;
}

.gallery-item__cat {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
}

.gallery-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-subheading);
  margin-top: 2px;
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide.gallery-item--tall {
  grid-column: span 2;
  grid-row: span 2;
}

.video-grid {
  display: grid;
  /* Same `min(100%, N)` pattern as .card-grid — lets the tile shrink
     below 280px inside a padded .dark-panel on 320px viewports rather
     than overflowing and getting clipped by the panel's overflow: hidden. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  margin-top: 38px;
}

.video-tile {
  position: relative;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-ink-on-dark);
}

.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(0.18 0.03 158 / 0.75), oklch(0.18 0.03 158 / 0.05));
  pointer-events: none;
}

.video-tile__caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
}

/* -----------------------------------------------------------
   FOOTER TERRAIN DIVIDER
----------------------------------------------------------- */
.footer-terrain {
  display: block;
  line-height: 0;
  margin-top: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
}

/* -----------------------------------------------------------
   CLOSING SCENE
   One unified gradient spans CTA + illustration + footer as
   a single atmospheric backdrop. Individual section backgrounds
   drop out inside this wrapper so the gradient reads continuously.
----------------------------------------------------------- */
.closing-scene {
  position: relative;
  background: var(--color-forest);
}

.closing-scene .footer__cta-band {
  position: relative;
  z-index: 1;
}

.closing-scene .footer-terrain {
  position: relative;
  z-index: 0;
  margin-top: -clamp(5rem, 13vw, 10rem);
}

.closing-scene .footer__cta-band-inner {
  padding-bottom: 0;
  margin-bottom: -3rem;
}

.closing-scene .footer__cta-band,
.closing-scene .footer-terrain,
.closing-scene .footer,
.closing-scene .footer__trust,
.closing-scene .footer__safety,
.closing-scene .footer__grid,
.closing-scene .footer__bar {
  background: transparent;
}

.closing-scene .footer::before,
.closing-scene .footer__cta-band::before,
.closing-scene .footer__cta-band::after {
  display: none;
}

.footer-terrain img {
  display: block;
  width: 100%;
  height: clamp(320px, 36vw, 520px);
  object-fit: cover;
  object-position: 50% 40%;
  mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-panel);
  color: oklch(0.78 0.015 88);
  font-family: var(--font-display);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 55% at 88% 0%, oklch(0.32 0.05 200 / 0.42), transparent 58%),
    radial-gradient(80% 60% at 0% 100%, oklch(0.38 0.09 47 / 0.22), transparent 52%);
  pointer-events: none;
}

.footer > * { position: relative; }

/* ---- Zone 2: CTA Band ---- */
.footer__cta-band {
  background: var(--grad-panel-base);
}

.footer__cta-band-inner {
  padding: clamp(3rem, 5.5vw, 5rem) 0 clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  justify-content: space-between;
}

.footer__cta-copy {
  max-width: 560px;
}

.footer__cta-eyebrow {
  display: block;
  font-size: 17px;
  color: var(--color-amber-2);
  line-height: 1.2;
  margin-bottom: 14px;
  font-style: italic;
}

.footer__cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 62px);
  color: var(--color-ink-on-dark);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.footer__cta-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 16px);
  color: var(--color-body-on-dark);
  max-width: 52ch;
  line-height: 1.7;
  margin: 0;
}

.footer__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 1 420px;
  min-width: 300px;
  align-self: stretch;
}

.footer__cta-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__cta-form .field__label {
  font-size: 10.5px;
}

.footer__cta-form .input {
  padding: 14px 16px;
  min-height: 52px;
  font-size: 16px;
}

.footer__cta-submit {
  align-self: stretch;
  margin-top: 6px;
  min-height: 56px;
  padding: 16px 32px;
  font-size: 16px;
}

.footer__cta-success {
  align-self: stretch;
}

.footer .footer__wa-btn,
.footer__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid oklch(1 0 0 / 0.18);
  background: oklch(1 0 0 / 0.06);
  color: oklch(0.98 0.01 88);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-emphasized);
}

.footer__wa-btn:hover,
.footer__wa-btn:focus-visible {
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
  color: var(--color-ink-on-dark);
  transform: translateY(-1px);
}

.footer__wa-btn svg { flex: none; }

/* ---- Zone 3: Trust Strip ---- */
.footer__trust {
  border-bottom: 1px solid var(--color-border-on-dark);
}

.footer__trust-inner {
  padding: clamp(1.25rem, 2.5vw, 1.875rem) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px clamp(1.25rem, 3vw, 2.75rem);
  text-align: center;
}

.footer__trust-divider {
  display: none;
}

.footer__trust-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--color-amber-2);
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer__trust-num--stars {
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 3px;
  color: var(--color-amber);
}

.footer__trust-sup {
  font-size: 0.48em;
  font-weight: 500;
  color: var(--color-soft-on-dark);
  margin-left: 1px;
  vertical-align: super;
  letter-spacing: 0;
}

/* ---- Zone 3b: Safety Credentials ---- */
.footer__safety {
  border-bottom: 1px solid var(--color-border-on-dark);
}

.footer__safety-inner {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.footer__safety-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-body-on-dark);
}

.footer__safety-item svg {
  flex: none;
  color: var(--color-amber-2);
  opacity: 0.9;
}

.footer__safety-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink-on-dark);
  line-height: 1.2;
}

.footer__safety-sub {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-soft-on-dark);
  line-height: 1.35;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .footer__safety-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .footer__safety-inner {
    grid-template-columns: 1fr;
  }
}

.footer__trust-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-soft-on-dark);
}

/* ---- Zone 4: Main Footer Grid ---- */
.footer__grid {
  padding: clamp(2.75rem, 4.5vw, 4rem) 0 clamp(2rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 3.5vw, 3rem);
}

.footer__brand {
  min-width: 0;
}

.footer__brand-logo {
  height: 112px;
  width: auto;
  display: block;
  margin-bottom: 26px;
}

.footer__brand-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 36ch;
}

.footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-on-dark-strong);
  border-radius: 50%;
  box-shadow: var(--shadow-edge-inset-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: oklch(0.88 0.01 88);
  text-decoration: none;
  background: oklch(1 0 0 / 0.03);
  transition:
    background var(--duration-fast) var(--ease-standard),
    color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-medium) var(--ease-emphasized);
}

.footer__social:active { transform: translateY(1px); }

.footer__social:hover,
.footer__social:focus-visible {
  background: var(--color-ember);
  color: var(--color-ink-on-dark);
  border-color: var(--color-ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow-ember-soft);
}

.footer__heading {
  color: var(--color-subheading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.footer__list {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__list a {
  color: oklch(0.78 0.015 88);
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer__list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-medium) var(--ease-emphasized);
}

.footer__list a:hover,
.footer__list a:focus-visible { color: oklch(0.78 0.14 52); }

.footer__list a:hover::after,
.footer__list a:focus-visible::after { transform: scaleX(1); }

.footer__list--contact {
  gap: 18px;
}

.footer__contact-key {
  color: var(--color-amber-2);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer__contact-item {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.footer__contact-item a {
  color: oklch(0.78 0.015 88);
  text-decoration: none;
  padding: 1px 0;
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer__contact-item a:hover,
.footer__contact-item a:focus-visible { color: oklch(0.78 0.14 52); }

.footer__contact {
  font-style: normal;
  min-width: 0;
}

.footer__contact-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber-2);
  background: oklch(1 0 0 / 0.06);
  border: 1px solid var(--color-border-on-dark-strong);
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 8px;
  vertical-align: 1px;
}

/* ---- Zone 5: Bottom Bar ---- */
.footer__bar {
  border-top: 1px solid var(--color-border-on-dark);
}

.footer__bar-inner {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  color: oklch(0.62 0.015 88);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 22px);
}

.footer__legal a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer__legal a:hover,
.footer__legal a:focus-visible { color: oklch(0.72 0.15 50); }

/* ---- Footer responsive ---- */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__brand-desc { max-width: 56ch; }
}

@media (max-width: 768px) {
  .footer__cta-band-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .footer__cta-actions {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: 0 0 auto;
  }
  .footer__trust-item { padding: 10px clamp(1rem, 2.5vw, 2rem); }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand { grid-column: auto; }
  .footer__trust-divider { display: none; }
  .footer__trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--color-border-on-dark);
  }
  .footer__trust-item {
    background: var(--color-panel);
    padding: 14px 12px;
  }
}


/* -----------------------------------------------------------
   HOME hero-specific micro layout (bento hero copy tile)
----------------------------------------------------------- */
.hero-copy .eyebrow {
  color: var(--color-subheading);
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 14px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}



.hero-copy h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-top: 16px;
  font-weight: 700;
  color: var(--color-ink-on-dark);
}

.hero-copy p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--color-body-on-dark);
  max-width: 50ch;
  margin-top: 16px;
}

.hero-copy__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
}

/* Single-line social proof above the CTA */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-body-on-dark);
  margin-bottom: 18px;
}

.hero-trust__stars {
  color: var(--color-amber);
  letter-spacing: 1.5px;
}

/* Scroll affordance at the bottom of full-viewport heroes */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 32px;
  border: 1.5px solid oklch(1 0 0 / 0.35);
  border-radius: 12px;
  z-index: 4;
  pointer-events: none;
}

.hero-scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: oklch(1 0 0 / 0.55);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll span {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .hero-scroll {
    display: none;
  }
}

/* Light hero (home) needs a darker scroll indicator for contrast on cream */
.hero-banner--home .hero-scroll {
  border-color: oklch(0 0 0 / 0.22);
}

.hero-banner--home .hero-scroll span {
  background: oklch(0 0 0 / 0.35);
}

/* Small "not sure yet" tile CTA */
.tile--dark-soft .btn--primary {
  font-size: 13px;
  padding: 11px 20px;
}

/* Horizontal CTA row tile — full-width dark soft tile that reads as a
   footer band inside a bento (copy left, action right). */
.tile--cta-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: unset;
  padding: 26px clamp(24px, 3vw, 34px);
}

.tile--cta-row .btn {
  flex: none;
}

@media (max-width: 640px) {
  .tile--cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* -----------------------------------------------------------
   WHATSAPP FLOAT BUTTON
----------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wa-float__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-ink-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px oklch(0.72 0.22 145 / 0.45);
  transition:
    transform var(--duration-fast) var(--ease-emphasized),
    box-shadow var(--duration-fast) var(--ease-standard);
  position: relative;
  flex: none;
}

.wa-float__btn svg {
  width: 30px;
  height: 30px;
}

/* Pulse ring */
.wa-float__btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  opacity: 0;
  animation: wa-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.5);  opacity: 0;    }
  100% { transform: scale(1.5);  opacity: 0;    }
}

.wa-float__label {
  background: var(--color-panel);
  color: var(--color-ink-on-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition:
    opacity var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
  box-shadow: var(--shadow-elev);
}

.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  opacity: 1;
  transform: translateX(0);
}

.wa-float:hover .wa-float__btn,
.wa-float:focus-visible .wa-float__btn {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-float__btn {
    width: 52px;
    height: 52px;
  }
  .wa-float__btn svg {
    width: 26px;
    height: 26px;
  }
  .wa-float__label { display: none; }
}

/* -----------------------------------------------------------
   HERO BANNER — home modifier
   Editorial split: cream left canvas (copy) + illustration right,
   blended together via a CSS mask on the illustration (soft
   painted-fog transition) and a low-opacity paper grain overlay.
----------------------------------------------------------- */
.hero-banner--home {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--color-hero-cream);
}

/* Flex-end so image hugs the right edge at full natural height */
.hero-banner--home .hero-banner__media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  z-index: 0;
}

/* Height-driven sizing: image fills viewport height, width scales
   proportionally. Mask fades the illustration's left edge into
   transparency so the cream underneath reads as painted fog rather
   than a hard slab edge. */
.hero-banner--home .hero-banner__media img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: unset;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 12%,
    #000 35%,
    #000 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 12%,
    #000 35%,
    #000 100%
  );
}

/* Scrim was for dark overlay on dark bg — not needed on cream */
.hero-banner--home .hero-banner__scrim {
  display: none;
}

/* Left canvas: sits on top of the mask-blended illustration. No solid
   background — the page cream shows through and the mask handles the
   fade. A whisper of warmth boosts text readability on the far left
   without creating a visible edge. */
.hero-banner--home .hero-banner__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  width: clamp(360px, 60vw, 860px);
  padding-inline: var(--container-pad) clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(4.5rem, 9vh, 7rem);
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--color-hero-cream) 0%,
    oklch(0.93 0.05 85 / 0.92) 45%,
    transparent 100%
  );
}

/* Constrain content width inside the canvas so headlines never
   over-run into the illustration. */
.hero-banner--home .hero-copy > div { max-width: 760px; }
.hero-banner--home .hero-copy h1    { max-width: 760px; text-wrap: balance; }
.hero-banner--home .hero-copy p     { max-width: 660px; }

/* --- copy colours: dark text on cream + illustration --- */
.hero-banner--home .hero-copy h1         { color: var(--color-ink); }
.hero-banner--home .hero-copy p          { color: var(--color-ink-muted); }
.hero-banner--home .hero-copy .eyebrow   { color: var(--color-subheading); }

.hero-banner--home .hero-trust           { color: var(--color-ink-soft); }

/* Secondary gallery link: keep it quiet on the light hero */
.hero-banner--home .hero-copy__cta .link-arrow {
  color: var(--color-ink-muted);
  border-bottom-color: var(--color-border-strong);
}
.hero-banner--home .hero-copy__cta .link-arrow:hover,
.hero-banner--home .hero-copy__cta .link-arrow:focus-visible {
  color: var(--color-ember-text);
  border-bottom-color: var(--color-ember-text);
}

/* Short viewports (laptops with the browser chrome open): tighten
   the type scale so the CTA + trust line stay above the fold. */
@media (min-width: 1024px) and (max-height: 780px) {
  .hero-banner--home .hero-copy h1 {
    font-size: clamp(46px, 5.6vw, 72px);
  }
  .hero-banner--home .hero-copy p {
    margin-top: 12px;
    line-height: 1.55;
  }
  .hero-banner--home .hero-trust {
    margin-bottom: 12px;
  }
}

/* Tablet: the mask % is relative to image width; when the image
   overflows the viewport (height-driven sizing at narrower widths),
   the mask fade lands offscreen and the copy gets buried. Cap the
   image width to the viewport, use object-fit to keep the right-side
   detail visible, and lay a soft cream gradient behind the copy to
   guarantee readability. */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-banner--home .hero-banner__media img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: 78% center;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 18%,
      #000 42%,
      #000 100%
    );
            mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.35) 18%,
      #000 42%,
      #000 100%
    );
  }
  .hero-banner--home .hero-banner__inner {
    width: clamp(320px, 50vw, 520px);
    padding-block: clamp(5rem, 10vh, 6rem);
    background: linear-gradient(
      to right,
      var(--color-hero-cream) 0%,
      oklch(0.93 0.05 85 / 0.9) 55%,
      transparent 100%
    );
  }
}

/* Mobile: true stacked composition. Copy leads, then the illustration
   sits beneath it as a deliberate hero panel, not a squeezed background.
   Copy is centered so the layout feels native to portrait viewports. */
@media (max-width: 767px) {
  .hero-banner--home {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hero-banner--home .hero-banner__media {
    position: relative;
    inset: auto;
    order: 2;
    height: 42vh;
    min-height: 280px;
    align-items: stretch;
    justify-content: stretch;
  }
  .hero-banner--home .hero-banner__media img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    object-fit: cover;
    object-position: 65% bottom;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 6%,
      #000 92%,
      transparent 100%
    );
            mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 6%,
      #000 92%,
      transparent 100%
    );
  }
  .hero-banner--home .hero-banner__inner {
    position: relative;
    order: 1;
    width: 100%;
    padding-inline: var(--container-pad);
    padding-block: 2.5rem 1.5rem;
    justify-content: flex-start;
    text-align: center;
    background: var(--color-hero-cream);
  }
  .hero-banner--home .hero-copy > div,
  .hero-banner--home .hero-copy h1,
  .hero-banner--home .hero-copy p {
    max-width: none;
  }
  .hero-banner--home .hero-trust {
    justify-content: center;
  }
  .hero-banner--home .hero-copy__cta {
    justify-content: center;
  }
}

/* ============================================================
   ACCORDION — clean, collapsible FAQ-style panel
   ============================================================ */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin-inline: auto;
}

/* Accordion used inside the Why Cliff-Inn bento — full-width, no centering */
.accordion--why {
  max-width: none;
  margin-inline: 0;
  justify-content: center;
}

.accordion__item {
  background: linear-gradient(160deg, oklch(1 0 0), oklch(0.97 0.012 85));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.accordion__item:hover {
  border-color: var(--color-border-strong);
}

.accordion__item.is-open {
  border-color: var(--color-ember);
  box-shadow: 0 14px 34px oklch(0.6 0.16 45 / 0.12);
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-standard);
}

.accordion__trigger:hover,
.accordion__trigger:focus-visible {
  color: var(--color-ember-text);
}

.accordion__trigger:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: -2px;
  border-radius: var(--radius-card);
}

.accordion__icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--color-ember);
  transition: transform var(--duration-medium) var(--ease-emphasized);
}

.accordion__icon svg {
  width: 100%;
  height: 100%;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-medium) var(--ease-emphasized);
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__panel-inner {
  overflow: hidden;
}

.accordion__panel-content {
  padding: 0 26px 26px;
  color: var(--color-ink-muted);
  font-size: var(--fs-body);
  line-height: 1.65;
}

.accordion__panel-content p + p {
  margin-top: 1em;
}

@media (max-width: 640px) {
  .accordion__trigger {
    padding: 18px 20px;
  }
  .accordion__panel-content {
    padding: 0 20px 22px;
  }
}

/* ============================================================
   CLEANUP UTILITIES — token-driven replacements for inline styles
   ============================================================ */

.section--pb-0 { padding-bottom: 0; }

.tile--tall   { min-height: 460px; }
.tile--short  { min-height: 220px; }
.tile--video  { min-height: 400px; }

.ig-tile--tall  { min-height: 420px; }
.ig-tile--short { min-height: 200px; }

.tile__title--lg {
  font-size: clamp(22px, 2.4vw, 28px);
}

.tile__cta-text {
  display: inline-block;
  margin-top: 14px;
}

.kicker--on-dark {
  font-size: 17px;
  line-height: 1.2;
  color: var(--color-amber-2);
}

.section-head__lead {
  max-width: 52ch;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--color-body-on-dark);
}

.section-title--tight {
  margin-top: 10px;
}

.interest-cta__eyebrow {
  font-size: 17px;
  color: var(--color-amber-2);
}

.interest-cta__title {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  margin-top: 10px;
  color: var(--color-ink-on-dark);
}

.interest-cta__lead {
  margin-top: 16px;
  max-width: 42ch;
  color: var(--color-body-on-dark);
}

.why__title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  margin-top: 14px;
  color: var(--color-ink-on-dark);
}

.why__lead {
  margin-top: 16px;
  color: var(--color-body-on-dark);
}

.why__cta {
  align-self: flex-start;
  margin-top: 24px;
}

.video-tile__scrim {
  background: linear-gradient(
    0deg,
    oklch(0.16 0.03 158 / 0.85),
    oklch(0.4 0.1 40 / 0.12) 45%,
    transparent 72%
  );
}

.video-tile__badge {
  right: 22px;
  left: auto;
}

/* Register-interest CTA panel (replaces inline form) */
.interest-cta {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  scroll-margin-top: 120px;
  color: var(--color-ink-on-dark);
}

.interest-cta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2.25rem, 4.8vw, 4.25rem);
  padding-block: clamp(2.25rem, 4.8vw, 4rem);
  align-items: center;
}

.interest-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.interest-cta__note {
  font-size: var(--fs-small);
  color: var(--color-soft-on-dark);
  max-width: 36ch;
}

/* Footer CTA button wrapper (replaces quick form) */
.footer__cta-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer__cta-note {
  font-size: var(--fs-small);
  color: var(--color-soft-on-dark);
  max-width: 36ch;
}

/* Inline link on dark surfaces */
.link--amber {
  color: var(--color-amber);
}

.link--amber:hover,
.link--amber:focus-visible {
  color: var(--color-ink-on-dark);
}

/* -----------------------------------------------------------
   TESTIMONIAL MARQUEE
   Infinite left-scrolling ribbon of quote cards.
   Two identical .tmq__set siblings; animation moves -50% of the
   combined track width, which equals exactly one set width
   (sets use padding-right to include the trailing inter-card gap
   so the loop is pixel-perfect with no jump).
----------------------------------------------------------- */
@keyframes tmq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Viewport: clips overflow + soft edge fade via mask */
.tmq {
  overflow: hidden;
  padding-block: clamp(1.5rem, 2.5vw, 2.25rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 9%,
    black 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 9%,
    black 91%,
    transparent 100%
  );
}

/* Scrolling track — width driven by content, not viewport */
.tmq__track {
  display: flex;
  width: max-content;
  animation: tmq-scroll 44s linear infinite;
  will-change: transform;
}

/* Pause on hover/focus so users can read cards comfortably */
.tmq:hover .tmq__track,
.tmq:focus-within .tmq__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .tmq__track { animation-play-state: paused; }
}

/* Each set: gap between cards + trailing padding-right = gap between sets */
.tmq__set {
  display: flex;
  gap: var(--grid-gap);
  flex: none;
  padding-right: var(--grid-gap);
}

/* Individual card */
.tmq__card {
  width: clamp(272px, 26.5vw, 340px);
  flex: none;
  background: var(--grad-card-sheen);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
  padding: clamp(1.25rem, 1.9vw, 1.625rem);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-medium) var(--ease-emphasized);
}

/* Ember gradient top stripe */
.tmq__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-ember);
}

/* Subtle lift when marquee is paused and user hovers a card */
@media (hover: hover) and (pointer: fine) {
  .tmq:hover .tmq__card:hover {
    box-shadow: var(--shadow-elev-hover), var(--shadow-edge-inset);
    transform: translateY(-3px);
  }
}

.tmq__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tmq__stars {
  color: var(--color-amber);
  font-size: 13px;
  letter-spacing: 2.5px;
  line-height: 1;
}

.tmq__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(12px, 1vw, 13.5px);
  line-height: 1.55;
  color: var(--color-ink-muted);
  flex: 1;
  margin: 0;
}

.tmq__text strong {
  color: var(--color-ember-text);
  font-weight: 600;
  font-style: normal;
}

.tmq__attrib {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border-soft);
  margin-top: auto;
}

/* Initials avatar — ember by default, rotates through 3 palette stops */
.tmq__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--color-ink-on-dark);
  background: var(--grad-ember);
  text-transform: uppercase;
  -webkit-user-select: none;
  user-select: none;
}

.tmq__card:nth-child(3n+2) .tmq__avatar { background: var(--grad-sky-tile); }
.tmq__card:nth-child(3n)   .tmq__avatar { background: var(--grad-panel-base); }

.tmq__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-ink);
  line-height: 1.2;
}

.tmq__role {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ember-text);
  margin-top: 2px;
}

/* ── Google Reviews badge shown in the section-head ── */
.tmq-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  flex: none;
}

.tmq-rating svg {
  flex: none;
  display: block;
}

.tmq-rating__stars {
  color: var(--color-amber);
  font-size: 13px;
  letter-spacing: 1px;
}

.tmq-rating__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.tmq-rating__label {
  font-size: 12.5px;
  color: var(--color-ink-muted);
}

@media (max-width: 480px) {
  .tmq-rating { display: none; }
}


/* -----------------------------------------------------------
   AMENITY MARQUEE
   Infinite left-scrolling ribbon of image cards (camp amenities).
   Same two-set / -50% technique as the testimonial marquee (.tmq)
   so the loop is pixel-perfect. Pauses on hover / focus.
----------------------------------------------------------- */
@keyframes amenity-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.amenity-marquee {
  overflow: hidden;
  padding-block: clamp(1.25rem, 2.2vw, 2rem);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.amenity-marquee__track {
  display: flex;
  width: max-content;
  animation: amenity-scroll 48s linear infinite;
  will-change: transform;
}

.amenity-marquee:hover .amenity-marquee__track,
.amenity-marquee:focus-within .amenity-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .amenity-marquee__track { animation-play-state: paused; }
}

.amenity-marquee__set {
  display: flex;
  gap: var(--grid-gap);
  flex: none;
  padding-right: var(--grid-gap);
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.amenity-card {
  width: clamp(240px, 22vw, 300px);
  flex: none;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-elev);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition:
    box-shadow var(--duration-fast) var(--ease-standard),
    transform var(--duration-medium) var(--ease-emphasized);
}

.amenity-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--duration-slow) var(--ease-standard);
}

.amenity-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-image-scrim-tall);
  z-index: 1;
  pointer-events: none;
}

.amenity-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.125rem, 1.6vw, 1.5rem);
  z-index: 2;
  color: var(--color-ink-on-dark);
}

.amenity-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--color-ink-on-dark);
}

.amenity-card__desc {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-body-on-dark);
}

@media (hover: hover) and (pointer: fine) {
  .amenity-marquee:hover .amenity-card:hover {
    box-shadow: var(--shadow-elev-hover);
    transform: translateY(-3px);
  }
  .amenity-marquee:hover .amenity-card:hover .amenity-card__img {
    transform: scale(1.05);
  }
}


/* -----------------------------------------------------------
   HOW IT WORKS — minimal 3-step band
----------------------------------------------------------- */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: var(--section-head-gap);
}

.how-it-works__step {
  padding: clamp(2rem, 3vw, 2.75rem);
  background: var(--grad-card-sheen);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-elev), var(--shadow-edge-inset);
}

.how-it-works__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--color-ember);
  line-height: 1;
}

.how-it-works__title {
  margin: 16px 0 0;
  font-size: 24px;
  color: var(--color-ink);
}

.how-it-works__body {
  margin: 10px 0 0;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-ink-muted);
}

@media (max-width: 720px) {
  .how-it-works {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   COOKIE CONSENT
----------------------------------------------------------- */
.consent-banner {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 220;
  color: var(--color-ink-on-dark);
}

.consent-banner__content {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--color-panel);
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 60px oklch(0.08 0.02 158 / 0.45);
}

.consent-banner__copy {
  max-width: 58ch;
}

.consent-banner__title {
  margin: 0;
  color: var(--color-ink-on-dark);
  font-size: clamp(18px, 2vw, 22px);
}

.consent-banner__description {
  margin: 6px 0 0;
  color: var(--color-body-on-dark);
  font-size: 14px;
  line-height: 1.55;
}

.consent-banner__actions {
  display: flex;
  flex: none;
  gap: 10px;
}

.consent-banner__actions .btn {
  min-height: 44px;
  white-space: nowrap;
}

.consent-settings {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 140;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-card);
  color: var(--color-ink);
  box-shadow: var(--shadow-elev);
  font: 600 13px/1 var(--font-display);
  cursor: pointer;
}

.consent-settings:hover {
  border-color: var(--color-ember);
  color: var(--color-ember);
}

@media (max-width: 680px) {
  .consent-banner {
    inset: auto 10px 10px;
  }

  .consent-banner__content {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--radius-input);
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-banner__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consent-banner *,
  .consent-settings {
    transition: none !important;
  }
}

/* -----------------------------------------------------------
   404 PAGE
----------------------------------------------------------- */
.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
  background:
    radial-gradient(circle at 80% 15%, oklch(0.52 0.1 232 / 0.2), transparent 34%),
    radial-gradient(circle at 12% 88%, oklch(0.67 0.15 47 / 0.16), transparent 34%),
    var(--color-panel);
}

.error-card {
  width: min(100%, 760px);
  padding: clamp(32px, 7vw, 72px);
  text-align: center;
  color: var(--color-ink-on-dark);
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: var(--radius-tile);
  background: oklch(0.18 0.03 158 / 0.8);
  box-shadow: 0 28px 80px oklch(0.06 0.02 158 / 0.45);
}

.error-card__brand {
  display: inline-flex;
  color: var(--color-amber);
  font: 700 16px/1 var(--font-display);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.error-card__code {
  display: block;
  margin-top: clamp(30px, 6vw, 56px);
  color: var(--color-amber);
  font: 500 clamp(14px, 2vw, 17px)/1 var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.error-card__title {
  margin: 12px 0 0;
  color: var(--color-ink-on-dark);
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
}

.error-card__body {
  max-width: 48ch;
  margin: 20px auto 0;
  color: var(--color-body-on-dark);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.error-card__actions {
  margin-top: clamp(26px, 4vw, 38px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 480px) {
  .error-card__actions {
    display: grid;
  }

  .error-card__actions .btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────
   Carousel — horizontal scroll-snap with arrows + dots.
   Cards are the same .card component; slides are just flex items.
   ───────────────────────────────────────────────────────────── */
/* -----------------------------------------------------------
   EXPEDITION CARDS — clean image, one facts line, one action.
----------------------------------------------------------- */
.card--expedition {
  box-shadow: 0 12px 30px oklch(0.08 0.02 158 / 0.16);
}

.card--expedition .card__media {
  height: auto;
  aspect-ratio: 16 / 9;
}

.card--expedition .card__body {
  padding: clamp(18px, 1.7vw, 24px);
  gap: 0;
}

.expedition-card__facts {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0 0 14px;
  overflow: visible;
  color: var(--color-ink-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.expedition-card__facts > * {
  flex: none;
}

.expedition-card__facts > * + *::before {
  content: '•';
  margin-inline: 8px;
  color: var(--color-ember);
}

.card--expedition .card__title {
  font-size: clamp(20px, 1.7vw, 23px);
  line-height: 1.16;
}

.card--expedition .card__desc {
  margin: 10px 0 20px;
  font-size: 14px;
  line-height: 1.62;
}

.card--expedition .card__footer {
  margin-top: auto;
  padding-top: 16px;
}

.card--expedition .card__footer > .btn {
  flex: 0 0 auto;
  min-height: 44px;
}

@media (max-width: 640px) {
  .card--expedition .card__body {
    padding: 18px;
  }

  .expedition-card__facts {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .expedition-card__facts > * + *::before {
    margin-inline: 6px;
  }

  .card--expedition .card__footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
  }

  .card--expedition .card__footer > .btn {
    width: 100%;
    padding-inline: 16px;
  }
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: var(--grid-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  list-style: none;
  margin: 0;
  padding: 4px 4px 12px;
  overscroll-behavior-x: contain;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__slide {
  flex: 0 0 calc((100% - var(--grid-gap) * 2) / 3);
  scroll-snap-align: start;
  min-width: 0;
  display: flex;
}
.carousel__slide > .card {
  width: 100%;
}

@media (max-width: 900px) {
  .carousel__slide { flex-basis: calc((100% - var(--grid-gap)) / 2); }
}
@media (max-width: 640px) {
  .carousel__slide { flex-basis: 86%; }
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    opacity var(--duration-fast) var(--ease-standard);
}
.carousel__arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}
.carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel__arrow:focus-visible {
  outline: 2px solid var(--color-ember);
  outline-offset: 2px;
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard),
    width var(--duration-fast) var(--ease-standard);
}
.carousel__dot:hover { background: rgba(255, 255, 255, 0.55); }
.carousel__dot[aria-current="true"] {
  background: var(--color-ember);
  width: 22px;
  border-radius: 999px;
}
.carousel__dot:focus-visible {
  outline: 2px solid var(--color-ember);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track { scroll-behavior: auto; }
  .carousel__dot,
  .carousel__arrow { transition: none; }
}

/* Mobile header — force logo left and hamburger right without the empty
   1fr column that used to create a wide dead zone between them. */
@media (max-width: 1080px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}
