/* ============================================
   Aaron Wiley for Utah House District 21
   Main Stylesheet
   ============================================
   CAMPAIGN COLORS (update here and below):
     Navy:       #034A76
     Navy dark:  #00456F
     Coral/Red:  #F36F6B
     Off-white:  #f8f6f2
     Light gray: #eeecea

   NOTE: All colors are hardcoded (no CSS variables)
   for maximum browser compatibility.
*/

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Barlow", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   URGENT BANNER
   To hide: add display:none to .urgent-banner
   ============================================ */
.urgent-banner {
  background: #F36F6B;
  color: #ffffff;
  text-align: center;
  padding: 13px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 100;
}
.urgent-banner a { color: #ffffff; text-decoration: underline; margin-left: 12px; }
.date-highlight {
  background: #ffffff;
  color: #F36F6B;
  padding: 2px 8px;
  border-radius: 3px;
  margin: 0 4px;
  font-weight: 800;
}

/* ============================================
   NAV
   ============================================ */
nav {
  background-color: #034A76;
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo img { height: 44px; display: block; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-social { display: flex; gap: 12px; }
.nav-social a {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.nav-social a:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background-color: #F36F6B !important;
  color: #ffffff !important;
  padding: 9px 22px !important;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background-color 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background-color: #F58A88 !important; }
.nav-donate {
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: border-color 0.2s, background-color 0.2s !important;
  white-space: nowrap;
}
.nav-donate:hover { border-color: #ffffff !important; background: rgba(255,255,255,0.1) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   Background image is set via inline style in index.html.
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,42,82,0.88) 0%,
    rgba(0,42,82,0.72) 55%,
    rgba(0,42,82,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 920px;
}
.hero-we-are {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.88;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: fadeUp 0.9s ease both;
}
.hero-we-are .line2 {
  color: #F36F6B;
  display: block;
  animation: fadeUp 0.9s 0.15s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  margin-top: 24px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 540px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-tags {
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.9s 0.45s ease both;
}
.hero-tags span { margin: 0 6px; color: #F36F6B; }
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s ease both;
}
.btn-primary {
  background-color: #F36F6B;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background-color: #F58A88; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.55);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: #ffffff; transform: translateY(-2px); }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
section { padding: 100px 8vw; }
.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F36F6B;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: #034A76;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.section-title.white { color: #ffffff; }
.section-title .accent { color: #F36F6B; }
.section-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: #555555;
  max-width: 680px;
}
.section-body p + p { margin-top: 16px; }
.section-body strong { color: #1a1a1a; font-weight: 600; }

/* ============================================
   MOVEMENT SECTION  (dark navy background)
   ============================================ */
.movement {
  background-color: #00456F;
  padding: 100px 8vw;
  position: relative;
  overflow: hidden;
}
.movement::before {
  content: "WE ARE 21";
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 13vw, 15rem);
  color: rgba(255,255,255,0.03);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.movement-text .section-body {
  color: rgba(255,255,255,0.88);
  max-width: 100%;
}
.movement-text .section-body p { font-size: 1.05rem; }
.movement-text .section-body p.bold-white { color: #ffffff; font-weight: 600; font-size: 1.15rem; }
.movement-text .section-body p.coral-big {
  color: #F36F6B;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}
.movement-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 10px;
}
.movement-photos .photo-big { grid-column: 1 / 3; border-radius: 6px; overflow: hidden; }
.movement-photos .photo-small { border-radius: 6px; overflow: hidden; }
.movement-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.movement-photos img:hover { transform: scale(1.03); }

/* ============================================
   WHY I'M RUNNING  (off-white background)
   ============================================ */
.why-running { background-color: #f8f6f2; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-photo { border-radius: 8px; overflow: hidden; position: sticky; top: 100px; }
.why-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.why-text .section-body { max-width: 100%; color: #444444; }
.why-text .section-body p + p { margin-top: 18px; }
.quote-pullout {
  border-left: 4px solid #F36F6B;
  padding: 16px 24px;
  margin: 28px 0;
  background: #ffffff;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.quote-pullout p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #034A76;
  line-height: 1.3;
  font-style: italic;
}

/* ============================================
   MEET AARON  (white background)
   ============================================ */
.meet-aaron { background-color: #ffffff; }
.aaron-intro {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.aaron-portrait { border-radius: 8px; overflow: hidden; }
.aaron-portrait img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.aaron-bio-text .section-body { max-width: 100%; }
.aaron-bio-text .section-body p + p { margin-top: 16px; }
.aaron-quote {
  background-color: #034A76;
  color: #ffffff;
  padding: 48px 40px 28px;
  border-radius: 6px;
  margin-top: 28px;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  position: relative;
}
.aaron-quote::before {
  content: "\201C";
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  color: #F36F6B;
  position: absolute;
  top: 0;
  left: 28px;
  line-height: 1.1;
  font-style: normal;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-grid-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 220px;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.photo-grid-item:hover img { transform: scale(1.05); }
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #ffffff;
  padding: 24px 14px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   ISSUES / COMMITMENT  (light gray background)
   ============================================ */
.commitment { background-color: #eeecea; }
.commitment-intro { max-width: 700px; margin-bottom: 56px; }
.issue-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.issue-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 36px;
  border-top: 4px solid #034A76;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
}
.issue-card:nth-child(2) { border-top-color: #F36F6B; }
.issue-card:nth-child(3) { border-top-color: #2a7a4b; }
.issue-card:nth-child(4) { border-top-color: #7b4fa0; }
.issue-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.issue-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: #034A76;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.issue-desc { color: #555555; line-height: 1.65; font-size: 0.95rem; margin-bottom: 14px; }
.issue-points { list-style: none; padding: 0; }
.issue-points li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.5;
}
.issue-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #F36F6B;
  font-weight: 700;
}

/* ============================================
   HOW WE WIN  (navy background — white text)
   ============================================ */
.how-we-win {
  background-color: #034A76;
  color: #ffffff;
  text-align: center;
  padding: 100px 8vw;
}
.caucus-date-badge {
  display: inline-block;
  background-color: #F36F6B;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.caucus-location {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 22px 48px;
  display: inline-block;
  margin: 28px auto;
  font-family: "Barlow Condensed", sans-serif;
}
.caucus-location .loc-title {
  font-weight: 800;
  font-size: 1.5rem;
  color: #F36F6B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.caucus-location .loc-address {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 52px 0;
  text-align: left;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.12);
}
.step-number {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: #F36F6B;
  line-height: 1;
  margin-bottom: 10px;
}
.step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.step-desc { color: rgba(255,255,255,0.78); line-height: 1.65; font-size: 0.95rem; }
.virtual-note { color: rgba(255,255,255,0.60); font-size: 0.9rem; margin-top: 18px; }
.virtual-note a { color: #F36F6B; text-decoration: underline; }

/* ============================================
   GET INVOLVED / SIGNUP FORM  (off-white background)
   ============================================ */
.get-involved { background-color: #f8f6f2; }
.involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-wrapper {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 44px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #034A76;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e0ddd8;
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: border-color 0.2s;
  background: #faf9f7;
}
.form-group input:focus { outline: none; border-color: #034A76; }
.checkboxes { margin: 20px 0; }
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #F36F6B;
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-item .cb-label { font-size: 0.92rem; line-height: 1.4; color: #1a1a1a; cursor: pointer; }
.checkbox-item .cb-label strong { display: block; font-weight: 600; color: #034A76; font-size: 0.95rem; }
.checkbox-item .cb-label span { color: #777777; font-size: 0.85rem; }
.btn-submit {
  width: 100%;
  background-color: #F36F6B;
  color: #ffffff;
  border: none;
  padding: 17px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  margin-top: 6px;
}
.btn-submit:hover { background-color: #F58A88; transform: translateY(-2px); }
.why-join-list { margin-top: 36px; list-style: none; }
.why-join-list li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.wj-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.wj-text strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #034A76;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.wj-text span { font-size: 0.9rem; color: #666666; line-height: 1.5; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #002A52;
  color: rgba(255,255,255,0.65);
  padding: 64px 8vw 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo img { height: 48px; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); }
.footer-tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F36F6B;
  margin-bottom: 10px;
}
.footer-email { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; }
.footer-email:hover { color: #ffffff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background-color: #F36F6B; color: #ffffff; border-color: #F36F6B; }
.footer-nav {
  display: block;
  position: static;
  background: none;
  padding: 0;
  height: auto;
  box-shadow: none;
  z-index: auto;
}
.footer-nav h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-nav ul a:hover { color: #F36F6B; }
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #034A76;
  text-transform: uppercase;
}
.form-success p { color: #666666; margin-top: 10px; line-height: 1.6; }
.form-success .chant {
  margin-top: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #F36F6B;
  letter-spacing: 0.05em;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   CONVENTION SECTION  (dark teal background)
   ============================================ */
.convention {
  background-color: #0c3247;
  color: #ffffff;
  text-align: center;
  padding: 100px 8vw;
}
.conv-badge {
  display: inline-block;
  background-color: #e86042;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.conv-steps-grid {
  grid-template-columns: repeat(4, 1fr);
}
.conv-venue {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(232,96,66,0.4);
  border-radius: 8px;
  padding: 28px 48px;
  display: inline-block;
  margin: 40px auto;
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
}
.conv-venue-label {
  display: inline-block;
  background: #e86042;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.conv-venue-name {
  font-weight: 800;
  font-size: 1.5rem;
  color: #e86042;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.conv-venue-address {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 4px;
}
.conv-venue-detail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.conv-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.55);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: #ffffff; transform: translateY(-2px); }

/* ============================================
   CONVENTION DAY TIMELINE
   ============================================ */
.conv-timeline {
  background-color: #0f3a52;
  color: #ffffff;
  text-align: center;
  padding: 100px 8vw;
}
.timeline-list {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(232,96,66,0.3);
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}
.timeline-item.tl-last { margin-bottom: 0; }
.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232,96,66,0.4);
  border: 2px solid #e86042;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.tl-dot-highlight {
  background: #e86042;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 4px rgba(232,96,66,0.2);
}
.tl-content { flex: 1; }
.tl-time {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e86042;
  margin-bottom: 4px;
}
.tl-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.tl-desc { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.65; }
.tl-callout {
  border-left: 3px solid #e86042;
  background: rgba(232,96,66,0.1);
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate {
  background-color: #0c3247;
  color: #ffffff;
  text-align: center;
  padding: 100px 8vw;
}
.donate-amounts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.amount-pill {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: 4px;
  display: inline-block;
}
.btn-donate {
  display: block;
  max-width: 500px;
  margin: 0 auto 16px;
  background: #e86042;
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}
.btn-donate:hover { background: #f07055; transform: translateY(-2px); }
.donate-disclaimer {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ============================================
   WEST SIDE NEEDS YOU (INVOLVE)
   ============================================ */
.involve {
  background-color: #0f3a52;
  color: #ffffff;
  text-align: center;
  padding: 100px 8vw;
}
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}
.involve-card {
  background: #163d55;
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.involve-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.involve-card-cta { border: 2px solid rgba(232,96,66,0.5); }
.involve-cta-arrow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #e86042;
  line-height: 1;
  margin-bottom: 10px;
}

/* ============================================
   CAUCUS ARCHIVE NOTICE (used on /caucus page)
   ============================================ */
.caucus-archive-notice {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 4px solid #e86042;
  border-radius: 0 8px 8px 0;
  padding: 18px 28px;
  margin: 0 auto 40px;
  max-width: 680px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
}
.caucus-archive-notice a { color: #e86042; text-decoration: underline; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  section { padding: 70px 6vw; }
  .movement, .how-we-win, .convention, .conv-timeline, .donate, .involve { padding: 70px 6vw; }
  nav { padding: 0 20px; position: relative; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy, #034A76);
    padding: 20px 24px;
    gap: 18px;
    z-index: 98;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .movement-grid,
  .why-grid,
  .aaron-intro,
  .involved-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .issue-cards, .steps-grid { grid-template-columns: 1fr; }
  .conv-steps-grid { grid-template-columns: 1fr 1fr; }
  .involve-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .aaron-portrait img { height: 360px; }
  .why-photo { position: static; }
  .why-photo img { height: 380px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .movement-photos { grid-template-rows: 220px 160px; }
  .conv-venue { padding: 22px 24px; }
  .timeline-list::before { display: none; }
}
