@font-face {
  font-family: 'Halenoir';
  src: url('fonts/Halenoir-Regular.otf') format('otf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Halenoir';
  src: url('fonts/Halenoir-Medium.otf') format('otf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Halenoir';
  src: url('fonts/Halenoir-SemiBold.otf') format('otf');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Halenoir';
  src: url('fonts/Halenoir-Bold.otf') format('otf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- Color: warm paper ground, brand green as the one accent, ochre as the
     earth/soil counter-accent (waste-to-value, circularity). No near-black,
     no acid-green-on-black — the brief already owns green, so the ground
     stays warm and legible instead of doubling down on a dark UI cliché. */
  --green: #1F8A47;
  --green-deep: #145A2F;
  --green-pale: #E4F1E7;
  --ochre: #B9781F;
  --ochre-pale: #F5E9D6;
  --ink: #17231B;
  --ink-soft: #4A554C;
  --paper: #FBF8F1;
  --paper-alt: #F1EADA;
  --white: #FFFFFF;
  --line: rgba(23, 35, 27, 0.14);
  --line-soft: rgba(23, 35, 27, 0.08);

  --font-display: 'Halenoir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: 'Halenoir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'Halenoir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 4px;
  --shadow-soft: 0 1px 2px rgba(23,35,27,0.06), 0 8px 24px rgba(23,35,27,0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1em;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9em 1.5em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-deep); }
.btn-on-green { background: var(--white); color: var(--green-deep); }
.btn-on-green:hover { background: var(--ink); color: var(--white); }

/* ---- Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.6em; }
.brand img { height: 34px; width: auto; }
.brand-word { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.brand-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; position: relative; padding: 0.2em 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--green);
  transition: right 0.2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--green-deep); }

/* "Get Involved" button in the nav: the .nav-links a rules above otherwise
   override .btn — force it back to a proper button (smaller text, balanced
   padding, no underline bar). */
.nav-links a.btn {
  padding: 0.7em 1.4em;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  border: 0;
  border-radius: 999px;
}
.nav-links a.btn::after { content: none; }

.nav-actions { display: flex; align-items: center; gap: 1.4rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4em; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 860px) {
  /* Mobile: the nav opens as a dropdown card under the hamburger, on the same
     screen. Hidden by default, shown when JS adds .open — no overlay page. */
  .nav { position: relative; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    left: auto;
    width: max-content;
    min-width: 148px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.2rem 0;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(23, 35, 27, 0.14);
    z-index: 50;
  }
  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0.5rem 0.9rem;
    border: 0;
  }
  .nav-links a::after { display: none; }
  /* no green highlight on hover / active — every item looks the same */
  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] { color: var(--ink); background: none; }

  /* "Get Involved" reads as a plain nav link on mobile — no pill, no accent */
  .nav-links a.btn {
    margin: 0;
    padding: 0.5rem 0.9rem;
    background: none;
    color: var(--ink);
    border: 0;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    justify-content: flex-start;
  }
  .nav-links a.btn:hover { background: none; color: var(--ink); }

  .nav-toggle { display: block; }
}

/* ---- Hero ---- */
.hero {
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  margin-bottom: clamp(2rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,16,12,0.32) 0%, rgba(10,16,12,0.72) 78%, rgba(10,16,12,0.82) 100%),
    linear-gradient(90deg, rgba(10,16,12,0.55) 0%, rgba(10,16,12,0.15) 62%);
}
/* Two-column content overlay: headline + focus areas on the left,
   mission statement + email capture on the right. */
/* Single column, centred both axes within the hero. */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.35rem;
  min-height: 62vh;
  max-width: 760px;
}
.hero-col { display: contents; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  margin: 0;
}
.hero h1 em {
  /* same typeface as the rest of the headline, just italic for emphasis */
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  margin: 0;
}

.hero-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}
.hero-tags li { color: #7CC89B; white-space: nowrap; }

.hero-body {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}

.hero-subscribe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 460px;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(10,16,12,0.28);
}

.hero-subscribe__btn {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
  background: var(--green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.hero-subscribe__btn:hover { background: var(--green-deep); transform: translateY(-1px); }

.hero .pulse-divider.accent { color: rgba(255,255,255,0.5); position: relative; z-index: 1; }

/* Desktop / tablet (md and up): give the headline room to wrap to 3 lines
   naturally, and keep all four focus-area tags on a single row. */
@media (min-width: 861px) {
  .hero-inner { max-width: 820px; }
  .hero h1 {
    font-size: 3.1rem;
    max-width: 24ch;          /* wide enough for 3 lines, not 2 */
    text-wrap: balance;       /* even out the 3 lines, no manual <br> */
  }
  .hero-tags {
    flex-wrap: nowrap;        /* all four tags on one line */
    gap: 0.55rem 1.1rem;      /* tighter horizontal gap so they fit */
  }
}

@media (max-width: 860px) {
  /* Mobile: the first viewport shows only the headline + "Our work spans…" +
     tags. The mission paragraph and email form sit below the fold. */
  .hero { padding-top: 0; padding-bottom: clamp(2.5rem, 10vw, 4rem); }
  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 0;
  }
  .hero-col { display: flex; flex-direction: column; align-items: center; width: 100%; }
  .hero-col--left {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: center;
    gap: 1.15rem;
    padding: 4.5rem 0;
  }
  .hero-col--right {
    gap: 1.25rem;
    padding-top: clamp(2rem, 8vw, 3.5rem);
  }
  .hero-body { max-width: none; }
  .hero-subscribe { width: 100%; max-width: 420px; }
}

@media (max-width: 480px) {
  .hero-subscribe {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.9rem;
    border-radius: 18px;
  }
  .hero-subscribe__input { flex-basis: 100%; padding: 0.6rem 0.4rem; }
  .hero-subscribe__btn { width: 100%; border-radius: 999px; }
}


/* ---- Sections ---- */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }

/* ---- Theme cards ---- */
.theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 720px) { .theme-grid { grid-template-columns: 1fr; } }
.theme-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.theme-card:hover { border-color: var(--green); transform: translateY(-3px); }
.theme-card .icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.theme-card h3 { margin-bottom: 0.5rem; }
.theme-card p { margin-bottom: 0; font-size: 0.95rem; }
.theme-card .focus { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.74rem; color: var(--green-deep); line-height: 1.7; }

/* ---- Process trail (uses the pulse line as connective tissue) ---- */
.trail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .trail { grid-template-columns: 1fr; } }
.trail-step { position: relative; padding-top: 1.2rem; }
.trail-step .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--green); display: block; margin-bottom: 0.6rem; }
.trail-step h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.trail-step p { font-size: 0.92rem; margin-bottom: 0; }

.trail-vertical { display: flex; flex-direction: column; gap: 0; max-width: 640px; }
.trail-vertical .v-step { display: flex; gap: 1.4rem; padding: 1.3rem 0; border-bottom: 1px dashed var(--line); }
.trail-vertical .v-step:last-child { border-bottom: none; }
.trail-vertical .v-step .num { font-family: var(--font-mono); color: var(--green); font-size: 0.85rem; flex: none; width: 2.4rem; padding-top: 0.15rem; }
.trail-vertical .v-step h3 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.trail-vertical .v-step p { margin-bottom: 0; font-size: 0.92rem; }

/* ---- Initiative / opportunity cards ---- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }
.init-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.init-card .tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.init-card h3 { margin: 0.5rem 0 0.4rem; font-size: 1.1rem; }
.init-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- CTA band ---- */
.cta-band { background: var(--green); color: var(--white); border-radius: 6px; padding: clamp(2.4rem, 6vw, 4rem); text-align: left; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.86); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ---- Timeline (About) ---- */
.timeline { display: flex; flex-direction: column; max-width: 560px; }
.tl-item { position: relative; padding: 0 0 2.2rem 2.2rem; border-left: 2px solid var(--line); }
.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -7px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 3px solid var(--paper); }
.tl-item .yr { font-family: var(--font-mono); font-size: 0.8rem; color: var(--green-deep); display: block; margin-bottom: 0.3rem; }
.tl-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.tl-item p { font-size: 0.92rem; margin-bottom: 0; }

/* ---- Values ---- */
.values-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.value-chip { border: 1px solid var(--line); border-radius: 999px; padding: 0.7em 1.3em; font-size: 0.92rem; background: var(--white); }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1.4rem; }
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card .avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius); background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; color: var(--green-deep); margin-bottom: 0.9rem; }
/* Cut-out portrait on the site green (image has a transparent background) */
.team-card .avatar--photo { background: var(--green); padding: 0; overflow: hidden; filter: grayscale(100%);}
.team-card .avatar--photo:hover { background: var(--green); padding: 0; overflow: hidden; filter: grayscale(0%);}
.team-card .avatar--photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.team-card .role { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }

/* ---- Partner marquee ---- */
.partner-marquee {
  overflow: hidden;
  padding: 0.75rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partner-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: partner-scroll 55s linear infinite;
  will-change: transform;
}
.partner-marquee:hover .partner-track,
.partner-marquee:focus-within .partner-track { animation-play-state: paused; }

.partner-card {
  flex: 0 0 auto;
  width: auto;
  height: clamp(58px, 9vw, 80px);
  aspect-ratio: auto;
  padding: 0 clamp(1rem, 2.5vw, 1.6rem);
  margin-right: clamp(0.5rem, 1.6vw, 0.9rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card img {
  height: 100%;
  width: auto;
  max-width: clamp(110px, 20vw, 170px);
  object-fit: contain;
  padding: 0.6rem 0;
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-marquee { overflow-x: auto; }
  .partner-track { animation: none; }
}

/* ---- Partners strip ---- */
/* ---- Partners marquee: continuous infinite auto-scroll, pauses on hover/focus.
   Track holds two identical sets of cards; each card carries a right margin so
   one set is exactly half the track width and translateX(-50%) loops seamlessly. */
.partner-card {
  flex: 0 0 auto;
  height: clamp(60px, 9vw, 84px);
  padding: 0 clamp(1rem, 2.5vw, 1.6rem);
  margin-right: clamp(0.5rem, 1.6vw, 0.9rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos: normalise by height so wide wordmarks and square marks read as
   the same optical weight. object-fit needs both dimensions set. */
.partner-card img {
  height: 100%;
  width: auto;
  max-width: clamp(110px, 20vw, 168px);
  object-fit: contain;
  padding: 0.7rem 0;
}

/* Mute at rest so 11 sets of brand colours don't fight each other.
   Delete both rules if you want them full colour. */
.partner-card img { filter: grayscale(1); opacity: 0.7; transition: filter .25s ease, opacity .25s ease; }
.partner-marquee:hover .partner-card img { filter: none; opacity: 1; }

/* ---- Opportunity sections ---- */
.opp-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; padding: 2.6rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.opp-block:last-child { border-bottom: none; }
@media (max-width: 800px) { .opp-block { grid-template-columns: 1fr; gap: 1.2rem; } }
.opp-block .icon { font-size: 1.6rem; }
.opp-list { list-style: none; margin: 1rem 0 1.4rem; padding: 0; display: grid; gap: 0.5rem; }
.opp-list li { position: relative; padding-left: 1.3rem; font-size: 0.95rem; color: var(--ink-soft); }
.opp-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.opp-empty { font-style: italic; color: var(--ink-soft); font-size: 0.92rem; }

/* ---- Form ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 0.98rem; padding: 0.8em 0.9em; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1rem; }
@media (max-width: 520px) { .checkbox-grid { grid-template-columns: 1fr; } }
.checkbox-item { display: flex; align-items: center; gap: 0.6em; font-size: 0.92rem; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--green); }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.6rem; }
.form-status { font-size: 0.9rem; margin-top: 0.9rem; font-family: var(--font-mono); display: none; }
.form-status.visible { display: block; }
.form-status.ok { color: var(--green-deep); }
.form-status.err { color: #A33A2A; }

/* ---- Contact info cards ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: 0.9em; font-size: 1rem; }
.info-list .k { font-family: var(--font-mono); font-size: 0.78rem; color: var(--green-deep); width: 2rem; flex: none; padding-top: 0.2em; }
.social-row { display: flex; gap: 1.1rem; margin-top: 1.6rem; flex-wrap: wrap; }
.social-row a { font-family: var(--font-mono); font-size: 0.8rem; border: 1px solid var(--line); padding: 0.6em 1.1em; border-radius: 999px; transition: border-color 0.2s ease, color 0.2s ease; }
.social-row a:hover { border-color: var(--green); color: var(--green-deep); }

/* ---- Footer (footer-01 layout: brand + blurb + social, link columns, contact, rule, centered copyright) ---- */
.site-footer {
  background: var(--paper-alt);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
  gap: 2.75rem 2rem;
  padding-bottom: 2.75rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand-col { display: flex; flex-direction: column; gap: 1.25rem; max-width: 34ch; }
@media (max-width: 900px) { .footer-brand-col { grid-column: 1 / -1; max-width: none; } }
.footer-brand-col img { height: 36px; width: auto; }
/* Capped at four lines; width tuned so the copy wraps to exactly four. */
.footer-blurb { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); max-width: 44ch; }

.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social a { color: var(--ink-soft); display: inline-flex; transition: color 0.15s ease; }
.footer-social a:hover { color: var(--green-deep); }
.footer-social svg { width: 20px; height: 20px; display: block; }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-col li { font-size: 0.95rem; }
.footer-col a { font-size: 0.95rem; color: var(--ink-soft); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--green-deep); }
.footer-col p { font-size: 0.95rem; margin: 0; color: var(--ink-soft); max-width: none; }
/* Outdent the logo so the nav/contact column heads line up with the blurb's first line. */
.footer-col { margin-top: calc(36px + 1.25rem); }
@media (max-width: 900px) { .footer-col { margin-top: 0; } }

.footer-sep { height: 1px; width: 100%; background: var(--line); border: 0; margin: 0; }
.footer-copy { text-align: center; font-size: 0.82rem; color: var(--ink-soft); padding-top: 1.75rem; margin: 0 auto; max-width: none; }

/* ---- Page header (interior pages) ---- */
.page-hero { padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(1.8rem, 4vw, 2.6rem); }
.page-hero .lede { font-size: 1.15rem; max-width: 620px; }

/* ---- Photo grid (field imagery) ---- */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 860px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-grid figure:hover img { transform: scale(1.04); }
.photo-caption { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); margin-top: 1rem; }

/* ---- Utility ---- */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 2.5rem; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Contact form: honeypot + optional-field hint ---- */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field label .opt { color: var(--ink-soft); font-weight: 400; font-size: 0.85em; }
