/* =====================================================================
   Center for Arts & Ecology — Field Guide design system
   Refined from the BlackRail CAE theme.
   Type: Fraunces (display) · Hanken Grotesk (text) · Spline Sans Mono (labels)
   ===================================================================== */

:root {
  /* greens */
  --spruce: #122019;     /* deepest — full-bleed dark sections */
  --forest: #24452f;     /* brand primary */
  --pine:   #356043;     /* lighter forest for rules/hover */
  --sage:   #889a76;     /* muted lichen green */
  --sage-pale: #c9d2bb;  /* pale lichen tint */

  /* warms */
  --clay:   #9f5230;     /* deepened clay */
  --terra:  #c2542b;
  --ember:  #ea5130;     /* logo orange — CTA pop */
  --ember-deep: #cf4322;

  /* neutrals / paper */
  --paper:  #f1e7d4;     /* page background */
  --paper-2:#ece0c8;     /* alt section */
  --ivory:  #fbf6ec;     /* cards / panels */
  --sand:   #e6d7ba;     /* tags, soft fills */
  --kraft:  #d4c19c;     /* deeper neutral */

  /* ink */
  --ink:    #1b2820;
  --ink-70: color-mix(in srgb, var(--ink) 70%, var(--paper));
  --ink-55: color-mix(in srgb, var(--ink) 55%, var(--paper));

  /* lines */
  --rule:        color-mix(in srgb, var(--ink) 16%, transparent);
  --rule-strong: color-mix(in srgb, var(--ink) 30%, transparent);
  --rule-light:  color-mix(in srgb, var(--ivory) 26%, transparent);

  --shadow-sm: 0 2px 14px color-mix(in srgb, var(--spruce) 12%, transparent);
  --shadow:    0 22px 60px color-mix(in srgb, var(--spruce) 22%, transparent);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  /* labels use the warm sans, not a technical monospace */
  --font-mono: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 880px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--paper);
  /* faint paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

::selection { background: color-mix(in srgb, var(--ember) 30%, transparent); }

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

.wrap { width: min(var(--wrap), calc(100% - 56px)); margin-inline: auto; }
.wrap-narrow { width: min(var(--wrap-narrow), calc(100% - 56px)); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 420;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem);
  line-height: 0.98;
  font-weight: 380;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
em, .italic { font-style: italic; }
h1 em, h2 em, .display em { color: var(--clay); font-weight: 360; }

/* mono field-guide labels */
.tag {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.tag { gap: 0; }
.tag::before { content: none; display: none; }
.tag.no-rule::before { display: none; }
.tag-plain { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clay); margin: 0 0 1.1rem;
}
.binomial { font-style: italic; font-family: var(--font-display); }

.lede {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.5; color: var(--ink-70); font-weight: 430;
}
.lede p { margin: 0 0 1rem; }
.prose p { margin: 0 0 1.15rem; }
.prose p:last-child { margin-bottom: 0; }
.prose em { color: var(--clay); }

/* numbered division marker */
.plate-no {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; color: var(--sage);
}

/* ---------- Hairline frame helper ---------- */
.hr { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  min-height: 52px; padding: 0 1.5rem;
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-text); font-size: 0.95rem; font-weight: 650;
  letter-spacing: 0.005em; text-decoration: none; cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--ember); color: var(--ivory); }
.btn-primary:hover { background: var(--ember-deep); transform: translateY(-2px); }
.btn-forest { background: var(--forest); color: var(--ivory); }
.btn-forest:hover { background: var(--pine); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--rule-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--forest); background: var(--forest); color: var(--ivory); }
.btn-ghost-light { background: color-mix(in srgb, var(--ivory) 14%, transparent); color: var(--ivory); border-color: var(--rule-light); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--forest); transform: translateY(-2px); }
.btn-lg { min-height: 58px; padding: 0 1.9rem; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 650; text-decoration: none; color: var(--forest);
  border-bottom: 2px solid color-mix(in srgb, var(--forest) 35%, transparent);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s, gap 0.25s var(--ease);
}
.arrow-link:hover { color: var(--ember); border-color: var(--ember); gap: 0.75em; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in srgb, var(--paper) 86%, white);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(16px) saturate(1.2);
}
.nav-shell {
  width: min(var(--wrap), calc(100% - 56px)); margin-inline: auto;
  min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; padding: 10px 0; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b {
  font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; letter-spacing: 0.01em; color: var(--forest);
}
.brand-word span {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--clay); margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: clamp(2px, 0.9vw, 10px); }
.nav-links a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 6px 11px;
  border-radius: 999px; text-decoration: none;
  font-size: 0.86rem; font-weight: 600; color: var(--forest); white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover { color: var(--ember); }
.nav-links a.active { background: color-mix(in srgb, var(--forest) 10%, transparent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-donate { min-height: 44px; padding: 0 1.1rem; font-size: 0.88rem; }
.menu-toggle { display: none; }

/* mobile menu */
.menu-toggle {
  width: 46px; height: 46px; border: 1px solid var(--rule-strong); border-radius: 999px;
  background: transparent; color: var(--forest); cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle span { position: relative; width: 20px; height: 14px; display: inline-block; }
.menu-toggle span::before, .menu-toggle span::after, .menu-toggle span i {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: 0.25s var(--ease);
}
.menu-toggle span::before { top: 0; }
.menu-toggle span i { top: 6px; }
.menu-toggle span::after { top: 12px; }

@media (max-width: 1080px) {
  .nav-links, .nav-donate.desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 200; background: var(--spruce); color: var(--ivory);
    display: flex; flex-direction: column; padding: 84px 32px 40px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 400;
    color: var(--ivory); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--rule-light);
  }
  .mobile-menu a:hover { color: color-mix(in srgb, var(--ember) 80%, white); }
  .mobile-menu .btn { margin-top: 28px; align-self: flex-start; }
  .mobile-close {
    position: absolute; top: 24px; right: 28px; width: 46px; height: 46px; border-radius: 999px;
    border: 1px solid var(--rule-light); background: transparent; color: var(--ivory); cursor: pointer; font-size: 1.4rem;
  }
}
@media (min-width: 1081px) { .mobile-menu { display: none; } }

/* =====================================================================
   Sections / layout primitives
   ===================================================================== */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-sm { padding: clamp(48px, 5vw, 80px) 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-ivory { background: var(--ivory); }
.bg-spruce { background: var(--spruce); color: var(--ivory); }
.bg-forest { background: var(--forest); color: var(--ivory); }
.bg-spruce .kicker, .bg-forest .kicker { color: color-mix(in srgb, var(--ember) 76%, white); }
.bg-spruce .tag, .bg-forest .tag { color: color-mix(in srgb, var(--sand) 90%, white); }
.bg-spruce .arrow-link, .bg-forest .arrow-link { color: var(--sand); border-color: color-mix(in srgb, var(--sand) 40%, transparent); }
.bg-spruce .arrow-link:hover, .bg-forest .arrow-link:hover { color: var(--ember); border-color: var(--ember); }

.section-head { margin-bottom: clamp(36px, 4vw, 60px); }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.section-head h2 { max-width: 18ch; }

.split {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 80px); align-items: start;
}

/* =====================================================================
   Field-guide specimen card
   ===================================================================== */
.specimen { position: relative; }
.specimen figure { margin: 0; }
.specimen-frame {
  position: relative; background: var(--ivory);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
.specimen-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* corner ticks */
/* crop-marks removed — too technical for a nonprofit */
.ticks::before, .ticks::after,
.ticks > .tick-b::before, .ticks > .tick-b::after { display: none; }

.caption {
  margin-top: 0.7rem; font-family: var(--font-mono); font-size: 0.74rem; line-height: 1.4;
  letter-spacing: 0.02em; color: var(--ink-55);
}
.caption b { color: var(--forest); font-weight: 600; }
.bg-spruce .caption, .bg-forest .caption { color: color-mix(in srgb, var(--sand) 80%, white); }
.bg-spruce .caption b, .bg-forest .caption b { color: var(--sand); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--spruce); color: color-mix(in srgb, var(--ivory) 82%, var(--spruce)); padding: clamp(56px, 6vw, 88px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--rule-light); }
.footer-brand .brand-word b { color: var(--ivory); }
.footer-brand p { margin: 1.1rem 0 0; max-width: 32ch; color: color-mix(in srgb, var(--ivory) 64%, var(--spruce)); font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); margin: 0 0 1rem; }
.footer-col a, .footer-col address { display: block; color: color-mix(in srgb, var(--ivory) 80%, var(--spruce)); text-decoration: none; font-style: normal; font-size: 0.95rem; margin-bottom: 0.6rem; line-height: 1.5; }
.footer-col a:hover { color: var(--ember); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 30px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: color-mix(in srgb, var(--ivory) 55%, var(--spruce)); }
.powered-by { margin: 0; color: color-mix(in srgb, var(--ivory) 42%, var(--spruce)); }
.powered-by a { color: inherit; text-decoration: none; border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.powered-by a:hover { color: var(--ember); border-color: var(--ember); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 40px; height: 40px; border: 1px solid var(--rule-light); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--ivory); text-decoration: none; transition: 0.2s var(--ease); }
.social-row a:hover { background: var(--ember); border-color: var(--ember); transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
  .reveal.d4 { transition-delay: 0.32s; }
}

/* =====================================================================
   Responsive base
   ===================================================================== */
@media (max-width: 860px) {
  body { font-size: 17px; }
  .split { grid-template-columns: 1fr; }
  .section-head h2 { max-width: none; }
}

/* =====================================================================
   BlackRail compatibility layer — matches the production theme vocabulary
   (compact-hero / eyebrow / section-kicker / level-card / detail-card /
   site-form), so new pages share the exact components used in the build.
   ===================================================================== */
.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clay); margin: 0 0 1.1rem;
}
.lead-copy { font-size: clamp(1.12rem, 1.35vw, 1.32rem); line-height: 1.52; color: var(--ink-70); }
.lead-copy p { margin: 0 0 1rem; }
.lead-copy.narrow { max-width: 760px; margin-inline: auto; text-align: center; }
.rich-text p { margin: 0 0 1.15rem; }
.rich-text p:last-child { margin-bottom: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.text-link {
  color: var(--forest); font-weight: 700; text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, currentColor 38%, transparent);
}
.text-link:hover { color: var(--ember); border-color: var(--ember); }
.btn-light { background: var(--ivory); color: var(--forest); }
.btn-light:hover { background: var(--ember); color: var(--ivory); transform: translateY(-2px); }
.btn-secondary { background: var(--forest); color: var(--ivory); }
.btn-secondary:hover { background: var(--ember); color: var(--ivory); transform: translateY(-2px); }
.btn-on-forest { border-color: var(--rule-light); color: var(--ivory); }
.btn-on-forest:hover { background: var(--ivory); color: var(--forest); border-color: var(--ivory); }

/* Compact hero (image or video background) */
.compact-hero {
  position: relative; min-height: min(58vh, 540px); display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate; color: var(--ivory);
}
.compact-hero .hero-media {
  position: absolute; inset: -6% 0; width: 100%; height: 112%; z-index: -2;
}
.compact-hero .hero-media img,
.compact-hero .hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.compact-hero .hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, color-mix(in srgb, var(--spruce) 46%, transparent) 0%, color-mix(in srgb, var(--spruce) 16%, transparent) 36%, color-mix(in srgb, var(--spruce) 64%, transparent) 76%, color-mix(in srgb, var(--spruce) 92%, transparent) 100%), linear-gradient(90deg, color-mix(in srgb, var(--spruce) 70%, transparent) 0%, color-mix(in srgb, var(--spruce) 22%, transparent) 52%, transparent 80%);
}
.compact-hero .hero-copy {
  padding-bottom: clamp(36px, 5vw, 72px); max-width: none;
  text-shadow: 0 2px 30px color-mix(in srgb, var(--spruce) 55%, transparent);
}
.compact-hero .hero-copy > * { max-width: min(44rem, 100%); }
.compact-hero .eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--sand) 92%, white); margin: 0 0 1rem;
}
.compact-hero .hero-lede { color: color-mix(in srgb, var(--ivory) 90%, transparent); max-width: 46ch; font-size: clamp(1.15rem, 1.5vw, 1.4rem); line-height: 1.5; }
.compact-hero .hero-lede p { margin: 0 0 0.6rem; }

/* image + story two-column */
.image-story-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center;
}
.image-story-grid figure { margin: 0; }
.story-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); }
.contain-image { object-fit: contain; background: var(--ivory); padding: 18px; }

/* cards: detail + membership level */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card,
.level-card {
  background: var(--ivory); border-radius: 16px; padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm);
}
.detail-card h3,
.level-card h2 { color: var(--forest); }
.detail-card ul,
.level-card ul { margin: 0.8rem 0 0; padding-left: 1.2rem; color: var(--ink-70); }
.detail-card li,
.level-card li { margin-bottom: 0.45rem; }
.center-actions { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 46px); }
.level-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.level-card .price { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--clay); line-height: 1; margin: 0.7rem 0 1rem; }
.level-card .section-kicker { margin-bottom: 0.3rem; }

/* programs (no hero photo) */
.programs-hero {
  text-align: center; position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--paper) 55%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--rule);
}
.programs-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 80% at 50% -20%, color-mix(in srgb, var(--sage-pale) 40%, transparent), transparent 60%);
}
.programs-hero h1 { color: var(--forest); }
.programs-title-image { width: min(760px, 100%); margin: clamp(28px, 4vw, 44px) auto 0; mix-blend-mode: multiply; }
.program-list { display: grid; gap: clamp(32px, 4vw, 56px); }
.program-row { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.program-row > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); }
.program-row.flip { grid-template-columns: 1fr 300px; }
.program-row.flip > img { order: 2; }
.program-subtitle { font-family: var(--font-display); font-style: italic; color: var(--clay); margin: 0.4rem 0; }

/* forms */
.form-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.form-section { background: var(--paper-2); }
.form-section .form-intro p { color: var(--ink-70); margin: 0.6rem 0 0; }
.site-form { background: var(--ivory); color: var(--ink); border-radius: 16px; padding: clamp(24px, 2.5vw, 34px); box-shadow: var(--shadow-sm); }
.site-form label { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-55); margin: 0 0 5px; }
.site-form input, .site-form textarea, .site-form select {
  width: 100%; border: 1px solid var(--rule-strong); border-radius: 8px; padding: 12px 14px;
  background: var(--paper); color: var(--ink); font: inherit; font-size: 0.96rem; margin-bottom: 1rem; resize: vertical;
}
.site-form input:focus, .site-form textarea:focus, .site-form select:focus { outline: 2px solid var(--ember); outline-offset: 2px; border-color: transparent; }
.site-form button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; width: 100%;
  border: 0; border-radius: 999px; padding: 0 1.4rem; background: var(--ember); color: var(--ivory);
  font-family: var(--font-text); font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.site-form button:hover { background: var(--ember-deep); transform: translateY(-2px); }
.form-status { min-height: 1.4em; margin: 0.7rem 0 0; color: var(--forest); font-size: 0.92rem; }
.form-status[data-state="success"] { color: var(--pine); font-weight: 600; }
.form-status[data-state="error"] { color: var(--ember-deep); font-weight: 600; }
.form-status[data-state="pending"] { color: var(--ink-55); }
.site-form [aria-invalid="true"] { border-color: var(--ember); outline: none; }
.camp-details-band, .form-section { }
.camp-story-copy { max-width: 760px; margin: 0 auto; }
.camp-story-copy .section-kicker { text-align: center; }
.camp-strip { margin: clamp(32px, 4vw, 56px) 0 0; }
.camp-strip img { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: var(--shadow-sm); }
.camp-details-band > .wrap > h2 { text-align: center; margin-bottom: clamp(32px, 4vw, 52px); }

@media (max-width: 820px) {
  .image-story-grid,
  .detail-grid,
  .level-grid,
  .program-row,
  .program-row.flip,
  .form-grid { grid-template-columns: 1fr; }
  .program-row.flip > img { order: 0; }
}
