/* Nields Community Garden — shared styles */
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@300;400;500;700&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* No italics anywhere */
em, i, cite { font-style: normal; }

:root {
  --ink: #1F2A0E;
  --ink-soft: #2D3A18;
  --cream: #EFE9D6;
  --cream-soft: #F5F1E2;
  --peach: #FFA26A;
  --lime: #A6CC4F;
  --olive: #8B8050;
  --olive-soft: #B0A77A;
  --line: rgba(31, 42, 14, 0.14);

  --accent: var(--peach);
  --bg: var(--cream);
  --fg: var(--ink);

  --pad-x: clamp(20px, 5vw, 64px);
  --gap: clamp(16px, 2vw, 28px);
  --max-w: 1440px;

  --serif: 'Alegreya Sans', -apple-system, system-ui, sans-serif;
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
}

[data-theme="dark"] { --line: rgba(31, 42, 14, 0.14); }

.dark-band {
  background: var(--ink);
  color: var(--cream);
  --fg: var(--cream);
  --line: rgba(239, 233, 214, 0.16);
}

[data-accent="lime"] { --accent: var(--lime); }
[data-accent="peach"] { --accent: var(--peach); }
[data-density="compact"] { --pad-x: clamp(16px, 3vw, 48px); --gap: clamp(12px, 1.5vw, 20px); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--cream-soft);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-wrap {
  width: 100%;
  margin: 0 auto;
  background: var(--cream-soft);
  overflow: hidden;
}

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}

.display {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}

p { text-wrap: pretty; }

/* ─── Nav ─────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.nav-logo-img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(31,42,14,0.06); }
.nav-links a.active { background: var(--ink); color: var(--cream); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--ink) !important;
  padding: 10px 18px !important;
}

@media (max-width: 1000px) {
  .nav-links a:not(.nav-cta):not(.nav-mobile-keep) { display: none; }
}

.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
@media (max-width: 1000px) {
  .nav-hamburger { display: flex; }
  .nav-links .nav-mobile-keep { display: none; }
}

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(31,42,14,0.6);
  animation: navFadeIn 0.2s ease;
  display: none;
}
.nav-mobile-overlay.open { display: block; }
@keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }
.nav-mobile-menu {
  position: absolute; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column;
  padding: 20px 24px;
  animation: navSlideIn 0.25s ease;
}
@keyframes navSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.nav-mobile-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
}
.nav-mobile-close {
  background: none; border: none; color: var(--cream);
  font-size: 24px; cursor: pointer; padding: 8px;
}
.nav-mobile-links {
  display: flex; flex-direction: column; gap: 0;
}
.nav-mobile-links a {
  text-decoration: none; color: var(--cream);
  font-size: 18px; font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(239,233,214,0.12);
}
.nav-mobile-links a.active { color: var(--accent); }
.nav-mobile-links a:hover { color: var(--accent); }
.nav-mobile-cta {
  display: block; text-align: center;
  margin-top: auto; margin-bottom: 24px;
  padding: 16px; border-radius: 6px;
  background: var(--accent); color: var(--ink);
  font-weight: 600; font-size: 16px;
  text-decoration: none;
}

/* ─── Buttons ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }

/* ─── Sections ──────────────────────── */
section {
  padding: clamp(48px, 7vw, 120px) var(--pad-x);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-head {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: var(--gap);
  margin-bottom: 48px;
  align-items: end;
}
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; } }
.section-head h2 { font-size: clamp(36px, 5vw, 72px); }

/* ─── Footer ────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--pad-x) 32px;
}
.footer > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  opacity: 0.6; margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { color: inherit; text-decoration: none; opacity: 0.85; font-size: 14px; }
.footer a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(239,233,214,0.15);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; opacity: 0.5;
}

/* ─── Tile / icon grid ──────────────── */
.icon-tile {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  border-radius: 0;
}
.tile-cream { background: var(--cream); color: var(--ink); }
.tile-ink { background: var(--ink); color: var(--cream); }
.tile-peach { background: var(--peach); color: var(--ink); }
.tile-lime { background: var(--lime); color: var(--ink); }
.tile-olive { background: var(--olive); color: var(--cream); }

/* photo placeholder */
.placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(31,42,14,0.06) 0 8px, rgba(31,42,14,0.0) 8px 16px),
    var(--cream-soft);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* small chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent); color: var(--ink);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
}
.chip-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
}

/* ─── Home page ────────────────────── */
.hero {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 88vh;
  padding-top: clamp(48px, 7vw, 100px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  max-width: none;
  color: var(--cream);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('hero-aerial-dark.png') center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}
.hero-center {
  max-width: 880px;
  display: grid;
  justify-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.hero-logo {
  margin-bottom: 36px;
  width: 120px; height: auto;
}
.hero-logo img {
  width: 100%; height: auto;
  display: block;
}
.hero .eyebrow { opacity: 0.85; color: var(--cream); }
.hero .btn-ghost { color: var(--cream); border-color: rgba(239,233,214,0.4); }
.hero .btn-ghost:hover { background: rgba(239,233,214,0.1); }
.hero h1 { margin: 24px 0 28px; line-height: 0.8; }
.hero h1 em { font-style: normal; color: var(--accent); font-weight: 300; }
.hero-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 600px;
  opacity: 0.85;
}
.hero-cta {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}

/* Photo grid */
.photo-grid-section { padding: 0 !important; max-width: none; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.pg-cell {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}
.pg-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* About preview */
.about-preview-head { display: block; }
.about-preview-head h2 { width: 50%; }
@media (max-width: 760px) { .about-preview-head h2 { width: 100%; } }
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--cream-soft);
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.about-card-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.about-card-icon > div { width: 48px; }
.about-card h3 { font-size: 22px; margin-bottom: 10px; }
.about-card p { font-size: 14px; opacity: 0.8; line-height: 1.55; }

/* Saturdays callout */
.saturdays {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  scroll-margin-top: 100px;
}
.saturdays-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 48px;
  row-gap: 56px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .saturdays-inner { grid-template-columns: 1fr; row-gap: 40px; }
}
.saturdays-icon { color: var(--accent); }
.saturdays-icon > div { width: 96px; }
.saturdays-body h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 16px;
}
.saturdays-body p { font-size: 17px; opacity: 0.85; max-width: 60ch; }
.saturdays-form {
  grid-column: 1 / -1;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.saturdays-form iframe {
  width: 100%;
  height: 1200px;
  border: 0;
  display: block;
}

/* Stats */
.stats {
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
  background: var(--accent);
  color: var(--ink);
  max-width: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.85;
}

/* ─── About page ────────────────────── */
.about-hero { padding-top: clamp(60px, 8vw, 120px); padding-bottom: clamp(40px, 5vw, 80px); }
.about-hero h1 { margin-top: 24px; max-width: 14ch; line-height: 0.85; }
.about-hero h1 em { font-style: normal; color: var(--accent); font-weight: 400; line-height: 0.65; }
.about-hero-lede { font-size: clamp(18px, 1.6vw, 22px); max-width: 640px; opacity: 0.85; margin-top: 32px; }

.photostrip { padding-top: 24px; padding-bottom: 24px; }
.photostrip-wide {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 4px;
}
.photostrip-wide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 64px);
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.big-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 32px;
  max-width: 22ch;
}
.big-headline em { font-style: normal; color: var(--accent); font-weight: 400; }
.two-col-main p { max-width: 60ch; margin-bottom: 16px; opacity: 0.88; }

.timeline-track { position: relative; }
.timeline-row {
  display: grid;
  grid-template-columns: 100px 30px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timeline-row:first-child { border-top: 1px solid var(--line); }
.timeline-year { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); margin-top: 12px; }
.timeline-body h3 { font-size: 22px; margin-bottom: 8px; }
.timeline-body p { opacity: 0.75; max-width: 56ch; font-size: 15px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 4px;
  background: var(--ink-soft);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.team-role { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 12px; }
.team-card p { font-size: 14px; opacity: 0.8; }

/* ─── Events page ───────────────────── */
.events-hero { padding-top: clamp(60px, 8vw, 120px); padding-bottom: 32px; }
.events-hero h1 { margin-top: 24px; max-width: 14ch; }
.events-hero h1 em { color: var(--accent); font-style: normal; font-weight: 400; }
.events-lede { max-width: 600px; font-size: clamp(18px, 1.6vw, 22px); margin-top: 32px; opacity: 0.85; }

.big-saturday-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 800px) { .big-saturday-grid { grid-template-columns: 1fr; } }
.big-saturday-art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}
.big-saturday-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.big-saturday-body h2 {
  font-size: clamp(48px, 6vw, 96px);
  margin: 16px 0 24px;
}
.big-saturday-body p {
  font-size: 18px;
  opacity: 0.88;
  margin-bottom: 24px;
  max-width: 50ch;
}
.big-saturday-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 8px;
  font-size: 15px;
}
.big-saturday-list li { display: flex; align-items: baseline; gap: 12px; }
.big-saturday-list span { flex: 0 0 auto; opacity: 0.5; }

.events-list { padding-top: 24px; }
.events-rows { display: grid; gap: 0; }
.event-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.event-row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 760px) {
  .event-row { grid-template-columns: 100px 1fr; }
  .event-cta { grid-column: 1 / -1; }
}
.event-big {
  background: var(--accent);
  color: var(--ink);
  padding: 32px;
  border-radius: 4px;
  border: none !important;
  margin: 8px 0;
}
.event-big + .event-row, .event-row + .event-big { border-top-color: transparent; }
.event-date-day { font-family: var(--serif); font-size: clamp(28px, 3vw, 36px); line-height: 1; font-weight: 500; }
.event-date-dow { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; margin-top: 8px; }
.event-time { font-size: 12px; opacity: 0.6; margin-top: 4px; font-variant-numeric: tabular-nums; }
.event-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31,42,14,0.08);
  margin-bottom: 12px;
}
.event-tag-accent { background: var(--ink); color: var(--cream); }
.event-body h3 { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 8px; }
.event-body p { opacity: 0.85; max-width: 60ch; }
.event-cta { display: flex; justify-content: flex-end; }

/* ─── Contact page ──────────────────── */
.ct-hero { padding-top: clamp(60px, 8vw, 120px); padding-bottom: clamp(32px, 4vw, 64px); }
.ct-hero h1 { margin-top: 24px; max-width: 14ch; }
.ct-hero h1 em { font-style: normal; color: var(--accent); font-weight: 400; }

.ct-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 80px); }
@media (max-width: 900px) { .ct-grid { grid-template-columns: 1fr; } }
.ct-block { padding: 24px 0; border-top: 1px solid var(--line); }
.ct-block:last-child { border-bottom: 1px solid var(--line); }
.ct-block h3 {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.6; font-weight: 600; font-family: var(--sans); margin-bottom: 12px;
}
.ct-block p { font-size: 17px; line-height: 1.6; }
.ct-block a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; opacity: 0.85; }

.ct-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ct-map svg { width: 100%; height: auto; display: block; }
.ct-map-caption {
  padding: 12px 16px;
  background: var(--cream-soft);
  font-size: 12px;
  opacity: 0.7;
  border-top: 1px solid var(--line);
}

.ct-quick { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.ct-form-section { background: var(--cream-soft); }
.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
}
@media (max-width: 800px) { .ct-form-grid { grid-template-columns: 1fr; } }
.ct-form-grid h2 { font-size: clamp(28px, 3.2vw, 44px); margin-top: 16px; max-width: 18ch; }

.ctf {
  background: var(--bg);
  padding: clamp(24px, 4vw, 48px);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.ctf .field { margin-bottom: 24px; }
.ctf input, .ctf textarea, .ctf select {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  outline: none;
}
.ctf input:focus, .ctf textarea:focus, .ctf select:focus { border-bottom-color: var(--accent); }
.ctf .field-label {
  display: block;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; opacity: 0.6;
  margin-bottom: 8px;
}
.ctf-success {
  padding: 24px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
}

/* ─── Get-involved page ─────────────── */
.gi-hero { padding-top: clamp(60px, 8vw, 120px); padding-bottom: clamp(40px, 5vw, 80px); }
.gi-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.gi-hero h1 { margin-top: 24px; }
.gi-hero h1 em { font-style: normal; color: var(--accent); font-weight: 400; }
.gi-lede { font-size: clamp(18px, 1.6vw, 22px); margin-top: 28px; max-width: 50ch; opacity: 0.85; }

.ways-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1000px) { .ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ways-grid { grid-template-columns: 1fr; } }
.way-card {
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.way-card:last-child { border-right: none; }
.way-card:hover { background: var(--accent); color: var(--ink); }
.way-num { font-family: var(--serif); font-size: 32px; opacity: 0.4; margin-bottom: 32px; }
.way-card h3 { font-size: 28px; margin-bottom: 12px; }
.way-card p { font-size: 14px; opacity: 0.85; flex: 1; }
.way-cta { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; margin-top: 16px; }

.form-section { background: var(--cream-soft); }
.form-shell {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 900px) { .form-shell { grid-template-columns: 1fr; } }
.form-side h2 { font-size: clamp(36px, 4vw, 56px); margin: 16px 0 16px; }
.form-side p { opacity: 0.8; max-width: 32ch; margin-bottom: 32px; }

.form-main {
  background: var(--bg);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 460px;
  display: flex; flex-direction: column;
}
.step-pane { flex: 1; display: none; }
.step-pane.active { display: block; }
.step-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; font-weight: 600; margin-bottom: 16px; }
.step-pane h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.step-help { opacity: 0.75; margin-bottom: 24px; max-width: 50ch; }

.field { display: block; margin-bottom: 24px; }
.field-label {
  display: block;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; opacity: 0.6;
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; }

.seg {
  display: inline-flex; gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--bg);
}
.seg-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  color: var(--fg);
}
.seg-btn.active { background: var(--ink); color: var(--cream); }

.check-grid { display: grid; gap: 8px; }
.check-card {
  display: grid; grid-template-columns: 28px 1fr; gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans); text-align: left;
  cursor: pointer;
  color: var(--fg);
  transition: all 0.15s;
}
.check-card:hover { border-color: var(--accent); }
.check-card.selected { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.check-box {
  width: 22px; height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.check-card.selected .check-box { background: var(--ink); color: var(--accent); border-color: var(--ink); }
.check-label { font-size: 16px; font-weight: 600; }
.check-sub { font-size: 13px; opacity: 0.7; margin-top: 2px; }

.ways-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 700px) { .ways-tile-grid { grid-template-columns: repeat(2, 1fr); } }
.way-tile {
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--sans);
  text-align: left;
  cursor: pointer;
  color: var(--fg);
  transition: all 0.15s;
  display: grid; gap: 8px;
}
.way-tile:hover { border-color: var(--accent); }
.way-tile.selected { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.way-tile-icon { width: 36px; height: 36px; }
.way-tile-icon svg { width: 100%; height: 100%; }
.way-tile-label { font-size: 14px; font-weight: 600; }
.way-tile-sub { font-size: 12px; opacity: 0.75; }

.check-row {
  display: flex; gap: 12px; align-items: start;
  margin-top: 16px;
  font-size: 14px;
}
.check-row input { width: 18px; height: 18px; margin-top: 3px; }

.form-nav {
  display: flex; justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-nav button:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

.done-pane { text-align: center; padding-top: 16px; }
.done-pane h3 { margin-bottom: 16px; }
.done-pane p { opacity: 0.85; max-width: 52ch; margin: 0 auto 32px; }
.done-tile { width: 120px; height: 120px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; }
.done-tile > div { width: 80px; }
.done-summary {
  background: var(--cream-soft);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  display: grid; gap: 12px;
}
.done-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; font-size: 14px; align-items: baseline; }
.done-row span { opacity: 0.6; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* Donate */
.donate-strip { background: var(--accent); color: var(--ink); }
.donate-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .donate-grid { grid-template-columns: 1fr; } }
.donate-grid h2 { font-size: clamp(36px, 4vw, 56px); margin: 12px 0 16px; }
.donate-grid p { max-width: 50ch; }
.donate-amounts { display: flex; flex-wrap: wrap; gap: 8px; }
.donate-amount {
  background: var(--ink); color: var(--cream);
  border: none;
  padding: 16px 24px;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
}
.donate-amount:hover { background: var(--ink-soft); }
.donate-other { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
