/* ========================================
   Fürstmann Versicherungsmakler — Redesign v2
   Komplett eigenständiges Design
   Lokal gehostete Fonts, keine externen Requests
   ======================================== */

/* --- FONT FACES (lokal) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./assets/fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./assets/fonts/playfair-latin.woff2') format('woff2');
}

/* --- CSS VARIABLES --- */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Teal from visitenkarte logo */
  --teal: #2ab5b2;
  --teal-dark: #1e8e8c;
  --teal-deeper: #197574;
  --teal-light: #e6f7f7;
  --teal-10: rgba(42, 181, 178, 0.1);
  --teal-20: rgba(42, 181, 178, 0.2);

  /* Navy from suit / authority */
  --navy: #1b3a5c;
  --navy-dark: #0f2440;
  --navy-light: #2a5580;

  /* Warm neutrals — NOT the same as fuerstmann.it */
  --sand: #faf9f6;
  --sand-warm: #f5f3ee;
  --cream: #fffef9;
  --stone: #e8e5de;
  --stone-dark: #d1cdc4;

  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --white: #ffffff;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.35rem, 1.1rem + 1vw, 2rem);
  --text-2xl: clamp(1.75rem, 1rem + 2.2vw, 2.8rem);
  --text-3xl: clamp(2.2rem, 0.8rem + 3.5vw, 3.8rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.04);
  --shadow-elevated: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-teal: 0 4px 20px rgba(42, 181, 178, 0.15);

  --transition: 250ms ease;
  --content-max: 1140px;
  --content-narrow: 760px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  min-height: 100dvh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  text-wrap: balance;
  color: var(--navy);
}

p { text-wrap: pretty; max-width: 68ch; }

::selection { background: var(--teal-20); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* --- LAYOUT --- */
.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.wrap--narrow {
  max-width: var(--content-narrow);
}

/* =============================================
   HEADER — horizontal bar, logo left, nav right
   Completely different from fuerstmann.it
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-subtle);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Logo from Visitenkarte */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--navy);
}

.logo svg { width: 44px; height: 34px; flex-shrink: 0; }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
  letter-spacing: 0.01em;
}

.logo__sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: var(--teal-10);
}

.site-nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: var(--sp-2) var(--sp-6) !important;
}

.site-nav__cta:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 800px) {
  .burger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--sp-4) var(--sp-6) var(--sp-6);
    border-bottom: 1px solid var(--stone);
    box-shadow: var(--shadow-elevated);
    gap: var(--sp-1);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; text-align: left; border-radius: var(--radius-md); padding: var(--sp-3) var(--sp-4); }
}

/* =============================================
   HERO — Completely different approach:
   Full-width with person photo as focal point.
   Text overlapping image. Personal, warm.
   ============================================= */
.hero {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
  max-width: var(--content-max);
  margin-inline: auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-16) var(--sp-6) var(--sp-16) var(--sp-6);
  position: relative;
  z-index: 2;
}

.hero__tagline {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-6);
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero__intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}

.hero__photo-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* Compact teal accent shape behind photo */
.hero__photo-col::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  background: linear-gradient(160deg, rgba(42,181,178,0.10) 0%, rgba(42,181,178,0.04) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero__portrait {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  filter: drop-shadow(0 -4px 20px rgba(0,0,0,0.08));
}

@media (max-width: 800px) {
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__photo-col {
    order: -1;
    height: 320px;
    justify-content: center;
  }
  .hero__portrait { max-width: 260px; }
  .hero__content { padding: var(--sp-8) var(--sp-6) var(--sp-12); }
  .hero h1 { font-size: var(--text-2xl); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   BUTTONS — Pill-shaped, teal-accent
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--stone-dark);
}
.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-10);
}

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

/* Phone link inline */
.btn--phone {
  font-size: var(--text-sm);
  color: var(--teal-dark);
  font-weight: 600;
  gap: var(--sp-2);
}
.btn--phone svg { width: 16px; height: 16px; }

/* =============================================
   STATS RIBBON — Horizontal, minimal
   Different from trust-bar on other sites
   ============================================= */
.stats-ribbon {
  background: var(--white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: var(--sp-6) 0;
}

.stats-ribbon__grid {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .stats-ribbon__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}

/* =============================================
   SECTIONS — Alternating backgrounds
   ============================================= */
.section {
  padding: clamp(var(--sp-12), 6vw, var(--sp-24)) 0;
}

.section--sand { background: var(--sand); }
.section--white { background: var(--white); }
.section--teal-soft { background: var(--teal-light); }

.section__label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}

.section__title {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-4);
}

.section__desc {
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: var(--sp-10);
}

.section__head {
  text-align: center;
  margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-16));
}

.section__head .section__desc {
  margin-inline: auto;
}

/* =============================================
   WHAT WE DO — Horizontal list with teal accents
   NOT the 3-card grid pattern
   ============================================= */
.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  transition: all var(--transition);
}

.service-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-card);
}

.service-row__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  padding-top: var(--sp-1);
}

.service-row h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.service-row p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.service-row ul {
  margin-top: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.service-row ul li {
  font-size: var(--text-xs);
  color: var(--teal-dark);
  background: var(--teal-10);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

@media (max-width: 600px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row__num { display: none; }
}

/* =============================================
   ABOUT — Side by side, image left (large)
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-12);
  align-items: start;
}

.about-split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-split__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-split__text h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-4);
}

.about-split__text p {
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.focus-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.focus-area {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text);
  padding: var(--sp-3);
  background: var(--sand);
  border-radius: var(--radius-md);
}

.focus-area::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .about-split { grid-template-columns: 1fr; }
  .focus-areas { grid-template-columns: 1fr; }
}

/* =============================================
   PARTNERS — flowing tag cloud
   ============================================= */
.partners-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

.partner-chip {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-5);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.partner-chip:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-light);
}

/* =============================================
   CONTACT SECTION on homepage
   ============================================= */
.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.contact-box--highlight {
  border-color: var(--teal);
  border-width: 2px;
}

.contact-box h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-6);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.contact-line svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-line a { color: var(--text-muted); }
.contact-line a:hover { color: var(--teal-dark); }

@media (max-width: 800px) {
  .contact-preview { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACT FORM (kontakt.html)
   ============================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px var(--teal-10);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER — dark navy, minimal
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--sp-12) 0 var(--sp-6);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}

.site-footer__brand p {
  font-size: var(--text-sm);
  max-width: 280px;
  margin-top: var(--sp-4);
  color: rgba(255,255,255,0.45);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.site-footer ul li { margin-bottom: var(--sp-2); }

.site-footer ul a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.site-footer ul a:hover { color: var(--teal); }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal {
  padding: clamp(var(--sp-8), 4vw, var(--sp-16)) 0;
}

.legal h1 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-8);
}

.legal h2 {
  font-size: var(--text-lg);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}

.legal h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--text);
}

.legal p {
  margin-bottom: var(--sp-4);
  color: var(--text-muted);
}

.legal ul {
  margin: var(--sp-3) 0 var(--sp-6);
  padding-left: var(--sp-6);
}

.legal ul li {
  list-style: disc;
  margin-bottom: var(--sp-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.legal a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-top {
  background: var(--sand);
  padding: clamp(var(--sp-6), 3vw, var(--sp-10)) 0;
  border-bottom: 1px solid var(--stone);
}

.page-top h1 {
  font-size: var(--text-xl);
}

.page-top p {
  color: var(--text-muted);
  margin-top: var(--sp-3);
  max-width: 550px;
}

.breadcrumb {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal-dark); }

/* =============================================
   VERSICHERUNGEN PAGE
   ============================================= */
.ins-category {
  margin-bottom: var(--sp-10);
}

.ins-category h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.ins-category h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.ins-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.ins-tag {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-4);
  background: var(--sand);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  transition: all var(--transition);
}

.ins-tag:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-light);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* =============================================
   CTA BAND at bottom of content pages
   ============================================= */
.cta-band {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.cta-band p {
  color: rgba(255,255,255,0.7);
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
