/* ═══════════════════════════════════════════════════════════════
   BEEHIVE TIPIS — Production Stylesheet
   The UK's First Managed Outdoor Classroom
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --deep-pine: #1a2e20;
  --deep-pine-light: #243a2c;
  --deep-pine-lighter: #2e4636;
  --heritage-stone: #D8D2C8;
  --heritage-stone-dim: rgba(216, 210, 200, 0.6);
  --heritage-stone-faint: rgba(216, 210, 200, 0.12);
  --heritage-stone-ghost: rgba(216, 210, 200, 0.04);
  --honey-gold: #B9963A;
  --honey-gold-dim: rgba(185, 150, 58, 0.15);
  --honey-gold-bright: #d4ad4a;
  --soft-sage: #8F9F93;
  --muted-clay: #BA8C73;
  --slate-blue: #6B7C85;
  --heather-plum: #7A5C6E;
  --spring-fresh: #7DB87A;
  --summer-warm: #D4AD4A;
  --autumn-amber: #C4723A;
  --winter-cool: #7A9BB5;
  --nav-height: 72px;
  --max-width: 1100px;
  --section-pad: 100px 48px;
  --section-pad-mobile: 80px 24px;
  --border-subtle: 1px solid rgba(216, 210, 200, 0.06);
  --border-hover: 1px solid rgba(216, 210, 200, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.12);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--deep-pine);
  color: var(--heritage-stone);
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--honey-gold); color: var(--deep-pine); }
:focus-visible { outline: 2px solid var(--honey-gold); outline-offset: 3px; border-radius: 2px; }

/* ─── GRAIN TEXTURE OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--honey-gold), var(--honey-gold-bright));
  z-index: 10001;
  transition: width 0.08s linear;
  will-change: width;
}

/* ─── SKIP TO CONTENT ─── */
.skip-to-content {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10002;
  background: var(--honey-gold);
  color: var(--deep-pine);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 0;
}

/* ─── COOKIE CONSENT ─── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 46, 32, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(216, 210, 200, 0.08);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent.visible {
  transform: translateY(0);
}
.cookie-consent p {
  font-size: 13px;
  color: var(--heritage-stone-dim);
  line-height: 1.6;
  flex: 1;
}
.cookie-consent a {
  color: var(--honey-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(216, 210, 200, 0.15);
  color: var(--heritage-stone-dim);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 400;
  transition: all var(--transition-fast);
}
.cookie-decline:hover { border-color: var(--heritage-stone-dim); color: var(--heritage-stone); }
.cookie-accept {
  background: var(--honey-gold);
  border: none;
  color: var(--deep-pine);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.cookie-accept:hover { background: var(--honey-gold-bright); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 46, 32, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(216, 210, 200, 0.06);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(26, 46, 32, 0.96);
  border-bottom-color: rgba(216, 210, 200, 0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-block img { height: 42px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--heritage-stone);
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  color: var(--soft-sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a,
.dropdown-toggle {
  text-decoration: none;
  color: var(--heritage-stone-dim);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links a:hover,
.dropdown-toggle:hover { color: var(--heritage-stone); background: rgba(216, 210, 200, 0.06); }
.nav-links a.active { color: var(--heritage-stone); background: rgba(216, 210, 200, 0.1); }
.dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition-fast);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: rgba(26, 46, 32, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 210, 200, 0.08);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--heritage-stone-dim);
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(216, 210, 200, 0.06);
  color: var(--heritage-stone);
}

/* Nav CTA */
.nav-cta {
  background: var(--honey-gold) !important;
  color: var(--deep-pine) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--honey-gold-bright) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(185, 150, 58, 0.25);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--heritage-stone);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.mobile-toggle span:nth-child(1) { margin-bottom: 5px; }
.mobile-toggle span:nth-child(3) { margin-top: 5px; }
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 48px 0;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--heritage-stone-dim);
  opacity: 0.6;
}
.breadcrumbs a {
  color: var(--heritage-stone-dim);
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover { color: var(--honey-gold); }
.breadcrumbs .bc-sep { font-size: 10px; opacity: 0.4; }
.breadcrumbs .bc-current { color: var(--heritage-stone); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--honey-gold);
  color: var(--deep-pine);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  background: var(--honey-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 150, 58, 0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--heritage-stone);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(216, 210, 200, 0.2);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.btn-secondary:hover {
  border-color: var(--heritage-stone);
  background: rgba(216, 210, 200, 0.06);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Global hero edge-fade: blends hero sides into pine green (all pages except homepage) */
.hero-schools::after,
.hero-nurseries::after,
.hero-send::after,
.hero-tipis::after,
.story-hero::after,
.funding-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--deep-pine) 0%, transparent 15%, transparent 85%, var(--deep-pine) 100%);
  pointer-events: none;
}
.hero-schools > *,
.hero-nurseries > *,
.hero-send > *,
.hero-tipis > *,
.story-hero > *,
.funding-hero > * {
  position: relative;
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 40px;
  animation: fadeDown 0.8s ease both;
}
.hero-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey-gold);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(185, 150, 58, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  display: inline-block;
  animation: fadeDown 0.6s ease both;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--heritage-stone);
  max-width: 780px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-headline em {
  font-style: italic;
  color: var(--honey-gold);
}
.hero-sub-lead {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  color: var(--heritage-stone);
  line-height: 1.45;
  max-width: 640px;
  margin: 4px 0 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-sub {
  font-size: 17px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.7s 0.45s ease both;
}
.enquiries-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--heritage-stone-dim);
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 80px;
  animation: fadeUp 0.7s 0.6s ease both;
}
.enquiries-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--honey-gold);
  animation: pulseDot 2s ease-in-out infinite;
}
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--heritage-stone);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--honey-gold);
  animation: linePulse 2s ease-in-out infinite;
}

/* ─── FIREFLIES ─── */
.fireflies-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.firefly {
  position: absolute;
  border-radius: 50%;
  background: var(--honey-gold);
  opacity: 0;
  pointer-events: none;
}
.firefly::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.3), transparent 70%);
}
.ff-1 { width: 3px; height: 3px; top: 25%; left: 15%; animation: fireflyDrift1 9s ease-in-out infinite 0s; }
.ff-2 { width: 2px; height: 2px; top: 45%; left: 75%; animation: fireflyDrift2 12s ease-in-out infinite 2s; }
.ff-3 { width: 3px; height: 3px; top: 65%; left: 35%; animation: fireflyDrift3 10s ease-in-out infinite 4s; }
.ff-4 { width: 2px; height: 2px; top: 30%; left: 60%; animation: fireflyDrift1 11s ease-in-out infinite 1s; }
.ff-5 { width: 3px; height: 3px; top: 55%; left: 85%; animation: fireflyDrift2 8s ease-in-out infinite 3s; }
.ff-6 { width: 2px; height: 2px; top: 70%; left: 20%; animation: fireflyDrift3 13s ease-in-out infinite 5s; }
.ff-7 { width: 2px; height: 2px; top: 15%; left: 50%; animation: fireflyDrift1 10s ease-in-out infinite 7s; }
.ff-8 { width: 3px; height: 3px; top: 80%; left: 55%; animation: fireflyDrift2 9s ease-in-out infinite 6s; }

/* ─── GRADIENT DIVIDERS ─── */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 150, 58, 0.15) 20%, rgba(185, 150, 58, 0.25) 50%, rgba(185, 150, 58, 0.15) 80%, transparent);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  padding: 40px 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--heritage-stone-dim);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item .trust-accent {
  color: var(--honey-gold);
  font-size: 14px;
}

/* ─── CONTENT COMMON ─── */
.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--honey-gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--heritage-stone);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--honey-gold);
}
.section-body {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  max-width: 640px;
}

/* ─── AUDIENCES ─── */
.audiences {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.audiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.audiences-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  border-color: rgba(216, 210, 200, 0.12);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.audience-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.audience-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
  color: var(--honey-gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}
.audience-card h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 16px;
  line-height: 1.2;
}
.audience-card p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
}
.audience-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-list li {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.audience-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--honey-gold);
  font-size: 8px;
  top: 4px;
}

/* ─── ONE SPACE ENDLESS POSSIBILITIES ─── */
.possibilities-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 80px;
}
.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.possibility-item {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.5;
  transition: all var(--transition-base);
}
.possibility-item:hover {
  border-color: rgba(185, 150, 58, 0.2);
  color: var(--heritage-stone);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.possibilities-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--heritage-stone-dim);
  opacity: 0.7;
}

/* ─── BENEFITS GRID ─── */
.benefits-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
/* Homepage benefits: grid is on the .benefits-grid div inside .benefits-section */
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefits-section .benefits-grid .benefit-card { grid-column: span 2; }
.benefits-section .benefits-grid .benefit-card:nth-last-child(2),
.benefits-section .benefits-grid .benefit-card:last-child { grid-column: span 3; }

/* Secondary pages: .benefits-grid is the section wrapper */
section.benefits-grid {
  display: block;
}
.benefit-card {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--transition-base);
}
.benefit-card:hover {
  border-color: rgba(216, 210, 200, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.benefit-icon {
  font-size: 13px;
  color: var(--honey-gold);
  margin-bottom: 20px;
  display: block;
}
.benefit-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--heritage-stone);
  line-height: 1.25;
}
.benefit-card p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}
.benefit-card .mobile-desc { display: none; }
.benefit-card .full-desc { display: block; }

/* ─── STATS STRIP ─── */
.stats-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}
.stat-item {
  padding: 40px;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(216, 210, 200, 0.08);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--honey-gold);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat-desc {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto 10px;
}
.stat-source {
  font-size: 10px;
  color: var(--heritage-stone-dim);
  opacity: 0.4;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ─── WHY HIRE / THE BEEHIVE DIFFERENCE — hero-level ─── */
.hire-section {
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}
.hire-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--section-pad) + 40px) var(--section-pad);
}
.hire-section .section-title {
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hire-section .section-body {
  font-size: 20px;
  line-height: 1.7;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--heritage-stone-dim);
}
.hire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 72px;
}
.hire-points {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.hire-point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.hire-point-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--honey-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(185, 150, 58, 0.12);
}
.hire-point-marker span {
  color: var(--deep-pine);
  font-size: 18px;
  font-weight: 700;
}
.hire-point h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--heritage-stone);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.hire-point p {
  font-size: 17px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}
.hire-cta-block {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.hire-cta-block h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hire-cta-block p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PRICING ANCHOR ─── */
.pricing-anchor {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 48px 80px;
}
.pricing-anchor-inner {
  background: linear-gradient(135deg, var(--deep-pine-light) 0%, rgba(36,58,44,0.7) 100%);
  border: 1px solid rgba(185, 150, 58, 0.2);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
}
.pricing-from {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--honey-gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

/* ─── FOUNDER ─── */
.founder-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px 0;
}
.founder-inner {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.founder-quote { flex: 1; }
.founder-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--heritage-stone);
  line-height: 1.6;
  margin-bottom: 20px;
}
.founder-quote cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--honey-gold);
  font-weight: 500;
}
.founder-quote cite span {
  color: var(--heritage-stone-dim);
  font-weight: 300;
}

/* ─── CTA SECTION ─── */
.cta-section {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-pad);
  text-align: center;
}
.cta-section .section-title { font-size: 44px; margin-bottom: 20px; }
.cta-section .section-body { margin: 0 auto 40px; max-width: 520px; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── NOT SURE YET ─── */
.notsure-block {
  max-width: 700px;
  margin: -40px auto 0;
  padding: 0 48px 100px;
  text-align: center;
}
.notsure-inner {
  border: 1px solid rgba(216, 210, 200, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 40px;
}
.notsure-inner p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.75;
}
.notsure-inner p strong {
  color: var(--heritage-stone);
  font-weight: 400;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 140px 48px 60px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .section-title {
  font-size: 52px;
  max-width: 700px;
  margin: 0 auto 20px;
}
.page-hero .section-body {
  max-width: 540px;
  margin: 0 auto;
}

/* ─── STEPS ─── */
.steps-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 48px 40px;
  position: relative;
}
.steps-line {
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 60px;
  width: 1px;
  background: rgba(216, 210, 200, 0.08);
  transform: translateX(-50%);
}
.step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}
.step:last-child { margin-bottom: 0; }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-pine-light);
  border: 1px solid rgba(185, 150, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--honey-gold);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.step-content { padding: 8px 0; }
.step-content h3 {
  font-size: 26px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}
.step:nth-child(odd) .step-content:first-child { text-align: right; padding-right: 32px; }
.step:nth-child(odd) .step-content:last-child { padding-left: 32px; }
.step:nth-child(even) .step-content:first-child { text-align: right; padding-right: 32px; }
.step:nth-child(even) .step-content:last-child { padding-left: 32px; }

/* ─── VISION OUTCOME ─── */
.vision-outcome {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 48px 80px;
  text-align: center;
}
.vision-inner {
  background: var(--deep-pine-light);
  border: 1px solid rgba(185, 150, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.vision-inner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vision-inner .section-label { margin-bottom: 16px; }
.vision-inner h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--heritage-stone);
  line-height: 1.35;
  margin-bottom: 20px;
}
.vision-inner p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ─── TIPI CARDS ─── */
.tipis-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 48px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tipi-card {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.tipi-card:hover {
  border-color: rgba(216, 210, 200, 0.12);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.tipi-card.featured { border-color: rgba(185, 150, 58, 0.25); }
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--honey-gold);
  color: var(--deep-pine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.tipi-visual {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.tipi-visual svg { width: 100px; height: 100px; opacity: 0.3; }
.tipi-card h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--heritage-stone);
}
.tipi-card .tipi-subtitle {
  font-size: 13px;
  color: var(--honey-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.tipi-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.tipi-spec {
  background: rgba(216, 210, 200, 0.04);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
}
.tipi-spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--heritage-stone);
  font-weight: 500;
}
.tipi-spec-label {
  font-size: 10px;
  color: var(--heritage-stone-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.tipi-card .tipi-use {
  color: var(--heritage-stone-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}

/* ─── SEASONAL BANNER ─── */
.seasonal-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 48px 100px;
}
.seasonal-header {
  text-align: center;
  margin-bottom: 40px;
}
.seasonal-header h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 14px;
}
.seasonal-header p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seasonal-card {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.seasonal-card:hover { border-color: rgba(216, 210, 200, 0.1); transform: translateY(-2px); }
.seasonal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}
.seasonal-card.spring::before { background: var(--spring-fresh); }
.seasonal-card.summer::before { background: var(--summer-warm); }
.seasonal-card.autumn::before { background: var(--autumn-amber); }
.seasonal-card.winter::before { background: var(--winter-cool); }
.seasonal-card.spring h3 { color: var(--spring-fresh); }
.seasonal-card.summer h3 { color: var(--summer-warm); }
.seasonal-card.autumn h3 { color: var(--autumn-amber); }
.seasonal-card.winter h3 { color: var(--winter-cool); }
.seasonal-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.seasonal-card p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.75;
}

/* ─── WELLBEING ─── */
.wellbeing-section { border-top: var(--border-subtle); }
.wellbeing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.wellbeing-context {
  max-width: 700px;
  margin-bottom: 48px;
}
.wellbeing-context p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 16px;
}
/* Homepage wellbeing: grid is inside .wellbeing-inner */
.wellbeing-inner .wellbeing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* Secondary pages: .wellbeing-grid is the section wrapper */
section.wellbeing-grid {
  display: block;
}
.wellbeing-card {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all var(--transition-base);
}
.wellbeing-card:hover {
  border-color: rgba(216, 210, 200, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.wellbeing-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 10px;
}
.wellbeing-card p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}
.wellbeing-card.featured-card {
  border-color: rgba(185, 150, 58, 0.2);
  grid-column: 1 / -1;
}

/* ─── CONTACT ─── */
.contact-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-left h2 {
  font-size: 44px;
  font-weight: 400;
  color: var(--heritage-stone);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-left .section-body { margin-bottom: 40px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--heritage-stone-dim);
}
.contact-detail-item .cd-icon {
  color: var(--honey-gold);
  font-size: 12px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-item a {
  color: var(--heritage-stone-dim);
  transition: color var(--transition-fast);
}
.contact-detail-item a:hover { color: var(--honey-gold); }
.contact-form {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heritage-stone-dim);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(216, 210, 200, 0.04);
  border: 1px solid rgba(216, 210, 200, 0.1);
  border-radius: var(--radius-sm);
  color: var(--heritage-stone);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--honey-gold);
  box-shadow: 0 0 0 3px rgba(185, 150, 58, 0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: var(--deep-pine); color: var(--heritage-stone); }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--honey-gold);
  color: var(--deep-pine);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.form-submit:hover::after { transform: translateX(100%); }
.form-submit:hover {
  background: var(--honey-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 150, 58, 0.25);
}
.form-note {
  font-size: 12px;
  color: var(--heritage-stone-dim);
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
  opacity: 0.6;
}
.form-success {
  text-align: center;
  padding: 60px 32px;
  display: none;
}
.form-success.show { display: block; }
.form-success h3 {
  font-size: 32px;
  color: var(--heritage-stone);
  margin-bottom: 14px;
}
.form-success p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}
.enquiry-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.enquiry-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(216, 210, 200, 0.04);
  border: 1px solid rgba(216, 210, 200, 0.1);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.enquiry-option:has(input:checked) {
  border-color: var(--honey-gold);
  background: rgba(185, 150, 58, 0.06);
}
.enquiry-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--honey-gold);
  flex-shrink: 0;
}
.enquiry-option-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.enquiry-option-inner strong {
  font-size: 14px;
  color: var(--heritage-stone);
  font-weight: 500;
}
.enquiry-option-inner small {
  font-size: 12px;
  color: var(--heritage-stone-dim);
  opacity: 0.7;
  line-height: 1.4;
}

/* ─── FAQ ─── */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.faq-section > h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 48px;
}
.faq-item { border-bottom: 1px solid rgba(216, 210, 200, 0.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-q span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--heritage-stone);
  transition: color var(--transition-fast);
}
.faq-item:hover .faq-q span:first-child { color: var(--honey-gold); }
.faq-q .faq-icon {
  color: var(--honey-gold);
  font-size: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}

/* ─── BLOG ─── */
.blog-index {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 100px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.blog-card:hover {
  border-color: rgba(216, 210, 200, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--deep-pine-lighter), var(--deep-pine-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-image .coming-soon {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heritage-stone-dim);
  opacity: 0.4;
}
.blog-card-body { padding: 32px; }
.blog-card-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.blog-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}
.blog-card .read-more {
  font-size: 13px;
  color: var(--honey-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}
.blog-card:hover .read-more { gap: 10px; }

/* ─── LEGAL PAGES ─── */
.legal-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 48px 120px;
}
.legal-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--heritage-stone);
  margin-bottom: 8px;
}
.legal-section .legal-date {
  font-size: 13px;
  color: var(--heritage-stone-dim);
  opacity: 0.6;
  margin-bottom: 48px;
  display: block;
}
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--heritage-stone);
  margin: 40px 0 12px;
}
.legal-section p, .legal-section li {
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-section ul li { list-style: disc; }
.legal-section a {
  color: var(--honey-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--heritage-stone-dim);
  margin-bottom: 32px;
  opacity: 0.6;
  transition: opacity var(--transition-fast), gap var(--transition-fast);
}
.legal-back:hover { opacity: 1; gap: 12px; }

/* ─── 404 PAGE ─── */
.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
}
.page-404 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: var(--honey-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.page-404 h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 16px;
}
.page-404 p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  border-top: var(--border-subtle);
  padding: 80px 48px 60px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: var(--border-subtle);
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--heritage-stone-dim);
  border: 1px solid rgba(216, 210, 200, 0.15);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  color: var(--honey-gold);
  border-color: var(--honey-gold);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--heritage-stone);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--honey-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 12px;
  color: var(--heritage-stone-dim);
  opacity: 0.5;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--heritage-stone-dim);
  opacity: 0.5;
  transition: all var(--transition-fast);
}
.footer-legal a:hover { color: var(--honey-gold); opacity: 1; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes linePulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 0.7; height: 56px; }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fireflyDrift1 {
  0% { opacity: 0; transform: translate(0, 0) scale(1); }
  15% { opacity: 0.9; }
  50% { opacity: 0.3; transform: translate(80px, -120px) scale(1.2); }
  85% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(140px, -200px) scale(0.8); }
}
@keyframes fireflyDrift2 {
  0% { opacity: 0; transform: translate(0, 0) scale(0.8); }
  20% { opacity: 0.7; }
  50% { opacity: 0.4; transform: translate(-100px, -80px) scale(1.1); }
  80% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(-60px, -180px) scale(0.9); }
}
@keyframes fireflyDrift3 {
  0% { opacity: 0; transform: translate(0, 0) scale(1); }
  25% { opacity: 0.6; }
  50% { opacity: 0.2; transform: translate(50px, -150px) scale(1.3); }
  75% { opacity: 0.8; }
  100% { opacity: 0; transform: translate(-30px, -220px) scale(0.7); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.61s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.68s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.75s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  :root {
    --section-pad: 80px 24px;
  }
  nav { padding: 0 24px; }

  /* ── MOBILE NAV: dropdown below nav bar ── */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(26, 46, 32, 0.98);
    padding: 16px 24px 24px;
    gap: 2px;
    z-index: 9999;
    border-bottom: 1px solid rgba(216, 210, 200, 0.08);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a,
  .dropdown-toggle {
    font-size: 15px;
    padding: 12px 16px;
    width: 100%;
    justify-content: flex-start;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 20px;
    display: none;
  }
  .dropdown-menu a { padding: 10px 16px; font-size: 14px; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
  .mobile-toggle { display: block; }

  .hero { padding: 120px 24px 80px; }
  .hero-headline { font-size: 44px; }
  .hero-sub-lead { font-size: 18px; max-width: 100%; margin: 2px 0 14px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }

  .trust-strip { gap: 24px; padding: 32px 24px; }
  .section-title { font-size: 36px; }
  .audiences-grid, .audiences-grid-3, .seasonal-grid { grid-template-columns: 1fr; }
  .wellbeing-inner .wellbeing-grid { grid-template-columns: 1fr; }

  /* ── BENEFITS: compact cards with mobile descriptions ── */
  .benefits-section .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits-section .benefits-grid .benefit-card,
  .benefits-section .benefits-grid .benefit-card:nth-last-child(2),
  .benefits-section .benefits-grid .benefit-card:last-child { grid-column: span 1; }
  .benefit-card { padding: 24px; }
  .benefit-card .mobile-desc { display: block; }
  .benefit-card .full-desc { display: none; }

  .hire-inner { padding: calc(var(--section-pad) + 16px) 24px; }
  .hire-section .section-title { font-size: 40px; }
  .hire-section .section-body { font-size: 16px; }
  .hire-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 48px; }
  .hire-points { gap: 32px; }
  .hire-point { gap: 16px; }
  .hire-point-marker { width: 40px; height: 40px; }
  .hire-point-marker span { font-size: 15px; }
  .hire-point h3 { font-size: 24px; }
  .hire-point p { font-size: 15px; }
  .founder-section { padding: 80px 24px 0; }
  .founder-inner { flex-direction: column; padding: 40px 32px; }
  .cta-section .section-title { font-size: 36px; }
  .notsure-block { padding: 0 24px 80px; }

  .page-hero { padding: 120px 24px 40px; }
  .page-hero .section-title { font-size: 36px; }
  .breadcrumbs { padding: 88px 24px 0; }

  .steps-section { padding: 20px 24px 40px; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-content:empty { display: none !important; }
  .step-number { grid-column: 1; grid-row: 1; }
  .step-content:not(:empty) { grid-column: 2; grid-row: 1; padding-left: 0 !important; text-align: left !important; }
  .steps-line { left: 48px; }

  .vision-outcome { padding: 20px 24px 80px; }
  .vision-inner { padding: 40px 32px; }
  .tipis-grid { grid-template-columns: 1fr; padding: 20px 24px 60px; }
  /* Grand tipis 2-col override: go to 1-col on mobile */
  .tipis-grid-2col { grid-template-columns: 1fr !important; max-width: none !important; }
  .seasonal-section { padding: 40px 24px 80px; }
  .wellbeing-inner { padding: 80px 24px; }
  .wellbeing-card.featured-card { grid-column: 1; }

  .contact-section { grid-template-columns: 1fr; padding: 40px 24px 80px; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-type-selector { grid-template-columns: 1fr; }

  .faq-section { padding: 0 24px 80px; }
  .stats-strip { grid-template-columns: 1fr; padding: 40px 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { padding: 32px 24px; border-bottom: var(--border-subtle); }
  .pricing-anchor { padding: 0 24px 60px; }
  .pricing-anchor-inner { padding: 40px 32px; }

  /* ── POSSIBILITIES: compact 2-column grid on mobile ── */
  .possibilities-section { padding: 0 24px 60px; }
  .possibilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .possibility-item {
    padding: 14px 16px;
    font-size: 13px;
  }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-index { padding: 0 24px 80px; }

  .legal-section { padding: 20px 24px 80px; }
  .legal-section h1 { font-size: 36px; }

  /* ── SECONDARY PAGE HEROES ── */
  .hero[class*="hero-"] { padding: 140px 24px 60px; }
  .hero-inner h1,
  .hero-content h1,
  .page-hero-inner h1,
  .page-hero h1 { font-size: 40px; }
  .page-hero { padding: 140px 24px 60px; }

  /* ── SECONDARY PAGE SECTION PADDING ── */
  main > .content-section,
  main > .benefits-grid,
  main > .possibilities-section,
  main > .wellbeing-section,
  main > .wellbeing-context,
  main > .wellbeing-grid,
  main > .ehcp-section,
  main > .stats-strip,
  main > .cta-section,
  main > .notsure-section,
  main > .seasonal-section,
  main > .steps-section,
  main > .vision-section,
  main > .contact-section { padding-left: 24px; padding-right: 24px; }
  main > .notsure-section { max-width: 100%; }

  /* ── SECONDARY PAGE GRIDS ── */
  .benefits-container { grid-template-columns: 1fr; }
  .possibilities-list { grid-template-columns: 1fr; }
  .wellbeing-container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-right .contact-form { padding: 32px 24px; }
  .form-radio-group { grid-template-columns: 1fr; }
  .vision-content { padding: 40px 32px; }
  .cta-inner h2 { font-size: 36px; }

  footer { padding: 60px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-consent { flex-direction: column; padding: 20px 24px; text-align: center; }
  .cookie-consent p { text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-decline, .cookie-accept { flex: 1; }

  .page-404 h1 { font-size: 80px; }
  .page-404 h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 30px; }
  .page-hero .section-title { font-size: 30px; }
  .hero-inner h1,
  .hero-content h1,
  .page-hero-inner h1,
  .page-hero h1 { font-size: 32px; }
  .possibilities-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .possibility-item { padding: 12px 14px; font-size: 12px; }
  .footer-links { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; align-items: center; gap: 16px; }
}

/* ─── PRINT ─── */
@media print {
  body { background: #fff; color: #1a1a1a; }
  body::after { display: none; }
  nav, .scroll-progress, .cookie-consent, .fireflies-container, .scroll-indicator, .btn-primary, .btn-secondary, footer { display: none !important; }
  .hero { min-height: auto; padding: 40px 20px; }
  .hero-logo { width: 120px; }
  .section-title { color: #1a1a1a; }
  .section-body, .heritage-stone-dim, p { color: #333; }
  .benefit-card, .audience-card, .tipi-card, .wellbeing-card, .seasonal-card { border: 1px solid #ccc; break-inside: avoid; }
  a { color: #1a1a1a; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECONDARY PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO (all secondary pages) ─── */
.hero[class*="hero-"] {
  min-height: auto;
  padding: 180px 48px 100px;
  text-align: center;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero[class*="hero-"]::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.07) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner,
.hero-content,
.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-inner h1,
.hero-content h1,
.page-hero-inner h1,
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--heritage-stone);
  margin-bottom: 24px;
}
.hero-subtitle,
.page-hero-subtitle {
  font-size: 18px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* page-hero class (used by blog, faq) — also fix overflow and glow */
.page-hero {
  padding: 180px 48px 100px;
  overflow: visible;
}
.page-hero::before {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.07) 0%, transparent 60%);
}
.page-hero .section-title {
  font-size: 60px;
}

/* ─── BREADCRUMBS (all variants) ─── */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 48px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--heritage-stone-dim);
  opacity: 0.6;
}
.breadcrumbs a {
  color: var(--heritage-stone-dim);
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover { color: var(--honey-gold); }
.breadcrumbs > span[aria-hidden] { font-size: 10px; opacity: 0.4; }
.breadcrumbs > span:last-child,
.breadcrumbs > span[aria-current] { color: var(--heritage-stone); }
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs .bc-sep { font-size: 10px; opacity: 0.4; }
.breadcrumbs .bc-current { color: var(--heritage-stone); }

/* ─── ALL SECONDARY PAGE SECTIONS: CENTERING ───
   This is the critical fix — every section on sub-pages
   needs max-width + auto margins + padding */
main > .content-section,
main > .benefits-grid,
main > .possibilities-section,
main > .wellbeing-section,
main > .wellbeing-context,
main > .wellbeing-grid,
main > .ehcp-section,
main > .stats-strip,
main > .cta-section,
main > .notsure-section,
main > .seasonal-section,
main > .steps-section,
main > .vision-section,
main > .contact-section {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* Content sections */
main > .content-section {
  padding-top: 80px;
  padding-bottom: 60px;
}
.content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.content-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}
.content-inner p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 16px;
  text-align: center;
}
.content-inner p strong {
  color: var(--heritage-stone);
  font-weight: 500;
}

/* ─── BENEFITS GRID (secondary page) ─── */
main > .benefits-grid {
  padding-top: 80px;
  padding-bottom: 80px;
}
main > .benefits-grid > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 40px;
  text-align: center;
}
.benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefits-container .benefit-card {
  grid-column: span 1;
}
.benefits-container .benefit-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}

/* ─── POSSIBILITIES (secondary page) ─── */
main > .possibilities-section {
  padding-top: 60px;
  padding-bottom: 80px;
}
main > .possibilities-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 8px;
  text-align: center;
}
.possibilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.possibilities-list .possibility-item {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
}
.possibilities-list .possibility-item:hover {
  border-color: rgba(185, 150, 58, 0.2);
  transform: translateY(-2px);
}
.possibilities-list .possibility-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 10px;
}
.possibilities-list .possibility-item p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.75;
}

/* ─── WELLBEING (SEND page) ─── */
.wellbeing-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
main > .wellbeing-grid > h2,
main > .wellbeing-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 40px;
  text-align: center;
}
main > .wellbeing-context {
  padding-top: 80px;
  padding-bottom: 60px;
}
.context-inner,
.ehcp-inner {
  max-width: 760px;
  margin: 0 auto;
}
.context-inner h2,
.ehcp-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 20px;
  text-align: center;
}
.context-inner p,
.ehcp-inner p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 16px;
  text-align: center;
}
.context-inner p strong,
.ehcp-inner p strong {
  color: var(--heritage-stone);
  font-weight: 500;
}
main > .ehcp-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
main > .wellbeing-grid {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ─── STATS STRIP (secondary page: 2 items) ─── */
.stats-strip:has(.stat-item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── CTA SECTION (inner wrapper variant) ─── */
main > .cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
/* Direct h2/p inside cta-section (no .cta-inner wrapper) */
main > .cta-section > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 20px;
  line-height: 1.15;
}
main > .cta-section > p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-inner p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ─── NOT SURE (secondary page) ─── */
main > .notsure-section {
  max-width: 700px;
  padding-top: 0;
  padding-bottom: 100px;
  text-align: center;
}
.notsure-section .notsure-inner,
.notsure-section .notsure-content {
  border: 1px solid rgba(216, 210, 200, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 40px;
}
.notsure-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 12px;
}
.notsure-section p {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ─── STEPS (how-it-works variant) ─── */
main > .steps-section {
  padding-top: 20px;
  padding-bottom: 60px;
}
.steps-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0;
  position: relative;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(216, 210, 200, 0.08);
}
.steps-timeline .step {
  display: block;
  margin-bottom: 0;
}
/* Grid layout: number on left spanning both rows, title + description stacked right */
.steps-timeline .step-content {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 0;
  align-items: start;
  text-align: left;
  padding: 0;
}
.steps-timeline .step-content .step-number {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--deep-pine-light);
  border: 1px solid rgba(185, 150, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--honey-gold);
  position: relative;
  z-index: 2;
  margin-top: 2px;
}
.steps-timeline .step-content h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 8px;
  line-height: 1.2;
}
.steps-timeline .step-content p {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  color: var(--heritage-stone-dim);
  line-height: 1.8;
}

/* ─── VISION SECTION (how-it-works variant) ─── */
main > .vision-section {
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}
.vision-content {
  background: var(--deep-pine-light);
  border: 1px solid rgba(185, 150, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.vision-content::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185, 150, 58, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vision-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--heritage-stone);
  line-height: 1.35;
  margin-bottom: 20px;
  position: relative;
}
.vision-content p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 16px;
  position: relative;
}

/* ─── CONTACT PAGE (variant layout) ─── */
main > .contact-section {
  padding-top: 40px;
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--heritage-stone);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-left > p {
  font-size: 16px;
  color: var(--heritage-stone-dim);
  line-height: 1.85;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--honey-gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  font-size: 14px;
  color: var(--heritage-stone-dim);
  line-height: 1.6;
  transition: color var(--transition-fast);
}
.contact-item a:hover { color: var(--honey-gold); }
.contact-right .contact-form {
  background: var(--deep-pine-light);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
.contact-form legend {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heritage-stone-dim);
  font-weight: 400;
  margin-bottom: 12px;
}
.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(216, 210, 200, 0.04);
  border: 1px solid rgba(216, 210, 200, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  font-size: 14px;
  color: var(--heritage-stone-dim);
}
.radio-label:has(input:checked) {
  border-color: var(--honey-gold);
  background: rgba(185, 150, 58, 0.06);
  color: var(--heritage-stone);
}
.radio-label input[type="radio"] {
  accent-color: var(--honey-gold);
  flex-shrink: 0;
}
.contact-form .btn,
.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ─── TIPI CARDS (secondary page variant) ─── */
/* Grand tipis: 2-column variant */
.tipis-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tipi-card-featured {
  border-color: rgba(185, 150, 58, 0.25);
}
.tipi-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--honey-gold);
  color: var(--deep-pine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.tipi-subheading {
  font-size: 13px;
  color: var(--honey-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.tipi-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--heritage-stone);
}
.tipi-icon {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}
.spec-item {
  background: rgba(216, 210, 200, 0.04);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}
.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--heritage-stone);
  font-weight: 500;
  display: block;
}
.spec-label {
  font-size: 10px;
  color: var(--heritage-stone-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}
.tipi-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ─── BLOG READ MORE ARROW ─── */
.read-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── SECONDARY PAGE RESPONSIVE (merged into main breakpoints above) ─── */

/* ─── CTA HINT (below Discovery Call buttons) ─── */
.cta-hint {
  font-size: 13px;
  color: var(--heritage-stone-dim);
  text-align: center;
  margin: 14px auto 0;
  max-width: 560px;
  line-height: 1.5;
  opacity: 0.85;
  letter-spacing: 0.2px;
}
.cta-hint em {
  color: var(--honey-gold);
  font-style: normal;
  font-weight: 500;
}

/* ─── HERO VIDEO SECTION ─── */
.hero-video-section {
  background: linear-gradient(180deg, var(--deep-pine) 0%, #142619 100%);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.hero-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(185,150,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(185,150,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-video-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero-video-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-video-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--heritage-stone);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
.hero-video-headline em {
  font-style: italic;
  color: var(--honey-gold);
}
.hero-video-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--heritage-stone-dim);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 10px 30px rgba(0,0,0,0.35),
    0 0 0 1px rgba(185,150,58,0.25);
  aspect-ratio: 16 / 9;
  background: #000;
}
.hero-video-frame .plyr {
  --plyr-color-main: #B9963A;
  --plyr-video-background: #0f1f14;
  --plyr-video-controls-background: linear-gradient(rgba(0,0,0,0), rgba(26,46,32,0.85));
  --plyr-video-control-color: #D8D2C8;
  --plyr-video-control-color-hover: #0f1f14;
  --plyr-audio-controls-background: #1a2e20;
  --plyr-font-family: 'Inter', system-ui, sans-serif;
  --plyr-range-fill-background: #B9963A;
  --plyr-range-track-height: 4px;
  --plyr-range-thumb-background: #d4ad4a;
  --plyr-tooltip-background: rgba(26,46,32,0.95);
  --plyr-tooltip-color: #D8D2C8;
  --plyr-focus-visible-color: #B9963A;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}
.hero-video-frame .plyr__video-wrapper,
.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-frame .plyr__control--overlaid {
  background: rgba(185,150,58,0.92);
  color: #0f1f14;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.hero-video-frame .plyr__control--overlaid:hover,
.hero-video-frame .plyr__control--overlaid:focus {
  background: #d4ad4a;
  color: #0f1f14;
}
@media (max-width: 768px) {
  .hero-video-section {
    padding: 64px 24px;
  }
  .hero-video-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-video-frame {
    box-shadow:
      0 20px 50px rgba(0,0,0,0.5),
      0 0 0 1px rgba(185,150,58,0.2);
  }
}
@media (max-width: 480px) {
  .hero-video-section {
    padding: 48px 16px;
  }
}

/* ─── ACCESSIBILITY ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
  .scroll-progress { transition: none; }
  html { scroll-behavior: auto; }
}
