:root {
  color-scheme: light;
  --bg: #fffaf3;
  --surface: #fff;
  --surface-2: #f6f7fb;
  --text: #172033;
  --muted: #5f6878;
  --line: #e7e3dc;
  --brand: #ef2b2d;
  --brand-dark: #c91f23;
  --accent: #069fbd;
  --accent-soft: #e8f9fc;
  --yellow: #f4bd18;
  --green: #54af41;
  --shadow: 0 18px 55px rgb(35 40 52 / 10%);
  --radius: 1.4rem;
  --container: 1180px;
  --header-offset: 148px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1320;
  --surface: #141d2d;
  --surface-2: #101827;
  --text: #f6f7fb;
  --muted: #b4bdcb;
  --line: #293449;
  --brand: #ff5a5c;
  --brand-dark: #ff7475;
  --accent: #40c9e1;
  --accent-soft: #102c34;
  --yellow: #ffd15c;
  --green: #7bc96b;
  --shadow: 0 18px 55px rgb(0 0 0 / 28%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
::selection { background: var(--yellow); color: #172033; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 6vw, 6rem) 0; }
.section-soft { background: var(--surface-2); }
.centered { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.skip-link {
  position: fixed; z-index: 9999; top: .75rem; left: .75rem;
  transform: translateY(-200%); padding: .75rem 1rem;
  background: var(--text); color: var(--bg); border-radius: .6rem;
}
.skip-link:focus { transform: none; }

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 790px; font-size: clamp(2.6rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 50px; padding: .78rem 1.25rem;
  border: 1px solid transparent; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-weight: 800; text-decoration: none;
  box-shadow: 0 10px 28px rgb(239 43 45 / 20%);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-dark); box-shadow: 0 14px 34px rgb(239 43 45 / 26%); }
.button-secondary { background: transparent; color: var(--text); border-color: var(--line); box-shadow: none; }
.button-secondary:hover { background: var(--surface); }
.button-small { min-height: 42px; padding: .58rem 1rem; font-size: .92rem; }
.button-full { width: 100%; border: 0; cursor: pointer; }
.text-link { display: inline-flex; gap: .35rem; color: var(--brand); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.site-header {
  position: sticky; z-index: 100; top: 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  backdrop-filter: blur(18px);
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--yellow) 34%,
    var(--green) 67%,
    var(--accent-bright, var(--accent)) 100%
  );
  opacity: .92;
}
.topbar { background: #090f1a; color: #eef3f9; font-size: .84rem; }
.topbar-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-links { display: flex; gap: 1rem; }
.topbar a { font-weight: 750; text-decoration: none; }
.nav-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: .35rem;
  padding-bottom: 1rem;
}
.brand { position: relative; display: flex; width: 155px; text-decoration: none; }
.brand img { width: 155px; height: auto; }
.logo-dark { display: none; }
html[data-theme="dark"] .logo-default { display: none; }
html[data-theme="dark"] .logo-dark { display: block; }
.desktop-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.8rem); margin-left: auto; }
.desktop-nav a { font-size: .94rem; font-weight: 760; text-decoration: none; }
.desktop-nav a:hover { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: .65rem; }
.icon-button {
  width: 42px; height: 42px; display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); cursor: pointer;
}
.theme-icon { font-size: 1.15rem; line-height: 1; }
.menu-toggle { display: none; align-content: center; gap: 4px; }
.menu-toggle span { width: 18px; height: 2px; background: currentColor; border-radius: 99px; }
.mobile-nav { display: none; }

.hero { position: relative; overflow: clip; padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 7vw, 6rem); }
.hero::before, .hero::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; opacity: .16; }
.hero::before { width: 360px; height: 360px; top: -160px; left: -130px; background: var(--yellow); }
.hero::after { width: 420px; height: 420px; right: -200px; bottom: -210px; background: var(--accent); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(2.4rem, 5vw, 5rem); }
.hero-copy { display: grid; gap: 1.35rem; }
.hero-lede { max-width: 680px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-list { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin: .3rem 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .93rem; font-weight: 700; }
.trust-list span { color: var(--green); font-weight: 900; }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: -12px 18px 18px -12px; z-index: -1; border: 2px solid var(--yellow); border-radius: 2rem; transform: rotate(-2deg); }
.hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2rem; box-shadow: var(--shadow); }
.hero-badge { position: absolute; right: -1rem; bottom: 1.5rem; display: grid; gap: .05rem; padding: .9rem 1.1rem; border-radius: 1rem; background: var(--surface); box-shadow: var(--shadow); }
.hero-badge strong { color: var(--brand); font-size: 1.15rem; }
.hero-badge span { color: var(--muted); font-size: .78rem; font-weight: 700; }

.proof-strip { border-block: 1px solid var(--line); background: var(--surface); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { min-height: 126px; display: grid; align-content: center; gap: .2rem; padding: 1.25rem; border-right: 1px solid var(--line); }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { font-size: 1rem; }
.proof-grid span { color: var(--muted); font-size: .86rem; line-height: 1.4; }

.section-heading { display: grid; gap: 1rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-heading > p:last-child { max-width: 780px; margin-inline: auto; color: var(--muted); font-size: 1.06rem; }
.split-heading { grid-template-columns: .9fr 1.1fr; align-items: end; text-align: left; }
.split-heading > p:last-child { margin: 0; }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.program-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 10px 34px rgb(30 35 50 / 5%); }
.program-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-body { display: grid; gap: .8rem; padding: 1.35rem; }
.card-body p { color: var(--muted); }
.card-body a { color: var(--brand); font-weight: 800; text-decoration: none; }
.card-body a:hover { text-decoration: underline; }
.tag { width: fit-content; display: inline-flex; padding: .28rem .58rem; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }

/* Recent Events */
.recent-events {
  overflow: hidden;
  padding-block: clamp(4rem, 5vw, 5rem);
}

.recent-events-heading {
  gap: .75rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.recent-events-heading .eyebrow {
  margin-bottom: 0;
}

.recent-events-heading h2,
.recent-events-heading > p:last-child {
  margin-top: 0;
}

.weekly-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 1.5rem;
  align-items: start;
  width: 100%;
}

.weekly-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.video-card,
.weekly-side-card {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-card {
  overflow: hidden;
}

.video-wrap {
  width: 100%;
  overflow: hidden;
  background: #080b11;
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #080b11;
}

.video-copy {
  display: grid;
  gap: .65rem;
  padding: 1.5rem;
}

.video-copy p:last-child {
  color: var(--muted);
}

.video-date {
  color: var(--brand);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.weekly-side-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.weekly-side-card > p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: .55rem;
  margin: .2rem 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: .5rem;
  color: var(--green);
  font-weight: 900;
}

.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.why-copy { display: grid; gap: 1.2rem; }
.why-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.why-copy .button { width: fit-content; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.benefit-card { display: grid; gap: .7rem; min-height: 220px; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.benefit-card p { color: var(--muted); }
.benefit-icon { font-size: 1.6rem; }

.gallery-section { padding-top: 1rem; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.photo-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 1.2rem; background: var(--surface); }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.photo-grid figure:hover img { transform: scale(1.025); }
.photo-grid figcaption { position: absolute; right: .6rem; bottom: .6rem; left: .6rem; padding: .6rem .7rem; border-radius: .75rem; background: rgb(12 18 29 / 78%); color: #fff; font-size: .8rem; font-weight: 750; backdrop-filter: blur(8px); }

.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.6rem, 6vw, 6rem); align-items: center; }
.story-images { position: relative; min-height: 520px; }
.story-images img { object-fit: cover; border-radius: 1.5rem; box-shadow: var(--shadow); }
.story-main { width: 72%; height: 500px; }
.story-small { position: absolute; right: 0; bottom: 0; width: 45%; height: 280px; border: 7px solid var(--surface-2); }
.story-copy { display: grid; gap: 1.15rem; }
.story-copy > p:not(.eyebrow) { color: var(--muted); }
blockquote { margin: .4rem 0; padding: 1.15rem 1.25rem; border-left: 4px solid var(--yellow); border-radius: 0 .9rem .9rem 0; background: var(--surface); font-size: 1.1rem; font-weight: 750; }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  padding-top: clamp(2rem, 3vw, 3rem);
}
.faq-intro {
  position: sticky;
  top: calc(var(--header-offset) + 2.5rem);
  display: grid;
  gap: 1rem;
}
.faq-intro > p:last-child { color: var(--muted); }
.accordion { display: grid; gap: .75rem; }
details { border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); }
summary { position: relative; cursor: pointer; padding: 1.15rem 3rem 1.15rem 1.2rem; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--brand); font-size: 1.4rem; }
details[open] summary::after { content: "–"; }
details p { padding: 0 1.2rem 1.2rem; color: var(--muted); }

.tour-section { background: #111a2a; color: #f5f8fd; }
.tour-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.tour-copy { display: grid; gap: 1.2rem; }
.tour-copy > p:not(.eyebrow) { color: #c5cedc; }
.steps { display: grid; gap: .9rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 38px 1fr; gap: .8rem; align-items: start; }
.steps li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: #172033; font-weight: 900; }
.steps p { margin-top: .15rem; color: #b4c0d0; font-size: .9rem; }
.lead-form { display: grid; gap: 1rem; padding: clamp(1.5rem, 4vw, 2.2rem); border-radius: var(--radius); background: var(--surface); color: var(--text); box-shadow: 0 24px 75px rgb(0 0 0 / 24%); }
.form-heading { display: grid; gap: .5rem; margin-bottom: .3rem; }
.form-heading p { color: var(--muted); }
.form-status { display: none; padding: .75rem .85rem; border-radius: .75rem; background: #fff1f1; color: #9d1b1e; font-size: .86rem; font-weight: 700; }
.form-status.is-visible { display: block; }
.lead-form label { display: grid; gap: .35rem; font-size: .88rem; font-weight: 750; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: .75rem; background: var(--bg); color: var(--text); padding: .75rem .85rem; }
input, select { min-height: 48px; }
textarea { resize: vertical; min-height: 105px; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 2px solid color-mix(in srgb, var(--accent) 22%, transparent); }
.optional { color: var(--muted); font-weight: 500; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; gap: .55rem !important; color: var(--muted); font-size: .78rem !important; font-weight: 500 !important; }
.consent input { min-height: auto; margin-top: .15rem; }
.form-note { color: var(--muted); text-align: center; font-size: .82rem; }
.form-note a { color: var(--brand); font-weight: 800; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }

.visit-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 1.25rem; align-items: stretch; }
.visit-card { display: grid; align-content: center; gap: 1.15rem; padding: clamp(1.5rem, 4vw, 2.4rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.visit-card address { font-style: normal; color: var(--muted); }
.visit-links { display: grid; gap: .25rem; }
.visit-links a { width: fit-content; color: var(--brand); font-weight: 800; }
.map-wrap { overflow: hidden; min-height: 440px; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }

.resources { padding: 3.5rem 0; border-top: 1px solid var(--line); background: var(--surface); border-bottom: 0; }
.resources-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.resources-inner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.resource-links { display: grid; gap: .7rem; }
.resource-links a { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 1rem; border: 1px solid var(--line); border-radius: .9rem; font-weight: 800; text-decoration: none; }
.resource-links a:hover { border-color: var(--accent); }

.site-footer {
  position: relative;
  padding: 4.5rem 0 2rem;
  background: #090f1a;
  color: #dfe6f2;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--yellow) 34%,
    var(--green) 67%,
    var(--accent-bright, var(--accent)) 100%
  );
  opacity: .92;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { width: 180px; height: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 350px; color: #9ca8ba; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: .55rem; }
.footer-grid h2 { margin-bottom: .35rem; color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { width: fit-content; color: #b7c1d0; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid #202b3d; color: #8896aa; font-size: .8rem; }

.mobile-cta { display: none; }

@media (max-width: 980px) {
  :root { --header-offset: 124px; }
  .topbar p { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: grid; }
  .nav-row {
    min-height: 76px;
    padding-top: .25rem;
    padding-bottom: .75rem;
  }
  .brand, .brand img { width: 128px; }
  .mobile-nav { padding: .75rem 1rem 1rem; border-top: 1px solid var(--line); background: var(--bg); }
  .mobile-nav.is-open { display: grid; gap: .25rem; }
  .mobile-nav > a:not(.button) { padding: .7rem .35rem; font-weight: 800; text-decoration: none; }
  .hero-grid, .why-grid, .story-grid, .faq-grid, .tour-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-lede { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-media { max-width: 760px; margin-inline: auto; }
  .hero-badge { right: 1rem; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(2) { border-right: 0; }
  .proof-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .weekly-layout { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 3rem; }
  .story-images { max-width: 680px; width: 100%; margin-inline: auto; }
  .faq-intro { position: static; }
  .faq-grid { padding-top: 1.75rem; }
  .resources-inner, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding: 4rem 0; }
  .recent-events { padding-block: 3.5rem; }
  .recent-events-heading { margin-bottom: 2rem; }
  .topbar-links { width: 100%; justify-content: space-between; }
  .nav-actions { gap: .4rem; }
  .hero { padding-top: 3rem; }
  .hero-media::before { inset: -7px 10px 11px -7px; }
  .hero-media img { border-radius: 1.35rem; }
  .hero-badge { bottom: .7rem; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; justify-content: start; text-align: left; margin-inline: auto; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid div:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; align-items: start; }
  .program-grid, .benefit-grid, .resources-inner, .footer-grid { grid-template-columns: 1fr; }
  .program-card { border-radius: 1.15rem; }
  .benefit-card { min-height: 0; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .photo-grid figcaption { position: static; border-radius: 0; background: var(--surface); color: var(--muted); backdrop-filter: none; }
  .story-images { min-height: 420px; }
  .story-main { width: 78%; height: 405px; }
  .story-small { width: 47%; height: 225px; border-width: 5px; }
  .faq-grid { padding-top: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .visit-card .hero-actions .button { width: 100%; }
  .map-wrap, .map-wrap iframe { min-height: 340px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta {
    position: fixed; z-index: 90; right: .55rem; bottom: .55rem; left: .55rem;
    display: grid; grid-template-columns: 1fr 1fr 1.2fr; overflow: hidden;
    border: 1px solid #273248; border-radius: 999px; background: #111a2a;
    box-shadow: 0 16px 40px rgb(0 0 0 / 35%);
  }
  .mobile-cta a { min-height: 50px; display: grid; place-items: center; color: #fff; font-weight: 850; text-decoration: none; }
  .mobile-cta a + a { border-left: 1px solid #273248; }
  .mobile-cta .primary { background: var(--brand); }
}


/* ========================================
   FAQ NAVIGATION SPACING
   Keeps the FAQ heading comfortably below
   the sticky navigation when scrolling/jumping.
======================================== */

#faq {
  scroll-margin-top: calc(var(--header-offset) + 1.5rem);
  padding-top: clamp(5.25rem, 7vw, 6.5rem);
}

@media (max-width: 980px) {
  #faq {
    scroll-margin-top: calc(var(--header-offset) + 1rem);
    padding-top: 4.75rem;
  }
}

@media (max-width: 640px) {
  #faq {
    padding-top: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}



/* ========================================
   Blended brand accent lines
   Smooth multi-color lines for cards
======================================== */

.program-card,
.video-card,
.weekly-side-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border-top-color: transparent !important;
  isolation: isolate;
}

.program-card::before,
.video-card::before,
.weekly-side-card::before,
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  left: 1px;
  height: 4px;
  border-top-left-radius: calc(var(--radius) - 3px);
  border-top-right-radius: calc(var(--radius) - 3px);
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--yellow) 34%,
    var(--green) 67%,
    var(--accent-bright, var(--accent)) 100%
  );
  pointer-events: none;
  z-index: 1;
}
