/* ============================================================
   NORTHERN CONNECTED AGRONOMICS — Global Stylesheet
   ============================================================ */

:root {
  /* Approved palette */
  --sand: #E5C89F;
  --terracotta: #C37956;
  --ochre: #BE9244;
  --deep-earth: #654433;
  --sage: #7A8F5B;

  /* Supporting neutrals demonstrated in masters */
  --cream: #F3EFE6;
  --cream-alt: #F6F3EC;
  --charcoal-green: #171E13;   /* dark services / approach panels */
  --charcoal-green-2: #1B2317;
  --ink: #2A2620;              /* body copy on light bg */
  --white: #FFFFFF;
  --line: rgba(42, 38, 32, 0.14);
  --line-on-dark: rgba(255, 255, 255, 0.25);

  --font-display: 'Lora', Georgia, serif;
  --font-ui: 'Montserrat', Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal-hero {
  padding: 64px var(--gutter) 40px;
  background: var(--cream-alt);
  border-bottom: 1px solid var(--line);
}
.legal-hero .container { max-width: 760px; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  color: var(--ink);
  margin: 10px 0 8px;
}
.legal-hero .updated { font-size: 13px; color: #6b6252; }
.legal-body { padding: 56px var(--gutter) 80px; background: var(--cream); }
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 15px; line-height: 1.75; color: #4a4438; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { text-decoration: underline; text-decoration-color: rgba(74,68,56,0.35); text-underline-offset: 2px; }
.legal-body a:hover { color: var(--terracotta); }
.legal-body strong { color: var(--ink); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  background: var(--ochre);
}
@media (min-width: 761px) {
  .eyebrow-approach {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding-bottom: 14px;
    margin-bottom: 6px;
  }
  .eyebrow-approach::after { width: 48px; height: 3px; }
}
.eyebrow.on-dark { color: var(--sand); }
.eyebrow.on-dark::after { background: var(--sage); }

.ppp {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.9;
}
.ppp.stack { text-align: left; }
.ppp.row { display: flex; gap: 10px; letter-spacing: 0.18em; }

.serif-italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--sage);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-solid {
  background: var(--deep-earth);
  color: var(--white);
  border-color: var(--deep-earth);
}
.btn-solid:hover { background: #4f3327; }

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

.btn-outline-light {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

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

.btn-solid-dark {
  background: var(--charcoal-green);
  color: var(--white);
  border-color: var(--charcoal-green);
}
.btn-solid-dark:hover { background: #0f140c; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  display: flex;
  justify-content: flex-end;
  padding: 8px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.header-top .ppp.row { color: var(--deep-earth); opacity: 0.75; }

.header-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter) 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-mark-img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-word .name {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: 0.02em;
  color: var(--deep-earth);
}
.logo-word .sub {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--deep-earth);
  border-top: 1px solid var(--terracotta);
  padding-top: 2px;
  margin-top: 2px;
}
.logo-word .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11.5px;
  color: var(--ink);
  margin-top: 2px;
}

/* ===== Desktop-only refinements (>760px) — do not affect mobile ===== */
@media (min-width: 761px) {
  .logo-word { align-items: center; }
  .logo-word .name, .logo-word .sub, .logo-word .tag { width: max-content; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.main-nav a:hover { color: var(--terracotta); }
.main-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ochre);
}

.header-actions { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--deep-earth); }

/* ============================================================
   HERO — inner pages (condensed single hero)
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,18,10,0.86) 0%, rgba(15,18,10,0.62) 38%, rgba(15,18,10,0.15) 65%, rgba(15,18,10,0.05) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 60px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { color: var(--sand); }
.hero-copy .eyebrow::after { background: var(--sage); }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.14;
  margin-bottom: 18px;
}
.hero-copy h1 em {
  display: block;
  font-style: italic;
  color: var(--sage);
  font-weight: 500;
}
.hero-copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-bottom: 26px;
}
.hero-ppp {
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.5);
  padding-left: 18px;
  color: var(--white);
}
@media (min-width: 761px) {
  .hero-ppp {
    position: relative;
    padding: 14px 20px 14px 22px;
    border-left: 1px solid rgba(255,255,255,0.55);
  }
  .hero-ppp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(8,10,6,0.5) 0%, rgba(8,10,6,0.25) 65%, transparent 100%);
    border-radius: 6px;
    z-index: -1;
  }
}

/* ============================================================
   HOME — stacked panels
   ============================================================ */
.panel {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  border-top: 4px solid var(--cream);
}
.panel:first-child { border-top: none; }
.panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,14,8,0.82) 0%, rgba(10,14,8,0.5) 42%, rgba(10,14,8,0.05) 70%);
}
.panel-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 40px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.panel-copy { max-width: 540px; }
.panel-copy .eyebrow { color: var(--sand); }
.panel-copy .eyebrow::after { background: var(--sage); }
.panel-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.16;
  margin-bottom: 16px;
}
.panel-copy h2 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}
.panel-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 460px;
  margin-bottom: 22px;
}
.panel-ppp {
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.5);
  padding-left: 18px;
}
@media (min-width: 761px) {
  .panel-ppp {
    position: relative;
    padding: 14px 20px 14px 22px;
    border-left: 1px solid rgba(255,255,255,0.55);
  }
  .panel-ppp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(8,10,6,0.5) 0%, rgba(8,10,6,0.25) 65%, transparent 100%);
    border-radius: 6px;
    z-index: -1;
  }
}

.panel--turf .eyebrow.turf-tone::after,
.panel--turf h2 em { color: var(--sage); }
.panel--specialty h2 em { color: var(--ochre); }
.panel--cannabis h2 em { color: var(--sand); }

/* backgrounds are now set inline per-section via style="background-image:url(...)" */

/* ============================================================
   HOME FOOTER (minimal)
   ============================================================ */
.site-footer {
  background: var(--cream-alt);
  padding: 64px var(--gutter) 26px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-logo-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}
.footer-logo-link:hover { opacity: 0.82; }
.footer-logo-full {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--deep-earth);
  opacity: 0.75;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-width: var(--container);
  margin: 0 auto 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-nav a { opacity: 0.78; }
.footer-nav a:hover,
.footer-nav a[aria-current="page"] { opacity: 1; color: var(--terracotta); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink);
}
.footer-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-links a { opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--terracotta); }
.footer-link-pending { opacity: 0.65; cursor: default; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--deep-earth);
  color: var(--white);
  border-radius: 3px;
}
.social-icon svg { width: 15px; height: 15px; }
.social-icon:hover { background: var(--terracotta); }

/* ===== Desktop-only global footer: photo background + overlay ===== */
@media (min-width: 761px) {
  .site-footer {
    position: relative;
    background-image: url('assets/photos/footer-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 72px var(--gutter) 30px;
  }
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,10,6,0.72), rgba(8,10,6,0.82));
  }
  .site-footer > * { position: relative; z-index: 1; }
  .footer-tagline { color: var(--sand); opacity: 0.92; }
  .footer-nav { color: var(--white); border-bottom-color: rgba(255,255,255,0.22); }
  .footer-nav a { opacity: 0.82; }
  .footer-nav a:hover, .footer-nav a[aria-current="page"] { opacity: 1; color: var(--sand); }
  .footer-bottom { color: rgba(255,255,255,0.85); border-top-color: rgba(255,255,255,0.22); }
  .footer-links a { opacity: 0.85; }
  .footer-links a:hover { opacity: 1; color: var(--sand); }
  .footer-link-pending { opacity: 0.55; color: rgba(255,255,255,0.85); }
  .social-icon { background: rgba(255,255,255,0.14); }
  .social-icon:hover { background: var(--terracotta); }
}

/* ============================================================
   WHO WE HELP
   ============================================================ */
.who-help {
  padding: 88px var(--gutter);
  background: var(--cream);
}
.who-help-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 50px;
  align-items: start;
}
.who-help h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin: 6px 0 16px;
  color: var(--ink);
}
.who-help p { font-size: 15px; line-height: 1.65; color: #4a4438; max-width: 400px; }

/* Desktop-only wide "who we help" banner photo (replaces/supplements the
   narrow side-photo on desktop only; mobile keeps its existing layout). */
.who-help-wide-photo {
  display: none;
}
@media (min-width: 761px) {
  .who-help-photo-mobile { display: none; }
  .who-help-wide-photo {
    display: block;
    max-width: var(--container);
    margin: 44px auto 0;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3 / 1;
    background-size: cover;
    background-position: center;
  }
  .who-help-wide-photo--tall { aspect-ratio: 3 / 2; }
  .who-help-wide-captions {
    display: flex;
    max-width: var(--container);
    margin: 16px auto 0;
    justify-content: space-between;
    gap: 12px;
  }
  .who-help-wide-captions span {
    flex: 1;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--deep-earth);
  }
  .who-help-wide-quote {
    display: block;
    max-width: var(--container);
    margin: 18px auto 0;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--deep-earth);
  }
}
.who-help-wide-quote { display: none; }
.who-help-wide-captions { display: none; }

.specialty-disclaimer {
  max-width: var(--container);
  margin: -28px auto 0;
  padding: 0 var(--gutter) 40px;
}
.specialty-disclaimer p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6b6252;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* icon-row variant (Turf) */
.icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.icon-item { text-align: center; }
.icon-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--deep-earth);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--deep-earth);
}
.icon-circle svg { width: 33px; height: 33px; }
.icon-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  display: block;
}

.side-photo {
  position: relative;
  min-height: 320px;
  border-radius: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.side-photo .quote-overlay {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
}
.side-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,8,0.55), transparent 55%);
}

/* photo-grid variant (Specialty Ag / Cannabis) */
.photo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 40px;
}
.photo-grid figure { margin: 0; }
.photo-grid .grid-photo {
  aspect-ratio: 4 / 5;
  border-radius: 1px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-grid figcaption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  padding-top: 8px;
}
.photo-grid figcaption::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--sage);
}

/* ============================================================
   OUR SERVICES (dark)
   ============================================================ */
.services {
  position: relative;
  padding: 90px var(--gutter);
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,14,8,0.86);
}
.services-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; }
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  max-width: 480px;
}
.services-head p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 420px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 20px;
}
.services-grid.cols-4-2 { grid-template-columns: repeat(4, 1fr); }
.service-item { text-align: center; }
.service-item .icon-circle {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.service-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  display: block;
}

/* ============================================================
   COMMON CHALLENGES
   ============================================================ */
.challenges {
  padding: 88px var(--gutter);
  background: var(--cream);
}
.challenges-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: stretch;
}
.challenges h2 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.checklist li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--sage); }

.feature-photo {
  position: relative;
  min-height: 260px;
  border-radius: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.feature-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,12,8,0.55), transparent 55%);
}
.feature-photo .cap {
  position: relative; z-index: 1;
  padding: 26px;
  color: var(--white);
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.feature-photo .cap.caps-style {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; line-height: 1.6;
  align-items: flex-end;
}
.feature-photo .cap.quote-style {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.what-you-get { padding: 0; }
.wyg-dark {
  background: var(--charcoal-green);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wyg-dark .wyg-photo { min-height: 340px; background-size: cover; background-position: center; }
.wyg-dark .wyg-copy { padding: 70px var(--gutter); }
.wyg-dark h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 30px);
  margin-bottom: 26px;
}
.wyg-dark .checklist li svg { color: var(--ochre); }
.wyg-dark .checklist li { color: rgba(255,255,255,0.92); }

.wyg-light {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: center;
}
.wyg-light .wyg-photo { min-height: 300px; background-size: cover; background-position: center; height: 100%; }
.wyg-light .wyg-copy { padding: 60px var(--gutter); }
.wyg-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.wyg-row .icon-item { max-width: 130px; }
.wyg-row .icon-circle { width: 56px; height: 56px; border-color: var(--deep-earth); }
.wyg-row .icon-circle svg { width: 22px; height: 22px; }
.wyg-row span { font-size: 12.5px; }

/* ============================================================
   NCA APPROACH
   ============================================================ */
.approach-light {
  padding: 80px var(--gutter);
  background: var(--cream-alt);
}
.approach-light-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.approach-col { text-align: center; padding: 0 8px; }
.approach-col .icon-circle { width: 60px; height: 60px; margin-bottom: 16px; }
.approach-col h3 { font-size: 15px; margin-bottom: 8px; }
.approach-col p { font-size: 13px; line-height: 1.55; color: #4a4438; }

.approach-dark {
  background: var(--charcoal-green-2);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}
.approach-dark-cols {
  padding: 64px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.approach-dark .icon-circle { border-color: rgba(255,255,255,0.5); color: var(--white); width: 56px; height: 56px; }
.approach-dark-cols .approach-col h3 { font-size: 13.5px; }
.approach-dark-photo {
  position: relative;
  min-height: 220px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 30px;
}
.approach-dark-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,12,8,0.35), rgba(10,12,8,0.05));
}
.approach-dark-photo .quote {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.35;
  max-width: 240px;
}
.approach-dark-photo .quote::before {
  content: "";
  display: block;
  width: 30px; height: 2px;
  background: var(--sage);
  margin-bottom: 12px;
}

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta-photo {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.cta-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,14,8,0.82), rgba(10,14,8,0.2) 60%);
}
.cta-photo-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 50px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-photo h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  margin-bottom: 10px;
}
.cta-photo p { font-size: 14.5px; margin-bottom: 20px; color: rgba(255,255,255,0.9); }

.cta-light {
  background: var(--cream-alt);
  padding: 50px var(--gutter);
}
.cta-light-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-light h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--ink);
  line-height: 1.3;
}
.cta-light .sub { font-size: 14px; color: #4a4438; margin-top: 6px; }
.cta-light .ppp.row { color: var(--deep-earth); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.contact-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,14,10,0.62) 0%, rgba(15,14,10,0.3) 55%, rgba(15,14,10,0.05) 100%);
}
.contact-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px var(--gutter);
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin: 14px 0 10px;
}
.contact-hero h1 em { display: block; font-style: italic; color: var(--sage); font-weight: 500; }
.contact-hero .ppp.row { margin-top: 16px; color: var(--white); }
@media (min-width: 761px) {
  .contact-hero-inner .eyebrow {
    color: var(--sand);
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }
  .contact-hero-inner .eyebrow::after { background: var(--sage); }
}

.contact-main {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.7fr;
  background: var(--cream-alt);
}
.contact-form-col { padding: 64px var(--gutter) 64px clamp(20px, 5vw, 64px); }
.contact-info-col { padding: 64px 30px; border-left: 1px solid var(--line); }
.contact-image-col {
  position: relative;
  min-height: 320px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  padding: 26px;
  color: var(--white);
}
.contact-image-col::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,12,8,0.55), transparent 50%);
}
.contact-image-col .quote {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
}
.contact-image-col .quote::before {
  content: "";
  display: block;
  width: 28px; height: 2px;
  background: var(--sage);
  margin-bottom: 12px;
}

.contact-form-col h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 13px 14px;
  border-radius: 2px;
  font-size: 14.5px;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ochre);
  outline: none;
}
.form-field.error input,
.form-field.error textarea { border-color: #B3413A; }
.field-error {
  display: none;
  font-size: 12px;
  color: #B3413A;
  margin-top: 5px;
}
.form-field.error .field-error { display: block; }
.form-status {
  margin-top: 16px;
  font-size: 13.5px;
  padding: 12px 14px;
  border-radius: 2px;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(122,143,91,0.16); color: #445832; display: block; }
.form-status.error-status { background: rgba(179,65,58,0.12); color: #8f2f29; display: block; }
.form-status.notice-status { background: rgba(190,146,68,0.16); color: #7a5a1e; display: block; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail .icon-circle { width: 42px; height: 42px; flex-shrink: 0; }
.contact-detail .icon-circle svg { width: 18px; height: 18px; }
.contact-detail h3 { font-size: 14.5px; margin-bottom: 4px; }
.contact-detail p { font-size: 13.5px; color: #4a4438; line-height: 1.5; }
.contact-detail p a { text-decoration: underline; text-decoration-color: rgba(74,68,56,0.35); text-underline-offset: 2px; }
.contact-detail p a:hover { color: var(--terracotta); text-decoration-color: currentColor; }
.contact-follow { margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-follow h4 { font-size: 12.5px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.06em; }
.contact-follow .footer-social { gap: 10px; }
@media (min-width: 761px) {
  .contact-follow { text-align: center; }
  .contact-follow .footer-social { justify-content: center; }
}

.boardroom-close {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.boardroom-close::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,8,0.72) 0%, rgba(10,10,8,0.25) 55%, transparent 85%);
}
.boardroom-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 60px var(--gutter);
}
.boardroom-logo-card {
  display: inline-block;
  background: rgba(243, 239, 230, 0.94);
  padding: 16px 22px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.boardroom-logo-full { width: 220px; max-width: 55vw; height: auto; display: block; }
.boardroom-inner .lets-talk { font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.1em; font-size: 20px; margin-bottom: 10px; }
.boardroom-inner .ppp.row { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .who-help-grid { grid-template-columns: 1fr; }
  .icon-row { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .challenges-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .wyg-dark, .wyg-light { grid-template-columns: 1fr; }
  .wyg-light .wyg-photo { min-height: 220px; }
  .approach-light-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-dark { grid-template-columns: 1fr; }
  .approach-dark-cols { grid-template-columns: repeat(2, 1fr); }
  .approach-dark-photo { min-height: 200px; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-info-col { border-left: none; border-top: 1px solid var(--line); }
  .contact-image-col { min-height: 220px; }
}

@media (max-width: 760px) {
  .hero, .panel { background-position: 68% center; }
  .footer-nav { gap: 10px 18px; font-size: 11.5px; margin-bottom: 30px; padding-bottom: 24px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    width: 100%;
    padding: 14px var(--gutter);
    border-bottom: 1px solid var(--line);
    border-left: 2px solid transparent;
  }
  .main-nav a[aria-current="page"] { border-left-color: var(--ochre); border-bottom-color: var(--line); }
  .header-top { display: none; }
  .header-actions .btn span.btn-text { display: none; }
  .header-actions .btn { padding: 12px 14px; }

  .hero-inner, .panel-inner, .cta-photo-inner { flex-direction: column; align-items: flex-start; }
  .hero-ppp, .panel-ppp { border-left: none; padding-left: 0; margin-top: 10px; }
  .cta-light-inner { flex-direction: column; align-items: flex-start; }

  .services-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }

  .approach-light-grid { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .approach-dark-cols { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .icon-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .approach-light-grid { grid-template-columns: 1fr 1fr; }
  .approach-dark-cols { grid-template-columns: 1fr 1fr; }
  .hero, .panel { min-height: 460px; }
  .hero-copy p, .panel-copy p { font-size: 14px; }
}
