/* ============================================================
   TreeStation v2 — Making Wood Work
   RADICAL REDESIGN — City of Trees inspired
   Transparent header, mega typography, full-bleed, pill buttons,
   generous whitespace, soft shadows, smooth animations.
   ============================================================ */

/* --- Google Fonts loaded in HTML head:
   Albert Sans (300, 400, 500, 600, 700, 800)
   --- */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Colour palette */
  --green: #6BC779;
  --green-dark: #00493F;
  --green-deep: #003830;
  --green-pale: #e8f5e9;
  --green-hover: #5ab868;
  --cream: #f8f0e3;
  --cream-dark: #f0e6d3;
  --white: #ffffff;
  --charcoal: #36454f;
  --charcoal-light: #5a6b76;
  --border: #e8e4dc;

  /* Shadows — multi-layered, soft */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 32px 64px rgba(0,0,0,0.12);

  /* Typography — single family */
  --font: 'Albert Sans', Arial, Helvetica, sans-serif;

  /* Spacing — generous */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 780px;
  --header-height: 88px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 50px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease);
  --transition-med: 0.45s var(--ease-out);
  --transition-slow: 0.8s var(--ease);
}


/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--green);
}

::selection {
  background: var(--green);
  color: var(--white);
}


/* ============================================================
   MEGA TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.08;
  color: var(--green-dark);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: var(--space-sm);
}

strong {
  font-weight: 700;
  color: var(--green-dark);
}

blockquote {
  border: none;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  background: transparent;
  position: relative;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  text-align: center;
}

blockquote::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 0 auto var(--space-md);
}

blockquote p:last-child {
  margin-bottom: 0;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: var(--space-sm);
}

li {
  margin-bottom: 0.5em;
}

li strong {
  color: var(--green-dark);
}


/* ============================================================
   LAYOUT — Full-bleed sections with inner containers
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}


/* ============================================================
   TRANSPARENT HEADER
   Sits over the hero. White text/logo on hero.
   On scroll (.scrolled), becomes solid white with dark text.
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

/* Logo and nav colours flip when scrolled */
.site-header .logo {
  color: var(--white);
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .logo {
  color: var(--green-dark);
}

.site-header .logo-icon circle {
  stroke: rgba(255,255,255,0.3);
  transition: stroke 0.4s var(--ease);
}

.site-header .logo-icon path {
  stroke: var(--white);
  transition: stroke 0.4s var(--ease);
}

.site-header.scrolled .logo-icon circle {
  stroke: rgba(0,73,63,0.15);
}

.site-header.scrolled .logo-icon path {
  stroke: var(--green-dark);
}

.site-header .main-nav > ul > li > a {
  color: rgba(255,255,255,0.9);
  transition: color 0.4s var(--ease), border-color 0.3s var(--ease);
}

.site-header.scrolled .main-nav > ul > li > a {
  color: var(--charcoal);
}

.site-header.scrolled .main-nav > ul > li > a:hover,
.site-header.scrolled .main-nav > ul > li.active > a {
  color: var(--green-dark);
}

.site-header .nav-toggle span {
  background: var(--white);
  transition: background 0.4s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header.scrolled .nav-toggle span {
  background: var(--charcoal);
}


/* ============================================================
   HEADER INNER
   ============================================================ */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}


/* ============================================================
   LOGO
   ============================================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.65;
  margin-top: 3px;
  display: block;
}


/* ============================================================
   MAIN NAVIGATION — Desktop
   ============================================================ */

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}

.main-nav > ul > li {
  position: relative;
  margin: 0;
}

.main-nav > ul > li > a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.main-nav > ul > li > a:hover {
  color: var(--white);
  border-bottom-color: var(--green);
}

.site-header.scrolled .main-nav > ul > li > a:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}

.main-nav > ul > li.active > a {
  border-bottom-color: var(--green);
}


/* ============================================================
   DROPDOWN MENUS — Rounded, soft shadow
   ============================================================ */

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  list-style: none;
  padding: var(--space-xs) 0;
  z-index: 1001;
  border: 1px solid var(--border);
}

.main-nav .dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.main-nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: background var(--transition-fast), color var(--transition-fast);
  border-radius: 0;
}

.dropdown a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}


/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* ============================================================
   HERO — 100vh, full-screen image, gradient text overlay
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
  overflow: hidden;
}

/* Background image sits behind everything */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Bottom gradient fade — text floats over the image */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 56, 48, 0.92) 0%,
    rgba(0, 56, 48, 0.7) 30%,
    rgba(0, 56, 48, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-3xl);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  max-width: 800px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* Decorative rings — subtle, repositioned */
.hero-rings {
  position: absolute;
  right: -8%;
  top: 15%;
  width: 700px;
  height: 700px;
  z-index: 1;
  opacity: 0.04;
}

.hero-rings circle {
  fill: none;
  stroke: var(--white);
  stroke-width: 0.8;
}


/* ============================================================
   HOMEPAGE HERO V2 — full-viewport with bottom gradient
   ============================================================ */

.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
  overflow: hidden;
}

.hero-v2__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-v2__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 56, 48, 0.95) 0%,
    rgba(0, 56, 48, 0.75) 25%,
    rgba(0, 56, 48, 0.4) 50%,
    rgba(0, 56, 48, 0.15) 75%,
    transparent 100%
  );
}

.hero-v2__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-3xl);
  min-height: 100vh;
}

.hero-v2__text {
  max-width: 720px;
}

.hero-v2 h1 {
  color: var(--white);
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.hero-v2 h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-v2 p {
  color: rgba(255,255,255,0.88);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 560px;
}

.hero-v2 .hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-v2 .btn--primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--green-deep);
  font-weight: 700;
}

.hero-v2 .btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: var(--green-deep);
  box-shadow: 0 8px 32px rgba(107, 199, 121, 0.4);
}

.hero-v2 .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.hero-v2 .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}


/* ============================================================
   BUTTONS — Pill-shaped, bold, modern
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    all 0.3s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: scale(1.02);
}

.btn--primary {
  background: var(--green);
  color: var(--green-deep);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: var(--green-deep);
  box-shadow: 0 8px 28px rgba(107, 199, 121, 0.35);
  transform: scale(1.02);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}

.btn--outline:hover {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green-dark);
  transform: scale(1.02);
}

.btn--green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn--green:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 73, 63, 0.3);
  transform: scale(1.02);
}

/* CTA-specific button variants */
.btn--cta-primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.btn--cta-primary:hover {
  background: #002820;
  border-color: #002820;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 56, 48, 0.4);
  transform: scale(1.02);
}

.btn--cta-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: rgba(0, 56, 48, 0.3);
}

.btn--cta-outline:hover {
  background: rgba(0, 56, 48, 0.08);
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: scale(1.02);
}


/* ============================================================
   PAGE HERO — Internal pages
   Tall gradient area with breadcrumbs in small caps
   ============================================================ */

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--cream);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

/* Subtle gradient overlay from green-deep */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 56, 48, 0.06) 0%,
    transparent 100%
  );
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .hero-accent {
  display: none;
}

.page-hero h1 {
  color: var(--green-dark);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
}

.page-hero .breadcrumb {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-light);
  margin-bottom: var(--space-md);
}

.breadcrumb {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-light);
}

.page-hero .breadcrumb a {
  color: var(--charcoal-light);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: var(--green);
}

.page-hero .page-intro {
  color: var(--charcoal-light);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 640px;
  line-height: 1.6;
}

.page-intro {
  font-size: 1.2rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  max-width: 640px;
}


/* ============================================================
   CONTENT SECTIONS — Full-bleed, alternating backgrounds
   ============================================================ */

.content-section {
  padding: var(--space-2xl) 0;
}

.content-section:nth-child(even) {
  background: var(--cream);
}

.content-section--green {
  background: var(--green-dark);
  color: var(--white);
}

.content-section--green h2,
.content-section--green h3 {
  color: var(--white);
}

.content-section--green a {
  color: var(--green);
}

.content-section--green a:hover {
  color: var(--white);
}

.content-section--bark {
  background: var(--cream-dark);
}

/* Homepage section variants */
.section-services {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.section-services h2 {
  color: var(--green-dark);
  margin-top: 0;
}

.section-services .section-intro {
  color: var(--charcoal-light);
  font-size: 1.15rem;
  max-width: 640px;
}

.section-products {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.section-products h2 {
  color: var(--green-dark);
  margin-top: 0;
}

.section-products .section-intro {
  color: var(--charcoal-light);
  font-size: 1.15rem;
  max-width: 640px;
}

.section-testimonials {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.section-why {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.section-why h2 {
  color: var(--green-dark);
  margin-top: 0;
}


/* ============================================================
   CARD GRID — Generous gaps, rounded everything
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: var(--space-lg);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.card-img {
  height: 220px;
  background: var(--green-dark);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: transform 0.7s var(--ease);
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: var(--space-md) var(--space-lg);
}

.card-body h3 {
  margin-top: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.card-body h3 a {
  color: var(--green-dark);
  transition: color var(--transition-fast);
}

.card-body h3 a:hover {
  color: var(--green);
}

.card-body p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* v2 card variant */
.card-v2 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.3s var(--ease);
}

.card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.card-v2 .card-img {
  height: 220px;
  background: var(--green-dark);
  overflow: hidden;
  position: relative;
}

.card-v2 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card-v2:hover .card-img img {
  transform: scale(1.06);
}

.card-v2 .card-body {
  padding: var(--space-md) var(--space-lg);
}

.card-v2 .card-body h3 {
  margin-top: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.card-v2 .card-body h3 a {
  color: var(--green-dark);
  transition: color var(--transition-fast);
}

.card-v2 .card-body h3 a:hover {
  color: var(--green);
}

.card-v2 .card-body p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================================
   WHY CARDS — accent left border, generous padding
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--space-lg);
}

.why-card {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  color: var(--green-dark);
  margin-top: 0;
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.why-card p {
  color: var(--charcoal);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================================
   STAT BAR — Large numbers in green, labels in charcoal
   ============================================================ */

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-bottom: none;
  position: relative;
}

.stat-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green-dark) 100%
  );
}

.stat-bar__item {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease);
  position: relative;
}

.stat-bar__item:last-child {
  border-right: none;
}

.stat-bar__item:hover {
  background: var(--green-pale);
}

.stat-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.stat-bar__item h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.stat-bar__item p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal-light);
  margin: 0;
  line-height: 1.5;
}


/* ============================================================
   FEATURE STRIP (legacy support — reimagined as stat bar)
   ============================================================ */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  position: relative;
}

.feature-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green-dark) 100%
  );
}

.feature-strip-item {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.feature-strip-item:last-child {
  border-right: none;
}

.feature-strip-item:hover {
  background: var(--green-pale);
}

.feature-strip-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-xs);
  display: block;
}

.feature-strip-item h3 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.feature-strip-item p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin: 0;
}


/* ============================================================
   PAGE CONTENT — Article body
   ============================================================ */

.page-content {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.page-content section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.page-content section:last-child {
  border-bottom: none;
}


/* ============================================================
   PAGE NAV — Anchor links
   ============================================================ */

.page-nav {
  background: var(--cream);
  padding: var(--space-lg);
  border-radius: var(--radius);
  margin-bottom: var(--space-xl);
}

.page-nav p {
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
}

.page-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}

.page-nav a {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: all var(--transition-fast);
}

.page-nav a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: scale(1.02);
}


/* ============================================================
   TESTIMONIALS — Large italic, centred, green line above
   ============================================================ */

.testimonial-block {
  background: transparent;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: 0;
  position: relative;
  margin: var(--space-xl) 0;
  text-align: center;
}

.testimonial-block::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 0 auto var(--space-lg);
  border-radius: 2px;
}

.testimonial-block p {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-block cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-light);
  margin-top: var(--space-md);
}

/* v2 testimonial variant */
.testimonial-v2 {
  background: transparent;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: 0;
  border-left: none;
  box-shadow: none;
  position: relative;
  margin: var(--space-lg) 0;
  text-align: center;
}

.testimonial-v2::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 0 auto var(--space-lg);
  border-radius: 2px;
  position: static;
  font-size: inherit;
  opacity: 1;
  top: auto;
  left: auto;
  line-height: inherit;
}

.testimonial-v2 p {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-v2 cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-light);
  margin-top: var(--space-md);
}


/* ============================================================
   ACCREDITATION BAR
   ============================================================ */

.accreditation-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding: var(--space-lg) var(--space-md);
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  margin-top: var(--space-lg);
}

.accreditation-bar span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.accreditation-bar span:hover {
  border-color: var(--green);
  color: var(--green);
}

/* v2 accreditation variant */
.accreditation-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-xl) var(--space-lg);
  background: var(--cream);
  border-top: none;
  border-bottom: none;
}

.accreditation-v2 img {
  height: 56px;
  width: auto;
}

.accreditation-v2 span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.accreditation-v2 span:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-pale);
}


/* ============================================================
   CTA BAND — Bright green background, dark text
   ============================================================ */

.cta-band {
  background: var(--green);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255,255,255,0.12) 0%,
    transparent 70%
  );
}

.cta-band h2 {
  color: var(--green-deep);
  margin-top: 0;
  position: relative;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-band p {
  color: var(--green-deep);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto var(--space-md);
  opacity: 0.8;
  position: relative;
}

.cta-band .contact-info {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
  position: relative;
}

.cta-band .contact-info a {
  color: var(--green-deep);
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.cta-band .contact-info a:hover {
  color: var(--white);
}

.cta-band .btn {
  position: relative;
}

.cta-band .btn--primary,
.cta-band .btn--cta-primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.cta-band .btn--primary:hover,
.cta-band .btn--cta-primary:hover {
  background: #002820;
  border-color: #002820;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 56, 48, 0.35);
}

/* CTA v2 section (homepage) */
.cta-v2 {
  background: var(--green);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255,255,255,0.12) 0%,
    transparent 70%
  );
}

.cta-v2 h2 {
  color: var(--green-deep);
  margin-top: 0;
  position: relative;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-v2 > .container > p {
  color: var(--green-deep);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto var(--space-md);
  opacity: 0.8;
  position: relative;
}

.cta-v2 .contact-info {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
  position: relative;
}

.cta-v2 .contact-info a {
  color: var(--green-deep);
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.cta-v2 .contact-info a:hover {
  color: var(--white);
}

.cta-v2 .btn--cta-primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  font-weight: 700;
  position: relative;
}

.cta-v2 .btn--cta-primary:hover {
  background: #002820;
  border-color: #002820;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 56, 48, 0.35);
  transform: scale(1.02);
}

.cta-v2 .btn--cta-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: rgba(0, 56, 48, 0.3);
  font-weight: 700;
  position: relative;
}

.cta-v2 .btn--cta-outline:hover {
  background: rgba(0, 56, 48, 0.08);
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: scale(1.02);
}


/* ============================================================
   NEWSLETTER BAND
   ============================================================ */

.footer-newsletter {
  background: var(--green-dark);
  padding: var(--space-xl) 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.newsletter-text h3 {
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}

.newsletter-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  max-width: 460px;
  width: 100%;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.12);
}

.newsletter-form button {
  padding: 0.9rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--green);
  color: var(--green-deep);
  border: 2px solid var(--green);
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}


/* ============================================================
   FOOTER — Deep green, 4-column, generous padding
   ============================================================ */

.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .logo-text,
.footer-brand .footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.footer-brand .logo-tagline,
.footer-brand .footer-tagline {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 320px;
  color: rgba(255,255,255,0.6);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
}

.footer-address {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-sm);
}

.footer-address em {
  font-style: normal;
  color: var(--green);
  font-size: 0.82rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.site-footer h4:first-child {
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45em;
}

.site-footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s var(--ease);
}

.site-footer a:hover {
  color: var(--green);
}

/* Social links — icon circles */
.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: var(--space-sm);
}

.social-links li {
  margin: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
  font-size: 0;
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.social-links a:hover {
  background: var(--green);
  color: var(--green-deep);
  transform: scale(1.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom p {
  margin: 0;
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   Fade up 20px, 0.8s, custom cubic-bezier, staggered
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children with increasing delays */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.4s; }


/* ============================================================
   FAQ ACCORDION — Minimal, green plus/minus, generous padding
   ============================================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color 0.3s var(--ease);
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--green);
}

.faq-question::after {
  content: '+';
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--green);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--charcoal-light);
  line-height: 1.7;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   CONTACT FORM — Large inputs, green focus, pill submit
   ============================================================ */

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(107, 199, 121, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0aba3;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

/* Visually hidden utility for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }


/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 5.5rem;
    --space-3xl: 7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip-item:nth-child(2) {
    border-right: none;
  }

  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-bar__item:nth-child(2) {
    border-right: none;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }
}


/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --space-xl: 3.5rem;
    --space-2xl: 4.5rem;
    --space-3xl: 5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Mobile nav toggle visible */
  .nav-toggle {
    display: flex;
  }

  /* FULL-SCREEN OVERLAY MENU — centred links, large touch targets */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--green-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    overflow-y: auto;
    z-index: 1001;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .main-nav > ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .main-nav > ul > li {
    text-align: center;
  }

  .main-nav > ul > li > a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9) !important;
    border-bottom: none;
    letter-spacing: -0.01em;
  }

  .main-nav > ul > li > a:hover {
    color: var(--green) !important;
  }

  /* Dropdown in mobile: stacked below parent, visible when tapped */
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0 0 var(--space-sm);
    min-width: auto;
    display: none;
  }

  .main-nav > ul > li.dropdown-open .dropdown {
    display: block;
  }

  .dropdown a {
    color: rgba(255,255,255,0.6);
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
    text-align: center;
  }

  .dropdown a:hover {
    background: transparent;
    color: var(--green);
  }

  /* Mobile nav toggle styling override */
  .nav-toggle {
    position: relative;
    z-index: 1002;
  }

  .nav-toggle.open span {
    background: var(--white);
  }

  /* Hero adjustments */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .hero-content {
    padding-bottom: var(--space-2xl);
  }

  .hero-rings {
    display: none;
  }

  .hero-v2 {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-v2 h1 {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .hero-v2__bg::after {
    background: linear-gradient(
      to top,
      rgba(0, 56, 48, 0.95) 0%,
      rgba(0, 56, 48, 0.8) 30%,
      rgba(0, 56, 48, 0.5) 60%,
      rgba(0, 56, 48, 0.2) 100%
    );
  }

  .hero-v2__content {
    padding-bottom: var(--space-2xl);
  }

  .hero-v2__text {
    max-width: 100%;
  }

  .hero-v2 .hero-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-v2 .hero-actions .btn,
  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    min-height: 240px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .card-body,
  .card-v2 .card-body {
    padding: var(--space-md);
  }

  /* Stats */
  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-bar__item {
    padding: var(--space-lg) var(--space-md);
  }

  .stat-bar__item:nth-child(2) {
    border-right: none;
  }

  .stat-bar__item:nth-child(3) {
    border-right: 1px solid var(--border);
  }

  /* Feature strip */
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .feature-strip-item:last-child {
    border-bottom: none;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

  /* CTA */
  .cta-band .contact-info,
  .cta-v2 .contact-info {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Testimonials */
  .testimonial-block,
  .testimonial-v2 {
    padding: var(--space-xl) var(--space-md);
  }

  .testimonial-block p,
  .testimonial-v2 p {
    font-size: 1.1rem;
  }

  /* Accreditations */
  .accreditation-bar {
    gap: var(--space-xs);
  }

  .accreditation-v2 {
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-sm);
  }
}


/* ============================================================
   RESPONSIVE — Small mobile (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero h1,
  .hero-v2 h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .stat-bar {
    grid-template-columns: 1fr;
  }

  .stat-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-bar__item:last-child {
    border-bottom: none;
  }

  .page-nav ul {
    flex-direction: column;
  }

  .accreditation-bar {
    gap: 0.4rem;
  }

  .accreditation-bar span {
    font-size: 0.68rem;
    padding: 0.35rem 0.75rem;
  }

  .btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .newsletter-form input[type="email"] {
    border-right: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
  }

  .newsletter-form button {
    border-radius: var(--radius-pill);
  }
}


/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  .site-header,
  .nav-toggle,
  .hero-rings,
  .footer-newsletter,
  .cta-band,
  .cta-v2 {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero, .hero-v2 {
    min-height: auto;
    background: none;
  }

  .hero h1, .hero-v2 h1, .page-hero h1 {
    color: #000;
    font-size: 24pt;
  }

  .hero::after, .hero-v2__bg::after {
    display: none;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}
