/* =========================================================
   OAK RECOVERY SERVICES — LANDING PAGE STYLES
   Design system: oak-recovery-design-system.json
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* -----------------------------
   DESIGN TOKENS
   ----------------------------- */
:root {
  /* Primary greens */
  --forest: #24382D;
  --forest-deep: #1A2A22;
  --moss: #3D5444;
  --sage: #606F40;
  --olive: #929B79;

  /* Gold accents */
  --gold: #D9B36C;
  --gold-light: #E8C98A;
  --gold-dark: #B8964F;

  /* Neutrals */
  --cream: #F5EFE0;
  --ivory: #FAF6EC;
  --bark: #4A4036;
  --stone: #8B8576;
  --white: #FFFFFF;

  /* Gradients */
  --grad-forest: linear-gradient(180deg, #3D5444 0%, #24382D 100%);
  --grad-gold: linear-gradient(135deg, #E8C98A 0%, #D9B36C 50%, #B8964F 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container: 1280px;
  --container-narrow: 880px;
  --section-y: 6rem;
  --section-x: 2rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-card: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 4px 12px rgba(36,56,45,0.08), 0 2px 4px rgba(36,56,45,0.04);
  --shadow-card: 0 8px 24px rgba(36,56,45,0.10), 0 4px 8px rgba(36,56,45,0.06);
  --shadow-lift: 0 16px 40px rgba(36,56,45,0.14), 0 6px 12px rgba(36,56,45,0.08);
  --shadow-gold: 0 6px 16px rgba(217,179,108,0.4);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-base: 300ms;
  --t-fast: 150ms;
}

/* -----------------------------
   RESET & BASE
   ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--forest);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; }

/* -----------------------------
   TYPOGRAPHY UTILITIES
   ----------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.eyebrow--forest { color: var(--forest); }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
}

.h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 30;
}

.h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.92;
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 1.5rem;
  border: 0;
}

.gold-rule--center { margin-left: auto; margin-right: auto; }

/* -----------------------------
   LAYOUT
   ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.section--forest {
  background: var(--forest);
  color: var(--cream);
}

.section--moss {
  background: var(--moss);
  color: var(--cream);
}

.section--cream { background: var(--cream); }

.section--ivory { background: var(--ivory); }

.section--gold {
  background: var(--gold);
  color: var(--forest);
  padding: 4rem 0;
}

/* Watermark tree background */
.watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}

.watermark--bottom-right {
  bottom: -10%;
  right: -8%;
  width: 60%;
  max-width: 720px;
}

.watermark--left {
  top: 50%;
  left: -10%;
  width: 50%;
  max-width: 600px;
  transform: translateY(-50%);
  opacity: 0.05;
}

.watermark--right {
  top: 50%;
  right: -10%;
  width: 50%;
  max-width: 600px;
  transform: translateY(-50%);
  opacity: 0.05;
}

/* Hero: big dark tree silhouette on right side, behind everything */
.watermark--hero-right {
  top: 50%;
  right: -16%;
  width: 78%;
  max-width: 1100px;
  transform: translateY(-50%);
  opacity: 0.45;
}

/* Our Solution: dark tree centered behind the content block */
.watermark--solution-center {
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1200px;
  transform: translate(-50%, -50%);
  opacity: 0.45;
}

/* Community Partners: two oversized trees on either side — only a few leaves visible */
.watermark--partners-left {
  top: 50%;
  left: -55%;
  width: 110%;
  max-width: 1700px;
  transform: translateY(-50%);
  opacity: 0.18;
}

.watermark--partners-right {
  top: 50%;
  right: -55%;
  width: 110%;
  max-width: 1700px;
  transform: translateY(-50%);
  opacity: 0.18;
}

/* Contact / Get In Touch: very large tree on the right */
.watermark--contact-right {
  top: 50%;
  right: -22%;
  width: 95%;
  max-width: 1400px;
  transform: translateY(-50%);
  opacity: 0.32;
}

.section > .container { position: relative; z-index: 1; }

/* -----------------------------
   BUTTONS
   ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--r-md);
  transition: all var(--t-base) var(--ease-out);
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--forest);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn--secondary:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn--on-dark {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--gold);
}

.btn--on-dark:hover {
  background: var(--gold);
  color: var(--forest);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 0.95rem 1rem;
}

.btn--ghost:hover {
  color: var(--gold-light);
}

.btn--ghost::after {
  content: ' →';
  transition: transform var(--t-base) var(--ease-out);
  display: inline-block;
}

.btn--ghost:hover::after { transform: translateX(4px); }

/* -----------------------------
   NAVBAR
   ----------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 56, 45, 0.08);
  transition: background var(--t-base);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--t-fast);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--ease-out);
}

.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 1rem; }

.nav__toggle {
  display: none;
  width: 28px; height: 28px;
  position: relative;
}

.nav__toggle span {
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--forest);
  transition: all var(--t-base);
}

.nav__toggle span:nth-child(1) { top: 6px; }
.nav__toggle span:nth-child(2) { top: 13px; }
.nav__toggle span:nth-child(3) { top: 20px; }

/* -----------------------------
   HERO
   ----------------------------- */
.hero {
  position: relative;
  background: var(--grad-forest);
  color: var(--cream);
  padding: 9rem 0 6rem;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(96, 111, 64, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217, 179, 108, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grain */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero .container { position: relative; z-index: 2; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content { max-width: 640px; }

.hero__headline {
  color: var(--cream);
}

.hero__sub {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.88;
  margin: 0 0 2.5rem;
  max-width: 56ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 500;
}

.hero__trust span { position: relative; padding-left: 1rem; }

.hero__trust span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(217, 179, 108, 0.25);
  background: linear-gradient(135deg, #4A4036 0%, #24382D 100%);
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Soft dark gradient at the bottom so the label text stays readable */
.hero__visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(36,56,45,0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* -----------------------------
   MISSION BAND
   ----------------------------- */
.mission-band {
  background: var(--gold);
  color: var(--forest);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.mission-band__statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------
   STATS GRID
   ----------------------------- */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  background: var(--ivory);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--gold);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--forest);
  font-weight: 500;
}

.challenge__source {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

/* -----------------------------
   FEATURE CARDS (dark)
   ----------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: rgba(96, 111, 64, 0.15);
  border: 1px solid rgba(217, 179, 108, 0.2);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-card);
  padding: 2.5rem 2rem;
  color: var(--cream);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  backdrop-filter: blur(4px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(96, 111, 64, 0.22);
}

.feature-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.feature-card .h3 { color: var(--cream); }

.feature-card p {
  color: var(--cream);
  opacity: 0.82;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-head--left {
  text-align: left;
  margin: 0 0 2rem;
}

/* -----------------------------
   JOURNEY (Process)
   ----------------------------- */
.journey {
  margin-top: 3.5rem;
  position: relative;
}

.journey__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.journey__track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}

.journey__step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.journey__node {
  width: 56px; height: 56px;
  background: var(--ivory);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: all var(--t-base);
  position: relative;
}

.journey__step:hover .journey__node {
  background: var(--gold);
  color: var(--forest);
  transform: scale(1.08);
}

.journey__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.journey__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--bark);
  margin: 0;
}

.journey__closing {
  text-align: center;
  margin-top: 3.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--stone);
}

/* -----------------------------
   SERVICES (split)
   ----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.service-card {
  background: rgba(245, 239, 224, 0.06);
  border: 1px solid rgba(217, 179, 108, 0.25);
  border-radius: var(--r-card);
  padding: 1.75rem 1.5rem;
  transition: all var(--t-base);
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(245, 239, 224, 0.1);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.82;
}

.services-visual {
  aspect-ratio: 3/4;
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(217, 179, 108, 0.3);
  background: linear-gradient(160deg, #4A4036 0%, #24382D 100%);
}

.services-visual img.services-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.services-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(36,56,45,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.services-visual__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--cream);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.services-visual__label .eyebrow { margin: 0 0 0.25rem; }

.services-visual__label-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  opacity: 0.95;
}

/* -----------------------------
   WHO WE SERVE (4-up)
   ----------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--ivory);
  border: 1px solid rgba(36, 56, 45, 0.08);
  border-radius: var(--r-card);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all var(--t-base);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}

.audience-card__icon {
  width: 40px; height: 40px;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.audience-card h4 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--forest);
}

.audience-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--bark);
}

/* -----------------------------
   COMMUNITY PARTNERS
   ----------------------------- */
.partners-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.partners-text p {
  color: var(--cream);
  opacity: 0.88;
  font-size: 1.0625rem;
}

.partner-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pill {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--t-base);
}

.pill:hover {
  background: var(--gold);
  color: var(--forest);
}

/* -----------------------------
   OUTCOMES / IMPACT (two columns)
   ----------------------------- */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.outcomes-col h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--forest);
  position: relative;
  padding-bottom: 0.75rem;
}

.outcomes-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
}

.outcomes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--forest);
  border-bottom: 1px solid rgba(36, 56, 45, 0.08);
}

.outcomes-list li:last-child { border-bottom: 0; }

.outcomes-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.pullquote {
  margin: 4rem auto 0;
  max-width: 720px;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.pullquote::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 32px;
  background: var(--gold);
  transform: translateX(-50%);
}

.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--forest);
  margin: 1.5rem 0 0;
}

/* -----------------------------
   LEADERSHIP
   ----------------------------- */
.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.leader {
  text-align: center;
}

.leader__portrait {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--grad-gold);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.leader__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.leader__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(36,56,45,0.25) 100%);
  z-index: 2;
  pointer-events: none;
}

.leader__initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.leader__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.25rem;
}

.leader__title {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 1rem;
}

.leader__bio {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--bark);
  max-width: 320px;
  margin: 0 auto;
}

/* -----------------------------
   CONTACT
   ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info { color: var(--cream); }

.contact-info__block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(217, 179, 108, 0.2);
}

.contact-info__block:last-child { border-bottom: 0; }

.contact-info__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0;
}

.contact-info__note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.5;
}

.form-field { margin-bottom: 1.25rem; }

.form-field label {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(245, 239, 224, 0.95);
  border: 1.5px solid rgba(217, 179, 108, 0.3);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--forest);
  transition: all var(--t-fast);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 179, 108, 0.25);
  background: var(--ivory);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.radio-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(217, 179, 108, 0.3);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
}

.radio-row input[type="radio"] {
  accent-color: var(--gold);
  margin: 0;
}

.radio-row label:hover {
  border-color: var(--gold);
  background: rgba(217, 179, 108, 0.08);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--cream);
  opacity: 0.65;
  margin-top: 1rem;
  font-style: italic;
}

/* -----------------------------
   FINAL CTA BAND
   ----------------------------- */
.cta-band {
  background: var(--gold);
  color: var(--forest);
  padding: 5rem 0;
  text-align: center;
}

.cta-band .display-lg { color: var(--forest); margin-bottom: 0.75rem; }

.cta-band__sub {
  font-size: 1.125rem;
  color: var(--forest);
  max-width: 540px;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-band .btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.cta-band .btn--primary:hover {
  background: var(--forest-deep);
}

.cta-band .btn--secondary {
  border-color: var(--forest);
  color: var(--forest);
}

.cta-band .btn--secondary:hover {
  background: var(--forest);
  color: var(--cream);
}

/* -----------------------------
   FOOTER
   ----------------------------- */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 4rem 0 1.5rem;
  position: relative;
  border-top: 1px solid var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img { height: 56px; margin-bottom: 1rem; }

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
  margin: 0;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li { margin-bottom: 0.625rem; }

.footer__links a {
  font-size: 0.9375rem;
  color: var(--cream);
  opacity: 0.78;
  transition: opacity var(--t-fast), color var(--t-fast);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(217, 179, 108, 0.15);
  font-size: 0.8125rem;
  color: var(--cream);
  opacity: 0.55;
  text-align: center;
}

/* -----------------------------
   REVEAL ANIMATIONS
   ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* -----------------------------
   LANDSCAPE BLOCK
   Wraps the Patient Journey + Services sections with a
   shared sky-gradient + mountainous-terrain background.
   The terrain image is a PNG/WebP with transparent sky,
   so it sits ON TOP of the gradient and the gradient shows
   through where the photo's sky used to be.
   ----------------------------- */
.landscape-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(0deg,
    #F0E9D6 50%,
    #ADE2FF 100%,
    #C9E9FB 80%,
    #E8F0E2 25%,
    #F0E9D6 0%);
}

/* The mountainous-terrain photo (transparent sky) sits at the bottom,
   bridging the journey section into the services section */
.landscape-block__terrain {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78%;
  z-index: 1;
  background-image: url('assets/mountainous-terrain.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* Soft fade at the bottom of the photo so it bleeds into the next section cleanly */
.landscape-block__terrain::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 8%;
  background: linear-gradient(180deg, transparent 0%, rgba(36,56,45,0.15) 100%);
  pointer-events: none;
}

/* Sky element is now unused but kept as a no-op for the markup */
.landscape-block__sky { display: none; }

/* Lift section content above the backdrop layers */
.landscape-block .section { background: transparent; position: relative; z-index: 2; }
.landscape-block .section > .container { position: relative; z-index: 2; }

/* -----------------------------
   PATIENT JOURNEY (on sky)
   ----------------------------- */
.section--journey {
  padding-top: 6rem;
  padding-bottom: 4rem;
  color: var(--forest);
}

.section--journey .display-lg,
.section--journey .journey__label { color: var(--forest); }

.section--journey .journey__node {
  background: var(--ivory);
  box-shadow: 0 2px 6px rgba(36, 56, 45, 0.08);
}

.section--journey .journey__desc { color: var(--forest); opacity: 0.78; }

.section--journey .journey__closing {
  color: var(--forest);
  opacity: 0.55;
  margin-bottom: 0;
}

/* -----------------------------
   SERVICES (on terrain photo)
   White cards on the green desert backdrop, per mockup.
   ----------------------------- */
.section--services-on-terrain {
  padding-top: 2rem;
  padding-bottom: 7rem;
  color: var(--cream);
}

.section--services-on-terrain .services__headline { color: var(--cream); }

.section--services-on-terrain .service-card {
  background: var(--ivory);
  border: 1px solid rgba(217, 179, 108, 0.0);
  border-radius: var(--r-card);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 32px rgba(20, 28, 22, 0.18), 0 4px 10px rgba(20, 28, 22, 0.10);
  transition: all var(--t-base);
}

.section--services-on-terrain .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 28, 22, 0.25), 0 6px 14px rgba(20, 28, 22, 0.14);
}

.section--services-on-terrain .service-card__icon { color: var(--gold-dark); }

.section--services-on-terrain .service-card h4 {
  color: var(--forest);
}

.section--services-on-terrain .service-card p {
  color: var(--bark);
  opacity: 1;
}

/* -----------------------------
   OUR COMMITMENTS (snow-mountain backdrop)
   ----------------------------- */
.section--commitments {
  position: relative;
  background-color: var(--white);
  isolation: isolate;
}

.section--commitments::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/snow-covered-mountain.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  /* Desaturate the photo so the warm/yellow tones in the original don't bleed through */
  filter: saturate(0);
}

/* White-to-transparent fade at top and bottom so the photo blends in softly
   and the bottom reaches solid white to merge with the next section */
.section--commitments::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.30) 22%,
    rgba(255, 255, 255, 0.30) 60%,
    rgba(255, 255, 255, 0.85) 88%,
    rgba(255, 255, 255, 1.00) 100%);
  pointer-events: none;
}

.section--commitments > .container { position: relative; z-index: 2; }

/* Gold line separator between Commitments and Leadership */
.section--commitments + .section--leadership {
  border-top: 1px solid var(--gold);
}

/* -----------------------------
   LEADERSHIP (white background)
   ----------------------------- */
.section--leadership {
  background: var(--white);
}

/* -----------------------------
   CONTACT FORM — transparent so tree is visible behind it
   ----------------------------- */
.contact-form {
  background: rgba(36, 56, 45, 0.45);
  border: 1px solid rgba(217, 179, 108, 0.35);
  border-radius: var(--r-card);
  padding: 2.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}

.form-status {
  margin: 1rem 0 0;
  min-height: 1.25em;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
}

.form-status.is-success { color: var(--gold-light); }
.form-status.is-error   { color: #F5B4A0; }

/* -----------------------------
   RESPONSIVE
   ----------------------------- */
@media (max-width: 980px) {
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 480px; margin: 0 auto; aspect-ratio: 5/4; }

  /* Trim oversized trees on mobile */
  .watermark--hero-right { width: 130%; right: -30%; opacity: 0.35; }
  .watermark--solution-center { width: 140%; opacity: 0.35; }
  .watermark--partners-left { width: 180%; left: -90%; }
  .watermark--partners-right { width: 180%; right: -90%; }
  .watermark--contact-right { width: 140%; right: -40%; opacity: 0.25; }

  /* The landscape-block terrain photo starts later on mobile so the journey isn't crowded */
  .landscape-block__terrain { top: 50%; }

  .challenge-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features { grid-template-columns: 1fr; gap: 1.25rem; }
  .journey__track { grid-template-columns: 1fr; gap: 2rem; }
  .journey__track::before { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-visual { aspect-ratio: 16/10; max-width: 480px; margin: 0 auto; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .leaders { grid-template-columns: 1fr; gap: 2.5rem; max-width: 360px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

@media (max-width: 560px) {
  :root { --section-y: 4rem; --section-x: 1.25rem; }
  .stats { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  /* Services heading lands on the light gradient on mobile — switch to dark text */
  .section--services-on-terrain { color: var(--forest); }
  .section--services-on-terrain .services__headline { color: var(--forest); }
}
