/* =========================================================
   Opportunity Arc Foundation
   Bold, forest-green, editorial nonprofit aesthetic
   ========================================================= */

:root {
  /* Brand */
  --green:         #1B5E38;
  --green-dark:    #134428;
  --green-mid:     #256B42;
  --green-light:   rgba(27,94,56,0.08);
  --green-soft:    #EBF3EE;

  --amber:         #E8A020;
  --amber-dark:    #C4821A;
  --amber-light:   rgba(232,160,32,0.12);
  --amber-soft:    #FEF6E4;

  --charcoal:      #141414;
  --charcoal-mid:  #2A2A2A;
  --ink:           #1E1E1E;
  --body:          #444444;
  --muted:         #767676;

  --off-white:     #FDFDF8;
  --soft:          #F3F6F2;
  --white:         #FFFFFF;
  --border:        #DDE5DA;
  --border-dark:   rgba(255,255,255,0.1);

  --dark-section:  #0C1E12;

  /* Compat aliases for HTML inline styles */
  --color-primary:       #1B5E38;
  --color-primary-dark:  #134428;
  --color-accent:        #E8A020;
  --color-accent-dark:   #C4821A;
  --color-accent-light:  rgba(232,160,32,0.12);
  --color-teal:          #1B5E38;
  --color-teal-dark:     #134428;
  --color-teal-light:    rgba(27,94,56,0.08);
  --color-teal-soft:     #EBF3EE;
  --color-text:          #1E1E1E;
  --color-text-muted:    #5A5A5A;
  --color-border:        #DDE5DA;
  --color-bg:            #FDFDF8;
  --color-bg-soft:       #F3F6F2;
  --color-bg-dark:       #0C1E12;
  --color-white:         #FFFFFF;
  --color-navy:          #1B5E38;
  --color-navy-dark:     #134428;
  --color-navy-light:    rgba(27,94,56,0.08);
  --color-coral:         #E8A020;
  --color-coral-dark:    #C4821A;
  --color-coral-light:   rgba(232,160,32,0.12);
  --color-amber:         #E8A020;
  --color-amber-light:   rgba(232,160,32,0.12);
  --color-amber-dark:    #C4821A;

  /* Type */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;

  --xs:   0.75rem;
  --sm:   0.875rem;
  --base: 1rem;
  --lg:   1.125rem;
  --xl:   1.25rem;
  --2xl:  1.5rem;
  --3xl:  1.875rem;
  --4xl:  2.25rem;
  --5xl:  3rem;

  --regular:  400;
  --medium:   500;
  --semibold: 600;
  --bold:     700;

  /* Tokens */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Space */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-2xl:  28px;
  --radius-full: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);

  --max-width:  1120px;
  --nav-height: 130px;
  --transition: 0.18s ease;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h4 { font-size: var(--base); font-weight: var(--semibold); }
p  { color: var(--body); line-height: 1.8; }

/* =========================================================
   Layout
   ========================================================= */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section { padding-block: var(--space-20); }
.section--sm { padding-block: var(--space-12); }
.section--soft { background: var(--soft); }

.section--dark {
  background: var(--dark-section);
  color: var(--white);
}
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }

.section--navy {
  background: var(--green-dark);
  color: var(--white);
}
.section--navy h1, .section--navy h2,
.section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p   { color: rgba(255,255,255,0.72); }
.section--navy .section__label { color: rgba(255,255,255,0.55); }
.section--navy .stat-block__number { color: var(--amber); }
.section--navy .stat-block__label  { color: rgba(255,255,255,0.55); }
.section--navy .step-item__number  {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: white;
}

.section__label {
  font-size: var(--xs);
  font-weight: var(--semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-3);
  display: inline-block;
}
.section__title { margin-bottom: var(--space-4); }
.section__subtitle { font-size: var(--lg); max-width: 54ch; line-height: 1.75; }
.section__header { margin-bottom: var(--space-12); }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin-inline: auto; }

.section-divider {
  width: 36px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: var(--space-5);
}

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

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem var(--space-6);
  font-size: var(--sm);
  font-weight: var(--semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,94,56,0.3);
}
.btn--accent {
  background: var(--amber);
  color: var(--charcoal);
  font-weight: var(--bold);
  box-shadow: 0 2px 8px rgba(232,160,32,0.3);
}
.btn--accent:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
}
.btn--teal {
  background: var(--green);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn--ghost {
  background: transparent;
  color: var(--muted);
}
.btn--ghost:hover { color: var(--green); }
.btn--lg { padding: 0.9rem var(--space-8); font-size: var(--base); }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,253,248,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.nav__links { display: flex; align-items: center; gap: 0; }
.nav__link {
  font-size: var(--sm);
  font-weight: var(--medium);
  color: var(--body);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--green);
  background: var(--green-soft);
}
.nav__cta { display: flex; align-items: center; gap: var(--space-3); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__drawer {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--off-white);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-1);
  border-top: 1px solid var(--border);
  z-index: 99;
  overflow-y: auto;
}
.nav__drawer.open { display: flex; }
.nav__drawer .nav__link { font-size: var(--base); padding: var(--space-3) var(--space-4); }
.nav__drawer .btn { width: 100%; justify-content: center; margin-top: var(--space-4); }

/* =========================================================
   Hero — dark green, bold, editorial
   ========================================================= */
.hero {
  background: var(--green);
  padding-block: var(--space-20) var(--space-20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(27,94,56,0.0) 0%, rgba(12,30,18,0.6) 100%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(232,160,32,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--xs);
  font-weight: var(--semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  width: fit-content;
}
.hero__eyebrow svg { width: 7px; height: 7px; fill: var(--amber); flex-shrink: 0; }
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-6);
}
.hero__title em {
  font-style: italic;
  color: var(--amber);
}
.hero__subtitle {
  font-size: var(--lg);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 44ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}
.hero__proof {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__proof-stat { display: flex; flex-direction: column; gap: 2px; }
.hero__proof-stat strong {
  font-size: var(--2xl);
  font-weight: var(--bold);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__proof-stat span {
  font-size: var(--xs);
  color: rgba(255,255,255,0.6);
  font-weight: var(--medium);
}

/* Hero visual card */
.hero__visual { position: relative; }
.hero__visual-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__card-label {
  font-size: var(--xs);
  font-weight: var(--semibold);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}
.hero__focus-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero__focus-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.hero__focus-item:hover { background: rgba(255,255,255,0.1); }
.hero__focus-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__focus-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.hero__focus-icon--coral { background: rgba(232,160,32,0.2); color: var(--amber); }
.hero__focus-icon--green { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.hero__focus-icon--blue  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.hero__focus-icon--warm  { background: rgba(232,160,32,0.15); color: var(--amber); }
.hero__focus-text strong {
  display: block;
  font-size: var(--sm);
  font-weight: var(--semibold);
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.hero__focus-text span { font-size: var(--xs); color: rgba(255,255,255,0.5); }
.hero__location-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--xs);
  font-weight: var(--semibold);
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}
.hero__location-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =========================================================
   Focus Strip
   ========================================================= */
.focus-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-5);
}
.focus-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  overflow-x: auto;
}
.focus-strip__label {
  font-size: var(--xs);
  font-weight: var(--semibold);
  color: var(--muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.focus-strip__items { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.focus-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--xs);
  font-weight: var(--medium);
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(27,94,56,0.15);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.focus-pill svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2; }

/* =========================================================
   Cards
   ========================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; }
.card__title { font-size: var(--xl); font-weight: var(--semibold); margin-bottom: var(--space-3); }
.card__body  { font-size: var(--base); line-height: 1.75; margin-bottom: var(--space-5); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--sm);
  font-weight: var(--semibold);
  color: var(--green);
  transition: gap var(--transition);
}
.card__link:hover { gap: var(--space-3); }
.card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Program card variants */
.program-card { position: relative; border-top: 3px solid var(--green); }
.program-card--teal { background: var(--green-soft); border-color: var(--green); }
.program-card--navy { background: rgba(27,94,56,0.04); border-top-color: var(--green-mid); }

/* Resource card */
.resource-card { display: flex; flex-direction: column; gap: var(--space-3); }
.resource-card__badge {
  font-size: var(--xs);
  font-weight: var(--semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.resource-card__title { font-size: var(--xl); font-weight: var(--semibold); color: var(--ink); line-height: 1.3; }
.resource-card__desc { font-size: var(--sm); color: var(--body); line-height: 1.7; flex: 1; }
.resource-card__url {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--sm);
  font-weight: var(--semibold);
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition);
}
.resource-card__url:hover { text-decoration-color: var(--green); }
.resource-card__url svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stat-block { text-align: center; }
.stat-block__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--bold);
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-block__label { font-size: var(--sm); color: var(--body); font-weight: var(--medium); }
.stats-grid { display: grid; gap: var(--space-8); }
.stats-grid--4 { grid-template-columns: repeat(4,1fr); }
.stats-grid--3 { grid-template-columns: repeat(3,1fr); }

/* =========================================================
   Split layouts
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split--flip .split__visual { order: -1; }
.split--3-2 { grid-template-columns: 3fr 2fr; }

.mission-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}
.visual-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-10);
}
.visual-block svg { width: 64px; height: 64px; stroke: rgba(27,94,56,0.2); fill: none; stroke-width: 1; }
.visual-block__label { font-size: var(--sm); color: var(--muted); text-align: center; line-height: 1.5; }

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
  background: var(--green);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(232,160,32,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .section__label { color: rgba(255,255,255,0.55); position: relative; }
.cta-banner h2 { color: white; margin-bottom: var(--space-4); position: relative; }
.cta-banner p  {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  font-size: var(--lg);
  max-width: 48ch;
  margin-inline: auto;
  position: relative;
}
.cta-banner .btn-group { position: relative; justify-content: center; }

/* =========================================================
   Page Hero (inner pages)
   ========================================================= */
.page-hero {
  background: var(--green);
  padding-block: var(--space-16) var(--space-14);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(232,160,32,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__label {
  display: inline-block;
  font-size: var(--xs);
  font-weight: var(--semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-3);
  position: relative;
}
.page-hero__title { color: var(--white); margin-bottom: var(--space-4); position: relative; }
.page-hero__subtitle {
  font-size: var(--lg);
  color: rgba(255,255,255,0.72);
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.75;
  position: relative;
}

/* =========================================================
   Home page — full-bleed photo hero modifier
   ========================================================= */
.page-hero--photo {
  background-size: cover;
  background-position: center 35%;
  background-color: var(--dark-section);
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: left;
  padding-block: var(--space-24);
}
.page-hero--photo::before {
  background: linear-gradient(
    105deg,
    rgba(10, 24, 14, 0.87) 0%,
    rgba(10, 24, 14, 0.62) 52%,
    rgba(10, 24, 14, 0.22) 100%
  );
}
.page-hero--photo .container {
  position: relative;
  z-index: 1;
}
.page-hero--photo .page-hero__label {
  color: rgba(232, 160, 32, 0.92);
}
.page-hero--photo .page-hero__title {
  max-width: 16ch;
}
.page-hero--photo .page-hero__subtitle {
  margin-inline: 0;
  max-width: 48ch;
}
@media (max-width: 768px) {
  .page-hero--photo {
    min-height: 78vh;
    background-position: 65% center;
    padding-block: var(--space-16);
  }
  .page-hero--photo::before {
    background: rgba(10, 24, 14, 0.68);
  }
}

/* =========================================================
   Icon List
   ========================================================= */
.icon-list { display: flex; flex-direction: column; gap: var(--space-5); }
.icon-list__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.icon-list__marker {
  width: 36px;
  height: 36px;
  background: var(--green-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(27,94,56,0.15);
}
.icon-list__marker svg { width: 17px; height: 17px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.icon-list__text strong {
  display: block;
  font-weight: var(--semibold);
  color: var(--ink);
  margin-bottom: var(--space-1);
}
.icon-list__text p { font-size: var(--sm); }

/* =========================================================
   Value Item
   ========================================================= */
.value-item {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-left: 3px solid var(--amber);
}
.value-item h4 { margin-bottom: var(--space-2); }
.value-item p  { font-size: var(--sm); }

/* =========================================================
   Step Item
   ========================================================= */
.step-item { display: flex; gap: var(--space-5); align-items: flex-start; }
.step-item__number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--sm);
  font-weight: var(--bold);
  flex-shrink: 0;
}
.step-item__content h4 { color: white; margin-bottom: var(--space-2); }
.step-item__content p  { font-size: var(--sm); }

/* =========================================================
   Badge
   ========================================================= */
.badge {
  display: inline-block;
  font-size: var(--xs);
  font-weight: var(--semibold);
  padding: 3px var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  color: var(--green);
}
.badge--teal  { background: var(--green-soft);  color: var(--green); }
.badge--amber { background: var(--amber-soft);  color: #8a5a00; }

/* =========================================================
   Form
   ========================================================= */
.form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--sm); font-weight: var(--semibold); color: var(--ink); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--base);
  color: var(--ink);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,94,56,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--dark-section);
  color: white;
  padding-block: var(--space-16) var(--space-8);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-wrap { display: flex; flex-direction: column; }
.footer__logo-img-wrap {
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: var(--radius-md);
  padding: 6px 12px;
  margin-bottom: var(--space-5);
  width: fit-content;
}
.footer__logo-img { height: 100px; width: auto; display: block; }
.footer__mission {
  font-size: var(--sm);
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  max-width: 30ch;
  margin-bottom: var(--space-6);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--sm);
  color: rgba(255,255,255,0.52);
  margin-bottom: var(--space-3);
}
.footer__contact-item svg { width: 14px; height: 14px; stroke: var(--amber); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer__col-heading {
  font-size: var(--xs);
  font-weight: var(--semibold);
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
}
.footer__nav-link {
  display: block;
  font-size: var(--sm);
  color: rgba(255,255,255,0.55);
  padding-block: var(--space-2);
  transition: color var(--transition);
}
.footer__nav-link:hover { color: white; }
.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social-link:hover { background: var(--amber); }
.footer__social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); transition: fill var(--transition); }
.footer__social-link:hover svg { fill: var(--charcoal); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__copyright { font-size: var(--xs); color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: var(--space-5); }
.footer__legal a { font-size: var(--xs); color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* Newsletter */
.newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-top: var(--space-5);
}
.newsletter__heading { font-size: var(--xs); color: rgba(255,255,255,0.42); margin-bottom: var(--space-3); }
.newsletter__form { display: flex; gap: var(--space-2); }
.newsletter__input {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: var(--sm);
  min-width: 0;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter__input:focus { outline: none; border-color: var(--amber); }
.newsletter__submit {
  padding: var(--space-2) var(--space-4);
  background: var(--amber);
  color: var(--charcoal);
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--sm);
  font-weight: var(--bold);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter__submit:hover { background: var(--amber-dark); color: white; }

/* =========================================================
   Utilities
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.skip-link {
  position: absolute; top: -100%; left: var(--space-6);
  background: var(--green); color: white;
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-sm);
  font-weight: var(--semibold); z-index: 1000; transition: top 0.1s;
}
.skip-link:focus { top: var(--space-4); }

.text-teal    { color: var(--green); }
.text-muted   { color: var(--body); }
.text-white   { color: white; }
.text-center  { text-align: center; }
.text-sm      { font-size: var(--sm); }
.fw-semibold  { font-weight: var(--semibold); }
.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .stats-grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
  .footer__mission { max-width: 100%; }
}

@media (max-width: 768px) {
  :root {
    --space-20: 3.5rem;
    --space-16: 2.5rem;
    --nav-height: 100px;
  }
  .nav__links, .nav__cta .btn--outline { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding-block: var(--space-12) var(--space-10); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__proof { gap: var(--space-5); flex-wrap: wrap; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--flip .split__visual { order: 0; }
  .split--3-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid--4, .stats-grid--3 { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__top > div:first-child { grid-column: 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: var(--space-10) var(--space-6); }
  .nav__logo-img { height: 84px; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
  .section { padding-block: var(--space-12); }
  .stats-grid--4, .stats-grid--3 { grid-template-columns: 1fr; }
}

/* =========================================================
   Focus / A11y
   ========================================================= */
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
