/* ChurchVote.now — shared stylesheet
   Tone: patriotic (red / white / deep blue) with a gold accent for Scripture.
   Built mobile-first. No external dependencies.
*/

:root {
  /* Navy — authority, trust */
  --navy: #0a2a66;
  --navy-soft: #153a7a;
  --navy-deep: #051a42;

  /* Flag red — primary call to action */
  --red: #b22234;
  --red-bright: #d42b3b;
  --red-deep: #8e1a28;

  /* White / cream — background, space, reverence */
  --white: #ffffff;
  --cream: #fbf7f0;
  --cream-warm: #f4ede0;

  /* Gold — scripture accent only (reverent, restrained) */
  --gold: #c9a659;
  --gold-bright: #e2be6a;
  --gold-soft: #ebd9a5;

  /* Text */
  --ink: #101828;
  --ink-soft: #2b3441;
  --muted: #6b7280;
  --line: #d5d9e0;

  --shadow: 0 10px 30px rgba(10, 42, 102, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 42, 102, 0.18);
  --max: 1100px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Reusable patriotic flag stripe — a thin red/white/blue band */
.flag-stripe {
  height: 6px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy) 66.66% 100%
  );
  width: 100%;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
a  { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold); }
blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--gold);
  background: linear-gradient(to right, rgba(201, 166, 89, 0.08), rgba(255,255,255,0));
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
}
blockquote cite {
  display: block;
  margin-top: 0.5em;
  font-size: 0.9rem;
  font-style: normal;
  font-family: var(--sans);
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4rem 0; }
section.compact { padding: 2.5rem 0; }

/* Header / nav */
.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
/* Patriotic stripe under the header — red | white | blue */
.site-header::after {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy-soft) 66.66% 100%
  );
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand .cross {
  width: 22px;
  height: 28px;
  flex-shrink: 0;
}
.brand:hover { color: var(--gold-bright); }
.brand-dot { color: var(--red-bright); }
nav.primary {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
nav.primary a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
nav.primary a:hover,
nav.primary a.active {
  color: var(--white);
  border-bottom-color: var(--red-bright);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.4em 0.8em;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 26, 66, 0.80), rgba(10, 42, 102, 0.90)),
    radial-gradient(ellipse at top, #153a7a 0%, #051a42 70%);
  color: var(--white);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(178, 34, 52, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Top patriotic band */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy-soft) 66.66% 100%
  );
  opacity: 0.75;
  pointer-events: none;
}
.hero .hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero .eyebrow {
  color: var(--red-bright);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero h1 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 .accent { color: var(--red-bright); font-style: italic; }
.hero p.lede {
  color: var(--white);
  opacity: 0.92;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
.hero .hero-cross {
  width: 44px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0.85;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95em 1.8em;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-bright); color: var(--white); border-color: var(--red-bright); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Stats strip */
.stats-strip {
  background: var(--cream);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--navy);
  padding: 2.5rem 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat .n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3em;
}
.stat .label {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header .eyebrow {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.section-header h2 { margin-bottom: 0.6em; }
.section-header p { font-size: 1.1rem; color: var(--ink-soft); }

/* Cards grid (issues) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  height: 4px;
  width: 30%;
  background: var(--red);
  border-radius: 4px 0 0 0;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card h3 {
  color: var(--navy);
  margin-bottom: 0.6em;
  font-size: 1.35rem;
}
.card .scripture {
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy-soft);
  font-size: 1rem;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px dashed var(--line);
}
.card p { flex-grow: 1; }
.card .cite {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3em;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* Big statement / call-out */
.statement {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.statement::before,
.statement::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--red-bright);
}
.statement::before { top: 2rem; }
.statement::after { bottom: 2rem; }
.statement h2 {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
}
.statement p {
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Feature row (alternating side-by-side blocks) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row .feature-body h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6em;
}
.feature-row .feature-body .eyebrow {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-row .visual {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border-top: 4px solid var(--red);
  position: relative;
}
.feature-row .visual .scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-soft);
  line-height: 1.45;
  margin-bottom: 1em;
}
.feature-row .visual cite {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-family: var(--sans);
  font-style: normal;
}

@media (max-width: 760px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .feature-row.reverse > * { order: unset; }
}

/* Issue deep list (issues.html) */
.issue-entry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2.4rem;
}
.issue-entry::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.issue-entry h3 { color: var(--navy); margin-bottom: 0.35em; }
.issue-entry .scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy-soft);
  margin: 0 0 1em;
  padding: 0.7em 1em;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
}
.issue-entry .stakes-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1em;
  display: block;
}
.issue-entry p { margin: 0.3em 0 0.9em; }

/* Accordion-style objections */
.objection {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
}
.objection h4 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}
.objection h4::before {
  content: '"';
  color: var(--gold);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.15em;
}
.objection p { margin-bottom: 0; }

/* Toolkit tiles */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.toolkit-tile {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 4px;
}
.toolkit-tile h4 {
  color: var(--navy);
  margin-bottom: 0.4em;
}
.toolkit-tile p { margin-bottom: 0; font-size: 0.95rem; }

/* Lists */
ul.ticked, ul.crossed {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}
ul.ticked li, ul.crossed li {
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 0.6em;
  line-height: 1.55;
}
ul.ticked li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: bold;
  font-size: 1.1em;
}
ul.crossed li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
  font-size: 1.1em;
}

/* Scripture banner — gold accent preserved here for reverence */
.scripture-banner {
  background: var(--cream);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
}
.scripture-banner::before,
.scripture-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.scripture-banner::before { top: 1.2rem; }
.scripture-banner::after { bottom: 1.2rem; }
.scripture-banner blockquote {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 0.5em;
  padding: 0;
  color: var(--navy);
}
.scripture-banner cite {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Pledge card */
.pledge {
  background: #fff;
  border: 2px solid var(--gold);
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.pledge h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
.pledge ul { padding-left: 1.2em; margin-bottom: 1.5em; }
.pledge ul li { margin-bottom: 0.7em; line-height: 1.5; }
.pledge .signature-line {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.pledge .signature-line > div {
  flex: 1;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.3em;
  min-height: 2em;
}

/* Door illustration (CSS-drawn) */
.door-illo {
  width: 200px;
  height: 260px;
  margin: 0 auto 2rem;
  position: relative;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy-soft) 66.66% 100%
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: var(--red-bright);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.site-footer a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  display: block;
  padding: 0.2em 0;
  font-size: 0.95rem;
}
.site-footer a:hover { opacity: 1; color: var(--red-bright); }
.site-footer .footer-scripture {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-soft);
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.site-footer .cite {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.site-footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* CTA section */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-block::before,
.cta-block::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy-soft) 66.66% 100%
  );
}
.cta-block::before { top: 0; }
.cta-block::after  { bottom: 0; }
.cta-block h2 { color: var(--white); margin-bottom: 0.5em; }
.cta-block p {
  color: #dbe4f0;
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 720px) {
  section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 4rem; }
  .nav-toggle { display: block; }
  nav.primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem;
    border-bottom: 3px solid var(--red);
  }
  nav.primary.open { display: flex; }
  nav.primary a {
    padding: 0.7em 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stats-grid { gap: 1.25rem; }
  .statement { padding: 3.5rem 0; }
}

/* =========================================================
   Photo blocks — patriotic framing
   ========================================================= */

/* Single hero-sized photo strip with flag stripes top/bottom */
.photo-strip {
  position: relative;
  margin: 0;
  overflow: hidden;
  line-height: 0;
  background: var(--navy);
}
.photo-strip img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.photo-strip::before,
.photo-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy-soft) 66.66% 100%
  );
  z-index: 2;
}
.photo-strip::before { top: 0; }
.photo-strip::after  { bottom: 0; }

/* Photo + caption side-by-side */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.photo-split .photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.photo-split .photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-split .photo::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy) 66.66% 100%
  );
}
.photo-split .caption .eyebrow {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.photo-split .caption blockquote {
  border-left-color: var(--red);
  background: transparent;
  padding-left: 1.2em;
  margin: 0.8em 0;
}
.photo-split.reverse { direction: rtl; }
.photo-split.reverse > * { direction: ltr; }

/* Photo grid (2 across) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.photo-grid .photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.photo-grid .photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-grid .photo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--red) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--navy) 66.66% 100%
  );
  z-index: 2;
}
.photo-grid .photo-card .caption {
  padding: 1rem 1.2rem 1.2rem;
}
.photo-grid .photo-card h4 {
  color: var(--navy);
  margin: 0 0 0.3em;
  font-size: 1.1rem;
}
.photo-grid .photo-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Hero photo overlay (for the homepage) */
.hero.hero-photo {
  background: var(--navy-deep);
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}
.hero.hero-photo .hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero-photo .hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}
.hero.hero-photo .hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 26, 66, 0.82) 0%,
    rgba(10, 42, 102, 0.78) 100%
  );
}
.hero.hero-photo .hero-inner {
  padding: 5rem 1.25rem 5.5rem;
  z-index: 2;
}

@media (max-width: 760px) {
  .photo-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .photo-split.reverse { direction: ltr; }
  .photo-strip img { max-height: 320px; }
}

@media print {
  .site-header, .site-footer, .cta-block, .btn { display: none; }
  body { background: white; color: black; }
}
