/* ========================================================================
   SOUTHERN OHIO SOLES — landing.css
   ------------------------------------------------------------------------
   Design language for the public landing + advocate pages. Built on the
   provided style system: Hedvig Letters Serif (display) + Inter (UI/body),
   pill geometry, tinted warm surfaces, minimal elevation. Warm nonprofit
   palette: terracotta primary action, pine-green grounding panels, cream
   canvas, deep neutral ink. All classes are `ln-` namespaced.
   ======================================================================== */

:root {
  /* Surfaces */
  --canvas:   #f8f4ec;   /* page background */
  --surface:  #f1eadd;   /* warm tinted card surface */
  --white:    #ffffff;   /* functional surfaces (forms) only */

  /* Ink + accents */
  --ink:      #20201c;   /* primary text — deep neutral, not brown, not pure black */
  --muted:    #6c6557;   /* secondary text / helper */
  --clay:     #c8643a;   /* primary action (terracotta) */
  --clay-deep:#ad4f29;   /* hover */
  --clay-soft:#eecbb6;   /* clay tint */
  --pine:     #2f4a3e;   /* grounding panels + footer */
  --pine-deep:#253b31;
  --line:     #e6dcc9;   /* hairline border on cream */
  --line-soft:#efe7d8;

  /* Type — League Spartan (display/headings) + Poppins (body/UI) */
  --serif: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1200px;
  --r-card: 22px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01" on, "cv11" on;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

.ln-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.ln-h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); line-height: 1.02; }
.ln-h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; }
.ln-h3 { font-size: 1.5rem; line-height: 1.15; }
.ln-lead { font-size: 1.15rem; line-height: 1.6; color: var(--muted); }

/* ---- Buttons (pill geometry) ---- */
.ln-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  text-decoration: none; border: 1.5px solid transparent; border-radius: var(--r-pill);
  padding: 0.8rem 1.6rem; cursor: pointer; transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.ln-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ln-btn--lg { padding: 0.95rem 1.9rem; font-size: 1.05rem; }
.ln-btn--sm { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.ln-btn--block { width: 100%; }
.ln-btn--clay { background: var(--clay); color: #fff; }
.ln-btn--clay:hover { background: var(--clay-deep); }
.ln-btn--ink { background: var(--ink); color: var(--canvas); }
.ln-btn--ink:hover { background: #34332c; }
.ln-btn--pine { background: var(--pine); color: #fff; }
.ln-btn--pine:hover { background: var(--pine-deep); }
.ln-btn--cream { background: var(--canvas); color: var(--ink); }
.ln-btn--cream:hover { background: #fff; }
.ln-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.ln-btn--ghost:hover { border-color: var(--ink); }
.ln-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.ln-btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ========================================================================
   NAV
   ======================================================================== */
.ln-nav { position: sticky; top: 0; z-index: 100; background: rgba(248,244,236,0.85); backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.25s, background 0.25s; }
.ln-nav.is-stuck { border-bottom-color: var(--line); background: rgba(248,244,236,0.96); }
.ln-nav__inner { max-width: var(--wrap); margin: 0 auto; padding: 0.8rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ln-logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.ln-logo img { width: 40px; height: 40px; }
.ln-logo__name { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em; color: var(--ink); white-space: nowrap; }
.ln-nav__links { display: flex; align-items: center; gap: 0.15rem; }
.ln-navitem { position: relative; }
.ln-navlink { display: inline-flex; align-items: center; gap: 0.3rem; font-family: var(--sans); font-size: 0.97rem; font-weight: 500; color: var(--ink); background: none; border: none; cursor: pointer; padding: 0.55rem 0.85rem; border-radius: var(--r-pill); transition: background 0.15s, color 0.15s; }
.ln-navlink:hover { color: var(--clay-deep); background: rgba(200,100,58,0.08); }
.ln-chev { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.ln-navitem.open .ln-chev { transform: rotate(180deg); }
.ln-drop { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 320px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 0.5rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s, transform 0.18s, visibility 0.18s; }
/* Invisible bridge across the gap so hovering into the panel doesn't close it */
.ln-drop::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.ln-navitem.open .ln-drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.ln-drop__item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.7rem 0.8rem; border-radius: 14px; text-decoration: none; transition: background 0.14s; }
.ln-drop__item:hover { background: var(--surface); }
.ln-drop__ic { flex-shrink: 0; width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--surface); display: flex; align-items: center; justify-content: center; }
.ln-drop__item:hover .ln-drop__ic { background: var(--clay-soft); }
.ln-drop__ic svg { width: 18px; height: 18px; fill: none; stroke: var(--clay-deep); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ln-drop__t { display: block; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.ln-drop__d { display: block; font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.ln-nav__right { display: flex; align-items: center; gap: 0.55rem; }
.ln-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.ln-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.ln-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ln-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ln-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.ln-mobile { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86vw); z-index: 120; background: var(--canvas); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; padding: 5.5rem 1.5rem 2rem; }
.ln-mobile.open { transform: translateX(0); }
.ln-mobile__links { display: flex; flex-direction: column; }
.ln-mobile__links a { text-decoration: none; color: var(--ink); font-size: 1.05rem; font-weight: 500; padding: 0.7rem 0.4rem; border-radius: 10px; }
.ln-mobile__links a:hover { background: var(--surface); color: var(--clay-deep); }
.ln-mobile__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-deep); margin: 1.1rem 0.4rem 0.3rem; }
.ln-mobile__label:first-child { margin-top: 0; }
.ln-mobile__divider { height: 1px; background: var(--line); margin: 1rem 0.4rem; }
.ln-scrim { position: fixed; inset: 0; z-index: 110; background: rgba(20,20,18,0.34); backdrop-filter: blur(2px); }

/* ========================================================================
   HERO — full-bleed photo + overlay + in-hero donation card
   ======================================================================== */
.ln-hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.ln-hero__bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.ln-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,22,18,0.82) 0%, rgba(20,22,18,0.6) 42%, rgba(20,22,18,0.32) 100%); }
.ln-hero__inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 7rem 1.5rem 5rem; width: 100%; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.ln-hero__copy { color: #fff; max-width: 39rem; }
.ln-hero__h1 { color: #fff; font-size: clamp(2.4rem, 4.2vw, 3.4rem); line-height: 1.05; margin: 0 0 1.3rem; }
.ln-hero__sub { color: rgba(255,255,255,0.88); font-size: 1.16rem; line-height: 1.6; margin: 0 0 2rem; }
.ln-hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

/* Donation card */
.ln-give-card { background: var(--white); border-radius: var(--r-card); padding: 1.75rem; box-shadow: 0 24px 60px -24px rgba(20,20,18,0.5); max-width: 420px; justify-self: end; width: 100%; }
.ln-give-card__title { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--muted); text-align: center; margin-bottom: 1rem; }
.ln-freq { display: flex; gap: 0.4rem; background: var(--surface); border-radius: var(--r-pill); padding: 4px; margin-bottom: 1.2rem; }
.freq-btn { flex: 1; border: none; background: none; cursor: pointer; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--muted); padding: 0.6rem; border-radius: var(--r-pill); transition: background 0.15s, color 0.15s; }
.freq-btn.active { background: var(--white); color: var(--clay-deep); box-shadow: 0 1px 4px rgba(20,20,18,0.12); }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; margin-bottom: 0.8rem; }
.amount-btn { border: 1.5px solid var(--line); background: var(--white); cursor: pointer; padding: 0.8rem 0.4rem; border-radius: 14px; font-family: var(--sans); font-size: 1.05rem; font-weight: 600; color: var(--ink); transition: border-color 0.15s, background 0.15s, color 0.15s; }
.amount-btn:hover { border-color: var(--clay); }
.amount-btn.selected { border-color: var(--clay); background: var(--clay); color: #fff; }
.ln-custom { position: relative; margin-bottom: 1rem; }
.ln-custom .currency { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 600; }
.custom-amount-input { width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--white); padding: 0.8rem 1rem 0.8rem 2rem; font-family: var(--sans); font-size: 1rem; color: var(--ink); }
.custom-amount-input:focus { outline: none; border-color: var(--clay); }
.ln-check { display: flex; align-items: flex-start; gap: 0.55rem; margin-bottom: 1.2rem; font-size: 0.86rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.ln-check input { margin-top: 0.15rem; accent-color: var(--clay); flex-shrink: 0; }
.donate-error { margin-top: 0.8rem; color: #b3402f; font-size: 0.88rem; text-align: center; }
.ln-give-card__fine { font-size: 0.76rem; color: var(--muted); text-align: center; margin: 0.85rem 0 0; line-height: 1.5; }

/* ========================================================================
   SECTIONS
   ======================================================================== */
.ln-section { padding: 5.5rem 1.5rem; }
.ln-section--surface { background: var(--surface); }
.ln-section__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.ln-section__head .ln-lead { margin: 1rem 0 0; }

/* Mission + facts */
.ln-mission { text-align: center; max-width: 1100px; margin: 0 auto; }
.ln-mission__lead { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2.3vw, 1.75rem); line-height: 1.35; color: var(--ink); margin: 0 0 3rem; }
.ln-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid var(--line); padding-top: 2.5rem; }
.ln-fact__n { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--clay); line-height: 1; display: block; margin-bottom: 0.5rem; }
.ln-fact__l { font-size: 0.95rem; color: var(--muted); }

/* Roles */
.ln-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 980px; margin: 0 auto; }
.ln-role { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2.25rem; display: flex; flex-direction: column; min-width: 0; }
.ln-role__ic { width: 52px; height: 52px; border-radius: var(--r-pill); background: var(--surface); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.ln-role__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--clay-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ln-role__t { font-size: 1.55rem; margin-bottom: 0.7rem; }
.ln-role__d { font-size: 0.98rem; color: var(--muted); line-height: 1.6; margin: 0 0 1.3rem; }
.ln-role__list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ln-role__list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; color: var(--ink); }
.ln-role__list svg { width: 16px; height: 16px; flex-shrink: 0; fill: none; stroke: var(--clay); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ln-role .ln-btn { margin-top: auto; white-space: normal; }
.ln-role--closed { background: var(--surface); overflow: hidden; }
.ln-role__badge { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 3; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--ink); color: var(--canvas); padding: 0.35rem 0.75rem; border-radius: var(--r-pill); }
.ln-role__fade { filter: blur(3px); opacity: 0.5; pointer-events: none; user-select: none; }
.ln-role__lock { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.7rem; padding: 2rem; background: linear-gradient(180deg, rgba(241,234,221,0.5), rgba(241,234,221,0.88)); }
.ln-role__lock svg { width: 32px; height: 32px; fill: none; stroke: var(--muted); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ln-role__lock p { margin: 0; font-size: 0.95rem; font-weight: 500; color: var(--ink); max-width: 22em; line-height: 1.5; }

/* Steps */
.ln-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1020px; margin: 0 auto; }
.ln-step { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2rem; }
.ln-step__n { font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: var(--clay); line-height: 1; display: block; margin-bottom: 0.9rem; }
.ln-step__t { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ln-step__d { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ========================================================================
   MAP (pine panel)
   ======================================================================== */
.ln-map { position: relative; background: var(--pine); }
.ln-map__sticky { position: relative; height: 72vh; overflow: hidden; display: flex; }
.ln-map__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ln-map__copy { position: relative; z-index: 2; margin: auto auto auto max(1.5rem, calc((100% - var(--wrap)) / 2 + 1.5rem)); max-width: 25rem; color: #fff; pointer-events: none; will-change: opacity, transform; }
.ln-map__h2 { color: #fff; margin-bottom: 1rem; }
.ln-map__sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.6; margin: 0; }
.ln-county { fill: #3a5749; stroke: #2a4036; stroke-width: 0.75; vector-effect: non-scaling-stroke; transition: fill 0.18s ease; }
.ln-county:hover { fill: #4d7263; }
.ln-county--on { fill: var(--clay); stroke: #fbf4ec; stroke-width: 1.5; vector-effect: non-scaling-stroke; cursor: pointer; }
.ln-county--on:hover { fill: #d97a4e; }
.ln-clabel { font-family: var(--sans); font-weight: 600; fill: #1a1a1a; text-anchor: middle; dominant-baseline: central; opacity: 0; pointer-events: none; }

@media (max-width: 820px) {
  .ln-map__sticky { height: auto; flex-direction: column-reverse; justify-content: flex-start; padding: 3.5rem 1.5rem; gap: 1.75rem; }
  .ln-map__svg { position: relative; height: 34vh; }
  .ln-map__copy { margin: 0; max-width: 100%; }
}

/* ========================================================================
   STORY (image + text, clean 50/50, no tilt)
   ======================================================================== */
.ln-story { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.ln-story__media { min-height: 480px; background: var(--surface); }
.ln-story__media img { width: 100%; height: 100%; object-fit: cover; }
.ln-story__text { background: var(--pine); color: #fff; padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.ln-story__text h2 { color: #fff; margin-bottom: 1.3rem; }
.ln-story__text p { color: rgba(255,255,255,0.82); font-size: 1.08rem; line-height: 1.7; margin: 0 0 1.2rem; }
.ln-story__text .ln-btn { align-self: flex-start; margin-top: 1rem; }

/* ========================================================================
   FOOTER (pine — not brown)
   ======================================================================== */
.ln-footer { background: var(--pine); color: rgba(255,255,255,0.72); padding: 4.5rem 1.5rem 2rem; }
.ln-footer__top { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.ln-logo--footer .ln-logo__name { color: #fff; }
.ln-footer__mission { font-size: 0.96rem; line-height: 1.65; margin: 1.2rem 0 1.4rem; max-width: 34em; color: rgba(255,255,255,0.7); }
.ln-footer__social { display: flex; gap: 0.6rem; }
.ln-footer__social a { width: 38px; height: 38px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: background 0.15s, border-color 0.15s; }
.ln-footer__social a:hover { background: var(--clay); border-color: var(--clay); }
.ln-footer__social svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ln-footer__nav { max-width: var(--wrap); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ln-footer__h { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 1rem; }
.ln-footer__nav a { display: block; text-decoration: none; color: rgba(255,255,255,0.74); font-size: 0.95rem; padding: 0.32rem 0; transition: color 0.15s; }
.ln-footer__nav a:hover { color: #fff; }
.ln-footer__bottom { max-width: var(--wrap); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.ln-footer__bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.ln-footer__bottom a:hover { color: #fff; }

/* ========================================================================
   FLOATING DONATE BUTTON (replaces back-to-top)
   ======================================================================== */
.ln-fab { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 95; display: inline-flex; align-items: center; gap: 0.5rem; background: var(--clay); color: #fff; font-family: var(--sans); font-weight: 600; font-size: 1rem; border: none; border-radius: var(--r-pill); padding: 0.85rem 1.5rem; cursor: pointer; box-shadow: 0 12px 30px -10px rgba(173,79,41,0.7); transition: background 0.18s, transform 0.18s, opacity 0.25s, visibility 0.25s; text-decoration: none; }
.ln-fab:hover { background: var(--clay-deep); transform: translateY(-2px); }
.ln-fab--hidden { opacity: 0; visibility: hidden; transform: translateY(14px); pointer-events: none; }
.ln-fab svg { width: 18px; height: 18px; fill: currentColor; }

/* ========================================================================
   ADVOCATE PAGE
   ======================================================================== */
.ln-page-hero { background: var(--pine); color: #fff; padding: 6.5rem 1.5rem 3.5rem; text-align: center; }
.ln-page-hero h1 { color: #fff; margin-bottom: 0.9rem; }
.ln-page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 38rem; margin: 0 auto; }
.ln-adv { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ln-adv__intro h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.ln-adv__intro p { color: var(--muted); line-height: 1.7; margin: 0 0 1rem; }
.ln-adv__steps { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.8rem; }
.ln-adv__steps li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.ln-adv__steps svg { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; fill: none; stroke: var(--clay); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ln-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2rem; }
.ln-form-card h3 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.ln-field { margin-bottom: 1.1rem; }
.ln-label { display: block; font-family: var(--sans); font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.ln-input, .ln-select { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; background: var(--white); padding: 0.75rem 0.9rem; font-family: var(--sans); font-size: 1rem; color: var(--ink); }
.ln-input:focus, .ln-select:focus { outline: none; border-color: var(--clay); }
.ln-submit-msg { margin-top: 1rem; font-size: 0.92rem; text-align: center; }
.ln-submit-msg.ok { color: var(--pine); }
.ln-submit-msg.err { color: #b3402f; }

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */
.ln-contact { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: start; max-width: 1040px; margin: 0 auto; }
.ln-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ln-textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.ln-contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ln-info { display: flex; gap: 1rem; align-items: flex-start; }
.ln-info__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--pine); display: flex; align-items: center; justify-content: center; }
.ln-info__ic svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ln-info__label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.ln-info__value { font-size: 1rem; color: var(--ink); text-decoration: none; line-height: 1.5; }
a.ln-info__value:hover { color: var(--clay-deep); }
.ln-callout { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.75rem; margin-top: 0.5rem; }
.ln-callout__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.ln-callout p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; margin: 0 0 1.1rem; }

/* ========================================================================
   DONATE PAGE
   ======================================================================== */
.ln-donate { max-width: 480px; margin: 0 auto; }
.ln-donate .ln-give-card { max-width: 100%; }
.ln-success { text-align: center; padding: 1.5rem 0.5rem; }
.ln-success__ic { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--surface); color: var(--pine); margin-bottom: 1.1rem; }
.ln-success__ic svg { width: 32px; height: 32px; }
.ln-success__h { font-size: 1.5rem; margin-bottom: 0.6rem; }
.ln-success__p { color: var(--muted); font-size: 1rem; line-height: 1.6; max-width: 340px; margin: 0 auto; }

/* ========================================================================
   GENERIC CONTENT (team, sponsors, our-work, reps)
   ======================================================================== */
.ln-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ln-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.ln-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2rem; }
.ln-card--surface { background: var(--surface); }
.ln-card__t { font-size: 1.35rem; margin-bottom: 0.6rem; }
.ln-card__d { font-size: 0.96rem; color: var(--muted); line-height: 1.6; margin: 0; }
.ln-prose { max-width: 760px; margin: 0 auto; }
.ln-prose p { font-size: 1.08rem; line-height: 1.7; color: var(--muted); margin: 0 0 1.2rem; }
.ln-prose h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 2.5rem 0 1rem; }
.ln-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: var(--wrap); margin: 0 auto; }
.ln-split__media img { width: 100%; border-radius: var(--r-card); display: block; }
.ln-split__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.ln-split__text p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.1rem; }

/* Team member cards */
.ln-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ln-member { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; text-align: center; }
.ln-member__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--surface); display: block; }
.ln-member__body { padding: 1.4rem; }
.ln-member__name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.ln-member__role { font-size: 0.88rem; font-weight: 600; color: var(--clay-deep); }

/* Tier cards */
.ln-tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2.25rem; display: flex; flex-direction: column; text-align: center; }
.ln-tier--featured { background: var(--pine); color: #fff; border-color: var(--pine); }
.ln-tier__name { font-size: 1.6rem; margin-bottom: 0.6rem; }
.ln-tier--featured .ln-tier__name { color: #fff; }
.ln-tier__d { font-size: 0.96rem; color: var(--muted); line-height: 1.6; margin: 0 0 1.6rem; flex: 1; }
.ln-tier--featured .ln-tier__d { color: rgba(255,255,255,0.82); }

/* Vertical numbered process list */
.ln-steplist { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.ln-steplist__item { display: flex; gap: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.75rem 2rem; }
.ln-steplist__n { font-family: var(--serif); font-weight: 700; font-size: 2rem; color: var(--clay); line-height: 1.1; flex-shrink: 0; width: 2.6rem; }
.ln-steplist__t { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.ln-steplist__d { color: var(--muted); font-size: 0.97rem; line-height: 1.6; margin: 0; }

/* County / partner-school cards */
.ln-county-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.75rem; }
.ln-county-card__name { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line); }
.ln-county-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.ln-county-card__list li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.95rem; color: var(--ink); }
.ln-county-card__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); flex-shrink: 0; }
.ln-county-card__note { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* Rep roster */
.ln-roster-group { margin-bottom: 3.5rem; }
.ln-roster-group__head { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.75rem; }
.ln-roster-group__title { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; white-space: nowrap; }
.ln-roster-group__rule { flex: 1; height: 1px; background: var(--line); }
.ln-roster-counties { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.ln-roster-counties--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.ln-roster-county__label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 1rem; }
.ln-roster-district { margin-bottom: 1.5rem; }
.ln-roster-district__label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--muted); margin-bottom: 0.5rem; }
.ln-rep { border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-bottom: 0.5rem; overflow: hidden; }
.ln-rep__btn { width: 100%; display: flex; align-items: center; gap: 0.6rem; background: none; border: none; cursor: pointer; padding: 0.8rem 1rem; font-family: var(--sans); text-align: left; }
.ln-rep__btn:hover { background: var(--surface); }
.ln-rep__name { font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.ln-rep__badge { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; background: var(--clay); color: #fff; padding: 0.15rem 0.5rem; border-radius: 999px; }
.ln-rep__year { font-size: 0.82rem; color: var(--muted); }
.ln-rep__chev { width: 9px; height: 9px; margin-left: auto; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform 0.2s; flex-shrink: 0; }
.ln-rep__btn[aria-expanded="true"] .ln-rep__chev { transform: rotate(-135deg); }
.ln-rep__panel { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.ln-rep__panel.is-open { max-height: 480px; }
.ln-rep__panel-in { padding: 0 1rem 1rem; }
.ln-rep__panel-in p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Eligibility card (dark hero) */
.ln-elig { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-card); padding: 1.75rem; }
.ln-elig__title { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-soft); margin-bottom: 1rem; }
.ln-elig__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.ln-elig__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.ln-elig__list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--clay-soft); flex-shrink: 0; margin-top: 0.45em; }

/* Reps hero split */
.ln-reps-hero { background: var(--pine); color: #fff; padding: 6.5rem 1.5rem 4rem; }
.ln-reps-hero__inner { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.ln-reps-hero h1 { color: #fff; margin-bottom: 1.2rem; }
.ln-reps-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.5rem; }
.ln-reps-hero__note { color: rgba(255,255,255,0.55) !important; font-size: 0.88rem !important; margin-top: 0.8rem !important; }
.ln-btn--disabled { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); cursor: not-allowed; pointer-events: none; }

/* Legal / privacy page */
.ln-legal { max-width: 800px; margin: 0 auto; }
.ln-legal__meta { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.ln-legal__meta-k { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.ln-legal__meta-v { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.ln-legal__meta-div { width: 1px; height: 32px; background: var(--line); }
.ln-legal__sec { margin-bottom: 2.75rem; }
.ln-legal__h { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.ln-legal__num { font-size: 0.7rem; font-weight: 700; color: var(--clay-deep); letter-spacing: 0.1em; }
.ln-legal__h h2 { font-size: 1.35rem; margin: 0; }
.ln-legal p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 0 0 1rem; }
.ln-legal p:last-child { margin-bottom: 0; }
.ln-legal a { color: var(--clay-deep); font-weight: 600; }
.ln-legal__callout { background: var(--surface); border-left: 3px solid var(--clay); border-radius: 10px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.ln-legal__callout p { margin: 0; color: var(--ink); font-size: 0.93rem; }
.ln-legal__cards { display: flex; flex-direction: column; gap: 1rem; }
.ln-legal__card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem 1.5rem; }
.ln-legal__card-t { font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.ln-legal__card p { font-size: 0.86rem; margin: 0; }
.ln-legal__list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ln-legal__list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.ln-legal__list li::before { content: ''; width: 6px; height: 6px; background: var(--clay); border-radius: 50%; flex-shrink: 0; margin-top: 0.55em; }
.ln-legal__contact { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2rem 2.25rem; }

/* Sponsor logo cards */
.ln-sponsor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ln-sponsor { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.ln-sponsor__logo { background: #fff; height: 150px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; border-bottom: 1px solid var(--line); }
.ln-sponsor__logo img { max-width: 100%; max-height: 100px; width: auto; object-fit: contain; }
.ln-sponsor__fallback { display: none; font-family: var(--serif); font-size: 1.05rem; color: var(--muted); text-align: center; }
.ln-sponsor__body { padding: 1.25rem 1.5rem 1.5rem; }
.ln-sponsor__name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.ln-sponsor__d { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.ln-sponsor-actions { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 820px) { .ln-sponsor-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ln-sponsor-grid { grid-template-columns: 1fr; } }

/* Plain name list (bronze sponsors) */
.ln-namelist { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 3rem; }
.ln-namelist li { padding: 0.75rem 0; border-bottom: 1px solid var(--line); break-inside: avoid; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
@media (max-width: 560px) { .ln-namelist { columns: 1; } }

/* Bio page */
.ln-bio { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.ln-bio__photo { width: 100%; border-radius: var(--r-card); display: block; }
.ln-bio__back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--clay-deep); text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; }
.ln-bio__back:hover { color: var(--clay); }
.ln-bio__back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ln-bio__name { font-family: var(--serif); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.ln-bio__role { font-size: 0.95rem; font-weight: 600; color: var(--clay-deep); margin-bottom: 1.5rem; }
.ln-bio__text p { font-size: 1.08rem; line-height: 1.75; color: var(--muted); margin: 0 0 1.1rem; }
@media (max-width: 760px) { .ln-bio { grid-template-columns: 1fr; gap: 2rem; } }

/* Dark CTA band */
.ln-cta { background: var(--pine); color: #fff; text-align: center; }
.ln-cta h2 { color: #fff; margin-bottom: 1rem; }
.ln-cta p { color: rgba(255,255,255,0.78); font-size: 1.08rem; line-height: 1.6; max-width: 40rem; margin: 0 auto 2rem; }
.ln-cta__actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* Benefit / feature list */
.ln-benefits { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.5rem; }
.ln-benefits li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink); }
.ln-benefits svg { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; fill: none; stroke: var(--clay); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 960px) {
  .ln-nav__links { display: none; }
  .ln-burger { display: flex; }
  .ln-hide-sm { display: none; }
  .ln-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem 1.5rem 3.5rem; }
  .ln-give-card { justify-self: stretch; max-width: 100%; }
  .ln-story { grid-template-columns: 1fr; }
  .ln-story__media { min-height: 320px; }
  .ln-story__text { padding: 3.5rem 1.75rem; }
  .ln-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .ln-adv { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 820px) {
  .ln-roles { grid-template-columns: 1fr; }
  .ln-steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .ln-facts { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .ln-footer__nav { grid-template-columns: 1fr 1fr; }
  .ln-footer__bottom { flex-direction: column; align-items: flex-start; }
  .ln-section { padding: 4rem 1.25rem; }
  .ln-fab { right: 1rem; bottom: 1rem; padding: 0.75rem 1.2rem; }
  /* On phones the floating Donate covers it; keep the nav from crowding the logo */
  .ln-nav__right .ln-btn--clay { display: none; }
}
@media (max-width: 960px) {
  .ln-contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .ln-split { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 820px) {
  .ln-grid-3, .ln-team { grid-template-columns: 1fr 1fr; }
  .ln-grid-2 { grid-template-columns: 1fr; }
  .ln-reps-hero { padding: 5rem 1.25rem 3rem; }
  .ln-reps-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ln-roster-counties, .ln-roster-counties--two { grid-template-columns: 1fr; gap: 1.5rem; }
  .ln-bio { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ln-field-row { grid-template-columns: 1fr; }
  .ln-grid-3, .ln-grid-2, .ln-team { grid-template-columns: 1fr; }
  .ln-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .ln-logo__name { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
