/* Give a Turkey - design system v4
   Layout inspired by anthonynolan.org: clean, serious, story-first.
   Brand kept: Puimek display font, brand colors, hand-drawn illustrations. */

:root {
  /* Brand palette (orange theme, from Joseph's palette: vivid orange, cream, dark olive, green) */
  --red: #E04F17;
  --red-dark: #8A2D0A;
  --red-mid: #B33D0E;
  --red-accent: #F0631F;
  --off-white: #FAEECF;
  --cream: #FBF3E0;
  --white: #FFFFFF;
  --gray-text: #6B655A;
  --gray-dark: #4A463C;
  --gray-ink: #3E3A2F;

  /* Illustration palette (brand art, warmed to orange theme) */
  --ill-red: #E04F17;
  --ill-green: #679817;
  --ill-gold: #D27E26;
  --ill-brown: #C98F4E;
  --ill-brown-deep: #A9742A;
  --ill-bg: #FAEECF;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #8A2D0A 0%, #C13F0F 55%, #E04F17 100%);
  --grad-band: linear-gradient(120deg, #C13F0F 0%, #E04F17 100%);
  --grad-cta: linear-gradient(120deg, #8A2D0A 0%, #C13F0F 100%);
  --grad-meter: linear-gradient(90deg, #E04F17 0%, #F0631F 100%);

  /* Type */
  --font-display: 'Puimek', cursive;
  --font-body: 'Poppins', Arial, sans-serif;

  /* Rhythm */
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(31, 26, 26, 0.07);
  --shadow: 0 8px 28px rgba(31, 26, 26, 0.10);
  --shadow-lg: 0 18px 50px rgba(31, 26, 26, 0.16);
}

@font-face {
  font-family: 'Puimek';
  src: url('../fonts/puimek-regular.woff2') format('woff2'),
       url('../fonts/puimek-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--red-dark);
}

h1 { font-size: 3rem; letter-spacing: 0.3px; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; }

img { max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-gold { background: var(--ill-gold); color: var(--gray-ink); }
.btn-gold:hover { background: #E0A93A; color: var(--gray-ink); }

.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); box-shadow: none; }
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-white { background: var(--white); color: var(--red-dark); }
.btn-white:hover { background: var(--off-white); color: var(--red-dark); }

.btn-big { font-size: 1.3rem; padding: 16px 40px; }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(48, 48, 48, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(27, 27, 27, 0.05);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand img { width: 48px; height: 48px; object-fit: contain; }

.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--red-dark);
  line-height: 1;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ill-green);
}

.main-nav ul { display: flex; list-style: none; gap: 2px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

.main-nav a {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.main-nav a:hover { color: var(--red); background: var(--off-white); }
.main-nav a.active { color: var(--red); font-weight: 600; }

.nav-donate a {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
}

.nav-donate a:hover { background: var(--red-dark); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -12%;
  width: 55%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 { color: var(--white); margin-bottom: 16px; }

.hero-copy .tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ill-gold);
  margin-bottom: 14px;
}

.hero-copy p { font-size: 1.08rem; color: rgba(255, 255, 255, 0.93); max-width: 32em; margin-bottom: 26px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--red-dark);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 13px 20px;
  font-size: 0.98rem;
}

.trust-strip strong { color: var(--ill-gold); }

/* ---------- Sections ---------- */
.section { padding: 72px 24px; }
.alt-section { background: var(--cream); }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section-head { text-align: center; max-width: 740px; margin: 0 auto 46px; }

.section-head .kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--gray-text); font-size: 1.06rem; }

.accent { position: relative; display: inline-block; padding-bottom: 12px; }
.accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad-band);
}

.section-head .accent::after { left: 50%; transform: translateX(-50%); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid rgba(48, 48, 48, 0.08);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-text); font-size: 0.99rem; }
.card .card-link { font-weight: 600; margin-top: 14px; display: inline-block; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Stats / impact band ---------- */
.stats {
  background: var(--grad-band);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  display: block;
  line-height: 1.1;
}

.stat .label { color: rgba(255, 255, 255, 0.88); font-weight: 500; font-size: 0.95rem; }

/* ---------- Meter ---------- */
.meter-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(48, 48, 48, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 38px;
}

.meter-card h3 { text-align: center; margin-bottom: 6px; }

.meter-sub { text-align: center; color: var(--gray-text); margin-bottom: 26px; font-size: 1rem; }
.meter-sub strong { color: var(--red); }

.meter-track {
  background: var(--off-white);
  border-radius: 30px;
  height: 34px;
  padding: 4px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-meter);
  border-radius: 30px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.meter-numbers {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gray-ink);
}

.meter-numbers .raised { color: var(--red); font-size: 1.5rem; }

/* ---------- Countdown ---------- */
.countdown { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.countdown .unit {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  min-width: 88px;
  padding: 14px 10px 10px;
  text-align: center;
}

.countdown .unit .n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  display: block;
  line-height: 1;
}

.countdown .unit .l {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* ---------- Story blocks ---------- */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }

.story-block h2 { margin-bottom: 16px; }
.story-block p { color: var(--gray-text); margin-bottom: 14px; font-size: 1.04rem; }

.story-art img { border-radius: var(--radius); box-shadow: var(--shadow); }

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red-dark);
  border-left: 4px solid var(--red);
  padding: 6px 0 6px 22px;
  margin: 24px 0;
}

.pull-quote span { color: var(--red); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.step {
  background: var(--white);
  border: 1px solid rgba(48, 48, 48, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step .step-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  background: var(--grad-band);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray-text); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-cta);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 34em; margin: 0 auto 26px; font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(48, 48, 48, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red-dark);
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-q .chev { transition: transform 0.25s ease; color: var(--red); }

.faq-item.open .chev { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--gray-text); }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-dark);
  margin-bottom: 6px;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(48, 48, 48, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 79, 23, 0.16);
}

.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(48, 48, 48, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* ---------- Donation picker ---------- */
.donation-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }

.donation-picker button {
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 14px 8px;
  border: 1.5px solid rgba(48, 48, 48, 0.18);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  color: var(--gray-ink);
  transition: all 0.15s ease;
}

.donation-picker button:hover { border-color: var(--red); color: var(--red); }

.donation-picker button.selected { background: var(--red); border-color: var(--red); color: var(--white); }

/* Donate page: simplified full-width centered form */
.donate-layout { max-width: 780px; margin: 0 auto; }
.donate-head { text-align: center; margin-bottom: 26px; }
.donate-head h2 { font-size: 2.2rem; margin-bottom: 8px; }
.donate-head p { color: var(--gray-text); max-width: 560px; margin: 0 auto; }
.donate-card { padding: 30px 32px; }
#paypal-button-container, #paypal-subscribe-container { width: 100%; }
.donate-card .card-hint { text-align: center; }
.form-step { padding: 22px 0; border-bottom: 1px dashed rgba(224, 79, 23, 0.25); }
.form-step:last-of-type { border-bottom: 0; padding-bottom: 0; }
.step-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--grad-band); color: var(--white); font-weight: 700; font-size: 1rem; flex: none; }
.step-heading h3 { margin: 0; font-size: 1.25rem; }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.donate-info { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.donate-info .card { padding: 24px; }
.donate-info .card h3 { margin-bottom: 10px; }
.donate-info .card img { width: 100%; border-radius: 12px; margin-bottom: 14px; }
.meal-showcase { max-width: 620px; margin: 34px auto 0; text-align: center; }
.meal-showcase img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.meal-caption { font-size: 0.92rem; color: var(--gray-text); margin-top: 10px; }

/* Home how-it-works: photo left, steps 2x2 right */
.how-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 34px; align-items: center; }
.how-grid .meal-showcase { margin: 0; max-width: none; }
.how-grid .meal-showcase img { max-height: 560px; object-fit: cover; }
.steps-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-grid .meal-showcase { max-width: 620px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .donate-card { padding: 22px 18px; }
  .field-grid-2 { grid-template-columns: 1fr; }
  .donate-info { grid-template-columns: 1fr; }
}

/* Donate form validation: red outline per field + inline error + top banner */
.form-error-summary {
  display: none;
  background: #FDECEA;
  border: 1px solid #E57373;
  color: #8E0000;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-error-summary.show { display: block; }
.field-error-box { border-color: #C62828 !important; background: #FFF5F5 !important; }
.field-error-text { color: #C62828; font-size: 0.85rem; font-weight: 600; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--red-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 24px 30px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-inner h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ill-gold);
  margin-bottom: 14px;
}

.footer-inner a { color: rgba(255, 255, 255, 0.8); }
.footer-inner a:hover { color: var(--ill-gold); }

.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 9px; font-size: 0.95rem; }

.footer-about p { font-size: 0.96rem; margin-bottom: 14px; color: rgba(255, 255, 255, 0.75); }

.socials a {
  display: inline-block;
  margin-right: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ill-gold);
}

.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom .charity-badge {
  display: inline-block;
  background: var(--ill-gold);
  color: var(--gray-ink);
  font-weight: 700;
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 10px;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.75); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 60px 24px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .story-block { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .grid-3, .grid-4, .steps, .donation-picker { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Mobile hamburger nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--red-dark);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(48, 48, 48, 0.1);
    box-shadow: var(--shadow);
    padding: 10px 16px 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; justify-content: flex-start; }
  .main-nav a { padding: 13px 14px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-donate a { text-align: center; margin-top: 8px; }
}

/* ---------- Donate form message ---------- */
.donate-msg { font-size: 0.9rem; color: #C62828; margin-top: 10px; min-height: 1.2em; text-align: center; font-weight: 600; }

/* ---------- Square embedded card + contact address ---------- */
#card-container { min-height: 46px; }
.addr-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.card-hint { font-size: 0.8rem; color: var(--gray-text); margin-top: 6px; }
@media (max-width: 560px) { .addr-row { grid-template-columns: 1fr; } }

/* ---------- Rebuild fixes ---------- */
/* Active "Donate" nav button must keep white text on red (not red-on-red) */
.nav-donate a.active,
.nav-donate a.active:hover { color: var(--white); }

.hidden { display: none !important; }

/* Form labels clearer */
.field label { font-weight: 600; color: var(--gray-ink); display: block; margin-bottom: 6px; }
.req { color: var(--red); margin-left: 2px; }

/* Prominent success banner */
.donate-success {
  display: none;
  background: #E7F6EC;
  border: 2px solid #2E7D32;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  margin-top: 6px;
}
.donate-success.open { display: block; }
.donate-success .check { font-size: 2.6rem; line-height: 1; color: #2E7D32; }
.donate-success h3 { color: #1B5E20; margin: 12px 0 8px; font-size: 1.5rem; }
.donate-success p { color: #2E7D32; margin: 0; }

/* Amount field with $ prefix */
.amount-input { position: relative; }
.amount-input .amount-currency { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-ink); font-weight: 600; pointer-events: none; }
.amount-input input { width: 100%; padding-left: 30px; }

/* Fix: hero paragraph rule (white) must not override meter-sub text (gray) on white card */
.meter-card .meter-sub { color: var(--gray-text); }
.meter-card .meter-sub strong { color: var(--red); }

/* ---------- Donor type / business / anonymous ---------- */
.donor-type { display: flex; gap: 8px; }
.donor-type-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 1rem;
}
.donor-type-btn:hover { background: var(--off-white); }
.donor-type-btn.selected { background: var(--red); color: var(--white); }

.business-fields {
  background: var(--off-white);
  border: 1px dashed var(--red-mid, #B33D0E);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}

.field.checkbox .check-label { display: flex; align-items: center; gap: 10px; font-weight: 500; cursor: pointer; margin: 0; }
.field.checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--red); }
