/* =====================================================================
   Lilypad Learning — site styles
   Brand: Navy #213E8C · Green #30AE58 · Blue #2A70DE
   Type:  Poppins (headings) · Nunito Sans (body, stands in for Avenir)
   ===================================================================== */

:root {
  --navy: #213e8c;
  --navy-deep: #182d66;
  --green: #30ae58;
  --green-deep: #1f8a45;
  --green-dark: #0b2b1c;
  --blue: #2a70de;
  --blue-soft: #e8f0fc;
  --green-soft: #e6f6ec;
  --mint: #f2faf5;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-alt: #f7f9fb;
  --white: #ffffff;
  --gold: #f5b53a;

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);
  --shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.14);
  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--ink-2); }
.muted { color: var(--muted); }
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--alt { background: var(--bg-alt); }
.section--mint { background: var(--mint); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lead, .section--navy .muted { color: rgba(255, 255, 255, 0.82); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.section--navy .eyebrow { color: #7fe0a1; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  line-height: 1.2; min-height: 48px; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #f0f4ff; }
.btn--ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.22); }
.btn--sm { padding: 10px 18px; min-height: 40px; font-size: 0.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 12px rgba(16,24,40,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); text-decoration: none !important; white-space: nowrap; }
.brand img { width: 44px; height: auto; }
@media (max-width: 480px) { .brand { font-size: 1rem; gap: 8px; } .brand img { width: 38px; } }
@media (max-width: 380px) { .brand span { display: none; } }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: inline-block; padding: 10px 14px; border-radius: 999px; font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: var(--ink-2); text-decoration: none !important; transition: background 0.15s, color 0.15s; }
.nav-links a:hover { background: var(--bg-alt); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--navy); background: var(--blue-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    padding: 8px 16px 16px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform 0.2s, opacity 0.2s;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 8px; border-radius: 8px; font-size: 1.05rem; }
  .nav-cta .btn--outline { display: none; }
}

/* ---------- Brand stripe (from the roll-up banner) ---------- */
.stripe { height: 8px; background: linear-gradient(90deg, var(--green) 0 40%, var(--green-dark) 40% 55%, var(--blue) 55%); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24, 45, 102, 0.94) 0%, rgba(33, 62, 140, 0.82) 45%, rgba(33, 62, 140, 0.35) 100%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 6vw, 72px); align-items: center; padding-block: clamp(72px, 11vw, 140px); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #7fe0a1; }
.hero .lead { color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 28px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); font-family: var(--font-head); font-size: 0.82rem; font-weight: 500; margin-bottom: 22px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #7fe0a1; box-shadow: 0 0 0 4px rgba(127,224,161,0.25); }
.hero__card { justify-self: end; width: min(100%, 460px); background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero__card h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 18px; opacity: 0.9; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { padding: 16px; border-radius: var(--radius); background: rgba(255,255,255,0.08); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: #7fe0a1; }
.stat__label { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-top: 6px; line-height: 1.35; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { justify-self: stretch; width: 100%; }
  .hero__media img { object-position: 60% center; }
}

/* ---------- Partner strip ---------- */
.partners { padding-block: 36px; border-bottom: 1px solid var(--line); }
.partners__label { text-align: center; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.partners__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(20px, 4vw, 48px); }
.partners__logos img { height: 52px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.partners__logos img:hover { filter: none; opacity: 1; }
@media (max-width: 600px) { .partners__logos img { height: 40px; max-width: 120px; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-top: 14px; }
.card p { color: var(--ink-2); }
.icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-deep); }
.icon--blue { background: var(--blue-soft); color: var(--blue); }
.icon--navy { background: #e6e9f5; color: var(--navy); }
.icon svg { width: 26px; height: 26px; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--rev > :first-child { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__media .float { position: absolute; left: -16px; bottom: -20px; background: #fff; border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); max-width: 260px; }
.split__media .float strong { font-family: var(--font-head); color: var(--navy); display: block; font-size: 1.05rem; }
.split__media .float span { font-size: 0.88rem; color: var(--muted); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
  .split__media .float { left: 12px; bottom: -14px; }
}

/* ---------- Checklist / feature list ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-2); }
.check-list li strong { color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat; }

/* ---------- Problem stats ---------- */
.big-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 28px); }
.big-stat { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden; }
.big-stat::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--green); }
.big-stat:nth-child(2)::before { background: var(--blue); }
.big-stat:nth-child(3)::before { background: var(--navy); }
.big-stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--navy); }
.big-stat p { margin-top: 12px; color: var(--ink-2); }
@media (max-width: 800px) { .big-stats { grid-template-columns: 1fr; } }

/* ---------- Program pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(160deg, #fff, var(--mint)); border: 1px solid var(--line); }
.pillar__num { font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 0.9rem; letter-spacing: 0.1em; }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Session steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; padding: 28px 24px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 24px; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; box-shadow: 0 0 0 5px #fff; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Quote ---------- */
.quote { position: relative; padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-lg); background: var(--navy); color: #fff; }
.quote p { font-family: var(--font-head); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; line-height: 1.45; }
.quote cite { display: block; margin-top: 16px; font-style: normal; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.quote::before { content: "\201C"; position: absolute; top: 4px; left: 22px; font-family: Georgia, serif; font-size: 6rem; line-height: 1; color: rgba(127,224,161,0.35); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 3vw, 28px); }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member__photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-alt); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.4s; }
.member:hover .member__photo img { transform: scale(1.04); }
.member__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.member__name { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin: 0; }
.member__role { color: var(--green-deep); font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; margin: 2px 0 10px; }
.member__bio { font-size: 0.93rem; color: var(--ink-2); margin: 0; }
.member__bio.is-clamped { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.member__more { margin-top: 8px; background: none; border: 0; padding: 0; color: var(--blue); font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; cursor: pointer; align-self: flex-start; }
.member__links { margin-top: auto; padding-top: 14px; display: flex; gap: 8px; }
.member__links a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; font-family: var(--font-head); color: var(--navy); padding: 6px 10px; border-radius: 8px; background: var(--blue-soft); text-decoration: none !important; }
.member__links a:hover { background: #d8e5fb; }
.member__links svg { width: 16px; height: 16px; }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } .member__body { padding: 14px 14px 16px; } }
@media (max-width: 400px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Positions (Join page) ---------- */
.position { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: clamp(20px, 3vw, 28px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.position h3 { margin: 0 0 4px; }
.position .tag { display: inline-block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.position ul { margin: 10px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 0.95rem; }
.position li { margin-bottom: 4px; }
@media (max-width: 520px) { .position { grid-template-columns: 1fr; } }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.timeline li { position: relative; padding: 18px 18px 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.timeline li::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; border-radius: 4px; background: var(--green); }
.timeline strong { display: block; font-family: var(--font-head); color: var(--navy); }
.timeline span { font-size: 0.92rem; color: var(--ink-2); }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .timeline { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field label .req { color: #d92d20; }
.field .hint { font-size: 0.82rem; color: var(--muted); margin: 6px 0 0; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="url"], .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid #d0d5dd; border-radius: var(--radius-sm); font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s; min-height: 48px;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(42,112,222,0.15); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #d92d20; }
.field input[type="file"] { width: 100%; font: inherit; font-size: 0.95rem; padding: 10px; border: 1.5px dashed #d0d5dd; border-radius: var(--radius-sm); background: var(--bg-alt); }
.field input[type="file"]::file-selector-button { font: inherit; font-family: var(--font-head); font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 0; background: var(--navy); color: #fff; margin-right: 12px; cursor: pointer; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 520px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1.5px solid #d0d5dd; border-radius: var(--radius-sm); cursor: pointer; transition: border-color 0.15s, background 0.15s; font-weight: 400; font-family: var(--font-body); font-size: 0.95rem; }
.choice:hover { background: var(--bg-alt); }
.choice input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--green); flex: 0 0 20px; }
.choice:has(input:checked) { border-color: var(--green); background: var(--green-soft); }
.choice strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; }
.choice small { color: var(--muted); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-2); font-weight: 400; font-family: var(--font-body); }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green); flex: 0 0 20px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-status.is-ok { display: block; background: var(--green-soft); color: var(--green-deep); border: 1px solid #b7e6c6; }
.form-status.is-err { display: block; background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.form-success { text-align: center; padding: clamp(24px, 4vw, 40px) 0; }
.form-success .icon { margin: 0 auto 16px; width: 64px; height: 64px; border-radius: 50%; }
.form-success .icon svg { width: 32px; height: 32px; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px); background: linear-gradient(115deg, var(--navy) 0%, var(--navy) 55%, var(--blue) 100%); color: #fff; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: var(--green); opacity: 0.85; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-row { justify-content: flex-end; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } .cta-band .btn-row { justify-content: flex-start; } .cta-band::after { width: 220px; height: 220px; right: -90px; top: -110px; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.page-hero__inner { position: relative; padding-block: clamp(56px, 8vw, 96px); max-width: 780px; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.86); }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -40%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: var(--green); opacity: 0.35; }
.page-hero::after { content: ""; position: absolute; right: 18%; bottom: -70%; width: 34%; aspect-ratio: 1; border-radius: 50%; background: var(--blue); opacity: 0.45; }
.page-hero--img::before, .page-hero--img::after { display: none; }
.page-hero--img .hero__media img { object-position: center 30%; }
.page-hero--img .page-hero__inner { padding-block: clamp(72px, 10vw, 128px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list strong { display: block; font-family: var(--font-head); font-weight: 600; }
.contact-list a { word-break: break-word; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Report card ---------- */
.report-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: center; padding: clamp(20px, 3vw, 32px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.report-card img { border-radius: 8px; box-shadow: var(--shadow); }
@media (max-width: 640px) { .report-card { grid-template-columns: 1fr; } .report-card img { max-width: 200px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.8); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,0.8); }
.footer-grid a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand img { background: #fff; border-radius: 10px; padding: 4px 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: inherit; }
.social { display: flex; gap: 10px; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.1); color: #fff; }
.social a:hover { background: var(--green); }
.social svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .member { transition: none; }
}

/* ---------- Misc ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gallery img.tall { grid-row: span 2; aspect-ratio: auto; height: 100%; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.flyers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.flyers img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
@media (max-width: 600px) { .flyers { grid-template-columns: 1fr; } }
.pill { display: inline-block; padding: 6px 12px; border-radius: 999px; font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; background: var(--green-soft); color: var(--green-deep); }
.pill--blue { background: var(--blue-soft); color: var(--blue); }
.pill--gold { background: #fff4de; color: #9a6400; }
details.faq { border-bottom: 1px solid var(--line); padding: 4px 0; }
details.faq summary { cursor: pointer; padding: 16px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); line-height: 1; flex: 0 0 auto; }
details.faq[open] summary::after { content: "–"; }
details.faq p { padding-bottom: 16px; color: var(--ink-2); }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
