/* ============================================================
   ANR Consulting — Design System 2026
   Official Brand Guidelines:
   Fonts  : Lato Regular (titles/headers) + Lato Light (body)
   Palette: Federation Green #263428 | Civic Green #1A1E18
            Fern Green #618059 | Ash Grey #A7BEA7
            Ecru #E6DBB5 | Dark Teal #243F40
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* ── Brand Colours ──────────────────────────────────────── */
  /* Primary */
  --federation-green:  #263428;   /* logo, text on light bg */
  --civic-green:       #1A1E18;   /* backgrounds */

  /* Secondary */
  --fern-green:        #618059;   /* icons, accents, CTAs */
  --fern-light:        #7a9e72;   /* lighter fern hover */
  --fern-muted:        #4d6645;   /* darker fern */

  /* Additional / Highlights */
  --dark-teal:         #243F40;
  --ash-grey:          #A7BEA7;
  --ecru:              #E6DBB5;
  --slate-grey:        #8A8A8A;
  --grey:              #B1B1B1;
  --light-grey:        #D8D8D8;
  --bole:              #703C30;

  /* UI Aliases */
  --bg:          var(--civic-green);       /* #1A1E18 */
  --bg-alt:      #141712;                  /* slightly darker */
  --bg-warm:     #1F2319;
  --surface:     var(--federation-green);  /* #263428 */
  --surface-2:   #2f3d30;
  --surface-3:   #354239;
  --border:      rgba(97, 128, 89, 0.25);  /* fern-based */
  --border-light: rgba(97, 128, 89, 0.12);
  --border-warm:  rgba(230, 219, 181, 0.12);

  --text:        #F2F5F0;
  --text-muted:  var(--ash-grey);          /* #A7BEA7 */
  --text-faint:  #627A63;
  --text-warm:   var(--ecru);              /* #E6DBB5 */

  --white:       #FFFFFF;
  --black:       #000000;

  /* ── Typography ──────────────────────────────────────────── */
  --font-heading: 'Lato', sans-serif;  /* Lato Regular 400 / Bold 700 */
  --font-body:    'Lato', sans-serif;  /* Lato Light 300 */
  --weight-light:   300;
  --weight-regular: 400;
  --weight-bold:    700;

  /* ── Spacing ─────────────────────────────────────────────── */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   48px;
  --space-8:   64px;
  --space-9:   80px;
  --space-10:  120px;

  /* ── Layout ──────────────────────────────────────────────── */
  --container:        1200px;
  --container-narrow: 800px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Transitions ─────────────────────────────────────────── */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;
  --dur-slower: 600ms;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography Scale ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

.display-xl {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: var(--weight-regular);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--weight-regular);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: var(--weight-regular);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.text-xl  { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.text-lg  { font-size: 1.125rem; }
.text-md  { font-size: 1rem; }
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }

.text-muted  { color: var(--text-muted); }
.text-faint  { color: var(--text-faint); }
.text-green  { color: var(--fern-green); }
.text-warm   { color: var(--ecru); }
.text-center { text-align: center; }

/* Label / Eyebrow style (ALL CAPS, Lato Regular) */
.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

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

section {
  padding: var(--space-10) 0;
}

.section-header {
  margin-bottom: var(--space-8);
}

.section-header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}

/* Eyebrow — Fern green + line (like style guide "LABEL OR SECONDARY HEADING") */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fern-green);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--fern-green);
  flex-shrink: 0;
}

/* ── Grid ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              padding var(--dur-base) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(26, 30, 24, 0.94);
  border-color: var(--border);
  padding: var(--space-3) 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo img {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 0.9rem;
  color: var(--ash-grey);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--dur-base) var(--ease);
  letter-spacing: 0.02em;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link.active { color: var(--fern-green); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 11px 26px;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--fern-green);
  color: var(--white);
  border: 1px solid var(--fern-green);
}

.btn--primary:hover {
  background: var(--fern-light);
  border-color: var(--fern-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(97, 128, 89, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
  border-color: var(--fern-green);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--fern-green);
  border: 1px solid rgba(97, 128, 89, 0.45);
}

.btn--outline:hover {
  background: rgba(97, 128, 89, 0.1);
  border-color: var(--fern-green);
}

.btn--lg   { padding: 14px 34px; font-size: 0.875rem; }
.btn--sm   { padding: 8px 18px; font-size: 0.75rem; }

.btn .arrow { transition: transform var(--dur-base) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Mobile Menu Toggle ───────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base);
}

.nav__hamburger:hover { background: var(--surface); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Subtle dot-grid texture (from brand dark card style) */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(97, 128, 89, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 40% 50%, black 20%, transparent 80%);
}

/* Green bloom */
.hero__bg::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -15%;
  width: 65%;
  height: 110%;
  background: radial-gradient(ellipse at center,
    rgba(38, 52, 40, 0.6) 0%,
    rgba(97, 128, 89, 0.06) 45%,
    transparent 70%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__label { margin-bottom: var(--space-5); }

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: var(--weight-regular);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-6);
  color: var(--text);
}

.hero__title .highlight {
  color: var(--fern-green);
}

.hero__subtitle {
  font-weight: var(--weight-light);
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: var(--ash-grey);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: var(--space-7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--fern-green));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.stat-item { text-align: center; }

.stat-item__number {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--fern-green);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: var(--weight-light);
  color: var(--ash-grey);
}

/* ── Service Cards ────────────────────────────────────────── */
/* Style guide: numbered list items with bordered number badge */
.services { position: relative; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.service-card {
  position: relative;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--dur-slow) var(--ease);
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fern-green), transparent);
  opacity: 0;
  transition: opacity var(--dur-slow);
}

.service-card:hover {
  background: var(--surface-2);
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.service-card:hover::after { opacity: 1; }

/* Numbered badge — matches style guide "01" bordered box with fern text */
.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--fern-green);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 0.75rem;
  color: var(--fern-green);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}

.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(97, 128, 89, 0.1);
  border: 1px solid rgba(97, 128, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: background var(--dur-base);
}

.service-card:hover .service-card__icon {
  background: rgba(97, 128, 89, 0.18);
}

.service-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--fern-green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.service-card__desc {
  font-weight: var(--weight-light);
  font-size: 0.9rem;
  color: var(--ash-grey);
  line-height: 1.7;
}

/* ── Approach Section ─────────────────────────────────────── */
.approach {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  right: -20%; top: -30%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse at center,
    rgba(38, 52, 40, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.approach__content .display-md { margin-bottom: var(--space-5); }

.approach__content p {
  font-weight: var(--weight-light);
  color: var(--ash-grey);
  margin-bottom: var(--space-5);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.approach__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.approach__list-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.approach__list-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: var(--radius-md);
  background: rgba(97, 128, 89, 0.1);
  border: 1px solid rgba(97, 128, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.approach__list-icon svg {
  width: 15px; height: 15px;
  stroke: var(--fern-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach__list-text strong {
  display: block;
  font-weight: var(--weight-regular);
  color: var(--text);
  font-size: 0.9375rem;
  margin-bottom: 3px;
}

.approach__list-text span {
  font-weight: var(--weight-light);
  font-size: 0.875rem;
  color: var(--ash-grey);
}

.approach__visual { position: relative; }

.approach__card-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.approach__metric-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: border-color var(--dur-base), transform var(--dur-base);
}

.approach__metric-card:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.approach__metric-card--accent {
  background: var(--surface-2);
  border-color: rgba(97, 128, 89, 0.3);
}

.approach__metric-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(97, 128, 89, 0.12);
  border: 1px solid rgba(97, 128, 89, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach__metric-icon svg {
  width: 20px; height: 20px;
  stroke: var(--fern-green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach__metric-label {
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.approach__metric-value {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.3;
}

.approach__metric-sub {
  font-weight: var(--weight-light);
  font-size: 0.8rem;
  color: var(--ash-grey);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px; left: -10px;
  font-size: 260px;
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: rgba(97, 128, 89, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6);
  transition: all var(--dur-slow) var(--ease);
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}

.testimonial-card__quote {
  font-weight: var(--weight-light);
  font-size: 1rem;
  color: var(--ash-grey);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--federation-green), var(--fern-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
  border: 1px solid rgba(97, 128, 89, 0.3);
}

.testimonial-card__name {
  font-weight: var(--weight-regular);
  font-size: 0.9375rem;
  color: var(--text);
}

.testimonial-card__title {
  font-weight: var(--weight-light);
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: var(--federation-green);
  border: 1px solid rgba(97, 128, 89, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot grid — matches brand dark card style */
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(97, 128, 89, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-inner > * { position: relative; z-index: 1; }

.cta-inner .display-md {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-inner p {
  font-weight: var(--weight-light);
  color: var(--ash-grey);
  font-size: 1.0625rem;
  margin-bottom: var(--space-7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .btn--primary {
  background: var(--fern-green);
  border-color: var(--fern-green);
  color: var(--white);
}

.cta-inner .btn--primary:hover {
  background: var(--fern-light);
  border-color: var(--fern-light);
}

.cta-inner .btn--ghost {
  color: var(--ash-grey);
  border-color: rgba(167, 190, 167, 0.3);
}

.cta-inner .btn--ghost:hover {
  background: rgba(97, 128, 89, 0.1);
  color: var(--white);
  border-color: var(--fern-green);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ── Team Cards ───────────────────────────────────────────── */
.team { padding: var(--space-10) 0; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease);
}

.team-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}

.team-card__photo {
  height: 260px;
  background: linear-gradient(135deg, var(--federation-green) 0%, var(--surface-2) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.team-card__photo .team-card__initials {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 3rem;
  color: rgba(97, 128, 89, 0.3);
}

.team-card__content {
  padding: var(--space-5) var(--space-5);
}

.team-card__name {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  color: var(--fern-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.team-card__bio {
  font-weight: var(--weight-light);
  font-size: 0.875rem;
  color: var(--ash-grey);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fern-green);
  background: rgba(97, 128, 89, 0.08);
  border: 1px solid rgba(97, 128, 89, 0.2);
  border-radius: var(--radius-full);
}

/* ── Values / About ───────────────────────────────────────── */
.values {
  background: var(--bg-alt);
  padding: var(--space-10) 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.value-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--surface);
  transition: all var(--dur-slow) var(--ease);
}

.value-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.value-card__number {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 2.5rem;
  color: rgba(97, 128, 89, 0.18);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.value-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.value-card__desc {
  font-weight: var(--weight-light);
  font-size: 0.9375rem;
  color: var(--ash-grey);
  line-height: 1.75;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact { padding: var(--space-10) 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-10);
  align-items: start;
}

.contact__info-block p {
  font-weight: var(--weight-light);
  color: var(--ash-grey);
  line-height: 1.75;
  font-size: 1.0625rem;
  margin-bottom: var(--space-5);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.contact__item-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(97, 128, 89, 0.1);
  border: 1px solid rgba(97, 128, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 16px; height: 16px;
  stroke: var(--fern-green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__item-label {
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contact__item-value {
  font-weight: var(--weight-light);
  font-size: 0.9375rem;
  color: var(--text);
}

.contact__item-value a:hover { color: var(--fern-green); }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-7);
}

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

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  color: var(--ash-grey);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-weight: var(--weight-light);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-faint); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--fern-green);
  box-shadow: 0 0 0 3px rgba(97, 128, 89, 0.12);
}

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

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A7BEA7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* ── Memberships ──────────────────────────────────────────── */
.memberships {
  padding: var(--space-8) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.memberships__label {
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: var(--space-5);
}

.memberships__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  flex-wrap: wrap;
}

.memberships__logos img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  transition: opacity var(--dur-base);
}

.memberships__logos img:hover { opacity: 0.6; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  padding: var(--space-10) 0 var(--space-6);
}

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

.footer__brand {}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4);
}

.footer__logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer__tagline {
  font-weight: var(--weight-light);
  font-size: 0.875rem;
  color: var(--ash-grey);
  line-height: 1.65;
  max-width: 280px;
}

.footer__nav-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 0.7rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-link {
  font-weight: var(--weight-light);
  font-size: 0.875rem;
  color: var(--ash-grey);
  transition: color var(--dur-base);
}

.footer__nav-link:hover { color: var(--fern-green); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__copy {
  font-weight: var(--weight-light);
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer__social { display: flex; gap: var(--space-3); }

.footer__social-link {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-base);
}

.footer__social-link:hover {
  background: rgba(97, 128, 89, 0.1);
  border-color: rgba(97, 128, 89, 0.3);
}

.footer__social-link svg {
  width: 15px; height: 15px;
  fill: var(--ash-grey);
  transition: fill var(--dur-base);
}

.footer__social-link:hover svg { fill: var(--fern-green); }

/* ── Page Header (inner pages) ────────────────────────────── */
.page-header {
  padding: 160px 0 var(--space-10);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(97, 128, 89, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Capabilities Page — Full Service Grid ────────────────── */
.services-full { padding: var(--space-10) 0; }

.services-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-full-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  transition: all var(--dur-slow);
}

.service-full-card:hover {
  background: var(--surface-2);
  border-color: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.service-full-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--fern-green);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 0.7rem;
  color: var(--fern-green);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}

.service-full-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(97, 128, 89, 0.1);
  border: 1px solid rgba(97, 128, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.service-full-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--fern-green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-full-card h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 1.0625rem;
  margin-bottom: var(--space-3);
}

.service-full-card p {
  font-weight: var(--weight-light);
  font-size: 0.875rem;
  color: var(--ash-grey);
  line-height: 1.7;
}

/* ── Audience Cards ───────────────────────────────────────── */
.audience-cards {
  padding: var(--space-10) 0;
  background: var(--bg-alt);
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-7);
  margin-bottom: var(--space-5);
  transition: border-color var(--dur-slow);
}

.audience-card:hover { border-color: var(--border); }

.audience-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.audience-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(97, 128, 89, 0.1);
  border: 1px solid rgba(97, 128, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--fern-green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 1.375rem;
}

.audience-card__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.audience-col-title {
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  color: var(--fern-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}

.audience-col-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.audience-col-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-weight: var(--weight-light);
  font-size: 0.875rem;
  color: var(--ash-grey);
}

.audience-col-item::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fern-green);
  margin-top: 8px;
}

/* ── Vision / Blockquote ──────────────────────────────────── */
.vision-block {
  background: var(--federation-green);
  border: 1px solid rgba(97, 128, 89, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-8);
  text-align: center;
  margin: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}

.vision-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(97, 128, 89, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.vision-block > * { position: relative; z-index: 1; }

.vision-block blockquote {
  font-family: var(--font-heading);
  font-weight: var(--weight-light);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--text);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

.vision-block cite {
  display: block;
  margin-top: var(--space-5);
  font-size: 0.875rem;
  font-weight: var(--weight-light);
  color: var(--ash-grey);
  font-style: normal;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slower) var(--ease-out),
              transform var(--dur-slower) var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay:  80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }
[data-reveal][data-delay="5"] { transition-delay: 400ms; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  section { padding: var(--space-9) 0; }
  .services__grid        { grid-template-columns: repeat(2, 1fr); }
  .services-full__grid   { grid-template-columns: repeat(2, 1fr); }
  .approach__grid        { gap: var(--space-7); }
  .footer__grid          { grid-template-columns: 2fr 1fr 1fr; }
  .stats-bar__grid       { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

@media (max-width: 768px) {
  section { padding: var(--space-8) 0; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav.mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(26, 30, 24, 0.97);
    backdrop-filter: blur(20px);
    padding: var(--space-7) var(--space-5);
    gap: var(--space-2);
    overflow-y: auto;
    z-index: 999;
  }

  .nav.mobile-open .nav__cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(26, 30, 24, 0.97);
    padding: var(--space-5);
    border-top: 1px solid var(--border-light);
    z-index: 999;
  }

  .nav.mobile-open .nav__cta .btn {
    flex: 1;
    justify-content: center;
  }

  .nav__link { font-size: 1.125rem; padding: var(--space-4); }

  .hero { min-height: 100svh; }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .services__grid        { grid-template-columns: 1fr; }
  .services-full__grid   { grid-template-columns: 1fr; }
  .grid-2                { grid-template-columns: 1fr; }
  .grid-3                { grid-template-columns: 1fr; }
  .grid-4                { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid       { grid-template-columns: repeat(2, 1fr); }
  .team__grid            { grid-template-columns: 1fr; }
  .values__grid          { grid-template-columns: 1fr; }
  .contact__grid         { grid-template-columns: 1fr; }
  .approach__grid        { grid-template-columns: 1fr; }
  .audience-card__cols   { grid-template-columns: 1fr; }
  .form-grid             { grid-template-columns: 1fr; }
  .footer__grid          { grid-template-columns: 1fr 1fr; }

  .cta-inner { padding: var(--space-8) var(--space-5); }
}

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