/* ============================================================
   MIKE PATEL FOR MAYOR OF BARDSTOWN — Campaign Stylesheet
   Palette: deep campaign red / warm gold / white
   (matches the door-hanger advertisement)
   Typography: Fraunces (display) + Inter (body)
   ============================================================ */

/* ── Design tokens ── */
:root {
  --red: #7a1c1c;          /* primary campaign red */
  --red-deep: #4e1010;     /* deep maroon */
  --red-mid: #932626;      /* mid red */
  --red-accent: #9a2a2a;     /* link / accent red */
  --gold-wash: #f7ecd6;     /* light gold wash */
  --ivory: #ffffff;
  --ivory-warm: #faf6ef;
  --ivory-deep: #ece2d0;
  --gold: #c9a24a;          /* campaign gold */
  --gold-bright: #e0c070;   /* bright gold */
  --gold-soft: #f7ecd6;
  --ink: #2a1a1a;
  --ink-soft: #4a3a38;
  --muted: #7a6a66;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(78, 16, 16, 0.12);
  --shadow-lg: 0 20px 60px rgba(78, 16, 16, 0.22);
  --radius: 18px;
  --max-width: 1180px;
}

/* ── Reset & base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  line-height: 1.15;
  color: var(--red);
  font-weight: 700;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

/* ── Eyebrow / kicker ── */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}
.eyebrow.center::before { display: none; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ivory-deep);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 800; color: var(--red); font-size: 19px; line-height: 1.1; }
.nav-logo .logo-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 42px;
  background: linear-gradient(135deg, var(--red), var(--red-mid));
  color: var(--gold-bright); display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 800; font-size: 20px;
}
.nav-logo small { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--gold); color: var(--red-deep) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-bright); color: var(--red-deep) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--red); cursor: pointer; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--red-deep) 0%, var(--red) 55%, var(--red-mid) 100%);
  color: var(--ivory);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(224,192,112,.22), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(201,162,74,.22), transparent 46%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; padding: 76px 24px 84px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.01em; }
.hero h1 .highlight { color: var(--gold-bright); }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); color: #f3e6d2; margin-top: 18px; font-weight: 500; }
.hero-tagline { color: #e6d3b8; margin-top: 16px; font-size: 1.02rem; max-width: 620px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: #f7ecda;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15.5px;
  cursor: pointer; border: 2px solid transparent; transition: all .2s ease;
}
.btn-gold { background: var(--gold); color: var(--red-deep); }
.btn-gold:hover { background: var(--gold-bright); color: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-mid); color: var(--white); transform: translateY(-2px); }

.hero-photo { position: relative; }
.hero-photo img {
  border-radius: 22px; box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.12); width: 100%;
}
.hero-photo .photo-tag {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--red-deep); font-weight: 800;
  padding: 10px 22px; border-radius: 999px; font-size: 14px; white-space: nowrap;
  box-shadow: var(--shadow);
}

/* ── Stat band ── */
.stats-band { background: var(--red); color: var(--white); padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-num { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--gold-bright); line-height: 1; }
.stat-label { font-size: 13.5px; color: #e8d6bd; margin-top: 10px; font-weight: 500; }

/* ── Section headings ── */
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.06rem; }

/* ── Cards ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--ivory-deep);
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-wash); font-size: 26px; margin-bottom: 18px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .card-link { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 14.5px; color: var(--red-accent); }

/* ── Issue cards (bigger) ── */
.issue-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--ivory-deep); display: flex; flex-direction: column; }
.issue-card .issue-top { padding: 30px 28px 0; }
.issue-card .issue-body { padding: 0 28px 30px; flex: 1; display: flex; flex-direction: column; }
.issue-card h3 { font-size: 1.35rem; margin: 14px 0 10px; }
.issue-card p { color: var(--ink-soft); font-size: .97rem; }
.issue-card .can-do {
  margin-top: 18px; background: var(--gold-wash); border-left: 4px solid var(--red-accent);
  padding: 14px 16px; border-radius: 0 10px 10px 0; font-size: .92rem; color: var(--red);
}
.issue-card .can-do strong { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--red-accent); margin-bottom: 5px; }

/* ── Wash sections ── */
.section-wash { background: var(--ivory-warm); }
.section-red { background: var(--red); color: var(--white); }
.section-red h2, .section-red h3 { color: var(--white); }
.section-red p { color: #e8d6bd; }

/* ── Quote banner ── */
.quote-banner { background: linear-gradient(135deg, var(--red), var(--red-mid)); color: var(--white); padding: 70px 0; text-align: center; }
.quote-banner blockquote { font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; max-width: 900px; margin: 0 auto; line-height: 1.35; }
.quote-banner cite { display: block; margin-top: 22px; font-style: normal; font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; }

/* ── About split ── */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.split img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.cred-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.cred-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.cred-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex: 0 0 auto; }

/* ── Timeline / events ── */
.timeline { display: grid; gap: 16px; max-width: 820px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 22px; background: var(--white); border: 1px solid var(--ivory-deep); border-radius: 14px; padding: 20px 24px; box-shadow: var(--shadow); align-items: center; }
.tl-date { font-family: 'Fraunces', serif; font-weight: 800; color: var(--red); font-size: 1.05rem; }
.tl-date small { display: block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.tl-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.tl-item p { color: var(--ink-soft); font-size: .93rem; }
.tl-item.hot { border-color: var(--gold); background: var(--gold-soft); }

/* ── CTA band ── */
.cta-band { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--red-deep); padding: 66px 0; text-align: center; }
.cta-band h2 { color: var(--red-deep); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band p { color: #4e1010; margin: 14px auto 28px; max-width: 640px; }
.cta-band .btn-red { background: var(--red-deep); color: var(--white); }

/* ── Footer ── */
.footer { background: var(--red-deep); color: #e0cdb4; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer a { color: #e0cdb4; font-size: 14.5px; display: block; margin-bottom: 9px; }
.footer a:hover { color: var(--gold-bright); }
.footer .footer-brand { font-family: 'Fraunces', serif; font-size: 20px; color: var(--white); font-weight: 800; margin-bottom: 12px; }
.footer .disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: 12.5px; color: #b79c86; line-height: 1.6; }

/* ── Forms ── */
.form-grid { display: grid; gap: 16px; max-width: 620px; margin: 0 auto; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--ivory-deep);
  border-radius: 12px; font-family: inherit; font-size: 15px; background: var(--white); color: var(--ink);
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--red-accent); border-color: var(--red-accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FAQ ── */
.faq-item { background: var(--white); border: 1px solid var(--ivory-deep); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-item summary { padding: 20px 24px; font-weight: 700; color: var(--red); cursor: pointer; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); }

/* ── Tag / pill ── */
.pill { display: inline-block; padding: 5px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.pill-hi { background: #d9f0e0; color: #1c6b3a; }
.pill-md { background: var(--gold-soft); color: #8a5f10; }
.pill-lo { background: #e6e9ee; color: #55606f; }

/* ── Card "learn more" trigger ── */
.card .card-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-weight: 700; font-size: 14.5px; color: var(--red-accent);
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
}
.card .card-more:hover { color: var(--gold); }
.card .card-more::after { content: '\2192'; transition: transform .2s ease; }
.card .card-more:hover::after { transform: translateX(4px); }

/* ── Modal / pop-up ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(40, 8, 8, 0.62); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .22s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--white); border-radius: 20px; max-width: 640px; width: 100%;
  max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold); position: relative;
  transform: translateY(14px) scale(.98); transition: transform .24s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-head {
  background: linear-gradient(135deg, var(--red-deep), var(--red-mid));
  color: var(--white); padding: 30px 34px 26px; border-radius: 14px 14px 0 0;
}
.modal-head .modal-icon { font-size: 34px; line-height: 1; margin-bottom: 12px; }
.modal-head h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.modal-head p { color: #f0dcc0; font-size: .96rem; }
.modal-body { padding: 28px 34px 34px; }
.modal-body p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1rem; }
.modal-body h4 {
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red-accent); margin: 22px 0 10px;
}
.modal-body ul { list-style: none; display: grid; gap: 10px; margin-bottom: 8px; }
.modal-body ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.modal-body ul li::before { content: '\2713'; color: var(--gold); font-weight: 800; flex: 0 0 auto; }
.modal-body .modal-callout {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  padding: 15px 18px; border-radius: 0 10px 10px 0; font-size: .95rem; color: var(--red-deep); margin-top: 20px;
}
.modal-close {
  position: absolute; top: 16px; right: 18px; width: 38px; height: 38px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 22px; line-height: 1;
  background: rgba(255,255,255,.16); color: var(--white); display: grid; place-items: center;
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(255,255,255,.3); }
body.modal-open { overflow: hidden; }

/* ── Card "learn more" trigger ── */
.card .card-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-weight: 700; font-size: 14.5px; color: var(--red-accent);
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
}
.card .card-more:hover { color: var(--gold); }
.card .card-more::after { content: '\2192'; transition: transform .2s ease; }
.card .card-more:hover::after { transform: translateX(4px); }

/* ── Modal / pop-up ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(40, 8, 8, 0.62); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity .22s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--white); border-radius: 20px; max-width: 640px; width: 100%;
  max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold); position: relative;
  transform: translateY(14px) scale(.98); transition: transform .24s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-head {
  background: linear-gradient(135deg, var(--red-deep), var(--red-mid));
  color: var(--white); padding: 30px 34px 26px; border-radius: 14px 14px 0 0;
}
.modal-head .modal-icon { font-size: 34px; line-height: 1; margin-bottom: 12px; }
.modal-head h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.modal-head p { color: #f0dcc0; font-size: .96rem; }
.modal-body { padding: 28px 34px 34px; }
.modal-body p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1rem; }
.modal-body h4 {
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red-accent); margin: 22px 0 10px;
}
.modal-body ul { list-style: none; display: grid; gap: 10px; margin-bottom: 8px; }
.modal-body ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); }
.modal-body ul li::before { content: '\2713'; color: var(--gold); font-weight: 800; flex: 0 0 auto; }
.modal-body .modal-callout {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  padding: 15px 18px; border-radius: 0 10px 10px 0; font-size: .95rem; color: var(--red-deep); margin-top: 20px;
}
.modal-close {
  position: absolute; top: 16px; right: 18px; width: 38px; height: 38px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 22px; line-height: 1;
  background: rgba(255,255,255,.16); color: var(--white); display: grid; place-items: center;
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(255,255,255,.3); }
body.modal-open { overflow: hidden; }

/* ── Language toggle ── */
.lang-toggle { font-size: 13px; font-weight: 700; border: 1px solid var(--ivory-deep); border-radius: 999px; padding: 6px 14px; color: var(--ink-soft); }
.lang-toggle:hover { border-color: var(--gold); color: var(--red); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory); flex-direction: column; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--ivory-deep); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Print ── */
@media print {
  .navbar, .hero-ctas, .cta-band, .footer { display: none; }
  body { background: #fff; }
}
/* ============================================================
   PHASE 6B — FULL CAPABILITY PARITY WITH REFERENCE SITE
   Hero collage · countdown bars · vote cards · calendar wall ·
   tools grid · pledge band · chat widget · video hub · reveal
   Palette: red / gold / white ONLY (matches the door-hanger ad)
   ============================================================ */

/* ── Button system (extended) ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--red-deep);
  box-shadow: 0 6px 18px rgba(201, 162, 74, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(78, 16, 16, 0.28);
  color: var(--red-deep);
}
.btn-secondary {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.btn-secondary:hover { background: var(--red); color: var(--white); }
.btn-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold:hover { background: var(--gold); color: var(--red-deep); }
.btn-green {
  background: var(--red-mid);
  border-color: var(--red-mid);
  color: var(--white);
}
.btn-green:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--red);
  border-color: var(--ivory-deep);
}
.btn-light:hover { background: var(--gold-soft); color: var(--red-deep); }
.btn-dark {
  background: var(--red-deep);
  color: var(--white);
  border-color: var(--red-deep);
}
.btn-dark:hover { background: var(--red); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 17.5px; }
.btn-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ── Section background variants ── */
.section-ivory-warm { background: var(--ivory-warm); }

/* ── Page hero (interior pages) ── */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(224,192,112,.18), transparent 60%),
    var(--red-deep);
  color: var(--white);
  padding: 60px 24px 68px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.8vw, 50px); margin-bottom: 12px; }
.page-hero p { max-width: 660px; margin: 0 auto; color: rgba(255,255,255,.85); font-size: 17px; }
.page-hero .btn-row { margin-top: 26px; gap: 22px; }

/* ── Promise / pillar cards ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--gold-wash);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.pillar-card h3 { font-size: 21px; margin-bottom: 10px; }
.pillar-card p { font-size: 15px; color: var(--ink-soft); }
.pillar-card .pillar-link {
  display: inline-block; margin-top: 14px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .04em;
  color: var(--red-accent); text-transform: uppercase;
}
.pillar-card:hover .pillar-link { color: var(--gold); }

/* ── Countdown bars ── */
.countdown-bar {
  background: var(--gold);
  color: var(--red-deep);
  padding: 14px 24px;
}
.countdown-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.countdown-label { font-weight: 800; font-size: 15px; letter-spacing: .02em; }
.countdown-timer { display: flex; gap: 14px; }
.countdown-unit { text-align: center; min-width: 54px; }
.countdown-unit .num {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 800; line-height: 1;
}
.countdown-unit .lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.countdown-bar.reg {
  background: var(--red);
  color: var(--white);
}
.countdown-bar.reg .countdown-label { color: var(--gold-bright); }
.countdown-bar.reg .countdown-unit .lbl { color: rgba(255,255,255,.75); }
.countdown-bar.reg a { color: var(--gold-bright); font-weight: 700; }

/* ── Card action rows + compact buttons ── */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.card-actions .btn { padding: 10px 20px; font-size: 13.5px; }

/* ── Vote page ── */
.vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.vote-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow);
  padding: 30px 26px;
}
.vote-card h3 { font-size: 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.vote-card p, .vote-card li { font-size: 15px; }
.vote-card li { color: var(--ink-soft); }
.vote-card ul { padding-left: 20px; margin: 8px 0; }
.vote-card ul li { margin-bottom: 6px; }
.vote-card .vote-note {
  margin-top: 14px;
  background: var(--gold-soft);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  color: var(--red-deep);
}
.vote-icon { font-size: 30px; line-height: 1; margin-bottom: 10px; }

/* ── Tool grid: every state-portal tool on one wall ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}
.tool-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ivory-warm);
  border-left: 4px solid var(--gold);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tool-card .tool-ico { font-size: 26px; line-height: 1; }
.tool-card h3 { font-size: 16.5px; margin: 0; }
.tool-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; flex-grow: 1; }
.tool-card .btn { margin-top: 6px; padding: 9px 18px; font-size: 13px; }

/* ── Calendar wall ── */
.cal-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cal-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: 14px;
  padding: 16px 20px;
}
.cal-date {
  text-align: center;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 10px;
  line-height: 1.25;
}
.cal-date .cal-mon { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-bright); }
.cal-date .cal-day { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 800; line-height: 1.05; }
.cal-date .cal-wkd { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.cal-info h3 { font-size: 17px; margin-bottom: 4px; }
.cal-info p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.cal-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cal-links .btn { padding: 9px 18px; font-size: 13px; }

/* ── Pledge band ── */
.pledge-band {
  background: linear-gradient(135deg, var(--red-deep), var(--red-mid));
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.pledge-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.pledge-band p { max-width: 640px; margin: 0 auto 26px; color: rgba(255,255,255,.85); font-size: 16.5px; }
.pledge-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Watch (video hub) ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.video-card .video-slot {
  aspect-ratio: 16 / 9;
  background: var(--red-deep);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-slot .slot-inner {
  text-align: center; padding: 20px; color: rgba(255,255,255,.7);
}
.video-slot .slot-inner .play-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px; color: var(--gold);
}
.slot-inner .slot-label { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.slot-inner .slot-title { font-family: 'Fraunces', serif; font-size: 18px; color: var(--white); margin-top: 6px; }
.video-card .video-body { padding: 20px 22px 24px; }
.video-card h3 { font-size: 19px; margin-bottom: 8px; }
.video-card p { font-size: 14.5px; color: var(--ink-soft); }
.video-card .video-transcript {
  padding: 0 22px 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.video-card .video-transcript strong { color: var(--red); display: block; margin-bottom: 6px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.video-card .video-transcript p { font-size: 13.5px; margin-bottom: 8px; }

/* ── Chatbot widget ── */
.chat-widget {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1000;
}
.chat-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 8px 18px;
  border-radius: 32px;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, var(--red), var(--red-mid));
  color: var(--gold-soft);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.chat-toggle-btn:hover { transform: scale(1.05); }
.chat-toggle-icon { font-size: 22px; line-height: 1; }
.chat-toggle-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.25;
  margin-top: 3px;
}
.chat-panel {
  position: absolute;
  bottom: 86px; right: 0;
  width: 340px;
  max-width: calc(100vw - 44px);
  height: 480px;
  max-height: calc(100vh - 120px);
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; animation: chatIn .25s ease; }
@keyframes chatIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-head {
  background: var(--red);
  color: var(--white);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.chat-head .chat-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.chat-head .chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--red-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.chat-head .chat-title { font-weight: 800; font-size: 15px; }
.chat-head .chat-sub { font-size: 11.5px; color: rgba(255,255,255,.75); }
.chat-head .chat-close {
  margin-left: auto;
  background: none; border: none;
  color: var(--white); font-size: 20px; cursor: pointer;
  opacity: .8;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: var(--ivory-warm);
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.8px;
  line-height: 1.55;
}
.chat-msg.bot {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ivory-deep);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--red);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-suggestions {
  display: flex; gap: 8px; padding: 10px 14px 4px;
  flex-wrap: wrap;
  background: var(--white);
}
.chat-sugg {
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red);
  padding: 6px 12px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Inter', sans-serif;
}
.chat-sugg:hover { background: var(--gold-soft); border-color: var(--gold); }
.chat-input-row {
  display: flex; gap: 8px; padding: 10px 14px 14px;
  background: var(--white);
}
.chat-input {
  flex: 1;
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: var(--white);
  color: var(--ink);
}
.chat-input:focus { border-color: var(--gold); }
.chat-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--red-deep);
  font-size: 16px;
  cursor: pointer;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Reveal-on-scroll ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Sticky nav shadow on scroll ── */
.navbar.scrolled { box-shadow: 0 6px 22px rgba(78,16,16,.14); }

/* ══════════════════════════════════════════════════════════════
   HERO BACKGROUND COLLAGE (full-bleed, zero distortion)
   Layers a 6-slide crossfading collage behind the hero text.
   Uses background-size:cover so the images NEVER stretch.
   ══════════════════════════════════════════════════════════════ */
.hero { position: relative; isolation: isolate; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* 6 slides crossfading in a 30s loop (5s each) */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroCrossfade 30s infinite;
  will-change: opacity;
}
.slide-1 { background-image: url('../images/hero-slide-1-downtown.jpg');  animation-delay: 0s; }
.slide-2 { background-image: url('../images/hero-slide-2-distillery.jpg'); animation-delay: 5s; }
.slide-3 { background-image: url('../images/hero-slide-3-neighborhood.jpg'); animation-delay: 10s; }
.slide-4 { background-image: url('../images/hero-slide-4-hotel.jpg');      animation-delay: 15s; }
.slide-5 { background-image: url('../images/hero-slide-5-community.jpg');  animation-delay: 20s; }
.slide-6 { background-image: url('../images/hero-slide-6-aerial.jpg');     animation-delay: 25s; }

/* 30s cycle, 6 slides => 5s each. Fade in over ~1s, hold, fade out. */
@keyframes heroCrossfade {
  0%    { opacity: 0; }
  3.33% { opacity: 1; }
  13.33%{ opacity: 1; }
  16.67%{ opacity: 0; }
  100%  { opacity: 0; }
}
/* Scrim so the headline stays readable over the collage. */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(78,16,16,.58) 0%, rgba(78,16,16,.34) 45%, rgba(78,16,16,.72) 100%),
    linear-gradient(to right, rgba(78,16,16,.74) 0%, rgba(78,16,16,.32) 48%, rgba(78,16,16,.12) 100%);
}
.hero::after { z-index: 1; }
.hero-inner { z-index: 2; }

/* Respect users who prefer reduced motion — freeze on the first slide */
@media (prefers-reduced-motion: reduce) {
  .hero-media video { display: none; }
  .hero-slide { animation: none; }
  .slide-1 { opacity: 1; }
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .hero-text { max-width: 100%; }
}
@media (max-width: 700px) {
  .cal-row { grid-template-columns: 100px 1fr; }
  .cal-links { grid-column: 1 / -1; justify-content: flex-start; }
  .chat-toggle-btn { padding: 7px 14px; min-height: 56px; }
  .chat-toggle-icon { font-size: 19px; }
  .chat-toggle-label { font-size: 11.5px; }
  .chat-panel { bottom: 78px; }
}

/* ── Name story (Meet Mike) ── */
.name-story {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--white);
  padding: 76px 0;
}
.name-story .container { max-width: 900px; }
.name-story .eyebrow { color: var(--gold-bright); }
.name-story h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.2;
  margin: 14px 0 22px;
  color: var(--white);
}
.name-story p { color: rgba(255,255,255,.9); font-size: 1.06rem; line-height: 1.75; margin-bottom: 18px; }
.name-story .name-pull {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold-bright);
  border-left: 4px solid var(--gold);
  padding-left: 22px;
  margin: 30px 0 8px;
}
.name-story .name-names {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 6px;
}
.name-story .name-chip {
  display: inline-block;
  border: 1px solid rgba(224,192,112,.55);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--gold-bright);
  background: rgba(255,255,255,.05);
}
.name-story .name-sign {
  margin-top: 26px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
}

/* ── Print-friendliness ── */
@media print {
  .navbar, .chat-widget, .nav-toggle, .countdown-bar, .cta-band, .footer { display: none !important; }
}
