/* ============================================================
   Guernsey Round Table 231 — site styles
   Three visual directions via [data-theme] on <html>:
   island (default) · tabler · crest
   ============================================================ */

/* ---- Theme tokens ---- */
:root,
[data-theme="island"] {
  --bg: #FBF7F0;
  --surface: #FFFFFF;
  --ink: #16323B;
  --muted: #5C7079;
  --accent: #E0922F;
  --accent-2: #C9742A;
  --accent-ink: #20140A;
  --secondary: #2C5560;
  --band-bg: #14313A;
  --band-ink: #F2EADC;
  --band-muted: #A9BFC4;
  --line: rgba(22,50,59,.13);
  --line-strong: rgba(22,50,59,.22);

  --font-display: "Libre Caslon Display", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --display-transform: none;
  --display-weight: 400;
  --display-spacing: .005em;
  --display-line: 1.04;
  --eyebrow-weight: 600;

  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 1px 2px rgba(16,40,48,.06), 0 18px 44px -20px rgba(16,40,48,.28);
  --shadow-sm: 0 1px 2px rgba(16,40,48,.05), 0 8px 20px -12px rgba(16,40,48,.22);
}

[data-theme="tabler"] {
  --bg: #F3F2EF;
  --surface: #FFFFFF;
  --ink: #15130F;
  --muted: #5E594F;
  --accent: #F2A22B;
  --accent-2: #E2891B;
  --accent-ink: #15130F;
  --secondary: #C9342B;
  --band-bg: #131210;
  --band-ink: #F3F2EF;
  --band-muted: #A19B8E;
  --line: rgba(20,18,15,.14);
  --line-strong: rgba(20,18,15,.26);

  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --display-transform: uppercase;
  --display-weight: 400;
  --display-spacing: .005em;
  --display-line: .94;
  --eyebrow-weight: 700;

  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 2px 0 rgba(20,18,15,.06), 0 16px 40px -22px rgba(20,18,15,.4);
  --shadow-sm: 0 2px 0 rgba(20,18,15,.05), 0 8px 20px -14px rgba(20,18,15,.32);
}

[data-theme="crest"] {
  --bg: #F4ECDB;
  --surface: #FBF5E8;
  --ink: #2A1A11;
  --muted: #6E5A48;
  --accent: #B5852B;
  --accent-2: #9E7022;
  --accent-ink: #FBF5E8;
  --secondary: #8E2B22;
  --band-bg: #2A1A11;
  --band-ink: #F1E6D2;
  --band-muted: #BBA888;
  --line: rgba(42,26,17,.16);
  --line-strong: rgba(42,26,17,.28);

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "EB Garamond", Georgia, serif;
  --display-transform: none;
  --display-weight: 400;
  --display-spacing: .01em;
  --display-line: 1.06;
  --eyebrow-weight: 600;

  --radius: 4px;
  --radius-sm: 3px;
  --shadow: 0 1px 2px rgba(42,26,17,.08), 0 18px 44px -22px rgba(42,26,17,.34);
  --shadow-sm: 0 1px 2px rgba(42,26,17,.06), 0 8px 20px -14px rgba(42,26,17,.26);
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[data-theme="crest"] body { font-size: 19.5px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  text-transform: var(--display-transform);
  letter-spacing: var(--display-spacing);
  line-height: var(--display-line);
  margin: 0;
}
[data-theme="tabler"] h1,
[data-theme="tabler"] h2,
[data-theme="tabler"] h3 { letter-spacing: .01em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 124px) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--eyebrow-weight);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12.5px;
  color: var(--accent-2);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.band .eyebrow { color: var(--accent); }

.h-sec { font-size: clamp(33px, 4.6vw, 56px); }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 56ch; }
[data-theme="crest"] .lead { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .01em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
[data-theme="tabler"] .btn { border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
[data-theme="crest"] .btn { border-radius: 3px; font-weight: 600; }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.band .btn-ghost { color: var(--band-ink); border-color: rgba(255,255,255,.32); }
.band .btn-ghost:hover { border-color: var(--band-ink); background: rgba(255,255,255,.06); }
.btn svg { width: 17px; height: 17px; }

/* ---- Header / nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1180px, 92vw); margin-inline: auto;
  height: 70px; display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; flex: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; flex: none; }
.brand-tx { display: flex; flex-direction: column; line-height: 1.12; }
.brand-tx b {
  font-family: var(--font-display); font-weight: var(--display-weight);
  text-transform: var(--display-transform);
  font-size: 18px; letter-spacing: .01em; white-space: nowrap;
}
[data-theme="tabler"] .brand-tx b { font-size: 21px; }
.brand-tx span { font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px;
  opacity: .82; transition: opacity .15s, border-color .15s; position: relative; white-space: nowrap;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav-links a:hover { opacity: 1; border-bottom-color: var(--accent); }
.nav-burger { display: none; }

/* ---- Hero ---- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,20,26,.42) 0%, rgba(8,20,26,.18) 32%, rgba(8,20,26,.72) 100%),
    linear-gradient(90deg, rgba(8,20,26,.66) 0%, rgba(8,20,26,.12) 64%);
}
.hero-inner {
  width: min(1180px, 92vw); margin-inline: auto;
  min-height: clamp(560px, 82vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 130px 0 64px;
}
.hero .eyebrow { color: #fff; opacity: .92; }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 {
  font-size: clamp(44px, 7.4vw, 92px);
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.34);
}
[data-theme="island"] .hero h1 { max-width: 17ch; }
.hero-sub {
  font-size: clamp(18px, 2.1vw, 23px);
  max-width: 50ch; margin-top: 22px; color: rgba(255,255,255,.92);
  text-shadow: 0 1px 18px rgba(0,0,0,.4);
  line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-cta .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 46px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22);
  font-size: 14.5px; letter-spacing: .02em;
}
.hero-meta b { font-weight: 700; }
.hero-credit {
  position: absolute; right: 14px; bottom: 10px; z-index: 1;
  font-size: 10.5px; letter-spacing: .06em; color: rgba(255,255,255,.62);
}

/* ---- About / pillars ---- */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 92px);
  align-items: center;
}
.about-copy h2 { margin-bottom: 22px; }
.about-copy p:not(.eyebrow) { font-size: 18px; line-height: 1.62; color: var(--muted); margin: 0 0 1.05em; }
.about-copy p:not(.eyebrow):last-child { margin-bottom: 0; }
[data-theme="crest"] .about-copy p:not(.eyebrow) { font-size: 20px; }
.motto {
  margin-top: 30px; padding: 22px 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.motto .m-lab { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.motto .m-words { font-family: var(--font-display); font-size: clamp(24px, 3vw, 33px); text-transform: var(--display-transform); }
.motto .m-words span { color: var(--accent-2); }
.motto-wide { display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-top: clamp(40px, 5vw, 60px); padding: clamp(26px, 3vw, 38px) clamp(28px, 4vw, 46px); }
.motto-wide .m-lab { margin-bottom: 0; }
.motto-wide .m-words { font-size: clamp(28px, 4.4vw, 48px); }
@media (max-width: 640px) { .motto-wide { flex-direction: column; align-items: flex-start; gap: 10px; } }

.pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start;
  padding: 22px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-ic {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 18%, var(--surface));
  color: var(--accent-2);
}
[data-theme="tabler"] .pillar-ic { border-radius: 4px; }
.pillar-ic svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 20px; margin-bottom: 5px; }
[data-theme="tabler"] .pillar h3 { font-size: 23px; }
.pillar p { font-size: 16px; color: var(--muted); margin: 0; }

/* ---- Stat band ---- */
.band { background: var(--band-bg); color: var(--band-ink); }
.band .h-sec, .band h2, .band h3 { color: var(--band-ink); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(40px, 5.6vw, 68px); color: var(--accent); line-height: 1; text-transform: var(--display-transform); }
.stat .l { margin-top: 12px; font-size: 14.5px; color: var(--band-muted); letter-spacing: .02em; }
.stat-sep { display: grid; grid-template-columns: repeat(4, 1fr); }

/* ---- Activities ---- */
.acts { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 8px; }
.act {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .18s ease, box-shadow .18s ease;
}
.act:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.act-pad { padding: 24px 26px; position: relative; z-index: 1; }
.act h3 { font-size: 22px; margin-bottom: 7px; }
[data-theme="tabler"] .act h3 { font-size: 25px; }
.act p { font-size: 15.5px; color: var(--muted); margin: 0; }
.act-photo { color: #fff; min-height: 320px; background: transparent; }
.act-photo .act-pad { padding: 26px; }
.act-photo p { color: rgba(255,255,255,.9); }
.act-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.act-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,20,26,.15) 0%, rgba(8,20,26,.68) 100%); }
.act-photo .act-pad { z-index: 1; }
.col-7 { grid-column: span 7; } .col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; } .col-4 { grid-column: span 4; }
.col-12 { grid-column: span 12; }
.tag { display:inline-block; font-size: 14px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color: var(--accent-2); margin-bottom: 12px; }
.act-photo .tag { color: var(--accent); }

/* ---- Events ---- */
.events-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 42px; }
.ev-list { display: flex; flex-direction: column; gap: 0; }
.ev {
  display: grid; grid-template-columns: 116px 1fr auto; gap: 28px; align-items: center;
  padding: 26px 4px; border-top: 1px solid var(--line);
  transition: background .15s;
}
.ev:last-child { border-bottom: 1px solid var(--line); }
.ev:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); }
.ev-date { text-align: center; line-height: 1; }
.ev-date .d { font-family: var(--font-display); font-size: 38px; color: var(--ink); text-transform: var(--display-transform); }
.ev-date .m { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-top: 6px; }
.ev-date .y { font-size: 12px; color: var(--muted); margin-top: 3px; }
.ev-body h3 { font-size: 23px; margin-bottom: 5px; }
[data-theme="tabler"] .ev-body h3 { font-size: 26px; }
.ev-body p { font-size: 15.5px; color: var(--muted); margin: 0; }
.ev-body .where { display:inline-flex; align-items:center; gap:6px; font-weight:600; color: var(--ink); font-size: 14px; margin-top: 8px; }
.ev-flag { display:inline-block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:4px 10px; border-radius:999px; background: var(--accent); color: var(--accent-ink); margin-left:10px; vertical-align: middle; }
[data-theme="tabler"] .ev-flag { border-radius: 3px; }
.ev-link { display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:14.5px; color: var(--accent-2); text-decoration:none; white-space:nowrap; }
.ev-link:hover { gap: 11px; }
.ev-link svg { width:16px;height:16px; transition: transform .15s; }
.ev-note { margin-top: 26px; font-size: 14px; color: var(--muted); }
.ev-season { display: flex; align-items: center; }
.ev-season span { font-family: var(--font-display); text-transform: var(--display-transform); font-size: 21px; letter-spacing: .03em; color: var(--accent-2); }
[data-theme="tabler"] .ev-season span { font-size: 23px; }

/* ---- Impact ---- */
.impact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items:center; }
.impact-photo { border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); position: relative; }
.impact-photo img { width:100%; height:100%; min-height: 340px; object-fit: cover; }
.impact-points { display:flex; flex-direction:column; gap: 22px; margin-top: 28px; }
.ipoint { display:grid; grid-template-columns: 30px 1fr; gap:16px; }
.ipoint svg { width: 24px; height: 24px; color: var(--accent-2); margin-top: 3px; }
.ipoint h3 { font-size: 19px; margin-bottom: 3px; font-family: var(--font-body); font-weight: 800; text-transform: none; letter-spacing: 0; }
.ipoint p { font-size: 15.5px; color: var(--muted); margin: 0; }
.benefactors { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--band-muted); }
.fund { display: grid; grid-template-columns: 1.25fr .9fr; border-radius: var(--radius); overflow: hidden;
  background: var(--band-bg); color: var(--band-ink); box-shadow: var(--shadow);
  margin-top: clamp(44px, 6vw, 76px); }
.fund-body { padding: clamp(30px, 4vw, 52px); align-self: center; }
.fund .eyebrow { color: var(--accent); }
.fund-h { font-size: clamp(27px, 3.4vw, 40px); color: var(--band-ink); margin-bottom: 14px; }
.fund-body p { color: var(--band-muted); font-size: 17px; max-width: 54ch; margin-bottom: 26px; }
.fund-photo img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
@media (max-width: 820px) { .fund { grid-template-columns: 1fr; } .fund-photo img { min-height: 220px; } }

/* ---- Join + FAQ ---- */
.join-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items:start; }
.steps { display:flex; flex-direction:column; gap: 16px; margin-top: 26px; }
.step { display:grid; grid-template-columns: 44px 1fr; gap:18px; align-items:start; }
.step-n {
  width:44px;height:44px;border-radius:50%; display:grid;place-items:center;
  font-family: var(--font-display); font-size: 21px; color: var(--accent-ink);
  background: var(--accent); text-transform: var(--display-transform);
}
[data-theme="tabler"] .step-n { border-radius: 4px; }
.step h3 { font-size: 19px; margin-bottom: 3px; font-family: var(--font-body); font-weight: 800; text-transform: none; letter-spacing: 0; }
.step p { font-size: 15.5px; color: var(--muted); margin: 0; }
.faq { display:flex; flex-direction:column; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 2px; display:flex; align-items:center; justify-content:space-between; gap: 16px;
  font-weight: 700; font-size: 17.5px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary .pl { width:22px;height:22px;flex:none; position:relative; }
.faq summary .pl::before, .faq summary .pl::after { content:""; position:absolute; background: var(--accent-2); border-radius:2px; transition: transform .2s; }
.faq summary .pl::before { left:0; right:0; top:10px; height:2px; }
.faq summary .pl::after { top:0; bottom:0; left:10px; width:2px; }
.faq details[open] summary .pl::after { transform: scaleY(0); }
.faq .ans { padding: 0 2px 22px; color: var(--muted); font-size: 16px; max-width: 60ch; }
[data-theme="crest"] .faq summary { font-size: 19px; }

/* ---- Contact ---- */
.contact-grid { display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items:start; }
.contact-cards { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ccard {
  display: block; text-decoration: none;
  padding: 24px; border-radius: var(--radius); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16); transition: transform .15s ease, border-color .15s ease;
}
.ccard:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.4); }
.ccard .ic { width: 38px;height:38px;border-radius:10px; display:grid;place-items:center; background: var(--accent); color: var(--accent-ink); margin-bottom: 14px; }
[data-theme="tabler"] .ccard .ic { border-radius: 4px; }
.ccard .ic svg { width:20px;height:20px; }
.ccard h3 { font-family: var(--font-body); font-weight:800; text-transform:none; letter-spacing:0; font-size:16px; margin-bottom:5px; color: var(--band-ink); }
.ccard p, .ccard a { font-size: 15px; color: var(--band-muted); text-decoration:none; word-break: break-word; }
.ccard a:hover { color: var(--accent); }
.contact-lead .h-sec { color: var(--band-ink); }
.contact-lead .lead { color: var(--band-muted); }
.donkey-note {
  margin-top: 30px; padding: 20px 22px; border-radius: var(--radius);
  background: var(--accent); border: none;
  font-size: 14.5px; color: #fff;
}
.donkey-note b { color: #fff; }

/* ---- Footer ---- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 54px 0 40px; }
.footer-top { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; align-items:flex-start; }
.footer .brand img { width: 54px; height: 54px; }
.footer-tag { max-width: 36ch; color: var(--muted); font-size: 15px; margin-top: 16px; }
.footer-cols { display:flex; gap: 60px; flex-wrap:wrap; }
.fcol h4 { font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); margin:0 0 14px; font-family: var(--font-body); font-weight:700; }
.fcol a { display:block; text-decoration:none; color: var(--ink); opacity:.8; font-size:15px; margin-bottom:10px; font-weight:600; }
.fcol a:hover { opacity:1; color: var(--accent-2); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ---- Responsive ---- */
@media (max-width: 1040px) {
  .nav-links { position: fixed; inset: 70px 0 auto 0; background: var(--surface); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 16px; border-bottom:1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s ease; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 7vw; opacity:1; border-top:1px solid var(--line); border-bottom: none; }
  .nav-burger { display:inline-flex; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
  .nav-burger span { width:24px;height:2px;background:var(--ink);border-radius:2px; transition: transform .2s, opacity .2s; }
  .nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity:0; }
  .nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 900px) {
  .about-grid, .impact-grid, .join-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .acts { grid-template-columns: 1fr; }
  .col-7,.col-5,.col-6,.col-4 { grid-column: auto; }
  .impact-photo { order: -1; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .ev { grid-template-columns: 84px 1fr; }
  .ev-link { grid-column: 1 / -1; justify-self: start; }
  .ev-date .d { font-size: 30px; }
  .ev-season span { font-size: 15px; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 110px; }
}
