/* Felicia for the People — site stylesheet */

:root {
  --black: #0b0b0c;
  --charcoal: #1c1c1e;
  --gold: #f0b800;
  --gold-dark: #c99500;
  --cream: #faf7ef;
  --white: #ffffff;
  --gray: #5b5b60;
  --line: #e7e2d3;
  --radius: 10px;
  --max: 1120px;
  font-size: 17px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", "Times New Roman", serif;
  background-color: var(--cream);
  background-image:
    url("../img/torch-black-faint.png"),
    url("../img/torch-black-faint.png"),
    url("../img/torch-black-faint.png");
  background-position: 3% 4%, 97% 15%, 22% 78%;
  background-size: 65px, 120px, 90px;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
  color: var(--black);
  line-height: 1.6;
}

h1, h2, h3, h4, .brand-font {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

a { color: var(--gold-dark); }
a:hover { color: var(--black); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .6rem;
  padding-bottom: .6rem;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.site-header .logo-link img {
  height: 44px;
  width: auto;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

nav.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold);
}

.btn {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  padding: .7rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  transition: transform .12s ease, background .12s ease, color .12s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--black) !important;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white) !important;
}
.btn-outline:hover { background: var(--gold); color: var(--black) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  border-radius: 6px;
  color: var(--white);
  font-size: 1.3rem;
  padding: .3rem .6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background-image:
    url("../img/torch-white-faint.png"),
    url("../img/torch-white-faint.png"),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  background-position: 6% 20%, 90% 75%, 0 0;
  background-size: 95px, 65px, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: var(--white);
  padding: 4.5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.hero .eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: .6rem;
}

.hero h1 .hero-line { display: block; white-space: nowrap; }

.hero .sub {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  color: #d8d6cf;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-photo {
  margin: 2rem auto 0;
  max-width: 280px;
}

.hero-photo-frame {
  position: relative;
}

.hero-photo-map {
  position: absolute;
  width: 135%;
  top: -10%;
  right: -28%;
  opacity: .92;
  transform: rotate(-6deg);
  z-index: 0;
  pointer-events: none;
}

.hero-photo-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .5));
}

.hero-photo-quote {
  font-family: "Georgia", "Iowan Old Style", "Times New Roman", serif;
  font-style: italic;
  font-size: .92rem;
  color: var(--white);
  white-space: nowrap;
  width: max-content;
  max-width: none;
  margin: 1.2rem auto 0;
}

.hero-photo-date {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  line-height: 1.6;
  margin: .7rem 0 0;
}

.hero-date-white { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-photo-desktop { display: none; }

@media (min-width: 861px) {
  .hero-home .wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 3rem;
  }
  .hero-home h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
  .hero-photo-mobile { display: none; }
  .hero-photo-desktop {
    display: block;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-photo-desktop .hero-photo-map {
    width: 150%;
    top: 50%;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-6deg);
  }
}

/* ---------- Mobile floating CTA bar (shown via media query below) ---------- */
.mobile-cta-bar { display: none; }

/* ---------- Script accent tagline ---------- */
.script-tag {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: .6rem;
}

.script-tag.on-light { color: var(--gold-dark); }
.script-tag.on-gold { color: var(--black); }

/* ---------- Pillars strip (Responsible Planning / Full Transparency / Lower Taxes) ---------- */
.pillars {
  background-color: var(--black);
  border-top: 1px solid #2c2c2e;
  padding: 0;
}

.pillars .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.6rem 1.2rem;
  text-align: left;
  border-left: 1px solid #2c2c2e;
}

.pillar-item:first-child { border-left: none; }

.pillar-item .badge {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-item .badge svg {
  width: 22px;
  height: 22px;
  color: var(--black);
}

.pillar-item span.label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.25;
}

/* ---------- Sections ---------- */
section { padding: 4rem 0; }
section.alt {
  background-color: var(--white);
  background-image: url("../img/torch-black-faint.png");
  background-position: 93% 82%;
  background-size: 65px;
  background-repeat: no-repeat;
  overflow: hidden;
}
section.alt:nth-of-type(3n+1) { background-position: 8% 18%; background-size: 55px; }
section.alt:nth-of-type(3n+2) { background-position: 30% 88%; background-size: 70px; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head .eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
@media (min-width: 640px) {
  .nowrap-heading { white-space: nowrap; }
}
@media (min-width: 900px) {
  .hero .sub.hero-sub-nowrap {
    white-space: nowrap;
    max-width: none;
    font-size: clamp(.9rem, 1.6vw, 1.2rem);
  }
  .hero .sub.sub-wide {
    max-width: 880px;
  }
}

/* ---------- Issue cards (home teaser, slider) ---------- */
.card-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding: .3rem .3rem 1rem;
  margin: -.3rem -.3rem 0;
  scrollbar-width: none;
}
.card-grid::-webkit-scrollbar { display: none; }

.card-scroll { position: relative; }

.card-scroll-btn {
  display: none;
}

@media (min-width: 861px) {
  .card-scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--black);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    transition: background .12s ease, transform .12s ease;
  }
  .card-scroll-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.05); }
  .card-scroll-prev { left: -22px; }
  .card-scroll-next { right: -22px; }
}

.card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  border-top: 4px solid var(--gold);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.card p { color: var(--gray); font-size: .97rem; margin-bottom: 1rem; }

.card a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.card a::after { content: " →"; }

/* ---------- Compare blocks (Issues page) ---------- */
.issue-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--white);
  scroll-margin-top: 90px;
}

.issues-index {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: 1.8rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  counter-reset: issue-row;
}

.issues-index a {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--white);
  text-decoration: none;
  text-align: left;
  padding: .85rem .3rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .12s ease, color .12s ease, padding-left .12s ease;
  counter-increment: issue-row;
}

.issues-index a::before {
  content: counter(issue-row, decimal-leading-zero);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: .78rem;
  color: var(--gold);
  flex: 0 0 auto;
  width: 1.6rem;
}

.issues-index a:hover {
  background: rgba(255,255,255,.06);
  color: var(--gold);
  padding-left: .6rem;
}

@media (min-width: 861px) {
  .issues-index {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
  }
  .issues-index a {
    border-right: 1px solid rgba(255,255,255,.18);
    padding: .95rem 1.2rem;
  }
  .issues-index a:nth-child(2n) { border-right: none; }
}

.issue-title {
  background: var(--black);
  color: var(--white);
  padding: 1.1rem 1.6rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  border-left: 6px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topic-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.issue-title .tag {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare .col {
  padding: 1.6rem 1.8rem;
}

.compare .col + .col {
  border-left: 1px solid var(--line);
}

.compare .col-now { background: #f5e8e6; }
.compare .col-plan { background: #fffdf6; }

.compare .col h4 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: .8rem;
}

.compare .col-now h4 { color: var(--gray); }
.compare .col-plan h4 { color: var(--gold-dark); }

.compare ul { margin: 0; padding-left: 1.1rem; }
.compare li { margin-bottom: .6rem; font-size: .97rem; }

.sources {
  padding: .9rem 1.8rem 1.4rem;
  font-size: .8rem;
  color: var(--gray);
  border-top: 1px solid var(--line);
}
.sources a { color: var(--gray); text-decoration: underline; }

.issue-stances-head {
  padding: 1rem 1.8rem;
  background: #3d3d40;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: .65rem;
}

.section-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.issue-stances-body {
  padding: 1.4rem 1.8rem 1.6rem;
  background: var(--white);
}

.issue-stances-body ul { margin: 0; padding-left: 1.1rem; }
.issue-stances-body li { margin-bottom: .6rem; font-size: .97rem; color: var(--charcoal); }
.issue-stances-body li::marker { color: var(--gold-dark); font-weight: 700; }
.issue-stances-body li:last-child { margin-bottom: 0; }

.issue-section {
  border-top: 1px solid var(--line);
}

.issue-section summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #3d3d40;
}

.issue-section summary::-webkit-details-marker { display: none; }

.issue-section summary span:first-child {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .65rem;
}

.issue-section[open] summary { border-bottom: 1px solid var(--line); }

.issue-section-body {
  background: var(--white);
}

.issue-section-body.issue-section-pad {
  padding: 1.4rem 1.8rem 1.6rem;
}

.faq-item { margin-bottom: 1.3rem; }
.faq-item:last-child { margin-bottom: 0; }

.faq-item .faq-q {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--black);
  margin-bottom: .35rem;
}

.faq-item .faq-a {
  font-size: .95rem;
  color: var(--gray);
  margin: 0;
}

.bottom-line-body {
  background: rgba(240, 184, 0, .1);
}

.bottom-line-text {
  font-size: .97rem;
  color: var(--charcoal);
  margin: 0;
}

.bottom-line span {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dark);
  margin-bottom: .3rem;
}

.accordion-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: var(--gold-dark);
}

.issue-section[open] .accordion-icon { background: var(--gold); color: var(--black); }
.issue-section[open] .accordion-icon::before { content: "\2212"; }
.accordion-icon::before { content: "\002B"; }

.back-to-top {
  text-align: center;
  margin-top: 2.4rem;
}

/* ---------- Two column generic ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: .3rem 0 .3rem 1.4rem;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 1.5rem 0;
}

/* ---------- Photo strip (candid photo pairs) ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  display: block;
}

.photo-strip figcaption {
  margin-top: .8rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---------- Values list ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}

.value-item h4 {
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: .35rem;
}
.value-item p { font-size: .93rem; color: var(--gray); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background-color: var(--gold);
  background-image: url("../img/torch-black-faint.png");
  background-position: 9% 78%;
  background-size: 75px;
  background-repeat: no-repeat;
  overflow: hidden;
  color: var(--black);
  text-align: center;
  padding: 3.5rem 0;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.cta-band p { font-family: "Helvetica Neue", Arial, sans-serif; max-width: 560px; margin: 0 auto 1.6rem; }
@media (min-width: 640px) {
  .cta-band p { max-width: 820px; }
}
.cta-band .btn { border-color: var(--black); }
.cta-band .btn-gold { background: var(--black); color: var(--white) !important; }
.cta-band .btn-gold:hover { background: var(--charcoal); }

/* ---------- Involve grid ---------- */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.involve-grid .card { border-top-color: var(--black); text-align: center; }
.involve-grid .icon { font-size: 2.2rem; margin-bottom: .6rem; }

/* ---------- Shop grid (merch cards) ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.shop-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}

.shop-card-img {
  aspect-ratio: 1 / 1;
  background: #f4f1e7;
  overflow: hidden;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .75rem;
}

.shop-card-body {
  padding: 1.2rem;
}

.shop-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.shop-card-body p {
  color: var(--gray);
  font-size: .88rem;
  margin-bottom: 1rem;
  min-height: 3.2em;
}

.shop-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.shop-price {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--black);
}

.btn-sm {
  padding: .5rem 1rem;
  font-size: .82rem;
}

/* ---------- Form ---------- */
form.stack { max-width: 560px; margin: 0 auto; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: .35rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
form.stack .btn { width: 100%; text-align: center; border: none; }

/* ---------- Phone gate ---------- */
.phone-gate { max-width: 560px; margin: 0 auto; }
.phone-gate #phone-reveal-btn { width: 100%; text-align: center; border: none; }
.phone-gate #phone-reveal-btn[hidden] { display: none; }
.phone-gate-form { margin-top: 1.2rem; }
.phone-gate-honeypot { position: absolute; left: -9999px; }
.phone-gate-error { color: #b3261e; font-weight: 700; font-size: .9rem; margin-top: .8rem; }
.phone-gate-result {
  text-align: center;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.phone-gate-result p { margin-bottom: .6rem; }
.phone-gate-number {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: .02em;
}
.phone-gate-number:hover { color: var(--gold-dark); }

/* ---------- News list ---------- */
.news-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.3rem;
}
.news-item .date {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: .4rem;
}
.news-item h3 { font-size: 1.15rem; margin-bottom: .4rem; }

/* ---------- Footer ---------- */
footer.site-footer {
  background-color: var(--black);
  background-image: url("../img/torch-white-faint.png");
  background-position: 92% 15%;
  background-size: 90px;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #c9c7bd;
  padding: 3rem 0 1.5rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr .9fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2c2c2e;
}

.footer-grid img { height: 40px; margin-bottom: .8rem; }
@media (min-width: 861px) {
  .footer-grid img { height: 60px; }
}
.footer-grid h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}
.footer-grid a {
  color: #c9c7bd;
  text-decoration: none;
  display: block;
  margin-bottom: .55rem;
}
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .8rem;
  color: #8b897f;
}
.footer-bottom a { color: #8b897f; }
.footer-bottom a:hover { color: var(--gold); }

.disclaimer {
  font-size: .75rem;
  color: #6f6d64;
  max-width: var(--max);
  margin: 1.2rem auto 0;
  padding: 0 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero {
    background-image: url("../img/torch-white-faint.png"), linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
    background-position: 85% 10%, 0 0;
    background-size: 55px, cover;
    background-repeat: no-repeat, no-repeat;
  }
  .hero-home { background-position: 10% 14%, 0 0; background-size: 50px, cover; }
  .hero-meet { background-position: 78% 55%, 0 0; background-size: 60px, cover; }
  .hero-issues { background-position: 15% 68%, 0 0; background-size: 45px, cover; }
  .hero-involved { background-position: 88% 35%, 0 0; background-size: 65px, cover; }
  .hero-contact { background-position: 20% 20%, 0 0; background-size: 50px, cover; }
  body { background-image: none; }
  section.alt {
    background-image: url("../img/torch-black-faint.png");
    background-position: 88% 78%;
    background-size: 45px;
    background-repeat: no-repeat;
  }
  section.alt:nth-of-type(6n+1) {
    background-image: url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png");
    background-position: 12% 20%, 92% 48%, 45% 90%;
    background-size: 40px, 35px, 50px;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }
  section.alt:nth-of-type(6n+2) {
    background-image: url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png");
    background-position: 85% 15%, 15% 85%;
    background-size: 40px, 55px;
    background-repeat: no-repeat, no-repeat;
  }
  section.alt:nth-of-type(6n+3) {
    background-image: url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png");
    background-position: 25% 55%, 80% 12%, 8% 92%;
    background-size: 50px, 30px, 40px;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }
  section.alt:nth-of-type(6n+4) {
    background-image: url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png");
    background-position: 10% 30%, 90% 88%;
    background-size: 35px, 45px;
    background-repeat: no-repeat, no-repeat;
  }
  section.alt:nth-of-type(6n+5) {
    background-image: url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png"), url("../img/torch-black-faint.png");
    background-position: 75% 40%, 22% 78%, 92% 92%;
    background-size: 45px, 55px, 30px;
    background-repeat: no-repeat, no-repeat, no-repeat;
  }
  .cta-band { background-position: 78% 30%; background-size: 55px; }
  footer.site-footer { background-position: 15% 70%; background-size: 60px; }
  .hero:not(.hero-home) { padding: 2.2rem 0 2rem; }
  .hero .sub.sub-wide { display: none; }
  .hero-home { padding: 20px 0 1.1rem; min-height: 100svh; display: flex; align-items: flex-start; }
  .hero-home .wrap { width: 100%; }
  .hero-home .hero-eyebrow-top { display: none; }
  .hero-home .script-tag { font-size: clamp(1rem, 5vw, 1.3rem); margin-bottom: .3rem; }
  .hero-home h1 { font-size: clamp(1.3rem, 6.6vw, 1.8rem); margin-bottom: 0; }
  .hero-home h1 .hero-line { display: block; white-space: nowrap; }
  .hero-home .sub { display: none; }
  .hero-photo { max-width: 190px; margin-top: 1.1rem; }
  .hero-photo-mobile .hero-photo-portrait {
    height: 210px;
    object-fit: cover;
    object-position: top center;
  }
  .hero-photo-map { width: 116%; top: -6%; right: -5%; }
  .hero-photo-quote {
    width: 90vw;
    max-width: 90vw;
    margin-left: 50%;
    transform: translateX(-50%);
    font-size: clamp(.68rem, 3.4vw, .88rem);
    white-space: nowrap;
    text-align: center;
    margin-top: 20px;
  }
  .hero-photo-mobile .hero-photo-date {
    width: 90vw;
    max-width: 90vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: .5rem;
    font-size: clamp(.68rem, 3.4vw, .82rem);
    line-height: 1.15;
  }
  .hero-photo-mobile .hero-photo-date .hero-date-white {
    display: inline-block;
    margin-top: .4rem;
    font-size: clamp(.85rem, 4.4vw, 1.05rem);
    line-height: 1.35;
  }
  .pattern-head .eyebrow { font-size: clamp(.6rem, 3.2vw, .8rem); white-space: nowrap; }
  .pattern-head h2 { font-size: clamp(1.15rem, 6.2vw, 1.7rem); white-space: nowrap; }
  .pillars { display: none; }
  .involve-grid, .photo-strip { grid-template-columns: 1fr; }
  .pillars .wrap { grid-template-columns: 1fr; }
  .pillar-item { border-left: none; border-top: 1px solid #2c2c2e; }
  .pillar-item:first-child { border-top: none; }
  .card-grid { margin: -.3rem -1.2rem 0; padding: .3rem 1.2rem 1rem; }
  .card-grid .card { flex-basis: 78vw; }
  .shop-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin: 0 -1.5rem;
    padding: 0 1.5rem .5rem;
    scrollbar-width: none;
  }
  .shop-grid::-webkit-scrollbar { display: none; }
  .shop-grid .shop-card {
    flex: 0 0 68vw;
    scroll-snap-align: start;
  }
  .compare { grid-template-columns: 1fr; }
  .compare .col + .col { border-left: none; border-top: 1px solid var(--line); }
  .two-col { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    display: none;
    border-bottom: 3px solid var(--gold);
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .site-header { position: relative; }
  .site-header .wrap { position: relative; }

  body { padding-bottom: 68px; }

  .hero .sub {
    font-size: 1.02rem;
    line-height: 1.45;
    margin: 0 auto 1.5rem;
  }
  .hero-actions { display: none; }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    gap: .7rem;
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
    background: var(--black);
    border-top: 3px solid var(--gold);
  }

  .mobile-cta-bar a.btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .65rem .5rem;
    white-space: nowrap;
    font-size: clamp(.78rem, 3.6vw, .95rem);
  }
}
