/* ==========================================================================
   Cole Kander — UCP Nomination Campaign, Bywater · Green Hill Country
   Sample build for kander.ca/webdesign.
   Design tokens, base, and components.
   ========================================================================== */

:root {
  --ink:        #101B27;  /* primary dark */
  --ink-deep:   #0B131C;  /* footer */
  --ink-raise:  #16283A;  /* card hover on dark */
  --paper:      #F6F3ED;  /* page background */
  --paper-warm: #F1EDE4;
  --paper-soft: #FCFBF8;
  --blue:       #0F4C81;  /* UCP blue */
  --blue-lift:  #12588F;
  --blue-pale:  #9FC7EB;
  --gold:       #E0A245;
  --gold-lift:  #F0B65B;
  --amber:      #C77914;  /* eyebrow text on light */
  --rule:       #DDD6C9;
  --rule-field: #C9C1B2;
  --rule-fine:  #E3DDD1;
  --body:       #4A5663;
  --body-dark:  #35414F;
  --muted:      #6B7480;
  --faint:      #8B95A1;
  --ghost:      #B7BEC7;
  --error-ink:  #A4321F;
  --error-bg:   #FBEAE6;
  --error-line: #EBC4BB;

  --display: Anton, Impact, sans-serif;
  --sans:    Manrope, system-ui, -apple-system, sans-serif;
  --serif:   Newsreader, Georgia, serif;

  --shell: 1240px;
  --gutter: clamp(18px, 5vw, 28px);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--amber); }

img { display: block; }

input, select, textarea, button { font-family: inherit; }
input, select, textarea { min-width: 0; width: 100%; }
input::placeholder, textarea::placeholder { color: var(--faint); }

p, li, h1, h2, h3 { text-wrap: pretty; overflow-wrap: break-word; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Visible keyboard focus everywhere, since the design strips outlines. */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page { width: 100%; overflow-x: hidden; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Shared type utilities
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--amber { color: var(--amber); }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

/* Card headings, shared by the membership / volunteer / donate panels. */
.card-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.card-title--lg { font-size: 28px; margin-bottom: 6px; }
.card-title--md { font-size: 26px; }

.card-subtitle {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.form-grid--tight { gap: 16px; }

.fieldset-reset {
  border: 0;
  padding: 0;
  margin: 0;
}
.fieldset-reset > legend { padding: 0; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 27, 39, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__bar {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 13px clamp(16px, 4vw, 28px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--paper);
  flex-shrink: 0;
}
.wordmark:hover { color: var(--paper); }
.wordmark__name {
  font-family: var(--display);
  font-size: clamp(19px, 5vw, 22px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wordmark__riding {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav--desktop {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
}
.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.72);
  transition: color 0.15s ease;
}
.nav__link:hover { color: #fff; }

.nav__donate {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(246, 243, 237, 0.35);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__donate:hover { background: rgba(246, 243, 237, 0.1); color: #fff; }

.nav__join {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}
.nav__join:hover { background: var(--gold-lift); color: var(--ink); }

.header__mobile {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 10px;
}
.header__join-sm {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 12px 15px;
  border-radius: var(--radius);
}
.header__join-sm:hover { background: var(--gold-lift); color: var(--ink); }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(246, 243, 237, 0.32);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 17px;
  cursor: pointer;
}

.nav--mobile {
  display: none;
  gap: 2px;
  padding: 6px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav--mobile.is-open { display: grid; }
.nav--mobile a {
  padding: 15px 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav--mobile .nav--mobile__donate {
  margin-top: 10px;
  text-align: center;
  padding: 16px 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 1px solid rgba(246, 243, 237, 0.38);
  border-bottom: 1px solid rgba(246, 243, 237, 0.38);
  border-radius: var(--radius);
}

@media (max-width: 860px) {
  .nav--desktop { display: none; }
  .header__mobile { display: flex; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero__wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 78% 12%, rgba(15, 76, 129, 0.55) 0%, rgba(16, 27, 39, 0) 62%);
}
.hero__grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(44px, 8vw, 88px) var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  position: relative;
}
.hero__copy {
  padding-bottom: clamp(48px, 7vw, 92px);
  animation: riseIn 0.7s ease both;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.hero__rule {
  width: 30px;
  height: 3px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  color: rgba(246, 243, 237, 0.82);
  max-width: 44ch;
  margin: 0 0 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(246, 243, 237, 0.55);
  max-width: 40ch;
  margin: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px clamp(20px, 4vw, 30px);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(224, 162, 69, 0.28);
  flex: 1 1 auto;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-gold:hover {
  background: var(--gold-lift);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--paper);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px clamp(20px, 4vw, 30px);
  border: 1px solid rgba(246, 243, 237, 0.4);
  border-radius: var(--radius);
  flex: 1 1 auto;
  justify-content: center;
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: rgba(246, 243, 237, 0.09); color: var(--paper); }

.hero__figure {
  position: relative;
  align-self: end;
  max-width: 560px;
  width: 100%;
  justify-self: end;
}
.hero__counter {
  position: absolute;
  left: 0;
  bottom: clamp(20px, 5vw, 64px);
  width: clamp(150px, 42vw, 190px);
  background: var(--paper);
  color: var(--ink);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.hero__counter-num {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
}
.hero__counter-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}
.hero__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: clamp(440px, 66vh, 720px);
  object-fit: cover;
  object-position: 50% 16%;
  filter: saturate(1.02) contrast(1.03);
}
.hero__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(16, 27, 39, 0.85), rgba(16, 27, 39, 0));
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.8);
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  border-top: 3px solid var(--gold);
}
.marquee__track {
  display: inline-flex;
  gap: 44px;
  animation: marquee 34s linear infinite;
  padding-right: 44px;
}
.marquee__item {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee__dot { color: var(--blue-pale); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: clamp(64px, 9vw, 110px) var(--gutter);
}
.section--light { background: var(--paper); }
.section--dark  { background: var(--ink); color: var(--paper); }
.section--blue  { background: var(--blue); color: #fff; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
}
.split > * { min-width: 0; }

/* --- Story ---------------------------------------------------------------- */

.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.story__eyebrow { margin-bottom: 18px; }
.story__title {
  font-size: clamp(34px, 3.6vw, 56px);
  margin-bottom: 24px;
  color: var(--ink);
}
.story__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.62;
  color: var(--body-dark);
  margin: 0 0 16px;
}
.story__para {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 16px;
}
.story__para:last-of-type { margin-bottom: 28px; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 120px), 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.stat { background: var(--paper); padding: 20px 18px; }
.stat__num {
  font-family: var(--display);
  font-size: 32px;
  color: var(--blue);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.story__media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 18px;
}
.story__media figure { margin: 0; }
.story__media .figure--wide { grid-column: 1 / -1; min-width: 100%; }
.figure--wide img {
  width: 100%;
  height: clamp(280px, 34vw, 430px);
  object-fit: cover;
  object-position: 50% 42%;
}
.figure--tall img {
  width: 100%;
  height: clamp(240px, 26vw, 330px);
  object-fit: cover;
  object-position: 50% 35%;
}
.figcaption {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 10px;
}

.pullquote {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(24px, 4vw, 30px) clamp(20px, 4vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pullquote p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.42;
  margin: 0 0 14px;
}
.pullquote cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Platform ------------------------------------------------------------- */

.platform__head {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.platform__title {
  font-size: clamp(34px, 4vw, 62px);
  max-width: 22ch;
}
.platform__note {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(246, 243, 237, 0.7);
  max-width: 34ch;
  margin: 0;
}

.planks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 1px;
  background: rgba(246, 243, 237, 0.14);
}
.plank {
  background: var(--ink);
  padding: clamp(20px, 4vw, 34px) clamp(18px, 4vw, 30px) clamp(22px, 4vw, 38px);
  transition: background 0.2s ease;
}
.plank:hover { background: var(--ink-raise); }
.plank--feature { background: var(--blue); }
.plank--feature:hover { background: var(--blue-lift); }
.plank__num {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: clamp(10px, 2.5vw, 20px);
}
.plank h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(19px, 4.6vw, 22px);
  line-height: 1.22;
  margin: 0 0 10px;
}
.plank p {
  font-size: clamp(14px, 3.7vw, 14.5px);
  line-height: 1.6;
  color: rgba(246, 243, 237, 0.72);
  margin: 0;
}
.plank--feature p { color: rgba(255, 255, 255, 0.82); }

/* --- Party / gallery ------------------------------------------------------ */

.section--gallery { padding: clamp(60px, 8vw, 96px) var(--gutter); }

.rule-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.rule-head__line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 26px;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: clamp(300px, 40vw, 380px);
  object-fit: cover;
}
.gallery .img--poilievre { object-position: 50% 30%; }
.gallery .img--klf       { object-position: 50% 35%; }
.gallery figcaption {
  font-size: 13px;
  line-height: 1.55;
  color: var(--body);
  padding-top: 12px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(24px, 4vw, 34px) clamp(20px, 4vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-card p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
}
.team-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.link-underline:hover { color: var(--amber); }

/* --- Membership ----------------------------------------------------------- */

.membership {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 104px) var(--gutter);
}
.membership__wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 12% 0%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 60%);
}
.membership__grid {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
  position: relative;
}
.membership__title {
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: 0.98;
  margin-bottom: 24px;
}
.membership__lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px;
  max-width: 42ch;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 16px;
  counter-reset: step;
}
.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aside-note {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.aside-note a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.aside-note a:hover { color: var(--gold); }

.card-paper {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 3vw, 40px) clamp(22px, 3vw, 38px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  min-width: 0;
}

.form-grid { display: grid; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-wide { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }

.field { display: grid; gap: 7px; }
.field__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
}
.input,
.select,
.textarea {
  border: 1px solid var(--rule-field);
  background: #fff;
  padding: 13px 14px;
  font-size: 15px;
  border-radius: var(--radius);
  outline: none;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.14);
}
.textarea { resize: vertical; }
.input--caps { text-transform: uppercase; }

.checkline {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--body);
}
.checkline input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.btn-submit-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 19px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-submit-gold:hover:not(:disabled) { background: var(--gold-lift); }
.btn-submit-gold:disabled { opacity: 0.65; cursor: progress; }

.form-fineprint {
  font-size: 12px;
  line-height: 1.6;
  color: var(--faint);
  margin: 0;
}

.form-error {
  font-size: 13px;
  line-height: 1.6;
  color: var(--error-ink);
  background: var(--error-bg);
  border: 1px solid var(--error-line);
  padding: 12px 14px;
  margin: 0;
}

.form-done { text-align: center; padding: 34px 8px; }
.form-done__tick {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 22px;
}
.form-done h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.form-done p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 26px;
}
.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 28px;
  border-radius: var(--radius);
}
.btn-ink:hover { background: var(--ink-raise); color: var(--paper); }

/* --- Donate --------------------------------------------------------------- */

.section--donate { padding: clamp(64px, 9vw, 104px) var(--gutter); }

.donate__title {
  font-size: clamp(34px, 4vw, 60px);
  margin-bottom: 22px;
  color: var(--ink);
}
.donate__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--body-dark);
  margin: 0 0 24px;
  max-width: 40ch;
}
.impact { display: grid; gap: 14px; margin-bottom: 28px; }
.impact__row { display: flex; gap: 12px; align-items: baseline; }
.impact__amt {
  font-family: var(--display);
  color: var(--blue);
  font-size: 15px;
  white-space: nowrap;
}
.impact__what {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body);
}
.legal {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.donate__panel { position: relative; min-width: 0; }

.donate-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(24px, 4vw, 38px) clamp(20px, 4vw, 34px);
  box-shadow: 0 24px 60px rgba(16, 27, 39, 0.09);
  min-width: 0;
}
.donate-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.cadence {
  display: flex;
  gap: 8px;
  background: var(--paper-warm);
  padding: 5px;
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.cadence__btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.cadence__btn.is-active {
  background: var(--ink);
  color: var(--paper);
}

.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.amount__btn {
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid var(--rule-field);
  background: #fff;
  color: var(--ink);
}
.amount__btn.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.donate-card .field { margin-bottom: 20px; }
.donor-fields { display: grid; gap: 12px; margin-bottom: 20px; }
.donor-fields .row-2 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }

.purse {
  border: 1px solid var(--rule-field);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  background: var(--paper-soft);
}
.purse__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.purse__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
}
.purse__seal {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.purse__slot {
  height: 44px;
  border: 1px solid var(--rule-fine);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: var(--ghost);
  font-size: 14px;
}
.purse__slot--full { margin-bottom: 10px; }
.purse__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.btn-submit-ink {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 19px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-submit-ink:hover { background: var(--ink-raise); }

.coming-soon {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 39, 0.9);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 34px;
  color: var(--paper);
}
.coming-soon[hidden] { display: none; }
.coming-soon__eyebrow { margin-bottom: 16px; }
.coming-soon h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.coming-soon p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246, 243, 237, 0.78);
  max-width: 34ch;
  margin: 0 0 24px;
}
.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: var(--radius);
}
.btn-gold-sm:hover { background: var(--gold-lift); color: var(--ink); }

/* --- Volunteer ------------------------------------------------------------ */

.section--volunteer { padding: clamp(64px, 9vw, 104px) var(--gutter); }

.volunteer__title {
  font-size: clamp(34px, 4vw, 60px);
  margin-bottom: 22px;
}
.volunteer__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(246, 243, 237, 0.78);
  margin: 0 0 28px;
  max-width: 40ch;
}
.shifts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.shifts li {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(246, 243, 237, 0.72);
  display: flex;
  gap: 12px;
}
.shifts li::before { content: "\25C6"; color: var(--gold); }

.card-dark {
  background: rgba(246, 243, 237, 0.05);
  border: 1px solid rgba(246, 243, 237, 0.16);
  padding: clamp(24px, 4vw, 38px) clamp(20px, 4vw, 34px);
  min-width: 0;
}
.card-dark h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
}
.input--dark {
  border: 1px solid rgba(246, 243, 237, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  padding: 13px 14px;
  font-size: 15px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s ease;
}
.input--dark::placeholder { color: rgba(246, 243, 237, 0.5); }
.input--dark:focus { border-color: var(--gold); }

.help-group { display: grid; gap: 10px; }
.help-group__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.6);
}
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.help-grid label {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  color: rgba(246, 243, 237, 0.85);
}
.help-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}
.btn-submit-gold--sm {
  font-size: 15px;
  padding: 18px 24px;
}

.done-dark { padding: 26px 4px; }
.done-dark h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--gold);
}
.done-dark p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246, 243, 237, 0.8);
  margin: 0;
}

/* --- Contact -------------------------------------------------------------- */

.section--contact { padding: clamp(64px, 9vw, 104px) var(--gutter); }

.contact__title {
  font-size: clamp(34px, 4vw, 60px);
  margin-bottom: 22px;
  color: var(--ink);
}
.contact__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--body-dark);
  margin: 0 0 32px;
  max-width: 38ch;
}
.contact-details {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.contact-details dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.contact-details dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
}
.boards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.card-white {
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(24px, 4vw, 38px) clamp(20px, 4vw, 34px);
  min-width: 0;
}
.btn-submit-blue {
  background: var(--blue);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-submit-blue:hover { background: var(--blue-lift); }

.done-light { padding: 26px 4px; }
.done-light h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--blue);
}
.done-light p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}

/* --- Closing CTA ---------------------------------------------------------- */

.closer {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(54px, 8vw, 76px) var(--gutter);
}
.closer__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.closer h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.closer p {
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 auto 30px;
  max-width: 52ch;
  color: rgba(16, 27, 39, 0.8);
}
.btn-ink--lg {
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 20px 34px;
}

/* --- Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--ink-deep);
  color: rgba(246, 243, 237, 0.6);
  padding: clamp(40px, 6vw, 54px) var(--gutter) 40px;
}
.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer__about { max-width: 46ch; }
.site-footer__name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 12px;
}
.site-footer__about p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 10px;
}
.site-footer__disclaimer {
  font-size: 12px !important;
  color: rgba(246, 243, 237, 0.42);
  margin-bottom: 0 !important;
}
.site-footer__cols {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.footer-col {
  display: grid;
  gap: 9px;
}
.footer-col__head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 237, 0.4);
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(246, 243, 237, 0.75);
}
.footer-col a:hover { color: var(--gold); }

/* --- Footer: the "Cole builds these" pitch -------------------------------- */

/* Sits inside the footer using the same rules and gold accent as the rest of
   it, so it reads as part of the page rather than an advert bolted on. */
.site-footer__pitch {
  max-width: var(--shell);
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding-top: clamp(24px, 3vw, 30px);
  border-top: 1px solid rgba(246, 243, 237, 0.12);
  display: grid;
  gap: 10px;
}
.site-footer__pitch p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 243, 237, 0.72);
  margin: 0;
  max-width: 62ch;
}
.site-footer__pitch a {
  color: var(--gold);
  border-bottom: 1px solid rgba(224, 162, 69, 0.45);
}
.site-footer__pitch a:hover {
  color: var(--gold-lift);
  border-bottom-color: var(--gold-lift);
}

/* --- Footer: sample-gallery return link ----------------------------------- */

/* Deliberately quiet — this is scaffolding around the demo, not campaign copy. */
.site-footer__bottom {
  max-width: var(--shell);
  margin: clamp(24px, 3vw, 32px) auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 243, 237, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: baseline;
}
.back-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(246, 243, 237, 0.38);
}
.back-link:hover { color: rgba(246, 243, 237, 0.75); }
.site-footer__demo {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(246, 243, 237, 0.28);
}

/* --------------------------------------------------------------------------
   Narrow-screen adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .form-row-2,
  .form-row-wide,
  .donor-fields .row-2 { grid-template-columns: 1fr; }
  .amounts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .site-footer__bottom { justify-content: flex-start; }
}
