/* ============================================
   Branden Fletcher ¡Dominguez! for State House
   District 3 — Brand: Navy / Spring Green / Spruce Green
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,600;0,800;1,700;1,800;1,900&family=Archivo+Black&display=swap');

:root {
  --navy: #15408C;
  --navy-dark: #0A1F45;
  --spring: #8ED389;
  --spring-deep: #6BBF66;
  --spruce: #145210;
  --off-white: #FAFAF7;
  --ink: #14213D;
  --gray: #5B6472;
  --border: #E3E7EE;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 800; }

p { margin: 0 0 1em; color: var(--ink); }

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  padding: 15px 32px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-3px); text-decoration: none; }

.btn-primary {
  background: var(--spring);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(142,211,137,0.35);
}
.btn-primary:hover { background: var(--spring-deep); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-donate {
  background: var(--spring);
  color: var(--navy-dark);
}
.btn-donate:hover { background: var(--spring-deep); }

.btn-sm {
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--spruce);
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  padding: 9px 20px;
}
.announce-bar a { color: #fff; text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  transition: padding 0.2s ease;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 20px;
}
.mobile-nav-row { display: none; }
.mobile-nav-dropdown {
  flex: 1;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.35);
  background: var(--navy-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 0.92rem;
  -webkit-appearance: none;
  appearance: none;
}
.mobile-nav-dropdown option { color: var(--ink); background: #fff; font-style: normal; }

.meet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.meet-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(20,33,61,0.18);
}
.meet-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
@media (max-width: 860px) {
  .meet-grid { grid-template-columns: 1fr; }
  .meet-photo { max-width: 340px; margin: 0 auto; }
}

.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { height: 50px; width: auto; transition: height 0.2s ease; }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.28); }
.site-header.scrolled .logo-chip .logo-mark { height: 34px; }

.logo-chip {
  display: inline-flex;
  align-items: center;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.logo-chip .logo-mark { height: 44px; transition: height 0.2s ease; }
.footer-logo.logo-chip .logo-mark { height: 100px; }

.brand-mark-plain {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(20,33,61,0.18));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.main-nav a:not(.btn) {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
}
.main-nav a:not(.btn):hover { color: var(--spring); text-decoration: none; }
.main-nav a.active:not(.btn) { color: var(--spring); }
.main-nav a.active:not(.btn)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--spring);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(ellipse 900px 500px at 85% -10%, rgba(142,211,137,0.22), transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 84px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 75%);
  pointer-events: none;
}
.hero-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -1px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(142,211,137,0.15);
  border: 1px solid rgba(142,211,137,0.5);
  color: var(--spring);
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero h1 { color: #fff; }
.hero h1 em { color: var(--spring); font-style: italic; }
.hero-sub {
  font-size: 1.2rem;
  color: #E8ECF5;
  max-width: 540px;
  margin-bottom: 26px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-signup {
  display: flex;
  gap: 8px;
  max-width: 480px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}
.hero-signup input {
  flex: 1;
  min-width: 140px;
  border: none;
  background: transparent;
  color: #fff;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.hero-signup input::placeholder { color: #B9C3D9; }
.hero-signup button {
  border: none;
  background: var(--spring);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.hero-signup button:hover { background: var(--spring-deep); }

.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #B9C3D9;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--spring); }

/* ---------- Interactive photo stack ---------- */
.photo-stack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.photo-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
}
.stack-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
  cursor: pointer;
  padding: 0;
  background: #fff;
  transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.25, 1), box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.stack-card:hover {
  box-shadow: 0 22px 40px rgba(0,0,0,0.4);
}
.stack-card.is-active:hover {
  transform: translate(0,-8px) rotate(0deg) scale(1.03) !important;
}
.stack-hint {
  font-size: 0.78rem;
  color: #B9C3D9;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
}
.stack-hint svg { width: 14px; height: 14px; }
.stack-dots {
  display: flex;
  gap: 7px;
}
.stack-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.stack-dots .dot.is-active {
  background: var(--spring);
  transform: scale(1.25);
}
.about-photo .photo-stack-wrap .stack-hint,
.about-photo .photo-stack-wrap .stack-dots .dot { color: var(--gray); }
.about-photo .photo-stack-wrap .stack-dots .dot { background: rgba(20,33,61,0.15); }
.about-photo .photo-stack-wrap .stack-dots .dot.is-active { background: var(--spruce); }

.about-photo-collage {
  position: relative;
  min-height: 420px;
}
.about-photo-collage .photo-frame.f1 {
  width: 82%; top: 0; left: 0; right: auto;
}
.about-photo-collage .photo-frame.f2 {
  width: 46%; bottom: -24px; right: 0; left: auto;
  background: var(--navy);
  border-color: rgba(255,255,255,0.35);
  color: #C9D2E3;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  color: var(--spruce);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: "";
  width: 22px; height: 3px;
  background: var(--spring);
  border-radius: 2px;
  display: inline-block;
}
.section-intro { max-width: 720px; }

.bg-alt { background: #EFF3EC; }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy .section-label { color: #fff; }
.bg-navy .section-label { color: var(--spring); }

.section-divider-top {
  display: block;
  width: 100%;
  height: 50px;
  transform: translateY(1px);
}

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.c1 { background: rgba(142,211,137,0.18); color: var(--spruce); }
.icon-badge.c2 { background: rgba(21,64,140,0.1); color: var(--navy); }
.icon-badge.c3 { background: rgba(20,82,16,0.12); color: var(--spruce); }

/* ---------- Issues grid (speech-bubble cards) ---------- */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.issue-card {
  background: #fff;
  border-radius: 16px 16px 16px 4px;
  padding: 28px 26px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(20,33,61,0.06);
  border: 1px solid var(--border);
}
.issue-card::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  left: 22px; bottom: -8px;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-radius: 0 0 0 4px;
}
.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(20,64,140,0.16);
}
.issue-card h3 { margin-bottom: 10px; }
.issue-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 14px; }
.issue-card a { font-weight: 800; font-size: 0.9rem; font-family: var(--font-heading); font-style: italic; color: var(--navy); }
.issue-card a:hover { color: var(--spruce); }

/* ---------- Endorsements ---------- */
.endorse-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.endorse-box {
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.78rem;
  text-align: center;
  padding: 10px;
  background: #fff;
}
.endorse-box.endorse-logo {
  border-style: solid;
  border-color: var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.endorse-box.endorse-logo:hover {
  box-shadow: 0 10px 22px rgba(20,33,61,0.12);
  transform: translateY(-2px);
}
.endorse-box.endorse-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------- Signup / Donate strip ---------- */
.signup-strip {
  background: var(--spruce);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.signup-strip::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -260px; left: -140px;
}
.signup-strip h2 { color: #fff; }
.signup-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
.signup-form input {
  padding: 15px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
}
.signup-form .btn { grid-column: 1 / -1; justify-self: start; }
.form-note { font-size: 0.8rem; color: #CFE8CD; margin-top: 14px; max-width: 620px; position: relative; z-index: 2; }

/* ---------- Donate amounts ---------- */
.donate-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 34px rgba(20,64,140,0.1);
  border: 1px solid var(--border);
}
.donate-amounts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0;
}
.donate-amounts a {
  background: var(--off-white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 800;
  font-family: var(--font-heading);
  font-style: italic;
  padding: 11px 22px;
  border-radius: 999px;
}
.donate-amounts a:hover { background: var(--navy); color: #fff; text-decoration: none; }

/* ---------- Pull quote (speech bubble) ---------- */
.pull-quote {
  background: var(--navy);
  color: #fff;
  border-radius: 24px 24px 24px 4px;
  padding: 44px 48px;
  position: relative;
  margin: 20px 0 46px;
}
.pull-quote::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  background: var(--navy);
  left: 34px; bottom: -10px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.pull-quote p {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: #fff;
  margin: 0;
  line-height: 1.35;
}
.pull-quote .quote-mark { color: var(--spring); font-size: 3rem; line-height: 0.5; display: block; margin-bottom: 10px; }

/* ---------- Bio / About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.about-photo { position: sticky; top: 110px; align-self: start; }

.organizing-watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .organizing-watch-grid { grid-template-columns: 1fr; }
}

.bio-highlights {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.bio-highlights li {
  padding-left: 34px;
  position: relative;
}
.bio-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--spring);
  border-radius: 4px;
  transform: rotate(45deg);
}

/* ---------- Platform page ---------- */
.platform-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.platform-toc a {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  font-style: italic;
  color: #fff;
}
.platform-toc a:hover { background: var(--spring); color: var(--navy-dark); text-decoration: none; border-color: var(--spring); }
.platform-toc a.toc-priority { background: var(--spring); color: var(--navy-dark); border-color: var(--spring); }
.platform-toc a.toc-priority:hover { background: #fff; }

.issue-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 90px;
}
.issue-section:nth-child(even) { background: #F3F6F0; }
.issue-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 6px;
}
.issue-head .icon-badge { margin-bottom: 0; }
.issue-section ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.issue-section ul li {
  padding-left: 30px;
  position: relative;
}
.issue-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--spring);
}
.issue-section ul li::after {
  content: "✓";
  position: absolute;
  left: 3.5px;
  top: 1px;
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 0.75rem;
}

/* ---------- Contact / Get Involved ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.mobilize-embed {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20,33,61,0.06);
  background: #fff;
}
.mobilize-embed iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}
.form-note-light {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 12px;
}
.form-note-light a { font-weight: 700; }
@media (max-width: 860px) {
  .mobilize-embed iframe { height: 620px; }
}

/* ---------- Video embed ---------- */
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(20,33,61,0.15);
  margin: 16px 0 28px;
  background: var(--navy-dark);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---------- Store (AOC-shop inspired: minimal cards, bold statement blocks) ---------- */
.shop-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.shop-banner::after {
  content: "";
  position: absolute;
  right: -100px; bottom: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--spring);
  opacity: 0.14;
}
.shop-banner .kicker {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  color: var(--spring);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 14px;
}
.shop-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.shop-banner p {
  color: #CFE8CD;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 28px;
  margin-top: 40px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.shop-img {
  aspect-ratio: 1/1;
  background: #fff;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}
.swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.swatch:hover { transform: scale(1.1); }
.swatch.is-active { border-color: var(--navy); }
.swatch-white { background: #fff; }
.swatch-blue { background: var(--navy); }
.shop-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}
.shop-card:hover .shop-img img { transform: scale(1.045); }
.shop-body { display: flex; flex-direction: column; flex: 1; }
.shop-body h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-style: italic;
}
.shop-body p {
  color: var(--gray);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 10px;
}
.shop-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.shop-order-btn {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.85rem;
}

.shop-quote {
  text-align: center;
  padding: 30px 20px 10px;
}
.shop-quote p {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.3;
}
.shop-quote span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  color: var(--spruce);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Press page ---------- */
.press-list {
  display: grid;
  gap: 0;
}
.press-item {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 26px;
  align-items: start;
}
.press-item:first-child { padding-top: 0; }
.press-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.press-outlet {
  display: inline-block;
  background: var(--spruce);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
.press-date {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}
.press-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.press-item p { color: var(--gray); font-size: 0.96rem; }
.press-item a.press-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--navy);
  display: inline-block;
  margin-top: 6px;
}
.press-item a.press-link:hover { color: var(--spruce); }
.press-note {
  background: #EFF3EC;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--gray);
}
@media (max-width: 640px) {
  .press-item { grid-template-columns: 1fr; }
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--spring-deep);
}
.social-list { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.social-list a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.social-list a svg { width: 20px; height: 20px; }
.social-list a:hover { background: var(--spruce); transform: translateY(-3px); text-decoration: none; }

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(20,33,61,0.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #C9D2E3;
  padding: 56px 0 30px;
  font-size: 0.9rem;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo svg { height: 42px; width: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-style: italic; }
.footer-grid a { color: #C9D2E3; }
.footer-grid a:hover { color: var(--spring); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  font-size: 0.78rem;
  color: #92A0BC;
}

/* ---------- Join-the-fight popup ---------- */
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,69,0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.site-popup-overlay.is-open { display: flex; }
.site-popup-overlay.is-visible { opacity: 1; }
.site-popup {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
  text-align: center;
}
.site-popup-overlay.is-visible .site-popup { transform: translateY(0) scale(1); }
.site-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.site-popup-close:hover { background: rgba(255,255,255,0.25); }
.site-popup-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--spring);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.site-popup .hero-eyebrow { margin-bottom: 16px; }
.site-popup h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 1.9rem); margin-bottom: 10px; }
.site-popup p { color: #CFE8CD; font-size: 0.96rem; margin-bottom: 22px; }
.site-popup form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-popup input[type="email"] {
  flex: 1;
  min-width: 160px;
  padding: 13px 14px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.site-popup .btn { white-space: nowrap; }
.site-popup .form-note-light { margin-top: 14px; color: #9FB0D6; }

.placeholder-note {
  display: inline-block;
  background: #FFF4D6;
  color: #8A6100;
  border: 1px dashed #D8B23C;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.78rem;
  margin-top: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .photo-collage, .about-photo-collage { max-width: 360px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .mobile-nav-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }
  .nav-wrap { flex-wrap: wrap; }
  .pull-quote { padding: 32px 28px; }
}
