/* ============================================================
   Peter Wojcik for Area G — campaign landing page
   Palette (matched to print materials):
   navy  #123249 | green #2f7d28 | gold #d4a24e
   cream #f7f3ea | ink   #1f2430
   ============================================================ */
:root {
  --navy: #123249;
  --navy-deep: #0c2334;
  --green: #2f7d28;
  --green-soft: #e8f1e4;
  --gold: #d4a24e;
  --gold-soft: #f3e6cd;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #1f2430;
  --muted: #5b6472;
  --line: #e4dccb;
  --shadow: 0 10px 30px rgba(18, 50, 73, 0.12);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }

h1, h2, h3, .brand-text strong { font-family: 'Archivo', 'Inter', sans-serif; }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: #c8923d; box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }
.btn-block { width: 100%; text-align: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.7rem 0;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.brand-monogram {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy); color: var(--gold);
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center; letter-spacing: .5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1rem; }
.brand-text small { color: var(--muted); font-size: 0.72rem; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; }
.main-nav { display: flex; gap: 1.25rem; margin-left: auto; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.92rem;
  padding: 0.35rem 0; border-bottom: 2px solid transparent; transition: border-color .15s, color .15s;
}
.main-nav a:hover { color: var(--green); border-color: var(--gold); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(47,125,40,.18), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(212,162,78,.25), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 4.5rem 0 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
  padding-bottom: 4rem;
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(212,162,78,.5); border-radius: 999px;
  padding: 0.35rem 0.95rem; margin-bottom: 1.2rem; background: rgba(212,162,78,.08);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05; font-weight: 900; letter-spacing: -1px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub { margin-top: 1.2rem; font-size: 1.12rem; color: rgba(255,255,255,.88); max-width: 34rem; }
.hero-line { margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,.72); max-width: 34rem; }
.hero-actions { margin-top: 1.8rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-election { margin-top: 1.8rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  padding: 0.6rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
}
.hero-photo-wrap { position: relative; }
.photo-frame {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  border: 4px solid rgba(255,255,255,.15);
  aspect-ratio: 3 / 4;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.photo-caption {
  margin-top: 0.9rem; background: var(--gold); color: var(--navy-deep);
  border-radius: 10px; padding: 0.7rem 1.1rem;
  display: flex; flex-direction: column; line-height: 1.3;
  box-shadow: var(--shadow);
}
.photo-caption strong { font-family: 'Archivo', sans-serif; font-size: 1.05rem; }
.photo-caption span { font-size: 0.82rem; font-weight: 600; }

/* communities strip */
.communities-strip { background: var(--green); }
.communities-inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 0.9rem 0;
}
.communities-label {
  color: rgba(255,255,255,.75); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.communities-inner ul { display: flex; gap: 1.6rem; list-style: none; flex-wrap: wrap; }
.communities-inner li {
  color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.05rem;
  letter-spacing: .5px;
}
.communities-inner li:not(:last-child)::after { content: "·"; margin-left: 1.6rem; color: var(--gold); }

/* ---------- generic section ---------- */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 2.8rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.5px; margin-top: .4rem; }
.section-sub { color: var(--muted); margin-top: .7rem; font-size: 1.05rem; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--green);
}
.section-head.light .section-eyebrow { color: var(--gold); }
.section-head.light h2 { color: #fff; }
.section-head.light .section-sub { color: rgba(255,255,255,.75); }

/* ---------- about ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; margin: .4rem 0 1rem; color: var(--navy); }
.about-copy p { color: #3a4150; margin-bottom: 1rem; font-size: 1.05rem; }
.commitment-card {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.commitment-card h3 { font-size: 1.25rem; color: var(--gold); margin-bottom: 1rem; font-weight: 800; }
.commitment-card ul { list-style: none; }
.commitment-card li {
  padding: 0.8rem 0 0.8rem 1.8rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.12); font-size: 0.98rem;
}
.commitment-card li:last-child { border-bottom: 0; }
.commitment-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0.8rem;
  color: var(--gold); font-weight: 800;
}

/* ---------- priorities ---------- */
.priorities { background: var(--cream); }
.priority-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.priority-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  border-top: 4px solid var(--gold);
}
.priority-card:nth-child(even) { border-top-color: var(--green); }
.priority-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.priority-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-soft); display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.priority-card:nth-child(even) .priority-icon { background: var(--gold-soft); }
.priority-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.priority-card > p { font-size: 0.95rem; color: var(--muted); margin-bottom: .9rem; }
.priority-card ul { list-style: none; }
.priority-card li {
  position: relative; padding-left: 1.3rem; font-size: 0.92rem;
  color: #3a4150; margin-bottom: 0.55rem;
}
.priority-card li::before {
  content: "▸"; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.priority-card:nth-child(even) li::before { color: var(--gold); }

/* ---------- first 100 days ---------- */
.days100 { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); }
.days-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.day-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 1.7rem;
  transition: background .18s ease, transform .18s ease;
}
.day-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.day-num {
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2.2rem;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 0.8rem;
}
.day-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: .5rem; font-weight: 800; }
.day-card p { color: rgba(255,255,255,.75); font-size: 0.9rem; }

/* ---------- voices ---------- */
.voices { background: var(--navy-deep); }
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.voice-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 2rem;
}
.voice-card blockquote {
  font-size: 1.02rem; color: rgba(255,255,255,.9); font-style: italic; line-height: 1.7;
}
.voice-card figcaption { margin-top: 1.1rem; color: var(--gold); font-weight: 700; font-size: 0.92rem; }

/* ---------- vote ---------- */
.vote { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.vote-date { text-align: center; background: var(--green-soft); border-radius: var(--radius); padding: 2.6rem 2rem; }
.vote-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
.vote-day { font-family: 'Archivo', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-top: .5rem; }
.vote-date-big {
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--navy); line-height: 1.05;
}
.vote-date-big span { color: var(--gold); }
.vote-date .btn { margin-top: 1.4rem; }
.vote-facts { display: grid; gap: 1.2rem; }
.vote-fact {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.5rem;
}
.vote-fact h3 { font-size: 1.02rem; color: var(--navy); font-weight: 800; margin-bottom: .3rem; }
.vote-fact p { font-size: 0.95rem; color: #3a4150; }

/* ---------- support ---------- */
.support {
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(212,162,78,.2), transparent 60%),
    var(--green);
  color: #fff;
}
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.support .section-eyebrow { color: var(--gold-soft); }
.support-copy h2 { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin: .5rem 0 1rem; }
.support-copy h2 .accent { color: var(--gold); }
.support-copy > p { color: rgba(255,255,255,.85); max-width: 30rem; }
.donate-box {
  margin-top: 1.8rem; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 1.5rem;
}
.donate-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .4rem; color: var(--gold); }
.donate-box p { font-size: 0.95rem; color: rgba(255,255,255,.85); }
.donate-agent { margin-top: .5rem; }
.donate-agent a { color: var(--gold); font-weight: 700; text-decoration: none; }
.donate-agent a:hover { text-decoration: underline; }

/* ---------- forms ---------- */
.signup-form, .contact-form {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
.signup-form h3, .contact-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; color: #3a4150; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; font-size: 0.95rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47,125,40,.15);
}
.field textarea { resize: vertical; }
.form-status { margin-top: 0.9rem; font-weight: 600; font-size: 0.92rem; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #b23b2e; }
.form-fineprint { margin-top: .8rem; font-size: 0.78rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--navy); margin: .4rem 0 .8rem; }
.contact-info > p { color: #3a4150; max-width: 28rem; }
.contact-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; flex-direction: column; }
.contact-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
.contact-list a { font-size: 1.08rem; font-weight: 700; color: var(--green); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 3rem 0 2rem; }
.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand div { display: flex; flex-direction: column; text-align: left; }
.footer-brand strong { color: #fff; font-family: 'Archivo', sans-serif; }
.footer-brand span { font-size: 0.82rem; }
.footer-slogan {
  font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; font-size: 1.05rem; margin-bottom: 1rem;
}
.footer-meta { font-size: 0.88rem; }
.footer-meta a { color: var(--gold); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-fine { margin-top: 1.2rem; font-size: 0.75rem; color: rgba(255,255,255,.45); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-photo-wrap { max-width: 420px; }
  .priority-grid { grid-template-columns: repeat(2, 1fr); }
  .days-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .vote-grid, .support-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .voices-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem 1.5rem; border-bottom: 0; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .priority-grid, .days-grid { grid-template-columns: 1fr; }
  .section { padding: 3.2rem 0; }
}
