/* ═══════════════════════════════════════════════════════════════
   St Paul's Project 200 — styles.css
   Style Guide v1.0 implemented as CSS custom properties
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Nunito:wght@400;700;800&family=Pacifico&family=Caveat:wght@500;700&display=swap');

/* ─── TOKENS ─── */
:root {
  /* Brand colours */
  --crimson: #9B1B30;
  --gold: #C9A646;
  --cream: #F8F4E9;
  --charcoal: #333333;
  --olive: #6B7A4B;
  --olive-light: #E8EAE1;

  /* Dark tones */
  --deep-crimson: #1a0008;
  --dark-red: #3C0512;
  --near-black: #1a1a1a;
  --dark-surface: #2a2a2a;

  /* Status colours (admin) */
  --status-pending-bg: #fff8e1;
  --status-pending-text: #b07a00;
  --status-confirmed-bg: rgba(42,108,42,0.3);
  --status-confirmed-text: #7ecb7e;
  --status-overdue-bg: rgba(155,27,48,0.3);
  --status-overdue-text: #ff8a8a;
  --status-anon-bg: #E8EAE1;
  --status-anon-text: #6B7A4B;

  /* Brick palette */
  --brick-terracotta: #8B5A3A;
  --brick-crimson: #9B1B30;
  --brick-chestnut: #6B3A2A;
  --brick-gold: #C9A646;
  --brick-olive: #6B7A4B;
  --brick-dark-oak: #3D2210;
  --brick-stone: #7A6A5A;
  --brick-slate: #4A5568;
  --brick-forest: #2D4A3E;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
  --font-brick-pacifico: 'Pacifico', cursive;
  --font-brick-caveat: 'Caveat', cursive;
  --font-mono: 'Courier New', monospace;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 80px;

  /* Border radius */
  --radius-brick: 3px;
  --radius-btn-sm: 6px;
  --radius-btn-lg: 8px;
  --radius-card: 12px;
  --radius-pill: 24px;

  /* Layout */
  --max-page: 1100px;
  --max-hero-text: 840px;
  --max-form: 640px;

  /* Hero gradient */
  --hero-gradient: linear-gradient(160deg, rgba(60,5,18,.92) 0%, rgba(155,27,48,.88) 55%, rgba(50,4,16,.95) 100%);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── CONTAINER ─── */
.container { max-width: var(--max-page); margin: 0 auto; padding: 0 40px; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(51,51,51,0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 0 40px; display: flex; align-items: center; height: 48px;
}
.nav-brand {
  font-family: var(--font-display); color: var(--gold);
  font-size: 0.92rem; font-weight: 700; white-space: nowrap; text-decoration: none;
}
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-link {
  color: rgba(255,255,255,0.8); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  transition: color 0.2s; padding: 4px 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-gold-line {
  position: fixed; top: 48px; left: 0; right: 0;
  height: 3px; background: var(--gold); z-index: 100;
}

/* ─── SIDE ICONS ─── */
.side-icons {
  position: fixed; right: 12px; top: 55%; transform: translateY(-50%);
  z-index: 99; display: flex; flex-direction: column; gap: 8px;
}
.side-icon {
  width: 48px; height: 48px; min-width: 48px; min-height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; font-size: 18px; font-weight: 700;
  transition: all 0.2s; border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.side-icon.info  { background: var(--olive); color: #fff; }
.side-icon.email { background: var(--charcoal); color: #fff; }
.side-icon.help  { background: var(--gold); color: #3a2800; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; border: none; cursor: pointer;
  font-family: var(--font-body); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 800; text-decoration: none;
  transition: all 0.25s; line-height: 1.2;
}
.btn-primary {
  background: #111; color: #fff; border-radius: var(--radius-btn-lg);
  padding: 18px 56px; font-size: 0.85rem;
}
.btn-primary:hover { background: #333; transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: #3a2800; border-radius: var(--radius-btn-lg);
  padding: 18px 48px; font-size: 0.85rem;
}
.btn-gold:hover { background: #b8922a; transform: translateY(-2px); }
.btn-secondary {
  background: var(--olive); color: #fff; border-radius: var(--radius-btn-sm);
  padding: 14px 36px; font-size: 0.82rem;
}
.btn-secondary:hover { background: var(--gold); color: #3a2800; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--crimson);
  border: 1.5px solid var(--crimson); border-radius: var(--radius-btn-sm);
  padding: 13px 36px; font-size: 0.82rem;
}
.btn-ghost:hover { background: var(--crimson); color: #fff; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 7px;
}
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #D3D1C7; border-radius: var(--radius-btn-lg);
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--charcoal); background: #fff; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: #aaa; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative; background: var(--deep-crimson);
  overflow: hidden; display: flex; flex-direction: column; padding-top: 51px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-gradient); z-index: 1;
}
.hero-title-bar {
  position: relative; z-index: 2; text-align: center; padding: 52px 40px 0;
}
.hero-title-bar h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem); color: #fff; line-height: 1.15;
}
.hero-title-bar .gold { color: var(--gold); }
.hero-title-bar .dash { color: rgba(255,255,255,0.35); margin: 0 10px; }
.hero-body {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; max-width: 1200px; margin: 0 auto;
  padding: 32px 56px 56px; width: 100%;
}
.hero-left { text-align: center; padding-top: 8px; }
.hero-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(0.92rem, 1.6vw, 1.15rem); color: var(--gold);
  margin-bottom: 28px; line-height: 1.5;
}
.hero-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.78);
  line-height: 1.95; margin-bottom: 16px; text-align: center;
}
.hero-thanks {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 0.92rem;
  margin-top: 20px; margin-bottom: 32px;
}
.hero-cta-wrap { text-align: center; }
.hero-right { display: flex; flex-direction: column; align-items: center; padding-top: 12px; }
.hero-image-frame {
  width: 100%; max-width: 520px; border-radius: 10px; overflow: hidden;
  border: 3px solid rgba(201,166,70,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.hero-image-frame img { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-image-caption {
  margin-top: 10px; font-size: 0.64rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  font-weight: 700; text-align: center;
}

/* ─── SECTIONS ─── */
section { padding: 72px 0; }
.section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive); font-weight: 700; margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display); font-size: 1.65rem;
  color: var(--deep-crimson); margin-bottom: 6px; line-height: 1.25;
}
.section-sub {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 1rem; margin-bottom: 32px;
}

/* ─── ABOUT SECTION ─── */
.about-section { background: var(--cream); }
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--deep-crimson); text-align: center;
  margin-bottom: 16px; font-weight: 700;
}
.about-intro {
  font-size: 0.92rem; color: #555; line-height: 1.88;
  text-align: center; max-width: 780px; margin: 0 auto 48px;
}
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
.about-card { position: relative; }
.about-card-img {
  width: 100%; height: 260px; border-radius: 10px; overflow: hidden;
  position: relative;
}
.about-card-img img { width: 100%; height: 100%; object-fit: cover; }
.about-card-label {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 4px; z-index: 2;
}
.label-current { background: var(--charcoal); color: #fff; }
.label-proposed { background: var(--crimson); color: #fff; }
.about-card-text { font-size: 0.85rem; color: #555; line-height: 1.7; margin-top: 14px; }
.about-cta { text-align: center; margin-top: 8px; }
.about-cta-text {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 1rem; margin-bottom: 20px;
}

/* ─── CONTENT GRID (why now, etc.) ─── */
.content-section { background: #fff; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.content-text p { font-size: 0.95rem; color: #555; line-height: 1.88; margin-bottom: 16px; }
.content-text strong { color: var(--gold); }
.content-image { border-radius: var(--radius-card); overflow: hidden; }
.content-image img { width: 100%; height: 100%; object-fit: cover; }

/* ─── PLAN CARDS ─── */
.plan-section { background: var(--cream); }
.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.plan-card {
  background: #fff; border-radius: var(--radius-card);
  padding: 36px 40px; border-left: 4px solid var(--gold);
}
.plan-card h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--crimson); margin-bottom: 12px;
}
.plan-card p { font-size: 0.9rem; color: #555; line-height: 1.85; }

/* ─── THREE WAYS CARDS ─── */
.ways-section { background: #fff; }
.ways-heading {
  font-family: var(--font-display); font-size: 1.55rem;
  color: var(--deep-crimson); text-align: center; margin-bottom: 8px;
}
.ways-sub {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 0.95rem;
  text-align: center; margin-bottom: 36px;
}
.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.way-card {
  background: var(--cream); border-radius: var(--radius-card);
  padding: 32px 28px; text-align: center; transition: transform 0.2s;
}
.way-card:hover { transform: translateY(-4px); }
.way-card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem;
}
.way-card h4 {
  font-family: var(--font-display); font-size: 1.02rem;
  color: var(--deep-crimson); margin-bottom: 10px;
}
.way-card p { font-size: 0.84rem; color: #666; line-height: 1.75; }

/* ─── PROGRESS BAR ─── */
.progress-wrap { margin-bottom: 40px; }
.progress-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress-label { font-size: 0.82rem; font-weight: 700; color: var(--charcoal); }
.progress-pct { font-size: 0.88rem; font-weight: 800; color: var(--gold); }
.progress-track {
  height: 28px; background: #e5e5e5; border-radius: 14px;
  overflow: hidden; margin-bottom: 14px;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, #b8922a, var(--gold));
  border-radius: 14px; transition: width 1.5s ease-out;
}
.progress-bottom { display: flex; justify-content: space-between; align-items: baseline; }
.progress-raised { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); }
.progress-raised em { color: var(--gold); font-style: normal; }
.progress-remain { font-size: 0.78rem; color: #999; }

/* ─── PROGRESS STATS BAND ─── */
.progress-band { background: var(--charcoal); padding: 64px 40px; }
.progress-band-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; text-align: center; margin-bottom: 48px; font-weight: 700;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: var(--max-page); margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-line { width: 36px; height: 3px; background: var(--gold); margin: 0 auto 14px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff; font-weight: 700; margin-bottom: 6px;
}
.stat-num.gold { color: var(--gold); }
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 700;
}

/* ─── GOLD DIVIDER ─── */
.gold-divider { height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--hero-gradient);
  text-align: center; padding: 64px 40px;
}
.cta-band h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: #fff; margin-bottom: 8px;
}
.cta-band p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--gold); margin-bottom: 32px;
}

/* ─── WALL ─── */
.wall {
  background: #fff; border-radius: var(--radius-card);
  padding: 20px; min-height: 320px; border: 1px solid var(--olive-light);
}
.wall-row { display: flex; gap: 5px; margin-bottom: 5px; flex-wrap: wrap; }
.brick {
  height: 44px; border-radius: var(--radius-brick);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.15s; position: relative; overflow: hidden;
}
.brick:hover { transform: scale(1.05); z-index: 2; }
.brick span {
  font-size: 6.5px; color: rgba(255,255,255,0.92); font-weight: 700;
  text-align: center; padding: 0 5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brick.donated { box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); }
.brick.empty { background: #e8e8e8; box-shadow: none; }
.brick.empty:hover { background: #d5d5d5; }

/* Brick widths */
.bw1 { width: 90px; } .bw2 { width: 130px; } .bw3 { width: 80px; }
.bw4 { width: 110px; } .bw5 { width: 100px; } .bw6 { width: 120px; }

/* ─── WALL LEGEND ─── */
.legend { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.legend-colours { display: flex; gap: 4px; }
.legend-swatch { width: 16px; height: 16px; border-radius: 2px; box-shadow: inset 0 1px 3px rgba(0,0,0,0.2); }
.legend-label { font-size: 0.76rem; color: #555; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.legend-empty { width: 16px; height: 16px; border-radius: 2px; background: #e8e8e8; }

/* ─── TEST BANNER ─── */
.test-banner {
  background: var(--olive); color: #fff; text-align: center;
  padding: 12px 20px; border-radius: var(--radius-btn-lg);
  font-family: var(--font-mono); font-size: 0.76rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.test-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ─── BRICK DETAIL TOOLTIP ─── */
.brick-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); background: #fff; color: var(--charcoal);
  padding: 12px 16px; border-radius: var(--radius-btn-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); white-space: nowrap;
  font-size: 0.8rem; z-index: 10; pointer-events: none; opacity: 0;
  transition: opacity 0.15s;
}
.brick-tooltip .tooltip-name { font-weight: 700; margin-bottom: 2px; }
.brick-tooltip .tooltip-msg { color: #666; font-style: italic; }
.brick:hover .brick-tooltip { opacity: 1; }

/* ─── THANK-YOU MODAL (Dex) ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content {
  background: #fff; border-radius: var(--radius-card);
  padding: 48px; max-width: 480px; width: 90%; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-content h2 {
  font-family: var(--font-display); color: var(--crimson);
  font-size: 1.6rem; margin-bottom: 12px;
}
.modal-content p { font-size: 0.92rem; color: #555; line-height: 1.8; margin-bottom: 20px; }
.modal-close {
  background: var(--gold); color: #3a2800; border: none;
  padding: 12px 36px; border-radius: var(--radius-btn-lg);
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.modal-close:hover { background: #b8922a; }

/* ─── POPUPS (help, charity, address) ─── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.popup-overlay.active { opacity: 1; pointer-events: auto; }
.popup {
  background: #fff; border-radius: var(--radius-card);
  padding: 36px; max-width: 440px; width: 90%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.popup h3 {
  font-family: var(--font-display); color: var(--crimson);
  font-size: 1.2rem; margin-bottom: 12px;
}
.popup p { font-size: 0.88rem; color: #555; line-height: 1.8; margin-bottom: 12px; }
.popup a { color: var(--gold); text-decoration: underline; }
.popup-close {
  display: inline-block; margin-top: 12px;
  background: var(--olive); color: #fff; border: none;
  padding: 10px 28px; border-radius: var(--radius-btn-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.popup-close:hover { background: var(--gold); color: #3a2800; }

/* ─── FOOTER ─── */
footer {
  background: var(--near-black); color: rgba(255,255,255,0.5);
  padding: 52px 40px 0; font-size: 0.82rem; line-height: 1.85;
}
.footer-inner {
  max-width: var(--max-page); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding-bottom: 36px;
}
.footer-col .brand-text {
  font-family: var(--font-display); color: var(--gold);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
.footer-col p { color: rgba(255,255,255,0.45); line-height: 1.85; }
.footer-col a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  display: block; line-height: 2.2; transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-heading {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 14px;
}
.footer-bottom {
  max-width: var(--max-page); margin: 0 auto; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: underline; cursor: pointer; }
.footer-bottom a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff;
  text-decoration: none; transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.8; }

/* ─── DONATION FORM SPECIFIC ─── */
.brick-preview {
  border-radius: var(--radius-brick); padding: 16px 20px;
  min-height: 80px; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); transition: all 0.3s;
}
.brick-preview span {
  color: rgba(255,255,255,0.92); font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4); text-align: center;
}
.colour-picker { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.colour-swatch {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  border-radius: var(--radius-brick); cursor: pointer;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
  border: 3px solid transparent; transition: border-color 0.15s;
}
.colour-swatch.selected { border-color: var(--gold); }
.font-picker { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.font-option {
  padding: 10px 16px; border-radius: var(--radius-btn-sm);
  border: 1.5px solid #D3D1C7; cursor: pointer; font-size: 0.85rem;
  transition: all 0.15s; background: #fff; min-height: 44px;
  display: flex; align-items: center;
}
.font-option.selected { border-color: var(--gold); background: rgba(201,166,70,0.08); }
.char-counter {
  font-size: 0.72rem; color: #999; text-align: right; margin-top: 4px;
}
.char-counter.warn { color: var(--crimson); font-weight: 700; }
.privacy-notice {
  background: var(--olive-light); border-radius: var(--radius-btn-lg);
  padding: 16px 20px; font-size: 0.78rem; color: #666; line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── RETURNING DONOR SECTION ─── */
.returning-donor {
  background: var(--olive-light); border-radius: var(--radius-card);
  padding: 24px 28px; margin-bottom: 24px;
}
.returning-donor h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--deep-crimson); margin-bottom: 12px;
}
.returning-brick {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.returning-brick:last-child { border-bottom: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 0 16px; }
  .nav-links { gap: 14px; }
  .nav-link { font-size: 0.6rem; letter-spacing: 0.08em; }
  .hero-body { grid-template-columns: 1fr; padding: 24px 24px 40px; }
  .hero-right { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  section { padding: 48px 0; }
  .side-icons { display: none; }
}
@media (max-width: 480px) {
  .nav-brand { font-size: 0.78rem; }
  .nav-links { gap: 10px; }
  .nav-link { font-size: 0.55rem; }
  .hero-title-bar h1 { font-size: 1.6rem; }
  .hero-body { padding: 20px 16px 32px; }
  .btn-primary { padding: 16px 32px; font-size: 0.78rem; }
  .about-card-img { height: 200px; }
  .brick { height: 44px; } /* maintain 44px touch target */
}
