/* =========================================================
   BLOOM AVENIR REPRODUCTIVE WELLNESS
   Shared design system
   Aesthetic: soft editorial wellness — sage, cream, blush
   Type: Fraunces (display serif) + Mulish (humanist sans)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Mulish:ital,wght@0,300..800;1,400..600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --sage-900: #333e2c;
  --sage-800: #414f38;
  --sage-700: #556146;
  --sage-600: #6b7857;
  --sage-500: #879472;
  --sage-400: #a6b193;
  --sage-300: #c4ceb4;
  --sage-100: #e6ebdd;

  --cream:      #f8f4ea;
  --cream-deep: #efe8d7;
  --cream-card: #fdfbf5;

  --blush-600: #c9857d;
  --blush-500: #dda49c;
  --blush-400: #ecc3bc;
  --blush-200: #f6ded9;

  --ink:   #2c3123;
  --ink-soft: #58604c;
  --line:  rgba(85, 97, 70, 0.16);
  --white: #ffffff;

  --shadow-sm: 0 4px 18px rgba(74, 84, 58, 0.08);
  --shadow-md: 0 18px 45px rgba(74, 84, 58, 0.12);
  --shadow-lg: 0 34px 70px rgba(52, 62, 40, 0.18);

  --radius: 22px;
  --radius-lg: 34px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Mulish', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--sage-900);
  letter-spacing: -0.01em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.accent { color: var(--blush-600); font-style: italic; }
.sage-word { color: var(--sage-500); }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blush-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px;
  background: var(--blush-500); display: inline-block;
}
.eyebrow.center::after {
  content: ""; width: 26px; height: 1.5px;
  background: var(--blush-500); display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.04em;
  padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--sage-700); color: var(--cream);
  box-shadow: 0 12px 26px rgba(85, 97, 70, 0.28);
}
.btn-primary:hover { background: var(--sage-800); box-shadow: 0 18px 34px rgba(85, 97, 70, 0.34); }
.btn-blush { background: var(--blush-500); color: #4a2e2b; box-shadow: 0 12px 26px rgba(201, 133, 125, 0.3); }
.btn-blush:hover { background: var(--blush-600); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--sage-800);
  border-color: var(--sage-400);
}
.btn-ghost:hover { background: var(--sage-800); color: var(--cream); border-color: var(--sage-800); }
.btn-lg { padding: 18px 38px; font-size: 0.92rem; }

/* ---------- Top info bar ---------- */
/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--blush-600), var(--sage-700));
  color: var(--cream);
  overflow: hidden;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.ticker-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 42s linear infinite;
}
.ticker-content span {
  display: inline-flex;
  align-items: center;
  padding: 9px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-content span::after {
  content: "\2022";
  margin: 0 34px;
  color: var(--blush-200);
  opacity: 0.7;
  font-size: 0.9rem;
}
.ticker-wrap:hover .ticker-content { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-content { animation-duration: 90s; }
}

.topbar {
  background: var(--sage-900); color: var(--sage-100);
  font-size: 0.8rem; letter-spacing: 0.01em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 44px; gap: 20px;
}
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; opacity: .9; }
.topbar-item svg { width: 15px; height: 15px; stroke: var(--blush-400); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-socials { display: flex; gap: 13px; }
.topbar-socials a { opacity: .8; transition: opacity .25s, transform .25s; }
.topbar-socials a:hover { opacity: 1; transform: translateY(-2px); }
.topbar-socials svg { width: 15px; height: 15px; fill: var(--sage-100); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 244, 234, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(248, 244, 234, 0.95); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-card);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6), 0 4px 12px rgba(85,97,70,.18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-mark svg { width: 22px; height: 22px; fill: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 500;
  color: var(--sage-900); letter-spacing: -0.01em;
}
.brand-name b { color: var(--blush-600); font-weight: 500; font-style: italic; }
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--sage-600); font-weight: 700; margin-top: 4px;
}
.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
  font-weight: 700; font-size: 0.9rem; color: var(--sage-800);
  position: relative; padding: 6px 0; letter-spacing: 0.01em;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--blush-500);
  border-radius: 2px; transition: width .35s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--sage-900); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--cream-card);
  cursor: pointer; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--sage-800);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Section scaffolding ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin: 18px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.04rem; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-bg-blob {
  position: absolute; border-radius: 50%; filter: blur(10px); opacity: .55; z-index: 0;
}
.blob-1 { width: 420px; height: 420px; top: -120px; right: -80px;
  background: radial-gradient(circle, var(--blush-200), transparent 70%); }
.blob-2 { width: 380px; height: 380px; bottom: -140px; left: -120px;
  background: radial-gradient(circle, var(--sage-100), transparent 70%); }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 400;
  margin-bottom: 22px;
}
.hero-copy h1 em { font-style: italic; color: var(--blush-600); }
.hero-copy .lead { max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; }
.hero-trust .stat b {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--sage-800);
  display: block; line-height: 1;
}
.hero-trust .stat span { font-size: 0.82rem; color: var(--ink-soft); }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; position: relative; z-index: 2;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 3; bottom: 30px; left: -26px;
  background: var(--cream-card); border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px;
  max-width: 240px;
}
.hero-badge .dot { width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--blush-200); display: grid; place-items: center; }
.hero-badge .dot svg { width: 22px; height: 22px; stroke: var(--blush-600); fill: none; }
.hero-badge b { font-family: var(--font-display); font-size: 1rem; color: var(--sage-900); display: block; }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); }
.hero-ring {
  position: absolute; top: -22px; right: -18px; z-index: 1;
  width: 130px; height: 130px; border-radius: 50%;
  border: 2px dashed var(--sage-300);
}

/* ---------- Service icon strip (Delmont feature row) ---------- */
.services-strip {
  position: relative; z-index: 5; margin-top: -46px;
}
.strip-card {
  background: var(--cream-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.strip-item {
  text-align: center; padding: 26px 18px; border-radius: var(--radius);
  transition: background .35s, transform .35s var(--ease); cursor: default;
  border: 1px solid transparent; position: relative;
}
.strip-item + .strip-item::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px;
  background: var(--line);
}
.strip-item:hover { background: var(--sage-900); transform: translateY(-6px); border-color: var(--sage-900); }
.strip-item:hover::before, .strip-item:hover + .strip-item::before { opacity: 0; }
.strip-ico {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 18px;
  background: var(--sage-100); display: grid; place-items: center;
  transition: background .35s;
}
.strip-ico svg { width: 28px; height: 28px; stroke: var(--sage-700); fill: none; stroke-width: 1.6; }
.strip-item:hover .strip-ico { background: rgba(255,255,255,.14); }
.strip-item:hover .strip-ico svg { stroke: var(--blush-400); }
.strip-item h4 { font-size: 1.12rem; margin-bottom: 4px; }
.strip-item p { font-size: 0.82rem; color: var(--ink-soft); }
.strip-item:hover h4 { color: var(--cream); }
.strip-item:hover p { color: var(--sage-300); }

/* ---------- Split "standards" section ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr 1fr; }
.split-visual { position: relative; }
.split-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-tag {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--sage-900); color: var(--cream);
  border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-md);
}
.split-tag b { font-family: var(--font-display); font-size: 1.5rem; display: block; color: #fff; }
.split-tag span { font-size: 0.76rem; color: var(--sage-300); letter-spacing: .04em; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 26px 0 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 600; font-size: 0.95rem; color: var(--sage-800); }
.feature-list li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; stroke: var(--blush-600); fill: none; stroke-width: 2; }

/* ---------- Card grids ---------- */
.card-grid { display: grid; gap: 26px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.wcard {
  background: var(--cream-card); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(85,97,70,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.wcard::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blush-400), var(--sage-400));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.wcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.wcard:hover::after { transform: scaleX(1); }
.wcard-ico {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
  background: var(--sage-100); display: grid; place-items: center;
}
.wcard-ico svg { width: 28px; height: 28px; stroke: var(--sage-700); fill: none; stroke-width: 1.6; }
.wcard.blush .wcard-ico { background: var(--blush-200); }
.wcard.blush .wcard-ico svg { stroke: var(--blush-600); }
.wcard h3 { font-size: 1.32rem; margin-bottom: 10px; }
.wcard p { color: var(--ink-soft); font-size: 0.95rem; }
.wcard .num {
  position: absolute; top: 22px; right: 26px; font-family: var(--font-display);
  font-size: 2.4rem; color: var(--sage-100); font-weight: 500; line-height: 1;
}
.wcard ul.sub { margin-top: 16px; display: grid; gap: 9px; }
.wcard ul.sub li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--sage-800); }
.wcard ul.sub li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none; margin-top: 8px;
  background: var(--blush-500);
}

/* ---------- Values chips ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-chip {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 24px; display: flex; gap: 16px; align-items: center;
  transition: transform .35s var(--ease), background .35s;
}
.value-chip:hover { transform: translateY(-5px); background: var(--sage-900); }
.value-chip:hover h4, .value-chip:hover p { color: var(--cream); }
.value-chip:hover p { color: var(--sage-300); }
.value-num {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--blush-600);
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--blush-200);
}
.value-chip:hover .value-num { background: rgba(255,255,255,.14); color: var(--blush-400); }
.value-chip h4 { font-size: 1.1rem; }
.value-chip p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Vision / Mission panels ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm-panel {
  border-radius: var(--radius-lg); padding: 46px 42px; position: relative; overflow: hidden;
}
.vm-panel.vision { background: var(--sage-900); color: var(--cream); }
.vm-panel.mission { background: var(--blush-200); color: var(--sage-900); }
.vm-panel .eyebrow { color: var(--blush-400); margin-bottom: 16px; }
.vm-panel.mission .eyebrow { color: var(--blush-600); }
.vm-panel h3 { font-size: 1.9rem; margin-bottom: 14px; }
.vm-panel.vision h3 { color: #fff; }
.vm-panel p { font-size: 1.05rem; line-height: 1.7; }
.vm-panel.vision p { color: var(--sage-300); }
.vm-panel .vm-glyph {
  position: absolute; right: -20px; bottom: -30px; font-family: var(--font-display);
  font-size: 9rem; opacity: .1; line-height: 1;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--sage-900), var(--sage-700));
  border-radius: var(--radius-lg); padding: 64px 56px; position: relative; overflow: hidden;
  color: var(--cream); text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,195,188,.35), transparent 70%);
  top: -120px; right: -60px;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: var(--sage-300); max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-row {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--cream-card); border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px;
}
.info-row .ico { width: 50px; height: 50px; border-radius: 14px; flex: none;
  background: var(--sage-100); display: grid; place-items: center; }
.info-row .ico svg { width: 24px; height: 24px; stroke: var(--sage-700); fill: none; stroke-width: 1.6; }
.info-row h4 { font-size: 1.05rem; margin-bottom: 2px; }
.info-row a, .info-row p { color: var(--ink-soft); font-size: 0.95rem; }
.info-row a:hover { color: var(--blush-600); }

.form-card { background: var(--cream-card); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.82rem; color: var(--sage-800); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  padding: 14px 16px; border-radius: 13px; border: 1.5px solid var(--line);
  background: var(--cream); transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--sage-500); box-shadow: 0 0 0 4px rgba(135,148,114,.14);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none; background: var(--sage-100); border: 1px solid var(--sage-300);
  color: var(--sage-800); border-radius: 13px; padding: 14px 18px; margin-top: 16px; font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
  padding: 72px 0 60px; text-align: center;
}
.page-hero .blob-1 { opacity: .5; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); margin: 18px 0 14px; position: relative; }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; position: relative; font-size: 1.06rem; }
.crumbs { position: relative; font-size: 0.82rem; color: var(--sage-600); font-weight: 600; margin-top: 22px; letter-spacing: .04em; }
.crumbs a:hover { color: var(--blush-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-900); color: var(--sage-300); padding: 72px 0 30px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid .brand-name { color: #fff; }
.footer-about p { margin: 18px 0; font-size: 0.92rem; line-height: 1.7; }
.footer-col h5 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .18em; font-size: 0.74rem; color: var(--blush-400); margin-bottom: 20px; font-weight: 800; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: 11px; font-size: 0.92rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; stroke: var(--blush-400); fill: none; flex: none; margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer-socials a:hover { background: var(--blush-500); transform: translateY(-3px); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--sage-100); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--sage-400);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-visual, .hero-visual { max-width: 480px; margin: 0 auto; }
  .vm-grid { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strip-card { grid-template-columns: 1fr 1fr; }
  .strip-item::before { display: none !important; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-menu {
    position: fixed; inset: 82px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); padding: 10px 26px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .4s var(--ease); z-index: 90;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: grid; }
  .nav-cta .btn { display: none; }
  .section { padding: 68px 0; }
}
@media (max-width: 620px) {
  .cols-2, .cols-3, .values-grid, .feature-list, .form-row { grid-template-columns: 1fr; }
  .strip-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band, .vm-panel { padding: 3
