/* ==========================================================================
   sundaysforlife.org — Theme
   Dieter Rams: Weniger, aber besser.
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --c-pink: #FF40B4;
  --c-pink-dark: #D4308F;
  --c-pink-light: #FF6DC6;
  --c-pink-subtle: #FFF0F8;
  --c-white: #ffffff;
  --c-black: #0a0a0a;
  --c-text: #1a1a1a;
  --c-muted: #666666;
  --c-border: #e4e4e4;
  --c-bg: #ffffff;
  --c-bg-alt: #f0f0f0;
  --c-bg-dark: #0a0a0a;

  --font-display: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 16px;
  --r-full: 9999px;

  --w-site: 1200px;
  --w-narrow: 720px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.72rem + 0.25vw, 0.95rem);
  --text-base: clamp(0.95rem, 0.88rem + 0.35vw, 1.15rem);
  --text-lg: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  --text-xl: clamp(1.4rem, 1.1rem + 1vw, 2.2rem);
  --text-2xl: clamp(1.8rem, 1.3rem + 1.8vw, 3.2rem);
  --text-3xl: clamp(2.5rem, 1.6rem + 3vw, 4.5rem);
  --text-4xl: clamp(3.5rem, 2rem + 5vw, 7rem);
  --text-hero: clamp(5rem, 2.5rem + 8vw, 11rem);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: var(--text-base); line-height: 1.6; color: var(--c-text); background: var(--c-bg); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

/* ── Typography ────────────────────────────────────────────────────────── */
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
h4 { font-size: var(--text-lg); margin-bottom: var(--space-xs); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--w-site); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.container--narrow { max-width: var(--w-narrow); }

.section { padding: clamp(3rem, 6vw, 6rem) 0; }

/* Compensate for fixed nav on pages without sfl-content wrapper */
main > .section:first-child { padding-top: calc(clamp(3rem, 6vw, 6rem) + 72px); }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: var(--c-white); }
.section--pink { background: var(--c-pink); color: var(--c-white); }

.grid { display: grid; gap: var(--space-md); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (max-width: 767px) {
  .grid--2 .stat { text-align: center; }
  .grid--2 .stat__number { font-size: clamp(3rem, 2rem + 3vw, 4.5rem); }
}

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 0.85em 1.8em;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--c-pink); color: var(--c-white); }
.btn--primary:hover { background: var(--c-pink-dark); color: var(--c-white); }
.btn--ghost { background: transparent; color: var(--c-white); border: 1px solid rgba(255,255,255,0.3); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--c-white); color: var(--c-white); }
.btn--outline { background: transparent; color: var(--c-pink); border: 1px solid var(--c-pink); }
.btn--outline:hover { background: var(--c-pink); color: var(--c-white); }

/* Ghost on light backgrounds needs different colors */
.section:not(.section--dark) .btn--ghost { color: var(--c-text); border-color: var(--c-border); }
.section:not(.section--dark) .btn--ghost:hover { border-color: var(--c-pink); color: var(--c-pink); background: rgba(255,64,180,0.04); }

/* ── Navigation ────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s, transform 0.3s;
}
.nav--hidden { transform: translateY(-100%); }
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__link {
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 500;
  color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--c-white); }
.nav__link--has-children { display: flex; align-items: center; gap: 0.3em; }
.nav__chevron { transition: transform 0.2s; }
.nav__link--cta { color: var(--c-pink); font-weight: 600; }
.nav__link--cta:hover { color: var(--c-pink-light); }
.nav__link--cta-btn {
  color: var(--c-white) !important; font-weight: 600;
  background: var(--c-pink); padding: 0.45em 1.1em;
  border-radius: var(--r-full); font-size: var(--text-xs);
  transition: background 0.2s;
}
.nav__link--cta-btn:hover { background: var(--c-pink-dark); color: var(--c-white) !important; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--c-dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); padding: 0.5rem 0;
  min-width: 200px; opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(8px);
  z-index: 100; margin-top: 0.5rem;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-link {
  display: block; padding: 0.5rem 1.25rem;
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 500;
  color: rgba(255,255,255,0.6); white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown-link:hover { color: var(--c-white); background: rgba(255,255,255,0.05); }

/* Mobile sub-links */
/* Mobile accordion groups */
.nav-mobile__group { width: 100%; max-width: 280px; }
.nav-mobile__parent {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.nav-mobile__toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.nav-mobile__toggle[aria-expanded="true"] { transform: rotate(180deg); color: var(--c-pink); background: rgba(255,64,180,0.12); }
.nav-mobile__toggle:hover { background: rgba(255,255,255,0.12); }

.nav-mobile__children {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.nav-mobile__children > * {
  overflow: hidden;
}
.nav-mobile__children[aria-hidden="false"] { grid-template-rows: 1fr; }
.nav-mobile__children-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding-top: 0; transition: padding-top 0.3s ease;
}
.nav-mobile__children[aria-hidden="false"] .nav-mobile__children-inner { padding-top: 0.75rem; }

.nav-mobile__child {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  color: rgba(255,255,255,0.55); transition: color 0.15s;
  display: block; padding: 0.4rem 0;
}
.nav-mobile__child:hover { color: var(--c-pink); }

.nav-mobile__link--cta { color: var(--c-pink) !important; }

.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 12px; cursor: pointer; z-index: 101;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--c-white); transition: all 0.3s; pointer-events: none; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* Mobile Menu */
.nav-mobile {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c-bg-dark); z-index: 1001;
  display: flex; flex-direction: column; align-items: center;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 5rem 1.5rem 3rem;
  gap: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
body.nav-open .nav__burger { visibility: hidden; }
.nav-mobile__link {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600;
  color: var(--c-white); transition: color 0.15s;
}
.nav-mobile__link:hover { color: var(--c-pink); }
.nav-mobile__close {
  position: fixed; top: 1rem; right: 1rem;
  color: var(--c-white); font-size: 1.5rem;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border: none; border-radius: 50%; cursor: pointer;
  min-width: 48px; min-height: 48px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  z-index: 1002;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  background: var(--c-bg-dark);
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.hero__bg-word {
  position: absolute; right: -0.05em; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(14rem, 30vw, 36rem); line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,64,180,0.08);
  pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: -0.03em;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-3xl); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: 14em;
  text-wrap: balance;
}

.hero__number {
  display: block;
  font-size: var(--text-hero);
  color: var(--c-pink);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0.1em 0 0.05em;
}

.hero__subline {
  font-family: var(--font-body); font-size: var(--text-lg); font-weight: 400;
  color: rgba(255,255,255,0.5); line-height: 1.5;
  max-width: 480px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-2xl); line-height: 1;
  color: var(--c-pink); letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: var(--text-xs); font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4;
}
.hero__stat-sep {
  width: 1px; background: rgba(255,64,180,0.15);
  align-self: stretch; display: none;
}

@media (min-width: 600px) {
  .hero__stats { flex-wrap: nowrap; gap: 0; }
  .hero__stat { padding: 0 clamp(1.5rem, 3vw, 2.5rem); }
  .hero__stat:first-child { padding-left: 0; }
  .hero__stat-sep { display: block; }
}

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

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); transition: all 0.2s; z-index: 2;
}
.hero__scroll:hover { border-color: var(--c-pink); color: var(--c-pink); }
.hero__scroll svg { width: 20px; height: 20px; }

@media (max-width: 599px) {
  .hero {
    min-height: 85svh; min-height: 85vh;
    align-items: flex-start;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

/* ── Live Dot ──────────────────────────────────────────────────────────── */
.live-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--c-pink);
  animation: pulse 2s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.2s ease, width 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── Live Counter Card ─────────────────────────────────────────────────── */
.live-card {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 100;
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(255,64,180,0.25);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: clamp(0.65rem, 0.5rem + 0.4vw, 1rem) clamp(0.9rem, 0.7rem + 0.5vw, 1.4rem);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,64,180,0.1);
  transition: padding 0.4s cubic-bezier(0.4,0,0.2,1),
              border-radius 0.4s cubic-bezier(0.4,0,0.2,1),
              transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease;
}
.live-card--hidden {
  transform: translateY(calc(100% + 2rem));
  opacity: 0; pointer-events: none;
}
.live-card--dismissed { display: none; }
/* Mini pill state: smooth collapse to number-only */
.live-card--mini {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}
.live-card--mini .live-card__close {
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.live-card--mini .live-card__label {
  position: absolute; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.live-card--mini .live-dot {
  opacity: 0; width: 0; margin: 0; overflow: hidden;
  transition: opacity 0.2s ease, width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.live-card--mini .live-card__inner {
  gap: 0; transition: gap 0.3s cubic-bezier(0.4,0,0.2,1);
}
.live-card--mini .live-card__number {
  font-size: 1rem; white-space: nowrap;
}
.live-card__close {
  position: absolute; top: 4px; right: 6px;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 2px 4px;
  opacity: 1; pointer-events: auto;
  transition: color 0.2s, opacity 0.25s ease;
}
.live-card__close:hover { color: rgba(255,255,255,0.8); }

.live-card-reopen {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 99;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,10,10,0.85); border: 1px solid rgba(255,64,180,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s, opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.live-card-reopen:hover { transform: scale(1.1); }
.live-card-reopen .live-dot { margin: 0; }
.live-card__inner {
  display: flex; align-items: center;
  gap: clamp(0.6rem, 0.4rem + 0.4vw, 1rem);
  transition: gap 0.3s cubic-bezier(0.4,0,0.2,1);
}
.live-card__number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 1rem + 1vw, 2rem); line-height: 1; color: var(--c-white);
  letter-spacing: -0.02em;
  transition: font-size 0.4s cubic-bezier(0.4,0,0.2,1);
}
.live-card__label {
  font-size: clamp(0.6rem, 0.5rem + 0.3vw, 0.75rem); font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.4;
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}
.live-card__text { display: flex; flex-direction: column; gap: 0.1rem; }

/* ── YouTube Two-Click (GDPR) ──────────────────────────────────────────── */
.yt-consent {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000; border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; display: block;
}
.yt-consent__thumb {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.65; transition: opacity 0.3s;
}
.yt-consent:hover .yt-consent__thumb { opacity: 0.85; }
.yt-consent__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.5rem; text-align: center;
}
.yt-consent__play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,64,180,0.9); display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.yt-consent:hover .yt-consent__play { transform: scale(1.1); background: var(--c-pink); }
.yt-consent__play svg { width: 28px; height: 28px; fill: #fff; margin-left: 3px; }
.yt-consent__text {
  color: rgba(255,255,255,0.7); font-size: var(--text-xs);
  max-width: 280px; line-height: 1.4;
}
.yt-consent iframe {
  width: 100%; height: 100%; position: absolute; inset: 0; border: 0;
}

/* ── Blog & Article Styles ─────────────────────────────────────────────── */
.sfl-search { display: flex; gap: 0.75rem; max-width: 480px; margin: 1.5rem auto 0; }
.sfl-search__input {
  flex: 1; padding: 0.7em 1em; border: 1px solid var(--c-border);
  border-radius: var(--r-sm); font-size: var(--text-base);
  font-family: var(--font-body); background: var(--c-white); color: var(--c-text);
  transition: border-color 0.2s;
}
.sfl-search__input:focus { outline: none; border-color: var(--c-pink); }
.section--dark .sfl-search__input {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15);
  color: var(--c-white);
}
.section--dark .sfl-search__input::placeholder { color: rgba(255,255,255,0.35); }

.sfl-article { max-width: 800px; margin: 0 auto; }
.sfl-article img { max-width: 100%; height: auto; border-radius: var(--r-sm); margin: 1.5rem 0; }
.sfl-article h2 { margin-top: 2rem; }

.sfl-meta { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center;
  font-size: var(--text-sm); color: var(--c-muted); margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}
.sfl-meta__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.sfl-meta__tag {
  display: inline-block; padding: 0.2em 0.7em; border-radius: 999px;
  background: rgba(255,64,180,0.08); color: var(--c-pink); font-size: var(--text-xs);
  font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.sfl-meta__tag:hover { background: rgba(255,64,180,0.15); }

/* Card image support */
.card__image { width: calc(100% + clamp(2.5rem, 5vw, 4rem)); margin: calc(-1 * clamp(1.25rem, 2.5vw, 2rem)) calc(-1 * clamp(1.25rem, 2.5vw, 2rem)) 1rem;
  border-radius: var(--r-md) var(--r-md) 0 0; overflow: hidden; }
.card__image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card__date { font-size: var(--text-xs); color: var(--c-muted); margin-bottom: 0.5rem; }

/* Blog pagination override */
.pagination { display: flex; gap: 0.25rem; justify-content: center; margin-top: 2rem; list-style: none; padding: 0; }
.pagination li a, .pagination li span { display: block; padding: 0.5em 0.9em; border-radius: var(--r-sm);
  font-size: var(--text-sm); color: var(--c-text); text-decoration: none; border: 1px solid var(--c-border); transition: all 0.2s; }
.pagination li a:hover { border-color: var(--c-pink); color: var(--c-pink); }
.pagination li.active span { background: var(--c-pink); color: var(--c-white); border-color: var(--c-pink); }

/* ── Section Blocks ────────────────────────────────────────────────────── */
.section__eyebrow {
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-pink); margin-bottom: 0.25rem;
}

.section__title {
  font-size: var(--text-3xl); font-weight: 700;
  margin-bottom: var(--space-md); max-width: 16em;
  text-wrap: balance;
}

.section__text {
  font-size: var(--text-lg); color: var(--c-muted);
  max-width: 600px; line-height: 1.6;
}
.section--dark .section__text { color: rgba(255,255,255,0.6); }

.section__big-number {
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-4xl); line-height: 0.9;
  color: var(--c-pink); letter-spacing: -0.03em;
}

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

/* Clickable cards (links) — visual affordance */
a.card { cursor: pointer; }
a.card .card__title { color: var(--c-pink); transition: color 0.2s; }
a.card:hover .card__title { color: var(--c-pink-dark); }
a.card::after {
  content: "→"; display: block; margin-top: 0.75rem;
  font-size: var(--text-sm); color: var(--c-pink); font-weight: 600;
  opacity: 0; transition: opacity 0.2s;
}
a.card:hover::after { opacity: 1; }

/* Non-clickable cards — no pointer, no arrow */
div.card { cursor: default; }

.card__icon { margin-bottom: var(--space-sm); }
.card__icon img, .card__icon svg { width: 48px; height: 48px; }
.card__title { font-size: var(--text-lg); margin-bottom: 0.5rem; }
.card__text { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.6; }
.card__text + .card__text { margin-top: 0.4em; }
.sfl-content .card p { margin-bottom: 0.5em; }
.sfl-content .card p:last-child { margin-bottom: 0; }

.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section--dark .card:hover { background: rgba(255,255,255,0.06); }
.section--dark a.card .card__title { color: var(--c-pink); }
.section--dark .card__text { color: rgba(255,255,255,0.65); }

/* Outline buttons in dark sections need better contrast */
.section--dark .btn--outline { color: var(--c-pink); border-color: var(--c-pink); }
.section--dark .btn--outline:hover { background: var(--c-pink); color: var(--c-white); border-color: var(--c-pink); }

/* Outline buttons inside cards — prevent text vanishing */
.card .btn--outline { font-size: var(--text-xs); padding: 0.7em 1.4em; }
.section--dark .card .btn--outline { border-color: rgba(255,64,180,0.5); }
.section--dark .card .btn--outline:hover { border-color: var(--c-pink); background: var(--c-pink); color: var(--c-white); }

/* ── Quote ─────────────────────────────────────────────────────────────── */
.quote {
  border-left: 4px solid var(--c-pink);
  padding: var(--space-md);
  font-size: var(--text-lg); font-style: italic;
  color: var(--c-text); max-width: 600px;
  background: var(--c-pink-subtle);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.section--dark .quote {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border-left-color: rgba(255,255,255,0.3);
}

/* ── Responsive video embeds (16:9) ────────────────────────────────────── */
iframe[src*="youtube"] {
  width: 100%; height: auto;
  aspect-ratio: 16 / 9;
  border: none; display: block;
  border-radius: var(--r-md);
}

/* ── Stats Grid ────────────────────────────────────────────────────────── */
.stat-grid { display: grid; gap: var(--space-lg); }
.stat-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .stat-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.stat { text-align: center; }
.stat__number {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); color: var(--c-pink);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: var(--text-sm); color: var(--c-muted); line-height: 1.4;
}
.section--dark .stat__label { color: rgba(255,255,255,0.5); }

/* ── CTA Section ───────────────────────────────────────────────────────── */
.cta-block {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--c-pink);
  border-radius: var(--r-lg);
  color: var(--c-white);
}
.cta-block__title {
  font-size: var(--text-2xl); font-weight: 700;
  margin-bottom: var(--space-sm);
}
.cta-block__text { font-size: var(--text-base); opacity: 0.85; margin-bottom: var(--space-md); }
.cta-block .btn--primary { background: var(--c-white); color: var(--c-pink); }
.cta-block .btn--primary:hover { background: rgba(255,255,255,0.9); color: var(--c-pink); }
.cta-block .btn--ghost,
.section:not(.section--dark) .cta-block .btn--ghost { color: var(--c-white); border-color: rgba(255,255,255,0.5); }
.cta-block .btn--ghost:hover,
.section:not(.section--dark) .cta-block .btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--c-white); color: var(--c-white); }
.cta-block .btn--outline,
.section:not(.section--dark) .cta-block .btn--outline { color: var(--c-white); border-color: rgba(255,255,255,0.5); }
.cta-block .btn--outline:hover,
.section:not(.section--dark) .cta-block .btn--outline:hover { background: var(--c-white); color: var(--c-pink); border-color: var(--c-white); }

/* Force ALL text inside CTA blocks to be white — prevent pink-on-pink */
.sfl-content .cta-block,
.sfl-content .cta-block p,
.sfl-content .cta-block a:not(.btn) {
  color: var(--c-white);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--c-bg-dark); color: rgba(255,255,255,0.5);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid { display: grid; gap: var(--space-lg); margin-bottom: var(--space-xl); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand-text {
  font-size: var(--text-sm); line-height: 1.8; margin-top: var(--space-sm);
}
.footer__heading {
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600;
  color: var(--c-white); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.footer__link {
  display: block; font-size: var(--text-sm); padding: 0.2em 0;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--c-pink); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem; font-size: var(--text-xs);
  text-align: center;
}
.footer__logo img { height: 28px; width: auto; margin-bottom: var(--space-xs); }

/* ── Scroll Animations ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Static Page Content ────────────────────────────────────────────────
   Styles for <div class="sfl-content"> wrapper used by Static Pages.
   Re-applies readable typography after the CSS reset.
   ────────────────────────────────────────────────────────────────────── */
.sfl-content {
  /* No max-width here — sections inside need full width.
     First section gets its own padding-top for fixed nav compensation. */
}
.sfl-content > .section:first-child { padding-top: calc(clamp(3rem, 6vw, 6rem) + 72px); }

/* When sfl-content has NO sections (plain text pages),
   add narrow centering + nav compensation via fallback */
.sfl-content > :not(.section):first-child { padding-top: clamp(5rem, 8vw, 7rem); }
.sfl-content > :not(.section) {
  max-width: var(--w-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

/* Sections inside sfl-content go full width */
.sfl-content > .section {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.sfl-content h1 {
  font-size: var(--text-3xl);
  color: var(--c-pink);
  margin-bottom: var(--space-md);
}
.sfl-content h2 {
  font-size: var(--text-2xl);
  color: var(--c-pink);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}
.sfl-content h3 {
  font-size: var(--text-xl);
  color: var(--c-pink);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.sfl-content h4 {
  font-size: var(--text-lg);
  color: var(--c-pink);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

/* Override pink headings inside containers that need different colors */
.sfl-content .cta-block h1,
.sfl-content .cta-block h2,
.sfl-content .cta-block h3,
.sfl-content .cta-block h4 {
  color: var(--c-white);
  margin-top: 0;
}
.sfl-content .section--dark h1,
.sfl-content .section--dark h2,
.sfl-content .section--dark h3,
.sfl-content .section--dark h4 {
  color: var(--c-white);
}
.sfl-content .card h3,
.sfl-content .card h4 {
  color: var(--c-text);
  margin-top: 0;
}
.sfl-content .section--dark .card h3,
.sfl-content .section--dark .card h4 {
  color: var(--c-white);
}

.sfl-content p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.sfl-content a {
  color: var(--c-pink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.15s;
}
.sfl-content a:hover {
  color: var(--c-pink-dark);
}
/* Buttons are links but must NOT inherit generic link styles */
.sfl-content a.btn {
  text-decoration: none;
}
.sfl-content .cta-block a.btn {
  color: var(--c-white);
}
.sfl-content .cta-block a.btn--primary {
  color: var(--c-pink);
  background: var(--c-white);
}
.sfl-content .cta-block a.btn:hover {
  color: var(--c-white);
}
.sfl-content .cta-block a.btn--primary:hover {
  color: var(--c-pink);
}

.sfl-content strong {
  font-weight: 600;
}

.sfl-content em {
  font-style: italic;
}

.sfl-content ul,
.sfl-content ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.sfl-content ul { list-style: disc; }
.sfl-content ol { list-style: decimal; }
.sfl-content li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}
.sfl-content li::marker {
  color: var(--c-pink);
}

.sfl-content blockquote {
  border-left: 3px solid var(--c-pink);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--c-muted);
  background: var(--c-pink-subtle);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.sfl-content blockquote p {
  margin-bottom: 0.5em;
}

.sfl-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: var(--space-lg) 0;
}

.sfl-content img {
  border-radius: var(--r-md);
  margin: var(--space-md) 0;
}

.sfl-content figure {
  margin: var(--space-md) 0;
}

.sfl-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}
.sfl-content th,
.sfl-content td {
  padding: 0.6em 1em;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}
.sfl-content th {
  font-weight: 600;
  color: var(--c-pink);
}

.sfl-content sup a {
  text-decoration: none;
  font-weight: 600;
}

/* ── Bootstrap Compatibility Layer ──────────────────────────────────────
   Minimal grid/utility compat for legacy static page content
   that uses Bootstrap 4 classes (row, col-md-*, offset-md-*, etc.)
   ────────────────────────────────────────────────────────────────────── */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.col-12, .col-sm-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.33%; max-width: 8.33%; }
  .col-md-2 { flex: 0 0 16.66%; max-width: 16.66%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.33%; max-width: 33.33%; }
  .col-md-5 { flex: 0 0 41.66%; max-width: 41.66%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.33%; max-width: 58.33%; }
  .col-md-8 { flex: 0 0 66.66%; max-width: 66.66%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.33%; max-width: 83.33%; }
  .col-md-11 { flex: 0 0 91.66%; max-width: 91.66%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .offset-md-1 { margin-left: 8.33%; }
  .offset-md-2 { margin-left: 16.66%; }
  .offset-md-3 { margin-left: 25%; }
}

/* Bootstrap-style utility classes */
.lead { font-size: var(--text-lg); font-weight: 300; line-height: 1.6; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }

.list-group {
  display: flex;
  flex-direction: column;
}
.list-group-item {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  margin-bottom: -1px;
}
.list-group-item:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.list-group-item:last-child { border-radius: 0 0 var(--r-md) var(--r-md); margin-bottom: 0; }
.list-group-item h5 { font-size: var(--text-base); color: var(--c-pink); }
.list-group-item p { font-size: var(--text-sm); color: var(--c-muted); }
.list-group-item-action { text-decoration: none; transition: background 0.15s; }
.list-group-item-action:hover { background: var(--c-pink-subtle); }

/* Legacy card compat */
.card-header { padding: 0.75rem 1.25rem; background: var(--c-bg-alt); border-bottom: 1px solid var(--c-border); }
.card-body { padding: 1.25rem; }

/* Legacy accordion compat */
.collapse { display: none; }
.collapse.show { display: block; }

/* ── Utilities ─────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-pink { color: var(--c-pink); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ── FAQ Accordion ─────────────────────────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--c-border);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-pink);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
.faq-item[open] .faq-item__q::after {
  content: "−";
}
.faq-item__q:hover { color: var(--c-pink); }
.faq-item__a {
  padding: 0 0 1.5rem 0;
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.7;
}
.faq-item__a p { margin-bottom: 0.6em; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* Dark section variant */
.section--alt .faq-item { border-color: rgba(0,0,0,0.08); }
.section--dark .faq-item { border-color: rgba(255,255,255,0.1); }
.section--dark .faq-item__q { color: var(--c-white); }
.section--dark .faq-item__a { color: rgba(255,255,255,0.6); }

/* ── Prenatal Timeline (Organic serpentine like the print flyer) ──── */
.sfl-tl {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* The organic serpentine SVG line is rendered via JS into .sfl-tl__curve */
.sfl-tl__curve {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sfl-tl__curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Simple filled dot marker — hidden on desktop (SVG draws them), visible on mobile fallback */
.sfl-tl__marker {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-pink);
  transform: translateX(-50%);
  z-index: 2;
}
/* Hide HTML markers when SVG curve is present (desktop) */
.sfl-tl__curve ~ .sfl-tl__item .sfl-tl__marker { display: none; }
.sfl-tl__marker--alert {
  width: 14px; height: 14px;
  box-shadow: 0 0 10px rgba(255,64,180,0.5);
}

/* Each timeline item */
.sfl-tl__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  align-items: start;
  z-index: 1;
}

/* Right: text left, media right */
.sfl-tl__item--right .sfl-tl__body { grid-column: 1; text-align: right; padding-right: 3rem; }
.sfl-tl__item--right .sfl-tl__media { grid-column: 2; padding-left: 3rem; }

/* Left: media left, text right */
.sfl-tl__item--left .sfl-tl__media { grid-column: 1; grid-row: 1; text-align: right; padding-right: 3rem; }
.sfl-tl__item--left .sfl-tl__body { grid-column: 2; grid-row: 1; padding-left: 3rem; }

/* Items without media */
.sfl-tl__item--right .sfl-tl__body:only-child { grid-column: 1; text-align: right; padding-right: 3rem; }
.sfl-tl__item--left .sfl-tl__body:only-child { grid-column: 2; padding-left: 3rem; }

.sfl-tl__item--right .sfl-tl__body:only-child ~ .sfl-tl__marker,
.sfl-tl__item--left .sfl-tl__body:only-child ~ .sfl-tl__marker { top: 1.5rem; }

/* Content styles */
.sfl-tl__week {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  color: var(--c-pink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sfl-tl__heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}
.sfl-tl__text {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.7;
}
.sfl-tl__alert {
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-pink);
}
.sfl-tl__media img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.sfl-tl__item--right .sfl-tl__media img { margin-left: 0; }
.sfl-tl__item--left .sfl-tl__media img { margin-left: auto; }

/* Alert highlight */
.sfl-tl__item--alert {
  background: rgba(255,64,180,0.04);
  border-radius: var(--r-md);
  padding: 2rem 0;
  margin: 1rem -1rem;
  padding-left: 1rem; padding-right: 1rem;
}

/* ── Mobile: stack to single column ─── */
@media (max-width: 599px) {
  .sfl-tl__curve { display: none; }
  .sfl-tl__marker { left: 0.75rem; top: 0.25rem; width: 10px; height: 10px; }

  .sfl-tl__item {
    grid-template-columns: 1fr;
    padding-left: 2.5rem;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  /* Mobile left vertical line */
  .sfl-tl::before {
    content: "";
    position: absolute;
    left: 0.75rem; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--c-pink) 2rem, var(--c-pink) calc(100% - 2rem), transparent);
    transform: translateX(-50%);
  }

  .sfl-tl__item--right .sfl-tl__body,
  .sfl-tl__item--left .sfl-tl__body,
  .sfl-tl__item--right .sfl-tl__body:only-child,
  .sfl-tl__item--left .sfl-tl__body:only-child {
    grid-column: 1; text-align: left;
    padding-left: 0; padding-right: 0;
  }
  .sfl-tl__item--right .sfl-tl__media,
  .sfl-tl__item--left .sfl-tl__media {
    grid-column: 1; grid-row: auto;
    text-align: left; padding: 0;
  }
  .sfl-tl__media img { max-width: 100px !important; margin: 0 !important; }
  .sfl-tl__week { font-size: var(--text-sm); }
  .sfl-tl__heading { font-size: var(--text-lg); }
  .sfl-tl__text { font-size: var(--text-sm); }
  .sfl-tl__item--alert {
    margin: 0.5rem 0; padding: 1rem 0.75rem;
    border-radius: var(--r-sm);
  }
}

/* ── Mautic Contact Form Override ─────────────────────────────────── */
#sfl-contact-form .mauticform_wrapper { max-width: 100%; margin: 0; }
#sfl-contact-form .mauticform-label {
  font-family: var(--ff-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.375rem;
}
#sfl-contact-form .mauticform-input,
#sfl-contact-form .mauticform-textarea,
#sfl-contact-form .mauticform-selectbox {
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
#sfl-contact-form .mauticform-input:focus,
#sfl-contact-form .mauticform-textarea:focus {
  border-color: var(--c-pink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 64, 180, 0.1);
}
#sfl-contact-form .mauticform-textarea { min-height: 140px; resize: vertical; }
#sfl-contact-form .mauticform-row { margin-bottom: 1.25rem; }
#sfl-contact-form .mauticform-checkboxgrp-label {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--c-muted);
}
#sfl-contact-form .mauticform-checkboxgrp-label a { color: var(--c-pink); }
#sfl-contact-form .mauticform-helpmessage {
  font-size: var(--text-sm);
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}
#sfl-contact-form .mauticform-errormsg { font-size: var(--text-sm); }
#sfl-contact-form .mauticform-button {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  background: var(--c-pink);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
#sfl-contact-form .mauticform-button:hover {
  background: var(--c-pink-hover, #e0369e);
  transform: translateY(-1px);
}
#sfl-contact-form .mauticform-message { color: var(--c-pink); font-weight: 600; }
