/* ================================================================
   DEWW — Dewlight Design System
   Dr. Jenny's Drugless Empowerment & Wellness Workshop
   www.deww.in
   ================================================================ */

/* ── Google Fonts import ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,300&family=Hanken+Grotesk:wght@300;400;500;600;700&family=Caveat:wght@400;500;600&family=Noto+Sans+Malayalam:wght@300;400;500&family=Noto+Serif+Malayalam:wght@300;400;500&display=swap');

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  /* Palette — extracted from provided images + color swatches */
  --canvas:       #F7F3EA;   /* warm parchment — hero bg lightened */
  --canvas-deep:  #EFE9DA;   /* slightly deeper for alternating sections */
  --surface:      #FFFDF8;   /* near-white, warm cast */
  --surface-2:    #F2EDD8;   /* card secondary surface */

  --pine:         #1C3A1E;   /* darkest green — treeline from Yosemite */
  --pine-2:       #2A4E2C;   /* slightly lighter pine for headers */
  --moss:         #4A6741;   /* primary interactive green */
  --moss-light:   #5D7D54;   /* hover state */
  --sage:         #728C5A;   /* mid-tone — exact from swatch #2 */
  --sage-tint:    #D6E4C4;   /* very light sage for badge fills */
  --leaf:         #EAF1B1;   /* pale lime — exact from swatch #1 */
  --leaf-tint:    #F3F8D8;   /* lightest green, near white */

  --gold:         #C08C0A;   /* signature accent — road-line gold */
  --gold-light:   #D4A020;   /* hover gold */
  --gold-tint:    #F5E8B8;   /* gold wash for highlights */

  --stone:        #9B8B6E;   /* sandy/stone neutral */
  --stone-light:  #C4B89A;   /* lighter stone for borders */
  --clay:         #B8926A;   /* warm earth — from hero bg */
  --clay-tint:    #EDD9C0;   /* clay wash */

  --ink:          #1A1F14;   /* near-black, slight green cast */
  --ink-2:        #2E3626;   /* slightly lighter for body */
  --ink-soft:     #5C6550;   /* secondary text */
  --ink-muted:    #8A9478;   /* caption/muted text */
  --hairline:     #D8CFBA;   /* subtle borders */
  --hairline-2:   #E8E2D0;   /* even subtler */

  /* Radius — organic, not perfectly round */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Shadows — canopy-light diffused */
  --shadow-xs: 0 1px 3px rgba(28,58,30,.06);
  --shadow-sm: 0 2px 12px rgba(28,58,30,.07), 0 1px 2px rgba(28,58,30,.04);
  --shadow-md: 0 6px 24px rgba(28,58,30,.09), 0 2px 6px rgba(28,58,30,.05);
  --shadow-lg: 0 16px 48px rgba(28,58,30,.12), 0 4px 12px rgba(28,58,30,.06);
  --shadow-gold: 0 4px 16px rgba(192,140,10,.22);

  /* Type */
  --font-display: 'Fraunces', 'Noto Serif Malayalam', Georgia, serif;
  --font-body:    'Hanken Grotesk', 'Noto Sans Malayalam', system-ui, sans-serif;
  --font-accent:  'Caveat', cursive;

  /* Motion — calm, leaf-landing pace */
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-settle: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   .15s;
  --dur-base:   .25s;
  --dur-slow:   .55s;
  --dur-settle: .75s;

  --maxw: 1120px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pine);
}
h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1.04; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(21px, 2.4vw, 28px); font-weight: 500; }
h4 { font-size: 19px; font-weight: 500; }

.display-serif { font-family: var(--font-display); }
.accent-script { font-family: var(--font-accent); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .02em;
  transition:
    background var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,140,10,.3);
}
.btn-pine {
  background: var(--pine);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-pine:hover {
  background: var(--pine-2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--pine);
  border-color: var(--hairline);
}
.btn-outline:hover {
  border-color: var(--moss);
  color: var(--moss);
  background: var(--leaf-tint);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,234,.94);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--hairline-2);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex: none;
}
.brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transition: right var(--dur-base) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--pine); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: none;
  transition: background var(--dur-fast);
}
.menu-btn:hover { background: var(--sage-tint); }
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-settle), opacity var(--dur-fast);
}

/* Sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28,58,30,0);
  transition: background var(--dur-slow) var(--ease-out);
}
.sidebar-overlay.open { background: rgba(28,58,30,.4); }

.sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 201;
  width: 280px;
  max-width: 86vw;
  background: var(--surface);
  box-shadow: -16px 0 60px rgba(28,58,30,.14);
  transform: translateX(110%);
  transition: transform var(--dur-slow) var(--ease-settle);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sidebar.open { transform: translateX(0); }

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--hairline-2);
}
.sidebar-close {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  border: none;
  background: var(--canvas);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.sidebar-close:hover { background: var(--sage-tint); color: var(--pine); transform: rotate(90deg); }

.sidebar-links { flex: 1; padding: 6px 0; }
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline-2);
  transition: background var(--dur-fast), color var(--dur-fast), padding-left var(--dur-base) var(--ease-out);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover,
.sidebar-links a.active {
  background: var(--leaf-tint);
  color: var(--pine);
  padding-left: 28px;
}
.sidebar-arr { font-size: 13px; opacity: .35; transition: opacity var(--dur-fast), transform var(--dur-base); }
.sidebar-links a:hover .sidebar-arr { opacity: .7; transform: translateX(3px); }
.sidebar-foot {
  padding: 20px 22px;
  border-top: 1px solid var(--hairline-2);
}
.sidebar-foot p { font-size: 12.5px; color: var(--ink-muted); line-height: 1.6; }
.sidebar-foot a { font-size: 13.5px; color: var(--moss); font-weight: 600; margin-top: 8px; display: block; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--canvas-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(.85) brightness(.72);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28,58,30,.85) 0%,
    rgba(28,58,30,.6) 45%,
    rgba(28,58,30,.15) 80%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  max-width: 640px;
}
.hero-kicker {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: block;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 300;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 48ch;
  line-height: 1.68;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 52px;
  display: flex;
  gap: 32px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Trail divider — the signature element ───────────────────── */
/* Full-bleed road image section acting as section break */
.trail-break {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.trail-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.75) brightness(.65);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.trail-break.in-view img { transform: scale(1); }
.trail-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247,243,234,.95) 0%,
    transparent 28%,
    transparent 72%,
    rgba(247,243,234,.95) 100%
  );
  z-index: 1;
}
.trail-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.trail-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  max-width: 22ch;
  line-height: 1.25;
}
.trail-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 18px;
}

/* ── Sections ────────────────────────────────────────────────── */
section { padding: 92px 0; }
.section-alt { background: var(--canvas-deep); }
.section-pine { background: var(--pine); }
.section-pine * { color: rgba(255,255,255,.9); }

.section-head {
  max-width: 560px;
  margin-bottom: 52px;
}
.section-head h2 { margin: 14px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 17.5px; }

/* ── About / Intro block ─────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text h2 { margin: 14px 0 20px; }
.intro-text p { color: var(--ink-soft); margin-bottom: 18px; line-height: 1.78; }
.intro-visual {
  position: relative;
}
.intro-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.88);
  transition: transform var(--dur-slow) var(--ease-out);
}
.intro-img-wrap:hover img { transform: scale(1.03); }
.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}
.intro-badge .big { font-size: 36px; font-weight: 300; line-height: 1; }
.intro-badge .small { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .9; margin-top: 3px; }

/* ── What is DEWW (pillars) ──────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--moss), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--leaf-tint);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-settle);
}
.pillar:hover .pillar-icon { background: var(--sage-tint); transform: scale(1.1); }
.pillar h3 { font-size: 18px; margin-bottom: 10px; color: var(--pine); }
.pillar p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ── Program timeline ────────────────────────────────────────── */
.timeline { position: relative; }
.timeline-line {
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--leaf), var(--sage), var(--pine));
  opacity: .4;
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--moss);
  transition: background var(--dur-base), border-color var(--dur-base), transform var(--dur-base) var(--ease-settle);
  position: relative;
  z-index: 1;
}
.timeline-item:hover .timeline-dot {
  background: var(--moss);
  border-color: var(--moss);
  color: #fff;
  transform: scale(1.1);
}
.timeline-body { padding-top: 12px; }
.timeline-body h3 { color: var(--pine); margin-bottom: 8px; font-size: 20px; }
.timeline-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

/* ── Benefits / features ─────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.benefit {
  background: var(--surface);
  padding: 36px 30px;
  transition: background var(--dur-base);
}
.benefit:hover { background: var(--leaf-tint); }
.benefit-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  transition: transform var(--dur-base) var(--ease-settle);
}
.benefit:hover .benefit-icon { transform: scale(1.15) rotate(-4deg); }
.benefit h4 { color: var(--pine); margin-bottom: 8px; font-size: 17px; }
.benefit p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────────────── */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.tcard-quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.72;
  flex: 1;
}
.tcard-author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-tint), var(--leaf-tint));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--moss);
  flex: none;
}
.tcard-info strong { display: block; font-size: 14.5px; font-family: var(--font-body); color: var(--pine); }
.tcard-info span { font-size: 12.5px; color: var(--ink-muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}
.faq-trigger h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--pine);
  transition: color var(--dur-fast);
}
.faq-trigger:hover h4 { color: var(--moss); }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--canvas-deep);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--ink-soft);
  font-size: 12px;
  transition: background var(--dur-base), color var(--dur-base), transform var(--dur-base) var(--ease-settle);
}
.faq-item.open .faq-chevron {
  background: var(--moss);
  color: #fff;
  transform: rotate(180deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-settle);
}
.faq-body.open { max-height: 400px; }
.faq-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.78;
  padding-bottom: 22px;
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(145deg, var(--pine-2) 0%, var(--pine) 100%);
  border-radius: var(--r-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%; right: -10%;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: rgba(234,241,177,.06);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -8%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(192,140,10,.08);
  pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 50ch; margin: 0 auto 32px; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.info-row:last-child { border-bottom: none; }
.info-ic {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--leaf-tint);
  color: var(--pine);
  display: grid;
  place-items: center;
  flex: none;
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-settle);
}
.info-row:hover .info-ic { background: var(--sage-tint); transform: scale(1.08); }
.info-row h4 { font-size: 13.5px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; font-family: var(--font-body); }
.info-row p, .info-row a { font-size: 15px; color: var(--ink-2); }
.info-row a:hover { color: var(--moss); }

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hairline-2);
  min-height: 400px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ── Page banner (inner pages) ───────────────────────────────── */
.page-banner {
  background: linear-gradient(155deg, var(--pine) 0%, var(--pine-2) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,140,10,.12), transparent 60%);
}
.page-banner::after {
  content: "";
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(234,241,177,.06);
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner .crumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px; display: flex; gap: 6px; align-items: center; }
.page-banner .crumb a:hover { color: rgba(255,255,255,.9); }
.page-banner h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); }
.page-banner .lead { font-size: 18px; color: rgba(255,255,255,.8); max-width: 56ch; margin-top: 16px; line-height: 1.68; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--pine);
  color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-brand img { height: 40px; filter: brightness(0) invert(1); }
.foot-brand p { font-size: 13.5px; color: rgba(255,255,255,.55); margin-top: 14px; max-width: 30ch; line-height: 1.68; }
.foot-col h5 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  padding: 5px 0;
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.foot-col a:hover { color: var(--leaf); transform: translateX(3px); }
.foot-col p { font-size: 13.5px; color: rgba(255,255,255,.55); padding: 5px 0; line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: background var(--dur-base), color var(--dur-base), transform var(--dur-base) var(--ease-settle);
}
.socials a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.foot-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--dur-settle) var(--ease-out),
    transform var(--dur-settle) var(--ease-out);
}
.js-loaded .reveal.in { opacity: 1; transform: none; }

/* Stagger children */
.js-loaded .pillars .pillar:nth-child(2)  { transition-delay: .09s; }
.js-loaded .pillars .pillar:nth-child(3)  { transition-delay: .18s; }
.js-loaded .pillars .pillar:nth-child(4)  { transition-delay: .27s; }
.js-loaded .benefits-grid .benefit:nth-child(2) { transition-delay: .07s; }
.js-loaded .benefits-grid .benefit:nth-child(3) { transition-delay: .14s; }
.js-loaded .benefits-grid .benefit:nth-child(4) { transition-delay: .21s; }
.js-loaded .benefits-grid .benefit:nth-child(5) { transition-delay: .28s; }
.js-loaded .benefits-grid .benefit:nth-child(6) { transition-delay: .35s; }
.js-loaded .tgrid .tcard:nth-child(2) { transition-delay: .1s; }
.js-loaded .tgrid .tcard:nth-child(3) { transition-delay: .2s; }

/* ── Utilities ───────────────────────────────────────────────── */
.text-pine  { color: var(--pine) !important; }
.text-moss  { color: var(--moss) !important; }
.text-gold  { color: var(--gold) !important; }
.text-muted { color: var(--ink-muted) !important; }
.mt-6  { margin-top: 6px; }
.mt-10 { margin-top: 10px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

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

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .menu-btn { display: inline-flex; }
}

@media (max-width: 900px) {
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-col { display: none; }
  .foot-brand { grid-column: 1 / -1; }
  .intro-badge { bottom: -14px; left: -8px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  .pillars { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .hero-content { padding: 80px 0 60px; }
  .cta-band { padding: 48px 28px; }
  .trail-break { height: 300px; }
  .foot-grid { display: block; }
  .foot-col { display: none; }
  .foot-bottom { flex-direction: column; gap: 6px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .page-banner { padding: 52px 0 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .js-loaded .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Split layout ─────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* ── CTA band button override ─────────────────────────────────── */
.cta-band .btn-primary {
  background: var(--gold);
  color: #fff;
  font-size: 15px;
  padding: 14px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.cta-band .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
