/* ============================================================
   ACTIVE COMMUNITY CARE — styles.css
   Complete Design System v1.0.0
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --brand-green:        #B5CC4B;
  --brand-amber:        #EFA91A;
  --brand-gold-sheen:   #EED386;

  /* Accessible Variants */
  --green-deep:         #5C7012;
  --green-700:          #41510D;
  --amber-deep:         #B97A00;
  --amber-700:          #8A5C00;

  /* Neutrals */
  --ink:                #1E2A12;
  --ink-soft:           #4A5340;
  --line:               #E7EAD9;
  --bg:                 #FFFFFF;
  --bg-sage:            #F5F8EC;
  --bg-cream:           #FDF7EA;
  --white:              #FFFFFF;

  /* Functional */
  --success:            #2F8F4E;
  --info:               #2C6E8F;
  --error:              #C0392B;
  --focus-ring:         #2C6E8F;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #B5CC4B 0%, #8FB23A 45%, #EFA91A 100%);
  --grad-leaf:    linear-gradient(160deg, #EFA91A 0%, #EED386 50%, #EFA91A 100%);
  --grad-band:    linear-gradient(120deg, #5C7012 0%, #41510D 100%);

  /* Spacing */
  --space:         clamp(1rem, 4vw, 2rem);
  --section-py:    clamp(4rem, 9vw, 7rem);

  /* Radius */
  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  28px;
  --pill:       999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(30,42,18,.06);
  --shadow:    0 12px 30px -12px rgba(30,42,18,.18);
  --shadow-lg: 0 30px 60px -20px rgba(30,42,18,.28);

  /* Transitions */
  --t:      0.25s ease;
  --t-long: 0.4s cubic-bezier(.4,0,.2,1);

  /* Typography */
  --font-head:   'Poppins', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-accent: 'Sora', system-ui, sans-serif;

  /* Z-Index */
  --z-below:  -1;
  --z-base:   0;
  --z-float:  10;
  --z-sticky: 100;
  --z-modal:  1000;
  --z-loader: 9999;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* required: body alone doesn't stop iOS Safari horizontal scroll */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.05vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; color: var(--green-700); }
p { max-width: 68ch; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.h1, h1 { font-size: clamp(2.2rem, 5vw, 4rem);   font-weight: 700; }
.h2, h2 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); font-weight: 700; }
.h3, h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem);  font-weight: 600; }
.h4, h4 { font-size: clamp(1.1rem, 2vw, 1.35rem);   font-weight: 600; }
.lead    { font-size: 1.25rem; line-height: 1.7; color: var(--ink-soft); }

.text-green { color: var(--green-deep); }
.text-amber { color: var(--amber-deep); }
.text-white { color: var(--white); }
.text-soft  { color: var(--ink-soft); }

.font-head   { font-family: var(--font-head); }
.font-accent { font-family: var(--font-accent); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space);
}

.container-narrow { max-width: 860px; margin-inline: auto; padding-inline: var(--space); }

.section { padding-block: var(--section-py); }
.section-sm { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.grid-2  { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: calc(var(--space) * 1.5); }
.grid-3  { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: calc(var(--space) * 1.25); }
.grid-4  { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: var(--space); }

.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.bg-white  { background-color: var(--white); }
.bg-sage   { background-color: var(--bg-sage); }
.bg-cream  { background-color: var(--bg-cream); }
.bg-dark   { background: var(--grad-band); color: var(--white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   5. SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: var(--z-loader);
  padding: 0.75rem 1.5rem;
  background: var(--green-deep);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--t);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pill);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t);
}

.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

/* Primary — Amber */
.btn-amber {
  background: var(--brand-amber);
  color: var(--green-700);
  border-color: var(--brand-amber);
  box-shadow: 0 4px 18px -4px rgba(239,169,26,.45);
}
.btn-amber:hover {
  background: #f5b820;
  box-shadow: 0 8px 28px -6px rgba(239,169,26,.55);
}

/* Secondary — Green */
.btn-green {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  box-shadow: 0 4px 18px -4px rgba(92,112,18,.35);
}
.btn-green:hover {
  background: var(--green-700);
  box-shadow: 0 8px 28px -6px rgba(92,112,18,.45);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

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

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; min-height: 40px; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; min-height: 56px; }

/* ============================================================
   7. PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  background: var(--grad-band);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 260px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: var(--pill);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--brand-amber);
  border-radius: var(--pill);
  animation: loaderFill 0.7s ease forwards;
}

@keyframes loaderPulse {
  from { opacity: 0.7; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1); }
}
@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ============================================================
   8. ACCESSIBILITY HELPERS
   ============================================================ */
.a11y-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  box-shadow: var(--shadow);
}

.a11y-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-sage);
  color: var(--green-deep);
  border: 1px solid var(--line);
  transition: background var(--t), color var(--t);
}
.a11y-btn:hover { background: var(--green-deep); color: var(--white); }
.a11y-btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.a11y-btn[aria-pressed="true"] { background: var(--green-deep); color: var(--white); }

/* High Contrast Mode */
body.high-contrast {
  --ink:       #000;
  --ink-soft:  #111;
  --bg:        #fff;
  --bg-sage:   #f0f0f0;
  --bg-cream:  #f8f8f0;
  --line:      #999;
  --green-deep: #2d5500;
  --amber-deep: #7a4e00;
  filter: contrast(1.15);
}

/* Large Text Mode */
body.text-large { font-size: 1.2rem; }
body.text-large .h1, body.text-large h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }

/* ============================================================
   9. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 92px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 4px; border-radius: 4px; }

.logo-svg {
  height: 72px;
  width: auto;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--brand-amber);
  border-radius: var(--pill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-link:hover, .nav-link.active {
  color: var(--green-deep);
  background: var(--bg-sage);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-deep);
  padding: 0.5rem 0.75rem;
  border-radius: var(--pill);
  border: 2px solid var(--line);
  transition: all var(--t);
  white-space: nowrap;
}
.header-phone:hover { border-color: var(--green-deep); background: var(--bg-sage); }
.header-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}
.hamburger:hover { background: var(--bg-sage); }
.hamburger:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: var(--pill);
  transition: transform var(--t), opacity var(--t);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) - 1);
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 5.5rem var(--space) 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all var(--t);
  text-decoration: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--green-deep);
  background: var(--bg-sage);
  border-left-color: var(--brand-amber);
}
.mobile-nav-link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sticky) - 2);
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(540px, 85vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(30,42,18,.82) 0%,
    rgba(65,81,13,.72) 45%,
    rgba(185,122,0,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6rem);
  width: 100%;
}

.hero-inner {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--pill);
  color: var(--brand-gold-sheen);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero .lead {
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  max-width: 56ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--pill);
  color: rgba(255,255,255,.9);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Hero floating motif */
.hero-motif {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}

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

/* ============================================================
   11. TRUST STRIP
   ============================================================ */
.trust-strip {
  padding-block: 1.25rem;
  background: var(--green-deep);
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item svg { color: var(--brand-amber); flex-shrink: 0; }

.trust-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255,255,255,.25);
}

@media (max-width: 640px) { .trust-divider { display: none; } }

/* ============================================================
   12. SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--bg-sage);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.section-title {
  color: var(--green-700);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-inline: auto;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: var(--grad-leaf);
  border-radius: var(--pill);
  margin: 1rem auto 0;
}

/* Left-aligned variant */
.section-header.text-left {
  text-align: left;
  margin-inline: 0;
}
.section-header.text-left .section-divider { margin-left: 0; }

/* ============================================================
   13. SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t-long), box-shadow var(--t-long), border-color var(--t);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-long);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(239,169,26,.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  flex-shrink: 0;
  transition: background var(--t), color var(--t), transform var(--t);
}

.service-card:hover .service-icon {
  background: var(--green-deep);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.service-code {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: var(--bg-cream);
  color: var(--amber-deep);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-head);
  border-radius: var(--pill);
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--green-700);
  margin: 0;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--t), color var(--t);
}
.service-link:hover { color: var(--amber-deep); gap: 0.6rem; }
.service-link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   14. WHY CHOOSE US CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t-long), box-shadow var(--t-long);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.why-card h3 { font-size: 1.05rem; color: var(--green-700); }
.why-card p  { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   15. HOW IT WORKS
   ============================================================ */
.steps-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-amber) 0%, var(--brand-green) 100%);
  z-index: 0;
}

@media (max-width: 768px) { .steps-wrapper::before { display: none; } }

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--brand-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  box-shadow: 0 0 0 6px rgba(239,169,26,.15);
}

.step-card h3 { font-size: 1.05rem; }
.step-card p  { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   16. STATS BAND
   ============================================================ */
.stats-band {
  background: var(--grad-band);
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  position: relative;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(181,204,75,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(239,169,26,.12) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 2rem;
  position: relative;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  color: var(--white);
}

.stat-num {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--brand-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}

.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
  margin-block: 0.5rem;
}

@media (max-width: 768px) { .stat-divider { display: none; } }

/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testimonials-section { overflow: hidden; }

.swiper-testimonials {
  padding-bottom: 3rem !important;
  padding-inline: 1rem !important;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--brand-amber);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.95rem; color: var(--green-700); }
.author-role { font-size: 0.8rem; color: var(--ink-soft); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.swiper-pagination-bullet { background: var(--line) !important; }
.swiper-pagination-bullet-active { background: var(--brand-amber) !important; }

/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.faq-item.open { box-shadow: var(--shadow); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-700);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  min-height: 56px;
}
.faq-trigger:hover { background: var(--bg-sage); color: var(--green-deep); }
.faq-trigger:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: -3px; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--t-long);
  color: var(--brand-amber);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-body { max-height: 600px; }

.faq-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-body-inner p + p { margin-top: 0.75rem; }

/* ============================================================
   19. CTA BAND
   ============================================================ */
.cta-band {
  background: var(--grad-hero);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

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

.cta-band-inner {
  position: relative;
  text-align: center;
}

.cta-band h2 {
  color: var(--green-700);
  margin-bottom: 1rem;
}

.cta-band .lead {
  color: rgba(30,42,18,.75);
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Dark variant */
.cta-band-dark {
  background: var(--grad-band);
}
.cta-band-dark h2 { color: var(--white); }
.cta-band-dark .lead { color: rgba(255,255,255,.8); }

/* ============================================================
   20. FORMS
   ============================================================ */
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: var(--error);
  margin-left: 0.2rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 50px;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(92,112,18,.12);
}

.form-control.error { border-color: var(--error); box-shadow: 0 0 0 4px rgba(192,57,43,.1); }
.form-control.success { border-color: var(--success); }

.form-control::placeholder { color: var(--ink-soft); opacity: 0.6; }

textarea.form-control { min-height: 140px; resize: vertical; }

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234A5340' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.35rem;
  display: none;
}
.form-control.error + .form-error { display: block; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.file-upload {
  position: relative;
  display: block;
}

.file-upload-area {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  background: var(--bg-sage);
}
.file-upload-area:hover { border-color: var(--green-deep); background: var(--bg-sage); }
.file-upload-area.drag-over { border-color: var(--brand-amber); background: var(--bg-cream); }

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-icon { color: var(--green-deep); margin-inline: auto; margin-bottom: 0.75rem; }
.file-upload-text { font-weight: 600; color: var(--green-deep); }
.file-upload-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.25rem; }
.file-name { font-size: 0.875rem; color: var(--success); font-weight: 600; margin-top: 0.5rem; }

.honeypot { display: none !important; visibility: hidden !important; }

.form-success {
  padding: 2rem;
  background: rgba(47,143,78,.08);
  border: 2px solid var(--success);
  border-radius: var(--radius);
  text-align: center;
  display: none;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; }

.multi-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.6rem;
}

.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
  font-size: 0.875rem;
}
.checkbox-chip:hover { border-color: var(--green-deep); background: var(--bg-sage); }
.checkbox-chip input[type="checkbox"] { accent-color: var(--green-deep); }
.checkbox-chip input:checked ~ span { color: var(--green-deep); font-weight: 600; }
.checkbox-chip:has(input:checked) { border-color: var(--green-deep); background: var(--bg-sage); }

/* Form card wrapper */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.site-footer {
  background: var(--grad-band);
  color: rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(181,204,75,.06) 0%, transparent 55%),
              radial-gradient(ellipse at 90% 50%, rgba(239,169,26,.05) 0%, transparent 55%);
  pointer-events: none;
}

.footer-main {
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem 2rem;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo { height: 64px; width: auto; }
.footer-mission { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,.72); max-width: 36ch; }

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background var(--t), color var(--t), border-color var(--t);
  text-decoration: none;
}
.social-link:hover { background: var(--brand-amber); color: var(--green-700); border-color: var(--brand-amber); }
.social-link:focus-visible { outline: 3px solid var(--brand-amber); outline-offset: 3px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-amber);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-link:hover { color: var(--white); }
.footer-link:focus-visible { outline: 3px solid var(--brand-amber); outline-offset: 2px; border-radius: 2px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--brand-amber); }
.footer-contact-item .info { font-size: 0.9rem; color: rgba(255,255,255,.72); }
.footer-contact-item a { color: rgba(255,255,255,.9); text-decoration: none; }
.footer-contact-item a:hover { color: var(--brand-amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  position: relative;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.footer-legal a { color: rgba(255,255,255,.65); text-decoration: underline; }
.footer-legal a:hover { color: var(--white); }

.ndis-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-gold-sheen);
}

.acknowledgement {
  background: rgba(0,0,0,.2);
  padding: 1rem var(--space);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  position: relative;
}

/* ============================================================
   22. MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 0.75rem var(--space);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(30,42,18,.12);
  gap: 0.75rem;
}

@media (max-width: 768px) { .mobile-sticky-bar { display: flex; } }

.mobile-sticky-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 0.85rem 1rem;
}

/* ============================================================
   23. FLOATING CTA (desktop)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--t-long), transform var(--t-long);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 768px) { .floating-cta { display: none; } }

.floating-cta .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; box-shadow: var(--shadow-lg); }

/* ============================================================
   24. WAVE DIVIDERS
   ============================================================ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   25. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.breadcrumb-list a {
  color: var(--green-deep);
  text-decoration: none;
}
.breadcrumb-list a:hover { text-decoration: underline; }

.breadcrumb-sep { color: var(--line); }
.breadcrumb-current { color: var(--ink-soft); }

/* ============================================================
   26. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--grad-band);
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(181,204,75,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(239,169,26,.1) 0%, transparent 50%);
}

.page-hero-inner { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.8); max-width: 56ch; }

/* ============================================================
   27. SERVICES PAGE
   ============================================================ */
.service-nav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.service-nav-chip {
  padding: 0.45rem 1.1rem;
  background: var(--bg-sage);
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  transition: all var(--t);
  white-space: nowrap;
}
.service-nav-chip:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.service-nav-chip:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

.service-detail {
  scroll-margin-top: 100px;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child { border-bottom: none; }

.service-detail:nth-child(even) .service-detail-inner {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .service-detail-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
}

.service-detail-content { display: flex; flex-direction: column; gap: 1.25rem; }

.service-detail-code {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-cream);
  border: 1px solid rgba(239,169,26,.3);
  border-radius: var(--pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber-deep);
  align-self: flex-start;
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-detail h2 { color: var(--green-700); }

.service-detail-desc { color: var(--ink-soft); line-height: 1.8; }

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.includes-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-detail-img:hover img { transform: scale(1.03); }

/* ============================================================
   28. SUPPORT COORDINATORS PAGE
   ============================================================ */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-amber) 0%, var(--brand-green) 100%);
}

@media (max-width: 600px) {
  .process-timeline::before { left: 20px; }
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--brand-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(239,169,26,.12);
  position: relative;
  z-index: 1;
}

.timeline-content { padding-top: 1rem; }
.timeline-content h3 { color: var(--green-700); margin-bottom: 0.5rem; font-size: 1.1rem; }
.timeline-content p  { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   29. CAREERS PAGE
   ============================================================ */
.job-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.25rem;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t-long), box-shadow var(--t-long);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.job-type {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: var(--pill);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-sage);
  color: var(--green-deep);
  font-family: var(--font-head);
}

.job-card h3 { color: var(--green-700); font-size: 1.1rem; }
.job-card .location { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: var(--ink-soft); }
.job-card p { font-size: 0.92rem; color: var(--ink-soft); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.25rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--t-long), box-shadow var(--t-long);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.value-card h3 { font-size: 1rem; color: var(--green-700); }
.value-card p  { font-size: 0.875rem; color: var(--ink-soft); text-align: center; }

/* ============================================================
   30. ABOUT PAGE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.story-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.story-content { display: flex; flex-direction: column; gap: 1.25rem; }
.story-content h2 { color: var(--green-700); }
.story-content p { color: var(--ink-soft); line-height: 1.8; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform var(--t-long), box-shadow var(--t-long);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.team-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.team-card-body h3 { font-size: 1rem; color: var(--green-700); }
.team-card-body span { font-size: 0.85rem; color: var(--amber-deep); font-weight: 600; }

.trust-block {
  background: var(--bg-sage);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-block-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.25rem;
}

.trust-block-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.trust-block-item svg { color: var(--success); flex-shrink: 0; margin-top: 0.1rem; }
.trust-block-item strong { display: block; font-size: 0.9rem; color: var(--green-700); margin-bottom: 0.2rem; }
.trust-block-item span { font-size: 0.83rem; color: var(--ink-soft); }

/* ============================================================
   31. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

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

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.contact-card:hover { box-shadow: var(--shadow); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card h3 { font-size: 0.875rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 0.25rem; }
.contact-card a, .contact-card p { font-size: 1rem; color: var(--green-deep); font-weight: 600; text-decoration: none; }
.contact-card a:hover { color: var(--amber-deep); }
.contact-card .sub { font-size: 0.8rem; color: var(--ink-soft); font-weight: 400; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-embed iframe { display: block; width: 100%; border: none; }

/* ============================================================
   32. 404 PAGE
   ============================================================ */
.page-404 {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--space);
}

.page-404-inner { max-width: 500px; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.page-404-num {
  font-family: var(--font-accent);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* ============================================================
   33. SCROLL REVEAL (initial states — GSAP handles end states)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   34. RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }
}

@media (max-width: 768px) {
  .header-actions .btn { display: none; }
  .header-phone { display: none; }

  /* Prevent any section from creating a horizontal scrollbar due to
     GSAP x-translate animations starting off-screen */
  .section,
  .hero,
  .trust-strip,
  .stats-band,
  .cta-band,
  .testimonials-section,
  .site-footer { overflow-x: hidden; }

  /* Footer: stack into a single column earlier */
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* Scale logo down on narrow screens so it doesn't overflow the header flex row */
@media (max-width: 480px) {
  .logo-svg { height: 54px; }
  .header-inner { height: 76px; }
}

@media (max-width: 380px) {
  .logo-svg { height: 46px; }
  .header-inner { height: 68px; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .cta-band-actions { flex-direction: column; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  /* Ensure stat cards don't force horizontal scroll */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }

  /* Service cards: full width on very small screens */
  .services-grid { grid-template-columns: 1fr; }

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

  /* Steps: single column */
  .steps-wrapper { grid-template-columns: 1fr; }
}

/* ============================================================
   35. LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.28rem 0.55rem;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.lang-switcher:focus-within {
  border-color: var(--brand-green);
  background: rgba(181,204,75,.08);
}
.lang-switcher svg {
  flex-shrink: 0;
  color: var(--ink-soft);
}
#lang-select {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  max-width: 108px;
  line-height: 1;
}
#lang-select:focus { outline: none; }

/* Google Translate hidden engine — keep off-screen */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Suppress Google's intrusive top bar */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* Mobile: compact lang-switcher on small screens */
@media (max-width: 480px) {
  .lang-switcher {
    padding: 0.28rem 0.45rem;
    gap: 0.25rem;
    font-size: 0.72rem;
  }
  .lang-switcher svg { display: none; }
  #lang-select { max-width: 86px; font-size: 0.72rem; }
}

/* ============================================================
   36. PRINT
   ============================================================ */
@media print {
  .site-header,
  .mobile-sticky-bar,
  .floating-cta,
  .a11y-panel,
  .page-loader { display: none !important; }

  body { color: #000; font-size: 11pt; }
  a { text-decoration: underline; }
  .btn { border: 1px solid #000; }
}
