/* ============================================================
   ORIGINAL GALILEAN — SHARED STYLESHEET
   One file, cached once across every page.
   ============================================================ */

:root {
  --dark:          #242424;
  --dark-soft:     #2c2c2c;
  --light:         #ffffff;
  --accent:        #44709e;
  --accent-light:  #83aad6;   /* lightened from #6b96c4 for AA contrast on dark */
  --ink:           #1a1a1a;   /* body text on light sections */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h:      88px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

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

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  z-index: 1000;
  text-decoration: none;
  font-size: 0.9rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ─── HEADER / NAV ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  background: rgba(36,36,36,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #ffffff; }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-text-link {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 10px;
  transition: color 0.2s ease;
}
.nav-text-link:hover { color: #ffffff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 501;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 6vw;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-ctas {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 499;
  }
  .nav-ctas.open { max-height: 200px; padding: 16px 6vw 24px; gap: 12px; }
  .nav-ctas .btn { width: 100%; justify-content: center; }
  .nav-ctas .nav-text-link { padding: 8px 0; }
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #5585b5; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

.section-light .btn-outline { border-color: rgba(0,0,0,0.25); color: var(--ink); }
.section-light .btn-outline:hover { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.4); }

.btn-lg { padding: 17px 34px; font-size: 0.9rem; }

/* ─── SECTION BASE ──────────────────────────────────────── */
.section {
  position: relative;
  overflow: clip;
  padding: 100px 6vw;
}
.section-tight { padding: 64px 6vw; }
.hero-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid > div:last-child { order: -1; max-width: 200px; margin: 0 auto; }
}

.section-dark  { background: var(--dark); color: var(--light); }
.section-alt   { background: var(--dark-soft); color: var(--light); }
.section-light { background: var(--light); color: var(--ink); }

.section-dark::before, .section-alt::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.section-glow-left::after, .section-glow-right::after {
  content: '';
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(68,112,158,0.16) 0%, rgba(68,112,158,0.05) 42%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section-glow-left::after  { left: -8%; }
.section-glow-right::after { right: -8%; }

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.section-inner-narrow { max-width: 760px; }
.section-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-right .section-inner { margin-left: auto; margin-right: auto; }
.section-right .section-inner,
.section-right .headline,
.section-right .body-text,
.section-right .eyebrow { text-align: right; }
.section-right .section-divider { margin-left: auto; margin-right: 0; }
.section-right .verse-wrap { flex-direction: row-reverse; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}
.section-light .eyebrow { color: rgba(0,0,0,0.5); }

.headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.headline-hero { font-size: clamp(2.1rem, 3.1vw, 2.9rem); line-height: 1.18; }
.headline-strong { color: var(--light); display: inline; }
.section-light .headline-strong { color: var(--ink); }
.headline-soft { color: var(--accent-light); font-weight: 500; display: inline; }
.section-light .headline-soft { color: var(--accent); }

.body-text {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  font-weight: 350;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.section-light .body-text { color: #000000; }
.body-text + .body-text { margin-top: 16px; }
.body-text strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.section-light .body-text strong { color: #000000; }
.body-lg { font-size: clamp(1.15rem, 1.5vw, 1.35rem); }

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
  margin-bottom: 36px;
  border: none;
}
.section-center .section-divider { margin-left: auto; margin-right: auto; }

.verse-wrap {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin-top: 8px;
}
.section-center .verse-wrap { text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }
.verse-bar {
  width: 3px;
  min-height: 100%;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}
.verse {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic;
  font-weight: 350;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.section-light .verse { color: #1a1a1a; }
.verse-ref {
  display: block;
  font-style: normal;
  font-size: 0.85em;
  font-weight: 500;
  margin-top: 8px;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-light .verse-ref { color: var(--accent); }

.bullet-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.section-light .bullet-list li { color: #1a1a1a; }
.bullet-list li::before {
  content: ''; display: block; width: 5px; height: 5px; margin-top: 9px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0; opacity: 0.85;
}

/* ─── GRIDS / CARDS ─────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.card {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
}
.section-light .card { background: rgba(0,0,0,0.025); border-color: rgba(0,0,0,0.08); }
.card-label {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-light); margin-bottom: 12px;
}
.section-light .card-label { color: var(--accent); }
.card-value { font-size: 1.02rem; font-weight: 350; line-height: 1.6; color: rgba(255,255,255,0.8); }
.section-light .card-value { color: #1a1a1a; }
.card-value a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.card-value a:hover { color: var(--accent-light); }

a.card { display: block; text-decoration: none; color: inherit; transition: border-color 0.2s ease, background 0.2s ease; }
a.card:hover { border-color: var(--accent); background: rgba(255,255,255,0.07); }
.section-light a.card:hover { background: rgba(0,0,0,0.05); }

/* ─── DISCLAIMER NOTE ───────────────────────────────────── */
.note-box {
  margin-top: 40px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,0.03);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.section-light .note-box { background: rgba(0,0,0,0.02); color: #444; }
.note-box a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }
.section-light .note-box a { color: var(--accent); }

/* ─── FORMS ─────────────────────────────────────────────── */
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.section-light .form-row label { color: rgba(0,0,0,0.55); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}
.section-light .form-row input,
.section-light .form-row textarea,
.section-light .form-row select {
  background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.15); color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--accent);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.section-light .form-note { color: rgba(0,0,0,0.45); }
.honeypot { position: absolute; left: -9999px; top: -9999px; }
fieldset.form-choices { border: 0; padding: 0; min-width: 0; }
.form-choices legend {
  display: block; padding: 0; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.section-light .form-choices legend { color: rgba(0,0,0,0.55); }
.form-row.form-choices label.choice {
  display: flex; align-items: center; gap: 12px; margin: 0 0 10px;
  font-size: 1rem; font-weight: 400; letter-spacing: 0; text-transform: none;
  color: rgba(255,255,255,0.8); cursor: pointer;
}
.section-light .form-row.form-choices label.choice { color: var(--ink); }
.section-light .form-row.form-choices input[type="radio"],
.form-row.form-choices input[type="radio"] {
  width: 18px; height: 18px; padding: 0; margin: 0; flex-shrink: 0; accent-color: var(--accent);
}
.form-optional { margin: 32px 0 24px; padding: 20px 22px; border-radius: 3px; background: rgba(0,0,0,0.03); }
.form-optional-title { font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-optional-text { font-size: 0.95rem; line-height: 1.6; color: #444; }

/* ─── MAILERLITE OVERRIDES ──────────────────────────────── */
#mlb2-38273840.ml-form-embedContainer { display: block !important; margin: 0 !important; }
#mlb2-38273840.ml-form-embedContainer .ml-form-embedWrapper {
  background: transparent !important; border: none !important; border-radius: 0 !important;
  display: block !important; width: 100% !important; max-width: 480px !important;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-embedBody { padding: 0 !important; }
#mlb2-38273840.ml-form-embedContainer .ml-form-embedContent { display: none !important; }
#mlb2-38273840.ml-form-embedContainer .ml-form-fieldRow input[type="email"] {
  background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 3px !important; color: #fff !important; font-family: var(--font-body) !important;
  font-size: 1rem !important; padding: 16px 18px !important; width: 100% !important;
  transition: border-color 0.2s ease !important;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-fieldRow input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4) !important; font-style: italic;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-fieldRow input[type="email"]:focus {
  outline: none !important; border-color: var(--accent) !important;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-embedSubmit { margin-top: 12px !important; }
#mlb2-38273840.ml-form-embedContainer .ml-form-embedSubmit button.primary {
  background: var(--accent) !important; border: none !important; border-radius: 3px !important;
  color: #fff !important; font-family: var(--font-body) !important; font-size: 0.85rem !important;
  font-weight: 500 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important;
  padding: 16px 32px !important; width: 100% !important; cursor: pointer !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-embedSubmit button.primary:hover {
  background: #5585b5 !important; transform: translateY(-1px) !important;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-successBody { padding: 0 !important; }
#mlb2-38273840.ml-form-embedContainer .ml-form-successContent h4 {
  color: var(--accent-light) !important; font-family: var(--font-display) !important;
  font-size: 1.4rem !important; font-weight: 700 !important;
}
#mlb2-38273840.ml-form-embedContainer .ml-form-successContent p {
  color: rgba(255,255,255,0.7) !important; font-family: var(--font-body) !important;
  font-size: 1rem !important; margin-top: 8px !important;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.55);
  padding: 72px 6vw 32px;
  position: relative;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-brand img { height: 30px; width: auto; }
.footer-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.footer-col-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-seal { margin-top: 6px; display: inline-block; }
.footer-seal img { height: 96px; width: auto; }

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { max-width: 640px; }
.footer-disclaimer {
  max-width: 1120px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
}
.footer-disclaimer a { color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 72px 6vw; }
  .headline-hero { font-size: 2.2rem; }
}

/* ─── UTILITIES ─────────────────────────────────────────── */
@media (max-width: 560px) { .br-wide { display: none; } }
.mt-40 { margin-top: 40px; }
.cta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 40px; }
.section-center .cta-row { justify-content: center; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ─── DAY-BY-DAY DRIVE PAGES ────────────────────────────── */
.day-block { margin-bottom: 56px; }
.day-block:last-child { margin-bottom: 0; }
.day-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--light);
}
.section-light .day-heading { color: var(--ink); }
.day-block .body-text { margin-bottom: 16px; }
.day-block .body-text:last-child { margin-bottom: 0; }
.day-block .body-text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-light);
  font-weight: 500;
}
.section-light .day-block .body-text strong { color: var(--accent); }

/* ─── NAV MENU WRAPPER (links + CTAs grouped on the right) ─ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-menu .nav-links { margin: 0; gap: 32px; }
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 499;
  }
  .nav-menu.open { max-height: 480px; }
  .nav-menu .nav-links,
  .nav-menu .nav-ctas {
    position: static;
    max-height: none;
    overflow: visible;
    border-bottom: none;
    background: transparent;
    gap: 0;
  }
  .nav-menu .nav-ctas { padding: 16px 6vw 24px; }
}

/* ─── ABOUT PAGE OVERRIDES ──────────────────────────────── */
.page-about .section:not(.section-tight) { padding-top: 55px; padding-bottom: 70px; }
.page-about .grid-2 { row-gap: 28px; column-gap: 48px; }

/* ─── HOMEPAGE OVERRIDES ────────────────────────────────── */
.page-home .section:not(.section-tight) { padding-top: 55px; padding-bottom: 70px; }
.page-home .hero { padding-top: 80px; padding-bottom: 100px; }
.page-home .hero-grid { grid-template-columns: minmax(0, 1fr) 260px; }
.page-home .headline-hero { font-size: clamp(2.1rem, 4vw, 3.5rem); margin-bottom: 60px; }
.page-home .hero-body { margin-bottom: 28px; }
.page-home .section-right .headline { margin-bottom: 60px; }
.page-home .section-right .body-text,
.page-home .section-right .verse-wrap { max-width: 640px; margin-left: auto; }
.page-home .section-alt .body-text,
.page-home .section-alt .verse-wrap { max-width: 640px; }
@media (max-width: 900px) {
  .page-home .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-home .headline-hero { font-size: 2.2rem; }
}

/* ─── TESTIMONIAL CAROUSEL (3 visible, advances 1 per click) ────── */
.testimonial-carousel { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge */
}
.testimonial-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.testimonial-slide { flex: 0 0 calc((100% - 64px) / 3); }
@media (max-width: 900px) {
  .testimonial-slide { flex: 0 0 100%; }
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 32px;
}
.testimonial-count {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.4);
}
.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.25);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.testimonial-arrow:hover { background: rgba(0,0,0,0.06); border-color: var(--accent); transform: translateX(2px); }
.testimonial-arrow svg { width: 18px; height: 18px; }

/* keep the individual testimonial cards left-aligned and full-width even
   though the section itself (headline/subhead) is right-justified */
.page-home .testimonial-carousel .body-text,
.page-home .testimonial-carousel .eyebrow {
  text-align: left;
  max-width: none;
  margin-left: 0;
}

/* ─── EPILOGUE ──────────────────────────────────────────── */
.page-epilogue .section:not(.section-tight) { padding-top: 55px; padding-bottom: 70px; }
.epilogue-head { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-bottom: 40px; }
.epilogue-head .headline { margin-bottom: 0; }
.epilogue-badge { display: block; width: 120px; height: 120px; flex-shrink: 0; }
@media (max-width: 560px) {
  .epilogue-head { flex-direction: column-reverse; align-items: flex-start; gap: 20px; }
  .epilogue-badge { width: 80px; height: 80px; }
}
