/* Evergreen Christian Academy — site styles */

:root {
  --forest: #1f4d3a;
  --forest-deep: #143326;
  --sprig: #3f7a5c;
  --sprig-soft: #dfeae2;
  --wood: #9a6a3a;
  --wood-soft: #f3e7d6;
  --cream: #fbf8f2;
  --sand: #f3ede3;
  --berry: #c4533a;
  --ink: #1d2621;
  --muted: #56635b;
  --line: #e4ddd0;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgba(20, 51, 38, .06), 0 8px 24px rgba(20, 51, 38, .08);
  --max: 1160px;
  --gutter: clamp(16px, 4vw, 40px);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--sprig); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; text-wrap: pretty; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--forest); color: var(--white); padding: 8px 14px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--sprig); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest-deep); color: #e8efe9; }
.section--forest h2, .section--forest h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sprig); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
}
.section--forest .eyebrow { color: #9cc7ad; }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  font: 700 1rem/1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--forest); color: var(--white); }
.btn--primary:hover { background: var(--forest-deep); color: var(--white); }
.btn--ghost { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn--ghost:hover { background: var(--forest); color: var(--white); }
.btn--light { background: var(--white); color: var(--forest-deep); }
.btn--light:hover { background: var(--sprig-soft); color: var(--forest-deep); }
.btn--berry { background: var(--berry); color: var(--white); }
.btn--berry:hover { background: #a9442e; color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--forest-deep);
}
.brand-logo { height: 54px; width: auto; }
@media (max-width: 520px) { .brand-logo { height: 46px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 12px; border-radius: 999px; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: .95rem; white-space: nowrap;
}
.nav a:hover { background: var(--sprig-soft); color: var(--forest-deep); }
.nav a[aria-current="page"] { color: var(--forest); background: var(--sprig-soft); }
.nav .btn { margin-left: 8px; padding: .7em 1.2em; font-size: .95rem; color: var(--white); }
.nav .btn[aria-current="page"] { background: var(--forest-deep); color: var(--white); }
.nav .btn:hover { background: var(--forest-deep); color: var(--white); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 10px; margin-right: -10px; cursor: pointer; color: var(--forest-deep);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* Landscape tablets / small laptops: tighten the full menu so it stays on one line */
@media (min-width: 1021px) and (max-width: 1180px) {
  .site-header .container { gap: 12px; }
  .brand-logo { height: 48px; }
  .nav { gap: 0; }
  .nav a { padding: 8px 9px; }
  .nav .btn { margin-left: 6px; padding: .7em 1em; }
}

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    box-shadow: 0 16px 24px rgba(20, 51, 38, .08);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 1.05rem; }
  .nav .btn { margin: 10px 0 0; }
}

/* Hero */
.hero { padding: clamp(40px, 7vw, 88px) 0 clamp(56px, 8vw, 100px); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 em { font-style: italic; color: var(--sprig); }
.hero .lede { margin-bottom: 28px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; left: -24px; bottom: 28px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; gap: 12px; align-items: center; max-width: 260px;
}
.hero-badge .dot {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sprig-soft); color: var(--forest);
  display: grid; place-items: center; flex: none;
}
.hero-badge strong { display: block; color: var(--forest-deep); line-height: 1.2; }
.hero-badge span { font-size: .88rem; color: var(--muted); line-height: 1.3; display: block; }

.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; padding: 0; list-style: none; }
.facts li {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-weight: 700; font-size: .9rem; color: var(--forest-deep);
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: minmax(0, 1fr); }
  .hero-media { order: -1; }
  .hero-badge { position: static; max-width: none; margin-top: 14px; }
  .hero-media img { aspect-ratio: 4 / 3; }
}

/* Page hero (interior pages) */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 5vw, 56px); }
.page-hero .lede { margin-top: 8px; }

/* Grid + cards */
.grid { display: grid; gap: 20px; }
.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-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 1px 2px rgba(20, 51, 38, .04);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--wide-text { grid-template-columns: 1.15fr .85fr; }
.split img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .split, .split--wide-text { grid-template-columns: minmax(0, 1fr); }
  .split .reverse-mobile { order: -1; }
}

/* Classroom path */
.path { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; counter-reset: step; }
.path-step {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px 20px; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.path-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sprig-soft); color: inherit; }
.path-step .age { font-size: .82rem; font-weight: 800; color: var(--sprig); letter-spacing: .02em; }
.path-step h3 { font-size: 1.15rem; margin: 6px 0 8px; }
.path-step p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.5; }
.path-step .num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--forest); color: var(--white);
  display: grid; place-items: center; font-weight: 800; font-size: .85rem; margin-bottom: 12px;
}
@media (max-width: 1180px) { .path { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .path { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Weekly rhythm */
.rhythm { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.rhythm-card {
  display: grid; grid-template-columns: 160px 1fr; gap: 22px; align-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 18px;
}
.rhythm-card img { width: 160px; height: 160px; object-fit: cover; border-radius: 14px; }
.rhythm-icon {
  width: 160px; height: 160px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(156, 199, 173, .14); color: #9cc7ad;
}
.rhythm-icon svg { width: 56px; height: 56px; }
.rhythm-card .day { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #9cc7ad; }
.rhythm-card h3 { margin: 4px 0 6px; }
.rhythm-card p { margin: 0; color: #cfdcd3; font-size: .98rem; }
@media (max-width: 860px) { .rhythm { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .rhythm-card { grid-template-columns: 1fr; }
  .rhythm-card img { width: 100%; height: 200px; }
  .rhythm-icon { width: 100%; height: 72px; }
  .rhythm-icon svg { width: 36px; height: 36px; }
}

/* Quote / mission */
.mission {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.4;
  color: var(--forest-deep); font-weight: 400; margin: 0 0 24px;
}

/* CTA band */
.cta-band {
  background: var(--forest); color: #e8efe9; border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: .3em; }
.cta-band p { margin: 0; color: #cfdcd3; max-width: 56ch; }
.cta-band .sprig-bg { position: absolute; right: -40px; top: -30px; width: 240px; opacity: .1; pointer-events: none; }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } .cta-band .sprig-bg { display: none; } }

/* Program detail */
.program { display: grid; grid-template-columns: 360px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; padding: 40px 0; border-top: 1px solid var(--line); scroll-margin-top: 96px; }
.program:first-of-type { border-top: 0; }
.program img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.program .age { font-weight: 800; color: var(--sprig); font-size: .9rem; letter-spacing: .02em; }
.program h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); margin: 4px 0 12px; }
.stats { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; }
.stats li {
  background: var(--wood-soft); color: #5b3d1e; border-radius: 12px; padding: 8px 12px;
  font-size: .88rem; font-weight: 700; line-height: 1.2;
}
.stats li b { display: block; font-size: 1.15rem; font-family: var(--font-display); color: #4a2f14; }
@media (max-width: 860px) { .program { grid-template-columns: 240px minmax(0, 1fr); gap: 28px; } }
@media (max-width: 620px) { .program { grid-template-columns: 1fr; } }

/* Staff */
.team-group { margin-bottom: clamp(48px, 7vw, 80px); }
.team-group:last-child { margin-bottom: 0; }
.team-group > h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); display: flex; align-items: center; gap: 12px; }
.team-photo { width: 100%; max-width: 380px; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; border-radius: var(--radius); }
.team-layout { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.team-layout--nophoto { grid-template-columns: 1fr; }
@media (max-width: 1020px) { .team-layout .grid-2 { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 760px) { .team-layout { grid-template-columns: 1fr; } .team-photo { max-width: 100%; aspect-ratio: 1 / 1; } }

.person { display: flex; gap: 16px; align-items: flex-start; }
.person .avatar {
  width: 64px; height: 64px; border-radius: 50%; flex: none; object-fit: cover;
  background: var(--sprig-soft); color: var(--forest); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
}
.person h3 { font-size: 1.15rem; margin: 0 0 2px; }
.person .role { font-size: .85rem; font-weight: 800; color: var(--sprig); letter-spacing: .02em; margin-bottom: 8px; display: block; }
.person p { font-size: .98rem; color: var(--muted); margin: 0; }

/* Steps (admissions) */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; counter-reset: s; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.steps li::before {
  content: counter(s); width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest); color: var(--white); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
}
.steps h3 { margin: 8px 0 4px; font-size: 1.2rem; }
.steps p { margin: 0; color: var(--muted); }

.notice {
  display: flex; gap: 14px; align-items: flex-start; background: var(--wood-soft); border-radius: var(--radius);
  padding: 18px 20px; color: #4a2f14;
}
.notice svg { flex: none; width: 24px; height: 24px; margin-top: 2px; color: var(--wood); }
.notice p { margin: 0; }

.resource {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; text-decoration: none; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.resource:hover { border-color: var(--sprig); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--ink); }
.resource strong { display: block; font-size: 1.05rem; color: var(--forest-deep); }
.resource span { font-size: .9rem; color: var(--muted); }
.resource svg { flex: none; width: 22px; height: 22px; color: var(--sprig); }

.embed {
  width: 100%; min-height: 820px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
}

/* Beliefs */
.beliefs { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; counter-reset: b; }
.beliefs li {
  counter-increment: b; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px 22px 76px; position: relative;
}
.beliefs li::before {
  content: counter(b, decimal-leading-zero); position: absolute; left: 24px; top: 20px;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--sprig);
}
.beliefs li p { margin: 0; }
.beliefs cite { display: block; margin-top: 8px; font-style: normal; font-size: .88rem; color: var(--muted); font-weight: 700; }
@media (max-width: 520px) {
  .beliefs li { padding: 56px 20px 20px; }
  .beliefs li::before { left: 20px; top: 18px; }
}

/* Giving calculator */
.calc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.calc label { font-weight: 800; font-size: .9rem; color: var(--forest-deep); display: block; margin-bottom: 8px; }
.amount-input { display: flex; align-items: center; border: 2px solid var(--line); border-radius: 14px; padding: 0 16px; background: var(--cream); }
.amount-input:focus-within { border-color: var(--sprig); }
.amount-input span { font-family: var(--font-display); font-size: 1.6rem; color: var(--muted); }
.amount-input input {
  border: 0; background: transparent; font: 600 1.8rem var(--font-display); color: var(--forest-deep);
  padding: 12px 8px; width: 100%; min-width: 0;
}
.amount-input input:focus { outline: none; }
.presets { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 24px; }
.presets button {
  border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 8px 14px;
  font: 700 .9rem var(--font-body); color: var(--forest-deep); cursor: pointer;
}
.presets button:hover, .presets button[aria-pressed="true"] { background: var(--forest); color: var(--white); border-color: var(--forest); }
.calc-rows { border-top: 1px solid var(--line); margin: 0; }
.calc-rows div { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.calc-rows dt { color: var(--muted); }
.calc-rows dd { margin: 0; white-space: nowrap; font-weight: 800; font-variant-numeric: tabular-nums; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-top: 18px; }
.calc-total span { font-weight: 800; color: var(--forest-deep); }
.calc-total output { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 600; color: var(--forest); font-variant-numeric: tabular-nums; }
.fine { font-size: .85rem; color: var(--muted); margin-top: 16px; }

/* Footer */
.site-footer { background: var(--forest-deep); color: #c9d6cd; padding: clamp(56px, 8vw, 88px) 0 32px; margin-top: 0; }
.site-footer a { color: #e8efe9; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-grid h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #9cc7ad; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-logo { background: var(--cream); border-radius: 14px; padding: 14px 18px; display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 64px; width: auto; }
.footer-bottom a { display: inline-block; padding: 10px 0; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 48px; padding-top: 24px; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Tablet portrait: stacked photos shouldn't dominate the screen */
@media (min-width: 621px) and (max-width: 860px) {
  .hero-media img { aspect-ratio: 16 / 9; }
  .split img, .rounded-img { max-height: 420px; }
}

/* Let grid children shrink below their content width */
.split > *, .hero .container > *, .grid > *, .team-layout > *, .program > * { min-width: 0; }

/* Community & events */
.tbd {
  background: #fff4c2; color: #5c4a00; border-radius: 6px; padding: 0 .35em;
  box-shadow: inset 0 0 0 1px #e8d27a; font-weight: 700;
}
.event-feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}
.event-feature .event-body { padding: clamp(24px, 4vw, 48px); }
.event-feature .event-side {
  background: var(--forest); color: #e8efe9; padding: clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.event-tag {
  display: inline-block; background: var(--berry); color: var(--white); border-radius: 999px;
  padding: 5px 12px; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.event-tag--past { background: var(--sprig-soft); color: var(--forest-deep); }
.event-meta { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.event-meta li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.event-meta svg { width: 24px; height: 24px; color: #9cc7ad; margin-top: 2px; }
.event-meta strong { display: block; color: var(--white); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.event-meta .tbd { font-weight: 700; }
@media (max-width: 860px) { .event-feature { grid-template-columns: minmax(0, 1fr); } }

.sponsors {
  margin-top: 28px; background: var(--sand); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px); text-align: center;
}
.sponsors .eyebrow::before { display: none; }
.sponsors h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 8px; }
.sponsors > p { color: var(--muted); max-width: 56ch; margin: 0 auto 32px; }
.sponsor-logos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 860px; margin: 0 auto; }
.logo-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 36px); display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink); transition: box-shadow .2s, transform .2s;
}
a.logo-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: var(--ink); }
.logo-tile img { width: 100%; max-width: 320px; height: 130px; object-fit: contain; }
.logo-tile span { font-weight: 800; color: var(--forest-deep); }
@media (max-width: 560px) { .sponsor-logos { grid-template-columns: minmax(0, 1fr); } }

.game-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.game-list li { position: relative; padding-left: 20px; font-size: .95rem; }
.game-list li::before { content: ""; position: absolute; left: 2px; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--sprig); }
.event-meta div { line-height: 1.55; }
.recap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.gallery-main { margin: 0; }
.gallery-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.gallery { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.3fr) minmax(0, .8fr); gap: 20px; margin-top: 20px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); }
.gallery figcaption { font-size: .9rem; color: var(--muted); font-weight: 700; margin-top: 8px; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery figure:nth-child(2) { grid-column: 1 / -1; grid-row: 1; } }
@media (max-width: 620px) { .gallery { grid-template-columns: minmax(0, 1fr); } .gallery img { height: 280px; } }
.award {
  display: inline-flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px 18px 12px 12px; margin-top: 6px;
}
.award .award-badge {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: #8a5526; color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .35);
}
.award strong { display: block; color: var(--forest-deep); line-height: 1.2; }
.award span { font-size: .88rem; color: var(--muted); }
@media (max-width: 860px) { .recap { grid-template-columns: minmax(0, 1fr); } }

/* 404 */
.paw-404 { width: 120px; margin: 0 auto 20px; }

/* Utilities */
.mt-0 { margin-top: 0; }
.mt-lg { margin-top: clamp(32px, 5vw, 56px); }
.center { text-align: center; }
.stack > * + * { margin-top: 16px; }
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
