/* ==========================================================================
   Harvest Pack — Healthy food on every table!
   Design: joy / happiness / hope. Brand leaf green + harvest gold + sunshine.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* Brand */
  --green-700: #1B7A33;
  --green-600: #25A747;
  --green-100: #D8F0DC;
  --green-050: #EFF8F0;
  --gold: #BEB53B;
  --gold-dark: #8A8326;
  --sun: #F7B538;
  --sun-dark: #B97E0A;
  --cream: #FFFBF4;
  --white: #FFFFFF;
  --ink: #233123;
  --ink-soft: #51624F;
  --border: #E8E2D4;
  --error: #C2362B;

  /* Type */
  --font-head: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-body: 'Nunito', 'Helvetica Neue', sans-serif;

  /* Rhythm */
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(35, 49, 35, .08);
  --shadow-md: 0 8px 28px rgba(35, 49, 35, .13);
  --shadow-lg: 0 18px 48px rgba(35, 49, 35, .18);
  --container: 1180px;
  --ease: cubic-bezier(.33, 1, .68, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0 0 1em; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

:focus-visible { outline: 3px solid var(--green-600); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-700); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.99); }
.btn-sun { background: var(--sun); color: #3A2A00; box-shadow: var(--shadow-sm); }
.btn-sun:hover { background: #FFC14E; box-shadow: var(--shadow-md); }
.btn-green { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--green-700); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--green-600); color: var(--green-700); background: transparent; }
.btn-outline:hover { background: var(--green-050); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 244, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink);
  line-height: 1.05;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .68rem; color: var(--green-700); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }

.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 10px 12px; border-radius: 999px; white-space: nowrap;
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: .95rem;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--green-050); color: var(--green-700); }
.main-nav a[aria-current="page"] { background: var(--green-100); color: var(--green-700); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 18px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px;
  margin: 5px 0; transition: transform .25s var(--ease), opacity .2s;
}

@media (max-width: 1180px) {
  .main-nav a { padding: 10px 8px; font-size: .92rem; }
  .header-cta .btn { padding: 10px 14px; font-size: .92rem; }
  .brand-name small { display: none; }
}

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 79px 0 auto 0; z-index: 99;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 10px 24px 24px; box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; }
  .main-nav a { font-size: 1.1rem; padding: 14px; }
  .header-cta .btn-outline { display: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .header-inner { gap: 8px; }
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 1.05rem; }
  .brand-name small { display: none; }
  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 10px 14px; font-size: .88rem; }
  .nav-toggle { padding: 8px 6px; }
  .main-nav { inset: 67px 0 auto 0; }
}

/* ---------- Hero montage (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 7vw, 90px) 0 clamp(48px, 7vw, 90px);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px; right: -160px; top: -180px;
  background: radial-gradient(circle, rgba(247, 181, 56, .22), transparent 65%);
}
.hero::after {
  width: 620px; height: 620px; left: -220px; bottom: -260px;
  background: radial-gradient(circle, rgba(37, 167, 71, .14), transparent 65%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-100); color: var(--green-700);
  font-weight: 800; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 .joy { color: var(--green-600); }
.hero h1 .joy-sun { color: var(--sun-dark); }
.hero .lead { max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-proof { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero-proof .proof b { font-family: var(--font-head); font-size: 1.5rem; color: var(--green-700); display: block; }
.hero-proof .proof span { font-size: .9rem; color: var(--ink-soft); font-weight: 700; }

/* The montage: 3-column collage of tilted photo cards */
.montage {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.6vw, 20px); position: relative;
}
.montage .shot {
  position: relative;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 5px solid #fff; background: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.montage .shot img.swap-layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .9s var(--ease);
}
.montage .shot img.swap-layer.show { opacity: 1; }
.montage .shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.montage .shot.tall img { aspect-ratio: 3 / 3.6; }
.montage .shot:nth-child(1) { transform: rotate(-2.2deg); }
.montage .shot:nth-child(2) { transform: rotate(1.8deg) translateY(18px); }
.montage .shot:nth-child(3) { transform: rotate(1.4deg) translateY(-6px); }
.montage .shot:nth-child(4) { transform: rotate(-1.6deg) translateY(12px); }
.montage .shot:hover { transform: rotate(0) scale(1.04); box-shadow: var(--shadow-lg); z-index: 2; }
.montage .badge-meals {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-4deg);
  background: var(--sun); color: #3A2A00; font-family: var(--font-head);
  font-weight: 800; text-align: center; line-height: 1.15;
  padding: 18px 22px; border-radius: 18px; box-shadow: var(--shadow-lg);
  border: 4px solid #fff; z-index: 3; font-size: 1rem;
}
.montage .badge-meals b { font-size: 1.6rem; display: block; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .montage { margin-top: 8px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.section-green { background: var(--green-050); }
.section-deep {
  background: linear-gradient(150deg, var(--green-700), #14592556 60%), var(--green-700);
  color: #ECF6EC;
}
.section-deep h2, .section-deep h3 { color: #fff; }
.section-deep .lead { color: #D8EBD8; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark);
  display: block; margin-bottom: 10px;
}
.section-deep .eyebrow { color: var(--sun); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 26px 22px;
  text-align: center; box-shadow: var(--shadow-sm); border-top: 5px solid var(--green-600);
}
.stat-card:nth-child(2n) { border-top-color: var(--sun); }
.stat-card:nth-child(3n) { border-top-color: var(--gold); }
.stat-card b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--green-700);
}
.stat-card span { color: var(--ink-soft); font-weight: 700; font-size: .95rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body p { color: var(--ink-soft); flex: 1; }
.card-link {
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
  color: var(--green-700); display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after { content: "→"; transition: transform .2s var(--ease); }
.card:hover .card-link::after { transform: translateX(4px); }
.card-tag {
  align-self: flex-start; font-size: .78rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; color: var(--green-700); background: var(--green-100);
  border-radius: 999px; padding: 4px 12px; margin-bottom: 12px;
}

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(48px, 7vw, 88px); }
.split.flip > .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-media .sticker {
  position: absolute; bottom: -18px; right: -10px; transform: rotate(3deg);
  background: #fff; border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-md);
  font-family: var(--font-head); font-weight: 800; color: var(--green-700);
}
.checklist { list-style: none; margin: 18px 0 0; padding: 0; }
.checklist li { padding-left: 36px; position: relative; margin-bottom: 12px; font-weight: 600; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B7A33' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
}

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; counter-reset: step; }
.step {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sun); color: #3A2A00;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.step:nth-child(2)::before { background: var(--green-600); color: #fff; }
.step:nth-child(3)::before { background: var(--gold); color: #fff; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Testimonials ---------- */
.quote-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.quote-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative;
}
.quote-card::before {
  content: "“"; font-family: var(--font-head); font-size: 4.4rem; line-height: 0;
  color: var(--sun); position: absolute; top: 38px; left: 22px; opacity: .85;
}
.quote-card blockquote { margin: 0; padding-top: 26px; font-size: 1.02rem; color: var(--ink); }
.quote-card cite {
  display: block; margin-top: 16px; font-style: normal; font-weight: 800;
  font-family: var(--font-head); color: var(--green-700); font-size: .95rem;
}
.quote-card cite small { display: block; color: var(--ink-soft); font-family: var(--font-body); font-weight: 600; }

/* ---------- Impact timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 4px;
  border-radius: 4px; background: linear-gradient(var(--green-600), var(--sun));
}
.timeline li { padding: 0 0 26px 42px; position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 22px; height: 22px;
  border-radius: 50%; background: #fff; border: 5px solid var(--green-600);
}
.timeline li:nth-child(2n)::before { border-color: var(--sun); }
.timeline b { font-family: var(--font-head); color: var(--green-700); font-size: 1.1rem; }

/* ---------- Event calendar ---------- */
.calendar-shell {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 36px);
}
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; }
.calendar-head h3 { margin: 0; font-size: 1.4rem; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--green-100);
  background: #fff; color: var(--green-700); font-size: 1.2rem; cursor: pointer;
  transition: background .15s;
}
.cal-nav button:hover { background: var(--green-050); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-weight: 800; font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; padding-block: 6px; }
.cal-day {
  min-height: 84px; border-radius: 12px; background: var(--cream);
  padding: 8px; font-size: .85rem; position: relative; border: 1px solid transparent;
}
.cal-day.other { opacity: .35; }
.cal-day.today { border-color: var(--sun); background: #FFF7E5; }
.cal-day .d { font-weight: 800; color: var(--ink-soft); }
.cal-event {
  display: block; margin-top: 6px; background: var(--green-600); color: #fff;
  border-radius: 8px; padding: 4px 8px; font-size: .76rem; font-weight: 700;
  text-decoration: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.cal-event.fundraiser { background: var(--sun); color: #3A2A00; }
.cal-event.community { background: var(--gold); }
.event-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.event-item {
  display: flex; gap: 18px; align-items: center; background: var(--cream);
  border-radius: var(--radius); padding: 16px 20px;
}
.event-date {
  flex: 0 0 auto; width: 66px; height: 66px; border-radius: 14px; background: var(--green-600);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; line-height: 1.05;
}
.event-date .mon { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.event-date .day { font-size: 1.5rem; }
.event-item h4 { margin: 0 0 2px; font-size: 1.05rem; }
.event-item .meta { color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.cal-empty { text-align: center; color: var(--ink-soft); padding: 28px 10px; font-weight: 600; }
@media (max-width: 720px) {
  .cal-grid { display: none; } /* mobile shows list only */
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 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-weight: 800; font-size: .92rem; margin-bottom: 6px; }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 2px solid var(--border);
  font: inherit; background: var(--cream); color: var(--ink);
  transition: border-color .15s, background .15s;
  min-height: 48px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); background: #fff;
}
.field .err { display: none; color: var(--error); font-size: .85rem; font-weight: 700; margin-top: 5px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--error); }
.field.invalid .err { display: block; }
.form-status { margin-top: 18px; border-radius: 12px; padding: 16px 18px; font-weight: 700; display: none; }
.form-status.ok { display: block; background: var(--green-100); color: var(--green-700); }
.form-status.fail { display: block; background: #FBE3E0; color: var(--error); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-600), var(--green-700));
  border-radius: var(--radius-lg); color: #fff;
  padding: clamp(36px, 5vw, 64px); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(247, 181, 56, .25); top: -130px; right: -90px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #DFF1DF; max-width: 46em; margin-inline: auto; }
.cta-band .btn { margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: #1C2B1C; color: #C9D8C9; margin-top: clamp(56px, 8vw, 104px); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px;
  padding-block: clamp(40px, 6vw, 64px);
}
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 14px; }
.site-footer a { color: #C9D8C9; text-decoration: none; }
.site-footer a:hover { color: var(--sun); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.15rem; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; background: #2C402C;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.footer-social a:hover { background: var(--green-600); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid #2C402C; padding-block: 20px; font-size: .85rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--green-050), #FFF6E3);
  padding-block: clamp(44px, 6vw, 80px);
}
.page-hero .lead { max-width: 40em; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .montage .shot { transition: none; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.video-frame {
  aspect-ratio: 16 / 9; width: 100%; border: 0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: #fff; border: 2px solid var(--green-100); border-radius: 999px;
  padding: 8px 18px; font-weight: 700; font-size: .92rem; color: var(--green-700);
}
