/* ============================================================
   PINE Early Learning — site-wide styles
   Palette: soft sage & pine greens on warm cream.
   Shared across every page (index, about, program, curriculum,
   membership, join).
   ============================================================ */

:root {
  /* Core palette */
  --cream:        #faf6ef;
  --cream-deep:   #f1e9db;
  --pine:         #3e5541;
  --pine-deep:    #30463a;
  --sage:         #86998d;
  --sage-mid:     #6e8175;
  --sage-soft:    #e8e3d8; /* warm neutral greige (was light green) */
  --ink:          #3b352e;
  --ink-soft:     #6b6459;
  --line:         #e4dccb;
  --white:        #fffdf8;
  --clay:         #c08457; /* warm terracotta accent */
  --clay-deep:    #a5603a; /* deeper clay for text + CTA backgrounds */

  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 10px 30px rgba(47, 75, 63, 0.10);
  --shadow-soft:  0 4px 14px rgba(47, 75, 63, 0.06);
  --maxw:         1120px;

  --serif: Constantia, Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--pine);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
img, svg { max-width: 100%; }
a { color: var(--pine); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: 720px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.78em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pine); color: var(--cream); }
.btn-primary:hover { background: var(--pine-deep); }
.btn-ghost { background: transparent; color: var(--pine); border-color: var(--clay); }
.btn-ghost:hover { background: var(--sage-soft); }
.btn-small { padding: 0.55em 1.15em; font-size: 0.95rem; background: var(--pine); color: var(--cream); }
.btn-small:hover { background: var(--pine-deep); }
.btn-light { background: var(--cream); color: var(--pine); }
.btn-light:hover { background: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--pine); }
.brand-mark { font-size: 1.55rem; line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.14em; }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- Logo mark (custom pine tree, inherits color from context) ---- */
.brand-mark { display: inline-flex; line-height: 0; }
.brand-mark svg { width: 30px; height: 33px; display: block; }
/* Header: stacked emblem — tree on top, wordmark centered below it */
.site-header .brand { flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.site-header .brand-text { align-items: center; }
.site-header .brand-mark svg { width: 36px; height: 40px; margin-bottom: -4px; }
/* Footer: tree stays inline with the text and is tinted for the dark background */
.site-footer .brand-mark { color: var(--cream); }
.site-footer .brand-mark svg { width: 26px; height: 29px; }
/* Sunrise-scene logo — colored parts (auto-adapts light header / dark footer) */
.brand-mark .lg-sun { fill: var(--clay); }
.brand-mark .lg-mtn { fill: var(--sage-mid); }
.brand-mark .lg-tree { fill: var(--pine); }
.brand-mark .lg-ground { fill: none; stroke: var(--pine); stroke-width: 2.4; stroke-linecap: round; }
.site-footer .brand-mark .lg-mtn { fill: var(--sage); }
.site-footer .brand-mark .lg-tree { fill: var(--cream); }
.site-footer .brand-mark .lg-ground { stroke: var(--cream); }

.site-nav { display: flex; align-items: center; gap: 22px; }
/* `:not(.btn)` so these link styles never touch the nav's button — otherwise
   `.site-nav a` (2-part specificity) overrides the button's own cream text,
   leaving dark text on the dark-green "Join PINE" button. */
.site-nav a:not(.btn) { text-decoration: none; color: var(--ink); font-family: var(--serif); font-weight: 500; font-size: 1.02rem; letter-spacing: 0.1em; }
.site-nav a:not(.btn):hover { color: var(--pine); }
.site-nav a.active:not(.btn) { color: var(--pine); font-weight: 700; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  width: 44px; height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pine);
  cursor: pointer;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 460px at 78% -12%, var(--sage-soft), transparent 62%),
    var(--cream);
  padding: 104px 0 92px;
}
.hero-inner { position: relative; max-width: 640px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--clay-deep);
  margin-bottom: 1.1em;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); margin-bottom: 0.35em; }
.lede { font-size: clamp(1.08rem, 2.2vw, 1.28rem); color: var(--ink-soft); margin: 0 0 2em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tagline { margin-top: 2.4em; font-family: var(--serif); font-style: italic; color: var(--clay-deep); font-size: 1.08rem; }
.hero-art {
  position: absolute;
  right: -40px; bottom: -30px;
  width: 340px; max-width: 42vw;
  opacity: 0.9;
  pointer-events: none;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background:
    radial-gradient(800px 340px at 85% -30%, var(--sage-soft), transparent 60%),
    var(--cream-deep);
  padding: 76px 0 62px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 0.9em; }
.page-header h1 { font-size: clamp(2.1rem, 5vw, 3rem); }
.page-header p { color: var(--ink-soft); max-width: 620px; margin: 0.4em auto 0; font-size: 1.1rem; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-sm { padding: 60px 0; }
.section-tinted { background: var(--cream-deep); }
.section-sage { background: var(--sage-soft); }
.section-dark { background: var(--pine); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(247, 244, 236, 0.82); }

.section-head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.4rem); }
.section-head .eyebrow { margin-bottom: 0.9em; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }
.section-dark .section-intro { color: rgba(247, 244, 236, 0.82); }

/* ---------- Feature grid ---------- */
.feature-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
/* Centered variant: last row centers instead of leaving an empty slot */
.feature-grid-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-grid-center .feature-card { flex: 1 1 300px; max-width: 360px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-soft); font-size: 1.5rem; margin-bottom: 16px;
  color: var(--pine);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.35em; }
.feature-card p { color: var(--ink-soft); margin: 0; }

/* ---------- Split (text + panel) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .split-media { order: -1; }
.split h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.panel-sage { background: var(--sage-soft); border-color: transparent; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative; padding: 8px 0 8px 30px; color: var(--ink);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--clay); font-weight: 700;
}
.section-dark .checklist li::before { color: var(--sage); }

/* "won't need" variant */
.crosslist li::before { content: "—"; color: var(--sage); }

/* ---------- Numbered steps ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}
.step-num {
  counter-increment: step;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pine); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
}
.step-num::before { content: counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.25em; }
.step p { margin: 0; color: var(--ink-soft); }
.step ul { margin: 0.6em 0 0; padding-left: 1.1em; color: var(--ink-soft); }

/* ---------- Rhythm (3 up) ---------- */
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.rhythm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.rhythm-day { font-family: var(--serif); font-size: 1.35rem; color: var(--pine); margin-bottom: 0.1em; }
.rhythm-what { font-weight: 600; margin-bottom: 0.4em; }
.rhythm-card p { color: var(--ink-soft); margin: 0; }

/* ---------- Month grid (curriculum) ---------- */
.month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.month-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--sage);
}
.month-tag { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); font-weight: 600; }
.month-card h3 { font-size: 1.2rem; margin: 4px 0 0.5em; }
.month-focus { color: var(--ink-soft); font-size: 0.96rem; margin: 0 0 0.7em; }
.month-workshop { font-size: 0.9rem; color: var(--pine); font-weight: 600; margin: 0; }
.month-workshop span { font-weight: 400; color: var(--ink-soft); }

/* ---------- Chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  background: var(--sage-soft); color: var(--pine);
  padding: 7px 15px; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
}

/* ---------- Pull quote ---------- */
.pullquote { text-align: center; }
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.4;
  color: var(--pine);
  margin: 0 auto;
  max-width: 780px;
}
.pullquote cite { display: block; margin-top: 1em; font-style: normal; color: var(--clay-deep); font-size: 1rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.plan-featured { border-color: var(--clay); box-shadow: var(--shadow); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: var(--pine-deep);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan-emoji { font-size: 1.8rem; color: var(--pine); }
.plan-emoji svg { width: 34px; height: 34px; }
.plan-name { font-size: 1.35rem; margin: 10px 0 6px; }
.plan-price { margin: 0 0 4px; }
.plan-price .amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--pine); }
.plan-price .per { color: var(--ink-soft); font-size: 1rem; }
.plan-tagline { color: var(--ink-soft); font-size: 0.98rem; min-height: 2.6em; }
.plan-features { list-style: none; margin: 6px 0 26px; padding: 0; flex: 1; }
.plan-features li { position: relative; padding: 7px 0 7px 26px; border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.plan-cta { text-align: center; }
.pricing-note { text-align: center; color: var(--ink-soft); font-size: 0.95rem; margin: 40px auto 0; max-width: 640px; }

/* Material box price grid (tier x monthly/yearly) */
.box-prices { width: 100%; border-collapse: collapse; margin: 8px 0 12px; }
.box-prices th, .box-prices td { padding: 9px 6px; border-bottom: 1px solid var(--line); font-size: 1rem; }
.box-prices thead th { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; text-align: right; vertical-align: top; }
.box-prices thead th:first-child { text-align: left; }
.box-prices tbody th { text-align: left; font-family: var(--serif); font-weight: 700; color: var(--pine); }
.box-prices tbody td { text-align: right; color: var(--ink); }
.box-prices tbody tr:last-child th, .box-prices tbody tr:last-child td { border-bottom: none; }
.box-prices .amount { font-family: var(--serif); font-weight: 700; color: var(--pine); }
.box-note { font-size: 0.85rem; color: var(--ink-soft); text-align: center; margin: 0 0 16px; }
.box-best { display: block; width: fit-content; margin: 5px 0 0 auto; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 700; color: var(--pine-deep); background: var(--clay); border-radius: 999px; padding: 2px 8px; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; }
.compare {
  width: 100%; border-collapse: collapse; min-width: 560px;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.compare th, .compare td { padding: 15px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--pine); color: var(--cream); font-family: var(--serif); font-weight: 700; }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); background: var(--cream-deep); }
.compare td .yes { color: var(--clay); font-weight: 700; }
.compare td .no { color: var(--line); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--pine);
  padding: 16px 0; list-style: none; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--clay); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin: 0 0 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--sage-soft); color: var(--ink); text-align: center; padding: 76px 0; }
.cta-band h2 { color: var(--pine); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-band p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 1.8em; font-size: 1.08rem; }
.cta-band .btn-light { background: var(--pine); color: var(--cream); }
.cta-band .btn-light:hover { background: var(--pine-deep); }

/* ---------- Sample month (collapsible) ---------- */
.sample-month { max-width: 900px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 2px 26px; }
.sample-month summary { cursor: pointer; list-style: none; font-family: var(--serif); font-weight: 700; color: var(--pine); font-size: 1.15rem; padding: 20px 0; }
.sample-month summary::-webkit-details-marker { display: none; }
.sample-month summary::after { content: "+"; float: right; color: var(--clay); font-size: 1.5rem; line-height: 1; }
.sample-month[open] summary::after { content: "\2013"; }
.sample-month-body { padding: 2px 0 24px; }
.sample-focus { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 12px; }
.sample-legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 20px; }
.sample-legend b { color: var(--pine); }
.sample-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.sample-week { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.sample-week h4 { font-family: var(--serif); color: var(--pine); font-size: 1.05rem; margin: 0 0 10px; padding-bottom: 7px; border-bottom: 1px solid var(--line); }
.sample-item { margin: 0 0 10px; }
.sample-item:last-child { margin-bottom: 0; }
.sample-tag { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pine); font-weight: 600; }
.sample-act { margin: 2px 0 0; font-size: 0.9rem; color: var(--ink); line-height: 1.4; }
.sample-ages { margin: 5px 0 0; font-size: 0.78rem; color: var(--ink-soft); line-height: 1.35; }
.sample-ages b { color: var(--pine); font-weight: 600; }
.box-item { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.box-iname { font-family: var(--serif); color: var(--pine); font-size: 1rem; font-weight: 700; margin: 0 0 3px; }
.box-ifor { font-size: 0.8rem; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.box-ifor b { color: var(--pine); font-weight: 600; }
.sample-workshop { background: var(--sage-soft); border: 1px solid var(--clay); border-radius: 8px; padding: 8px 10px; }
.sample-workshop .sample-tag { color: var(--clay-deep); }
.sample-mats { margin: 18px 0 0; background: var(--sage-soft); border-radius: 12px; padding: 14px 18px; }
.sample-mats .sample-tag { color: var(--pine); }
.sample-mats p { margin: 3px 0 0; font-size: 0.9rem; color: var(--ink); }

/* ---------- Signup form ---------- */
.signup-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.signup-form input {
  flex: 1 1 260px; max-width: 340px;
  font-family: var(--sans); font-size: 1rem;
  padding: 0.78em 1.2em;
  border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--white); color: var(--ink);
}
.signup-form input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-soft); }
.form-message { min-height: 1.4em; margin: 1.1em 0 0; font-weight: 600; color: var(--pine); }
.section-dark .form-message { color: var(--cream); }
.form-message.error { color: var(--clay); }
.form-message a {
  display: inline-block; margin-top: 0.7em;
  background: var(--cream); color: var(--pine-deep);
  padding: 0.6em 1.35em; border-radius: 999px;
  font-weight: 700; text-decoration: none; transition: background 0.15s;
}
.form-message a:hover, .form-message a:focus-visible { background: #fff; }
.form-disclaimer { color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.6em; }
.section-dark .form-disclaimer { color: rgba(247, 244, 236, 0.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: var(--cream); padding: 60px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand-block .brand-mark { font-size: 1.4rem; }
.footer-brand-block p { color: rgba(247, 244, 236, 0.7); margin-top: 0.8em; max-width: 300px; }
.footer-col h4 { color: var(--cream); font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1em; }
.footer-col a { display: block; color: rgba(247, 244, 236, 0.78); text-decoration: none; padding: 5px 0; font-size: 0.96rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(247, 244, 236, 0.15);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: rgba(247, 244, 236, 0.6); font-size: 0.88rem;
}
.footer-bottom a { color: rgba(247, 244, 236, 0.78); }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { text-align: center; margin-top: 8px; }
  .section { padding: 60px 0; }
  .hero { padding: 80px 0 70px; }
  .hero-art { display: none; }
}
