/* ============================================================
   LIVE FREE NH — Campaign Design System v3
   Bold Political Campaign · Red/White/Blue · Custom Built
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #b91c1c;
  --red-bright: #dc2626;
  --red-dark:   #991b1b;
  --navy:       #0c1b33;
  --navy-mid:   #162a4a;
  --navy-light: #1e3a5f;
  --blue:       #1e40af;
  --blue-light: #3b82f6;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --gray-100:   #f1f3f5;
  --gray-200:   #e2e6ea;
  --gray-300:   #ced4da;
  --gray-500:   #6c757d;
  --gray-700:   #495057;
  --gray-900:   #1a1a2e;
  --text:       #212529;
  --text-muted: #5a6170;
  --green:      #16a34a;
  --green-bg:   #f0fdf4;
  --red-bg:     #fef2f2;

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  --max-w:    1140px;
  --max-w-sm: 760px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.75rem; letter-spacing: 0; text-transform: none; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.accent {
  color: var(--red);
}

.overline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 2rem; }

.sec { padding: 6rem 0; }
.sec-sm { padding: 4rem 0; }

.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0.5rem auto 0; }

/* Red bar under centered headings */
.sec-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto 0;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  z-index: 9999;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}

.nav.is-scrolled {
  background: rgba(12, 27, 51, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Solid nav for pages without hero backgrounds (articles, etc) */
.nav-solid .nav { background: var(--navy); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-brand i { color: var(--red-bright); font-style: normal; }

.nav-links { display: flex; list-style: none; gap: 0.25rem; }

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.on { color: var(--white); border-bottom: 2px solid var(--red); padding-bottom: 0.3rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: -5%;
  width: 110%; height: 110%;
  background-size: cover;
  background-position: center;
  animation: drift 30s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,27,51,0.8) 0%,
    rgba(12,27,51,0.6) 50%,
    rgba(12,27,51,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero h1 .accent { color: var(--red-bright); }

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--white);
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-weight: 400;
}

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

/* Sub hero for inner pages */
.hero-sub {
  min-height: 50vh;
}

.hero-sub .hero-content { padding: 8rem 2rem 3.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185,28,28,0.35);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat-item { text-align: center; padding: 1rem 0.5rem; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}

.stat-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--white);
  padding: 2.25rem;
  border-left: 4px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.35s var(--ease);
}

.card:hover {
  border-left-color: var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card-dark {
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.card-dark:hover { border-left-color: var(--red); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.65); }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-left: 3px solid var(--red);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--red);
}

.card-icon svg { width: 24px; height: 24px; }

/* ============================================================
   MYTH / REALITY BLOCKS
   ============================================================ */
/* Myth blocks - side-by-side layout */
.myth-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  min-height: 280px;
}

.myth-claim {
  background: var(--navy);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.myth-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.myth-claim h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-transform: none;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.5;
}

.myth-truth {
  background: var(--white);
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.truth-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.myth-truth h3 {
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
}

.myth-truth p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.myth-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.myth-stats .stat-num { color: var(--navy); font-size: 1.8rem; }
.myth-stats .stat-label { color: var(--text-muted); font-size: 0.75rem; }

@media (max-width: 768px) {
  .myth-block { grid-template-columns: 1fr; }
}

/* ============================================================
   PHOTO BREAK
   ============================================================ */
.photo-break {
  position: relative;
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
}

.photo-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,27,51,0.55);
}

.photo-break-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.photo-break-text h2 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
}

/* ============================================================
   ISSUE COMPARISON
   ============================================================ */
.issue-block { margin-bottom: 2rem; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.issue-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.issue-header svg { width: 20px; height: 20px; stroke: var(--red-bright); fill: none; stroke-width: 2; }

.issue-header h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin: 0;
}

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

.issue-col { padding: 1.75rem 2rem; }
.issue-col:first-child { border-right: 1px solid var(--gray-200); }

.issue-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.issue-label-green { color: var(--green); border-left: 3px solid var(--green); padding-left: 0.75rem; }
.issue-label-red { color: var(--red); border-left: 3px solid var(--red); padding-left: 0.75rem; }

.issue-col ul { list-style: none; }
.issue-col li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.issue-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 1px;
}

.issue-col.pro li::before { background: var(--green); }
.issue-col.con li::before { background: var(--red); }

/* ============================================================
   WIN LIST
   ============================================================ */
.wins { list-style: none; border-left: 4px solid var(--red); background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }

.wins li {
  padding: 1.1rem 1.5rem 1.1rem 3.25rem;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.wins li:last-child { border-bottom: none; }

.wins li::before {
  content: '';
  position: absolute;
  left: 1rem; top: 1.25rem;
  width: 16px; height: 16px;
  border: 2px solid var(--green);
  border-radius: 2px;
}

.wins li::after {
  content: '\2713';
  position: absolute;
  left: 1.05rem; top: 1.1rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.7rem;
  width: 16px;
  text-align: center;
  line-height: 20px;
}

.win-yr {
  display: inline-block;
  background: var(--navy);
  color: var(--red-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
  margin-right: 0.5rem;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--red);
}

.cmp-table th, .cmp-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.cmp-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cmp-table tbody tr:hover { background: var(--off-white); }
.col-nh { color: var(--green); font-weight: 700; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; counter-reset: s; }

.step {
  padding: 2.25rem 2rem;
  padding-top: 2.75rem;
  background: var(--white);
  border-top: 4px solid var(--red);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  counter-increment: s;
  position: relative;
  transition: all 0.3s var(--ease);
}

.step:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-2px); }

.step::before {
  content: counter(s);
  position: absolute;
  top: -1rem; left: 1.5rem;
  width: 2rem; height: 2rem;
  background: var(--navy);
  color: var(--red-bright);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CALLOUT
   ============================================================ */
.callout {
  background: var(--navy);
  border-left: 4px solid var(--red);
  padding: 3rem;
  position: relative;
}

.callout::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  font-size: 6rem;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.callout blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.callout cite {
  color: var(--red-bright);
  font-style: normal;
  font-size: 0.9rem;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.tl { position: relative; padding: 1rem 0; }

.tl::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  position: relative;
  margin-bottom: 2.5rem;
}

.tl-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}

.tl-item::before {
  content: '';
  position: absolute;
  left: 50%; top: 1rem;
  width: 12px; height: 12px;
  background: var(--red);
  transform: translateX(-50%);
  z-index: 2;
}

.tl-box {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--gray-200);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: all 0.3s var(--ease);
}

.tl-box:hover { border-left-color: var(--red); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.tl-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.tl-box h4 { font-size: 1rem; text-transform: none; letter-spacing: 0; color: var(--navy); }
.tl-box p { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   DARK / ALT SECTIONS
   ============================================================ */
.sec-dark { background: var(--navy); color: rgba(255,255,255,0.8); }
.sec-dark h2, .sec-dark h3 { color: var(--white); }
.sec-dark h2::after { background: var(--red); }
.sec-dark p { color: rgba(255,255,255,0.65); }
.sec-dark .overline { color: var(--red-bright); }

.sec-alt { background: var(--off-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e1a;
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand .nav-brand { margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.85rem; max-width: 260px; }

.footer-nav { display: flex; gap: 3rem; flex-wrap: wrap; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.footer-col ul { list-style: none; }
.footer-col--2col ul { columns: 2; column-gap: 2rem; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--red-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-motto {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.signup-form {
  display: flex;
  gap: 0;
  max-width: 520px;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.signup-form input[type="email"]:focus { border-color: var(--red); }

.signup-form button {
  padding: 0.9rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.signup-form button:hover { background: var(--red-bright); border-color: var(--red-bright); }

.signup-msg {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

.signup-msg.ok { color: #22c55e; }
.signup-msg.err { color: var(--red-bright); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * { transition-delay: calc(var(--d, 0) * 80ms); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(12,27,51,0.98);
    flex-direction: column;
    padding: 1rem;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 1rem; }
  .nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero { min-height: 85vh; }
  .hero-sub { min-height: 45vh; }
  .sec { padding: 4rem 0; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .issue-body { grid-template-columns: 1fr; }
  .issue-col:first-child { border-right: none; border-bottom: 1px solid var(--gray-200); }

  .tl::before { left: 1rem; }
  .tl-item, .tl-item:nth-child(even) {
    padding-left: 3rem; padding-right: 0; justify-content: flex-start;
  }
  .tl-item::before { left: 1rem; }

  .photo-break-bg { background-attachment: scroll; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .wrap { padding: 0 1.25rem; }
}
