:root{
  --ink:#3F2A2E;
  --paper:#F4DAFB;
  --paper-2:#ECC5F5;
  --chalk:#6B434B;
  --chalk-2:#3F2A2E;
  --red:#C1443A;
  --gold:#A9754A;
  --line:#DFB4E8;
  --max:1080px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Fraunces',serif;
  color:var(--ink);
  margin:0;
  line-height:1.08;
}
.hand{
  font-family:'Caveat',cursive;
  color:var(--red);
}
a{color:inherit;}
.wrap{max-width:var(--max);margin:0 auto;padding:0 28px;}
.ruled{
  background-image:repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 38px,
    var(--line) 38px,
    var(--line) 39px
  );
}
/* ---------- NAV ---------- */
header{
  position:sticky;top:0;z-index:50;
  background:rgba(244,218,251,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:16px;padding-bottom:16px;
}
.brand{
  font-family:'Fraunces',serif;font-weight:600;font-size:1.15rem;
  display:flex;align-items:center;gap:10px;
}
.brand .stamp{
  width:34px;height:34px;border-radius:50%;
  border:2px solid var(--red);
  display:flex;align-items:center;justify-content:center;
  font-family:'Caveat',cursive;font-size:1.1rem;color:var(--red);
  transform:rotate(-8deg);
  flex-shrink:0;
}
.navlinks{display:flex;gap:26px;font-size:0.92rem;font-weight:500;}
.navlinks a{text-decoration:none;border-bottom:2px solid transparent;padding-bottom:2px;transition:border-color .2s;}
.navlinks a:hover, .navlinks a:focus-visible{border-color:var(--red);}
.navlinks .cta{
  background:var(--chalk);color:var(--paper);
  padding:8px 16px;border-radius:3px;
  border-bottom:none !important;
}
.navlinks .cta:hover{background:var(--chalk-2);}
@media(max-width:680px){ .navlinks a:not(.cta){display:none;} }

/* ---------- HERO ---------- */
.hero{padding:76px 0 84px;position:relative;}
.hero-grid{
  display:grid;grid-template-columns:1.25fr 0.9fr;gap:48px;align-items:center;
}
.hero-photo{position:relative;}
.hero-photo img{
  width:100%;height:auto;display:block;
  border-radius:6px;
  box-shadow:0 18px 40px rgba(63,42,46,0.28);
  border:5px solid #fff;
  transform:rotate(1.5deg);
}
.photo-tag{
  position:absolute;bottom:-16px;left:-16px;
  background:var(--ink);color:var(--paper);
  font-family:'Fraunces',serif;font-weight:600;font-size:0.82rem;
  text-align:center;line-height:1.3;
  padding:10px 16px;border-radius:4px;
  transform:rotate(-3deg);
  box-shadow:0 6px 14px rgba(63,42,46,0.3);
}
@media(max-width:820px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-photo{max-width:320px;margin:0 auto;order:-1;}
  .photo-tag{left:8px;}
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.82rem;letter-spacing:.06em;text-transform:uppercase;
  font-weight:600;color:var(--chalk);
  background:var(--paper-2);
  border:1px solid var(--line);
  padding:6px 14px;border-radius:999px;
  margin-bottom:26px;
}
.eyebrow::before{content:"";width:7px;height:7px;background:var(--red);border-radius:50%;display:inline-block;}
.hero h1{
  font-size:clamp(2.3rem,5vw,3.7rem);
  font-weight:600;
  max-width:820px;
}
.hero .slogan-mark{position:relative;display:inline-block;}
.hero .slogan-mark svg{
  position:absolute;left:-2%;right:-2%;bottom:-6px;width:104%;
}
.hero .sub{
  margin-top:22px;font-size:1.18rem;max-width:560px;color:#5C4247;
}
.hero .sub strong{color:var(--ink);}
.hero-cta{display:flex;gap:16px;margin-top:36px;flex-wrap:wrap;}
.btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:3px;
  font-weight:600;
  text-decoration:none;
  font-size:0.98rem;
  transition:transform .15s ease, box-shadow .15s ease;
  border:2px solid transparent;
}
.btn-primary{background:var(--red);color:#fff;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 14px rgba(193,68,58,.28);}
.btn-ghost{border-color:var(--ink);color:var(--ink);}
.btn-ghost:hover{background:var(--ink);color:var(--paper);}

.margin-note{
  font-family:'Caveat',cursive;font-size:1.35rem;color:var(--red);
  position:absolute;
  transform:rotate(-6deg);
  pointer-events:none;
  line-height:1.1;
}
.margin-note.n1{top:18px;right:2%;transform:rotate(6deg);}
.margin-note svg{display:block;width:70px;margin-top:2px;}
@media(max-width:900px){ .margin-note{display:none;} }

/* ---------- WHY I'M RUNNING ---------- */
.band{padding:64px 0;}
.band-paper2{background:var(--paper-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.why{
  display:grid;grid-template-columns:1fr 1.4fr;gap:52px;align-items:start;
}
@media(max-width:760px){ .why{grid-template-columns:1fr;} }
.why h2{font-size:1.9rem;margin-bottom:6px;}
.why .tag{font-family:'Caveat',cursive;font-size:1.3rem;color:var(--chalk);}
.why p{font-size:1.05rem;color:#5C4247;margin:0 0 16px;}
.why blockquote{
  margin:0;padding:0 0 0 20px;border-left:3px solid var(--red);
  font-family:'Fraunces',serif;font-style:italic;font-size:1.25rem;color:var(--ink);
}

/* ---------- SCHEDULE / PRIORITIES ---------- */
.schedule-head{text-align:center;max-width:640px;margin:0 auto 48px;}
.schedule-head .tag{font-family:'Caveat',cursive;color:var(--chalk);font-size:1.3rem;}
.schedule-head h2{font-size:2.1rem;margin-top:6px;}
.schedule-head p{color:#5C4247;margin-top:12px;}

.periods{display:flex;flex-direction:column;border-top:1px solid var(--line);}
.period{
  display:grid;grid-template-columns:120px 1fr;gap:28px;
  padding:30px 0;border-bottom:1px solid var(--line);
}
@media(max-width:640px){ .period{grid-template-columns:1fr;gap:8px;} }
.period .p-num{
  font-family:'Fraunces',serif;font-weight:600;color:var(--chalk);
}
.period .p-num .big{font-size:2.1rem;display:block;line-height:1;}
.period .p-num .lbl{font-size:0.78rem;letter-spacing:.06em;text-transform:uppercase;color:#8C6670;}
.period h3{font-size:1.35rem;margin-bottom:8px;}
.period p{margin:0;color:#5C4247;font-size:1rem;}
.period .src{
  display:block;margin-top:10px;font-size:0.85rem;color:var(--chalk);
  font-weight:500;
}
.period:hover .p-num{color:var(--red);}

/* ---------- GET INVOLVED ---------- */
.involved-head{text-align:center;max-width:640px;margin:0 auto 44px;}
.involved-head .tag{font-family:'Caveat',cursive;color:var(--red);font-size:1.3rem;}
.involved-head h2{font-size:2.1rem;margin-top:6px;}
.involved-head p{color:#5C4247;margin-top:10px;}

.slip{
  border:1px solid var(--line);
  background:var(--paper);
  border-radius:4px;
  box-shadow:0 1px 0 var(--line);
  overflow:hidden;
}
.slip-row{
  display:grid;
  grid-template-columns:44px 1fr auto;
  gap:18px;align-items:center;
  padding:22px 26px;
  border-bottom:1px solid var(--line);
}
.slip-row:last-child{border-bottom:none;}
.box{
  width:26px;height:26px;border:2px solid var(--ink);border-radius:3px;
  position:relative;flex-shrink:0;
}
.box svg{position:absolute;inset:0;margin:auto;width:18px;height:18px;color:var(--red);
  opacity:0;transform:scale(.6);transition:opacity .2s, transform .2s;}
.slip-row:hover .box svg{opacity:1;transform:scale(1);}
.slip-row h3{font-size:1.15rem;font-family:'Fraunces',serif;font-weight:600;margin-bottom:4px;}
.slip-row p{margin:0;color:#5C4247;font-size:0.94rem;}
.slip-row .go{
  text-decoration:none;font-weight:600;font-size:0.92rem;
  color:var(--chalk);white-space:nowrap;
  border-bottom:2px solid var(--chalk);padding-bottom:2px;
}
.slip-row .go:hover{color:var(--red);border-color:var(--red);}
@media(max-width:600px){
  .slip-row{grid-template-columns:32px 1fr;}
  .slip-row .go{grid-column:1/-1;justify-self:start;margin-top:6px;}
}

/* gold star badge on endorse */
.star{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;
  color:var(--gold);
}

/* ---------- FOOTER ---------- */
footer{
  background:var(--ink);color:var(--paper);
  padding:52px 0 34px;
}
footer .foot-top{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:28px;
  padding-bottom:28px;border-bottom:1px solid rgba(250,246,236,.18);
  margin-bottom:22px;
}
footer h3{color:var(--paper);font-size:1.3rem;}
footer .slogan{font-family:'Caveat',cursive;color:#E0B98A;font-size:1.3rem;margin-top:6px;}
footer a.email{color:#EAC6F0;text-decoration:none;font-weight:600;}
footer a.email:hover{text-decoration:underline;}
footer .fine{font-size:0.82rem;color:#CBA8D1;max-width:640px;}

.reveal{opacity:0;transform:translateY(14px);transition:opacity .6s ease, transform .6s ease;}
.reveal.show{opacity:1;transform:translateY(0);}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  html{scroll-behavior:auto;}
}

:focus-visible{outline:3px solid var(--red);outline-offset:2px;}

/* ---------- VOLUNTEER FORM & DONATIONS ---------- */
.support-grid{
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.75fr);
  gap:28px;
  margin-top:34px;
  align-items:start;
}
.volunteer-card,.donation-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.22);
  border-radius:6px;
  padding:30px;
  box-shadow:0 10px 28px rgba(63,42,46,.08);
}
.card-kicker{
  font-family:'Caveat',cursive;
  color:var(--red);
  font-size:1.35rem;
  margin-bottom:5px;
}
.volunteer-card h3,.donation-card h3{
  font-size:1.65rem;
  margin-bottom:10px;
}
.form-intro,.donation-card > p{
  color:#5C4247;
  margin:0 0 22px;
}
.volunteer-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.volunteer-form label,.volunteer-form fieldset{
  margin:0;
}
.volunteer-form label > span,.volunteer-form legend{
  display:block;
  font-weight:600;
  font-size:.9rem;
  margin-bottom:7px;
  color:var(--ink);
}
.volunteer-form input[type="text"],
.volunteer-form input[type="email"],
.volunteer-form input[type="tel"],
.volunteer-form select,
.volunteer-form textarea{
  width:100%;
  border:1px solid #CFA3D9;
  background:#FFF9FF;
  color:var(--ink);
  border-radius:4px;
  padding:11px 12px;
  font:inherit;
}
.volunteer-form textarea{resize:vertical;min-height:112px;}
.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus{
  outline:3px solid rgba(193,68,58,.22);
  border-color:var(--red);
}
.volunteer-form fieldset{
  border:0;
  padding:0;
}
.check-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 14px;
}
.check-option{
  display:flex;
  align-items:flex-start;
  gap:9px;
  padding:9px 10px;
  border:1px solid var(--line);
  border-radius:4px;
  background:rgba(255,255,255,.2);
  cursor:pointer;
}
.check-option input{margin-top:3px;accent-color:var(--red);}
.check-option span{margin:0 !important;font-weight:500 !important;}
.form-actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.form-actions .btn{border:0;cursor:pointer;font-family:inherit;}
.plain-email{
  font-size:.9rem;
  font-weight:600;
  color:var(--chalk);
  text-underline-offset:3px;
}
.form-note,.form-status{
  font-size:.82rem;
  color:#775760;
  margin:0;
}
.form-status{font-weight:600;color:var(--red);min-height:1.2em;}
.donation-card{position:sticky;top:92px;}
.etransfer-box{
  border:2px dashed var(--red);
  background:var(--paper);
  padding:22px;
  border-radius:5px;
  margin:18px 0;
  text-align:center;
}
.etransfer-box > span:first-child{
  display:block;
  font-family:'Caveat',cursive;
  font-size:1.25rem;
  color:var(--red);
  margin-bottom:7px;
}
.etransfer-box a{
  display:block;
  font-weight:700;
  font-size:1.05rem;
  overflow-wrap:anywhere;
  margin-bottom:14px;
}
.copy-button{
  border:1px solid var(--ink);
  background:transparent;
  color:var(--ink);
  padding:9px 13px;
  border-radius:3px;
  font:inherit;
  font-size:.86rem;
  font-weight:600;
  cursor:pointer;
}
.copy-button:hover{background:var(--ink);color:var(--paper);}
.copy-status{display:block;font-size:.8rem;color:var(--red);margin-top:9px;min-height:1.2em;}
.donation-note{font-size:.86rem !important;margin-bottom:0 !important;}
.slip-row strong{color:var(--ink);}

@media(max-width:860px){
  .support-grid{grid-template-columns:1fr;}
  .donation-card{position:static;}
}
@media(max-width:600px){
  .volunteer-card,.donation-card{padding:22px 18px;}
  .form-grid,.check-grid{grid-template-columns:1fr;}
}
