/* =========================================================
   Brahmatal Trek Package — Design System
   Palette: "Frozen Meltwater" (parchment + navy + glacier cyan + rust)
   Type:    Instrument Serif (display, italic-capable) + Manrope (body)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --ink:        #0E1D2E;
  --midnight:   #1A2E45;
  --muted:      #5E6A7D;
  --hairline:   #C9C0A9;
  --stone:      #E4DDCB;
  --paper:      #FAF7EE;
  --parchment:  #F4EEE1;
  --sand:       #DBC69B;
  --glacier:    #C5E1EA;
  --frost:      #5FA7C2;
  --frost-dark: #3D8AA6;
  --moss:       #2E4B36;
  --ember:      #C25B3D;
  --ember-dark: #A44A30;
  --white:      #FFFFFF;

  /* Semantic */
  --bg:            var(--parchment);
  --bg-alt:        var(--paper);
  --bg-dark:       var(--ink);
  --text:          var(--ink);
  --text-muted:    var(--muted);
  --border:        var(--stone);
  --border-strong: var(--hairline);
  --accent:        var(--ember);
  --accent-hover:  var(--ember-dark);
  --link:          var(--frost-dark);

  /* Spacing scale (4pt) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(14,29,46,.06), 0 1px 1px rgba(14,29,46,.04);
  --shadow-md: 0 8px 20px rgba(14,29,46,.08), 0 2px 6px rgba(14,29,46,.05);
  --shadow-lg: 0 24px 50px rgba(14,29,46,.14), 0 6px 14px rgba(14,29,46,.06);
  --shadow-ink: 0 30px 60px rgba(14,29,46,.35);

  /* Typography */
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.55;
  --leading-relaxed: 1.7;

  /* Type scale (fluid) */
  --fs-xs:   0.78rem;
  --fs-sm:   0.88rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.05rem, 0.98rem + 0.2vw, 1.15rem);
  --fs-lg:   clamp(1.2rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-xl:   clamp(1.5rem, 1.25rem + 1vw, 1.9rem);
  --fs-2xl:  clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
  --fs-3xl:  clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem);
  --fs-hero: clamp(2.8rem, 2rem + 3.6vw, 5rem);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --header-h: 76px;

  /* Transitions */
  --t-fast: 140ms ease;
  --t-med:  260ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--leading-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--ember); }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--sand); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
  color: var(--ink);
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { margin: 0 0 var(--s-4); }

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

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s-5); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-8) 0; }
@media (max-width: 720px) { .section { padding: var(--s-8) 0; } .section-tight { padding: var(--s-7) 0; } }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}
.eyebrow.eyebrow--frost { color: var(--frost-dark); }
.eyebrow.eyebrow--ember { color: var(--ember-dark); }
.eyebrow.eyebrow--light { color: var(--glacier); }

/* Section header */
.section-head { max-width: 720px; margin: 0 0 var(--s-7); }
.section-head p { color: var(--muted); font-size: var(--fs-md); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ember);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 6px 16px rgba(194,91,61,.28);
  white-space: nowrap;
}
.btn:hover { background: var(--ember-dark); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--frost { --btn-bg: var(--frost-dark); box-shadow: 0 6px 16px rgba(61,138,166,.28); }
.btn--frost:hover { background: #2E7793; }

.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244,238,225,0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-med), border-color var(--t-med);
}
.site-header.is-scrolled { background: rgba(244,238,225,0.96); border-bottom-color: var(--stone); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--ink); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.02em;
}
.brand img { height: 40px; width: auto; }
.brand .brand-mark { display: block; }

.nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--s-6); align-items: center;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a:hover { color: var(--ink); }

.header-cta { display: inline-flex; align-items: center; gap: var(--s-4); }
.header-phone { color: var(--ink); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.header-phone svg { width: 16px; height: 16px; color: var(--ember); }

.hamburger {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 10px;
  border-radius: var(--r-sm);
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; transition: transform var(--t-fast), opacity var(--t-fast); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: inline-flex; flex-direction: column; }
  .nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--parchment); padding: var(--s-6) var(--s-5); transform: translateX(100%); transition: transform var(--t-med); z-index: 50; }
  .nav.is-open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: var(--s-4); }
  .nav a { padding: var(--s-3) 0; font-size: 1.1rem; border-bottom: 1px solid var(--stone); display: block; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: var(--s-9) 0 var(--s-8);
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(105%) contrast(102%);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,29,46,.15) 0%, rgba(14,29,46,.55) 55%, rgba(14,29,46,.85) 100%),
    linear-gradient(90deg, rgba(14,29,46,.6) 0%, rgba(14,29,46,.15) 60%);
}

.hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--s-8); align-items: end; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__title {
  color: #fff;
  font-size: var(--fs-hero);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  max-width: 12ch;
}
.hero__title em { font-style: italic; color: var(--glacier); font-weight: 400; }
.hero__lede {
  color: rgba(255,255,255,0.86);
  font-size: var(--fs-md);
  max-width: 46ch;
  margin-bottom: var(--s-6);
}
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-6); align-items: center; margin-bottom: var(--s-7); }
.hero__meta-item { display: inline-flex; flex-direction: column; gap: 2px; color: rgba(255,255,255,0.85); }
.hero__meta-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--glacier); }
.hero__meta-val { font-family: var(--font-display); font-size: 1.35rem; color: #fff; letter-spacing: -0.01em; }

.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); }

.hero__aside { align-self: end; }
.hero__aside-card {
  background: rgba(250,247,238,0.96);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}

.rating { display: inline-flex; align-items: center; gap: var(--s-3); }
.rating__stars { color: var(--ember); letter-spacing: 2px; font-size: 1rem; }
.rating__stars.stars--light { color: var(--sand); }
.rating__value { font-family: var(--font-display); font-size: 1.4rem; }
.rating__meta { color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Package strip in hero ---------- */
.hero__price {
  display: flex; align-items: baseline; gap: var(--s-3); margin: var(--s-4) 0;
}
.hero__price-now { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.hero__price-was { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.hero__price-note { color: var(--moss); font-size: 0.85rem; margin-left: auto; font-weight: 600; }

/* ---------- Reviews strip ---------- */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: var(--s-5) 0;
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: var(--s-6);
}
.trust-item {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--ink);
  font-size: 0.95rem;
}
.trust-item strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.trust-item svg { width: 22px; height: 22px; color: var(--frost-dark); }
.trust-item + .trust-item { border-left: 1px solid var(--stone); padding-left: var(--s-6); }
@media (max-width: 720px) {
  .trust-item + .trust-item { border-left: 0; padding-left: 0; }
}

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); align-items: stretch; }
@media (max-width: 900px) { .packages { grid-template-columns: 1fr; } }

.package {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.package--featured { border-color: var(--ink); background: linear-gradient(180deg, var(--paper) 0%, #FFFEF7 100%); }
.package--featured::before {
  content: "Most popular";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); font-weight: 600;
}
.package__title { font-size: 1.35rem; margin-bottom: var(--s-2); }
.package__sub { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--s-5); }
.package__price { display: flex; align-items: baseline; gap: var(--s-3); margin-bottom: var(--s-2); }
.package__price-now { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); }
.package__price-was { color: var(--muted); text-decoration: line-through; font-size: 1.05rem; }
.package__price-note { font-size: var(--fs-xs); color: var(--moss); margin-bottom: var(--s-5); letter-spacing: 0.02em; }
.package__includes { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: var(--s-2); }
.package__includes li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: var(--fs-sm); color: var(--ink);
}
.package__includes li::before {
  content: ""; display: inline-block; margin-top: 8px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--frost); flex: none;
}
.package .btn { margin-top: auto; }

/* ---------- Feature cards ---------- */
.feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
@media (max-width: 900px) { .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .feature-cards { grid-template-columns: 1fr; } }
.feature {
  padding: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.feature__icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--glacier); color: var(--ink);
}
.feature__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); margin: 0; }
.feature__desc { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* ---------- Fact grid ---------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--stone); border-radius: var(--r-md); overflow: hidden; background: var(--paper); }
.fact { padding: var(--s-6); border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.fact:nth-child(3n) { border-right: 0; }
.fact:nth-last-child(-n+3) { border-bottom: 0; }
@media (max-width: 720px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .fact { border-right: 1px solid var(--stone); }
  .fact:nth-child(3n) { border-right: 1px solid var(--stone); }
  .fact:nth-child(even) { border-right: 0; }
  .fact:nth-last-child(-n+3) { border-bottom: 1px solid var(--stone); }
  .fact:nth-last-child(-n+2) { border-bottom: 0; }
}
.fact__label { color: var(--muted); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: var(--s-2); }
.fact__value { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }

/* ---------- Itinerary ---------- */
.itinerary { border-top: 1px solid var(--stone); }
.day {
  border-bottom: 1px solid var(--stone);
}
.day__toggle {
  width: 100%;
  background: transparent;
  border: 0;
  padding: var(--s-5) 0;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  align-items: center;
  gap: var(--s-5);
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.day__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ember);
  line-height: 1;
}
.day__num small { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); display: block; margin-bottom: 2px; }
.day__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); margin: 0; }
.day__meta { color: var(--muted); font-size: var(--fs-sm); margin-top: 4px; }
.day__chev { width: 24px; height: 24px; transition: transform var(--t-med); color: var(--muted); }
.day.is-open .day__chev { transform: rotate(90deg); color: var(--ember); }
.day__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-med);
}
.day.is-open .day__body { max-height: 1200px; }
.day__body-inner {
  padding: 0 0 var(--s-6) 84px;
  color: var(--midnight);
}
.day__body-inner ul { padding-left: var(--s-5); margin: 0 0 var(--s-4); }
.day__body-inner li { margin-bottom: 8px; }
@media (max-width: 600px) {
  .day__toggle { grid-template-columns: 40px 1fr 24px; gap: var(--s-4); }
  .day__num { font-size: 1.5rem; }
  .day__body-inner { padding-left: 56px; }
}

/* ---------- Prose block ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--fs-2xl); margin-top: var(--s-8); margin-bottom: var(--s-4); }
.prose h3 { font-size: var(--fs-xl); margin-top: var(--s-7); margin-bottom: var(--s-3); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--midnight); font-size: var(--fs-md); line-height: var(--leading-relaxed); }
.prose ul, .prose ol { padding-left: var(--s-5); color: var(--midnight); font-size: var(--fs-md); line-height: var(--leading-relaxed); margin: 0 0 var(--s-5); }
.prose li { margin-bottom: 6px; }
.prose blockquote { margin: var(--s-6) 0; padding: var(--s-5) var(--s-6); border-left: 3px solid var(--ember); background: var(--paper); font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ink); }
.prose strong { color: var(--ink); }
.prose img { border-radius: var(--r-md); margin: var(--s-6) 0; }
.prose a { color: var(--frost-dark); text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 3px; }
.prose a:hover { color: var(--ember); }

/* ---------- Two-column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split--flip .split__media { order: 2; }
@media (max-width: 900px) { .split--flip .split__media { order: 0; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--s-3); max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.faq-item.is-open { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: var(--s-5) var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  text-align: left;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
}
.faq-item__q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ember);
  transition: transform var(--t-med);
  line-height: 1;
}
.faq-item.is-open .faq-item__q::after { content: "–"; }
.faq-item__a {
  overflow: hidden; max-height: 0;
  transition: max-height var(--t-med);
  color: var(--midnight);
}
.faq-item.is-open .faq-item__a { max-height: 500px; }
.faq-item__a-inner { padding: 0 var(--s-6) var(--s-5); font-size: var(--fs-md); line-height: var(--leading-relaxed); }

/* ---------- Testimonials (quote-first, no faces) ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-6) var(--s-5);
  display: flex; flex-direction: column;
  position: relative;
}
.review__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sand);
  line-height: 0.6;
  margin: 0 0 var(--s-2);
}
.review__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--s-5);
  flex: 1;
}
.review__stars { color: var(--ember); letter-spacing: 2px; margin-bottom: var(--s-3); font-size: 0.9rem; }
.review__meta { border-top: 1px solid var(--stone); padding-top: var(--s-4); }
.review__name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.review__where { font-size: var(--fs-xs); color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med); }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- Form ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-top: 0; }
.form-note { color: var(--muted); font-size: var(--fs-sm); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  border-radius: var(--r-sm);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14,29,46,0.08);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .error { color: var(--ember-dark); font-size: 0.85rem; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { padding: var(--s-4); border-radius: var(--r-sm); font-size: var(--fs-sm); margin-top: var(--s-4); display: none; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(46,75,54,0.08); color: var(--moss); border: 1px solid rgba(46,75,54,0.2); }
.form-status.is-error { background: rgba(194,91,61,0.08); color: var(--ember-dark); border: 1px solid rgba(194,91,61,0.25); }

/* ---------- CTA banner ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(14,29,46,0.88), rgba(26,46,69,0.82)),
    url('../images/scenery/ridge-climb.webp') center/cover no-repeat;
  color: #fff;
  padding: var(--s-9) 0;
  text-align: center;
  border-radius: var(--r-lg);
  margin: 0 var(--s-5);
}
@media (min-width: 900px) { .cta-band { margin: 0 auto; max-width: calc(var(--wrap) + 40px); } }
.cta-band h2 { color: #fff; font-size: var(--fs-3xl); margin-bottom: var(--s-3); max-width: 22ch; margin-inline: auto; }
.cta-band em { color: var(--glacier); }
.cta-band p { color: rgba(255,255,255,.85); font-size: var(--fs-md); max-width: 55ch; margin: 0 auto var(--s-6); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--glacier); }
.footer-brand { max-width: 340px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); line-height: var(--leading-relaxed); }
.footer-brand .brand { color: #fff; margin-bottom: var(--s-4); }
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.95; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--s-5);
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-xs);
  flex-wrap: wrap; gap: var(--s-3);
}
.footer-bottom .em { color: var(--glacier); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 100;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Page banner (for interior pages) ---------- */
.page-banner {
  background:
    linear-gradient(180deg, rgba(14,29,46,0.7), rgba(14,29,46,0.55));
  color: #fff;
  padding: var(--s-9) 0 var(--s-8);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.page-banner__bg {
  position: absolute; inset: 0; z-index: -1;
}
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner h1 { color: #fff; font-size: var(--fs-3xl); margin-bottom: var(--s-3); max-width: 24ch; }
.page-banner h1 em { color: var(--glacier); font-style: italic; }
.page-banner p { color: rgba(255,255,255,0.85); font-size: var(--fs-md); max-width: 60ch; }
.crumbs { color: var(--glacier); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--s-4); }
.crumbs a { color: var(--glacier); }
.crumbs span { opacity: 0.6; margin: 0 8px; }

/* ---------- Reveal-on-scroll (optional) ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.divider { height: 1px; background: var(--stone); margin: var(--s-7) 0; border: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Lead modal (popup callback form) ---------- */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
}
.lead-modal.is-open { display: flex; }
body.modal-open { overflow: hidden; }

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 46, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: leadFade var(--t-med) both;
}
.lead-modal__panel {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-ink);
  animation: leadPop 260ms cubic-bezier(.2, .7, .2, 1) both;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.lead-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.lead-modal__close:hover { background: var(--stone); color: var(--ink); }
.lead-modal__close svg { width: 20px; height: 20px; }

.lead-modal__package {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glacier);
  color: var(--ink);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 var(--s-3);
}
.lead-modal__package:empty { display: none; }

@keyframes leadFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes leadPop {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .lead-modal__panel { padding: var(--s-6); }
}

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