/* ==========================================================================
   Baby Beats Ultrasound & Boutique
   Palette sampled directly from the studio logo:
     bear line art  #F0909C      wordmark  #5A5A5C
   ========================================================================== */

:root {
  --pink:        #F0909C;
  --pink-soft:   #F6B9C2;
  --pink-wash:   #FDEFF1;
  --rose:        #DE7A8B;
  --rose-deep:   #C2637A;

  --charcoal:    #5A5A5C;
  --ink:         #3C3C3E;
  --muted:       #8A8A8E;
  --hairline:    #EADFDB;

  --cream:       #FFFAF9;
  --sand:        #FBF2EF;
  --white:       #FFFFFF;
  --sage:        #A7BFB1;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 10px rgba(194, 99, 122, 0.07);
  --shadow-md: 0 10px 34px rgba(194, 99, 122, 0.10);
  --shadow-lg: 0 24px 60px rgba(194, 99, 122, 0.14);

  --radius:    22px;
  --radius-sm: 14px;

  --page:  1160px;
  --gutter: clamp(20px, 5vw, 48px);
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing: the width/height HTML attributes map to the CSS
   width/height properties, and a non-auto height makes aspect-ratio a no-op. */
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; display: block; }
a { color: var(--rose-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p  { margin: 0 0 1.1em; }

::selection { background: var(--pink-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--charcoal); color: #fff;
  padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- layout ------------------------------------------------------ */

.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }

section { padding-block: clamp(64px, 9vw, 120px); }
.band--sand  { background: var(--sand); }
.band--white { background: var(--white); }
.band--blush { background: linear-gradient(180deg, var(--pink-wash), var(--cream)); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin: 0 0 14px;
}

.lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--charcoal); }
.muted { color: var(--muted); }
.center { text-align: center; }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }

/* ---------- buttons ----------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--pink); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--rose); box-shadow: var(--shadow-lg); }

.btn--ghost { border-color: var(--pink-soft); color: var(--rose-deep); background: transparent; }
.btn--ghost:hover { background: var(--pink-wash); border-color: var(--pink); }

.btn--light { background: #fff; color: var(--rose-deep); box-shadow: var(--shadow-sm); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header ------------------------------------------------------ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 249, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--hairline); box-shadow: 0 4px 20px rgba(194,99,122,.05); }

.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 82px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__name  { display: block; font-family: var(--serif); font-size: 1.42rem; color: var(--charcoal); font-weight: 600; line-height: 1; font-style: italic; }
.brand__tag   { display: block; font-size: 0.56rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 0.93rem; font-weight: 500; color: var(--charcoal);
  text-decoration: none; padding: 9px 15px; border-radius: 100px;
  transition: background .16s ease, color .16s ease;
}
.nav a:hover { background: var(--pink-wash); color: var(--rose-deep); }
.nav a[aria-current="page"] { color: var(--rose-deep); background: var(--pink-wash); }
.nav .btn { margin-left: 10px; padding: 12px 24px; }
.nav .btn:hover { background: var(--rose); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; color: var(--charcoal);
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 82px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--hairline);
    padding: 16px var(--gutter) 28px;
    box-shadow: var(--shadow-md);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 16px; font-size: 1.02rem; }
  .nav .btn { margin: 12px 0 0; justify-content: center; }
}

/* ---------- the animated bear ------------------------------------------- */

.bear { overflow: visible; }
.bear .line {
  fill: none;
  stroke: var(--pink);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bear .eye  { fill: var(--pink); stroke: none; }
.bear .heart { transform-box: fill-box; transform-origin: center; }
.brand__mark .line { stroke-width: 9; }

/* a real lub-dub: strong beat, quick second beat, then rest */
@keyframes lubdub {
  0%   { transform: scale(1); }
  8%   { transform: scale(1.13); }
  16%  { transform: scale(1); }
  24%  { transform: scale(1.07); }
  34%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.bear .heart { animation: lubdub 1.55s ease-in-out infinite; }

/* the trace sweeps across the heart, redrawing on every beat */
.bear .ekg {
  stroke: var(--rose-deep);
  stroke-width: 5;
  stroke-dasharray: 140;
  animation: sweep 1.55s linear infinite;
}
@keyframes sweep {
  0%   { stroke-dashoffset: 140; }
  55%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -140; }
}

.bear .wave { opacity: 0; animation: ping 1.55s ease-out infinite; }
.bear .wave:nth-of-type(1) { animation-delay: 0s; }
.bear .wave:nth-of-type(2) { animation-delay: .16s; }
.bear .wave:nth-of-type(3) { animation-delay: .32s; }
@keyframes ping {
  0%   { opacity: 0; transform: translateX(-4px); }
  22%  { opacity: 1; }
  70%  { opacity: 0; transform: translateX(3px); }
  100% { opacity: 0; }
}

/* ---------- heartbeat rule ---------------------------------------------- */

.pulse-rule { display: block; width: 100%; height: 46px; overflow: visible; }
.pulse-rule .base { fill: none; stroke: var(--hairline); stroke-width: 2; }
.pulse-rule .trace {
  fill: none; stroke: var(--pink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 240 2400;
  animation: run 4.5s linear infinite;
}
@keyframes run { from { stroke-dashoffset: 240; } to { stroke-dashoffset: -2400; } }

/* ---------- hero -------------------------------------------------------- */

.hero { padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px); background: linear-gradient(170deg, var(--pink-wash) 0%, var(--cream) 62%); }
.hero .wrap { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero__art { position: relative; padding-bottom: 58px; }
.hero__art .bear { width: min(100%, 460px); margin-inline: auto; }

/* Sits clear of the bear's feet rather than covering a leg. */
.hero__badge {
  position: absolute; right: 4%; bottom: 0;
  background: #fff; border-radius: 18px; padding: 14px 20px;
  box-shadow: var(--shadow-md); text-align: center;
}
.hero__bpm { font-family: var(--serif); font-size: 1.8rem; color: var(--rose-deep); line-height: 1; }
.hero__bpm span { font-size: 0.8rem; font-family: var(--sans); color: var(--muted); letter-spacing: .1em; }
.hero__badge small { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px; font-size: .88rem; color: var(--charcoal); }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 17px; height: 17px; color: var(--pink); flex: none; }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art { padding-bottom: 0; }
  .hero__art .bear { width: min(78%, 330px); }
  /* Too little room to float it clear of the bear, so let it sit underneath. */
  .hero__badge { position: static; margin: 18px auto 0; width: max-content; }
}

/* ---------- stat band --------------------------------------------------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__n { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 3rem); color: var(--rose-deep); line-height: 1; }
.stat__l { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }

/* ---------- cards ------------------------------------------------------- */

.grid { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-soft); }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--pink-wash); color: var(--rose-deep);
  display: grid; place-items: center; margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }

.card__meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: .8rem; color: var(--muted);
  padding-top: 16px; margin-top: 18px; border-top: 1px solid var(--hairline);
}
.card__meta b { color: var(--rose-deep); font-weight: 600; }

.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--pink-wash); color: var(--rose-deep);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
}
.tag--sage { background: #EAF1EC; color: #5C7A68; }

/* ---------- steps ------------------------------------------------------- */

.steps { counter-reset: step; display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 62px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink); color: #fff;
  font-family: var(--serif); font-size: 1.25rem;
  display: grid; place-items: center;
}
.step h3 { font-size: 1.16rem; }
.step p { font-size: .96rem; margin: 0; color: var(--charcoal); }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- split feature ----------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img {
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

.checks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before {
  content: ""; flex: none; margin-top: 7px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 4px var(--pink-wash);
}

/* ---------- pricing ----------------------------------------------------- */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
@media (max-width: 980px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }

.price {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 38px); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; height: 100%;
}
.price--featured {
  border-color: var(--pink); box-shadow: var(--shadow-lg);
  position: relative; background: linear-gradient(180deg, var(--pink-wash), #fff 30%);
}
.price--featured::after {
  content: "Most loved"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  white-space: nowrap;
}
.price__name { font-family: var(--serif); font-size: 1.5rem; color: var(--charcoal); margin: 0 0 4px; }
.price__when { font-size: .82rem; color: var(--muted); letter-spacing: .04em; margin-bottom: 18px; }
.price__amt { font-family: var(--serif); font-size: 3rem; color: var(--rose-deep); line-height: 1; }
.price__amt sup { font-size: 1.2rem; top: -1.1em; }
.price__unit { font-size: .84rem; color: var(--muted); margin: 8px 0 22px; }
.price ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; font-size: .95rem; }
.price li { display: flex; gap: 11px; align-items: flex-start; color: var(--charcoal); }
.price li svg { width: 17px; height: 17px; color: var(--pink); flex: none; margin-top: 5px; }
.price .btn { margin-top: auto; justify-content: center; }

.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.addon {
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px dashed var(--hairline);
}
.addon b { font-weight: 600; color: var(--charcoal); }
.addon span { color: var(--rose-deep); font-weight: 600; white-space: nowrap; }
.addon small { display: block; font-weight: 400; color: var(--muted); font-size: .84rem; line-height: 1.5; }
@media (max-width: 720px) { .addons { grid-template-columns: 1fr; } }

/* ---------- guarantees -------------------------------------------------- */

.promise {
  background: #fff; border: 1px solid var(--hairline); border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm); padding: 26px 30px;
}
.promise h3 { font-size: 1.14rem; margin-bottom: 8px; }
.promise p { margin: 0; font-size: .95rem; color: var(--charcoal); }

/* ---------- testimonials ------------------------------------------------ */

.quote {
  background: #fff; border-radius: var(--radius); padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote p { font-family: var(--serif); font-size: 1.08rem; font-style: italic; color: var(--charcoal); line-height: 1.62; }
.quote__mark { font-family: var(--serif); font-size: 3rem; color: var(--pink-soft); line-height: .6; margin-bottom: 8px; }
.quote__who { margin-top: auto; padding-top: 16px; font-size: .87rem; color: var(--muted); }
.quote__who b { display: block; color: var(--charcoal); font-size: .95rem; font-weight: 600; }

/* ---------- boutique band ----------------------------------------------- */

.boutique-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.boutique-strip img { width: 100%; border-radius: var(--radius-sm); aspect-ratio: 3 / 4; object-fit: cover; box-shadow: var(--shadow-sm); }
.boutique-strip img:nth-child(4) { display: block; }
@media (max-width: 760px) { .boutique-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ --------------------------------------------------------- */

.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.9vw, 1.24rem); color: var(--charcoal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -8px;
  border-right: 2px solid var(--pink); border-bottom: 2px solid var(--pink);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details > div { padding: 0 40px 26px 0; color: var(--charcoal); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- forms ------------------------------------------------------- */

.form-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 44px); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; letter-spacing: .02em; }
.field label .opt { font-weight: 400; color: var(--muted); }

.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--hairline); border-radius: 12px;
  background: var(--cream); transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); background: #fff;
  box-shadow: 0 0 0 4px var(--pink-wash);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #D2544F; }
.field .err { display: none; color: #C0433E; font-size: .82rem; margin-top: 6px; }
.field .err.is-shown { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; font-size: .93rem; color: var(--charcoal); }
.check input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--pink); flex: none; }

.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .84rem; color: var(--muted); margin: 16px 0 0; }

.form-status { border-radius: 14px; padding: 16px 20px; margin-bottom: 22px; font-size: .95rem; display: none; }
.form-status.is-shown { display: block; }
.form-status--ok  { background: #EDF6F0; color: #33684A; border: 1px solid #C6E2D1; }
.form-status--bad { background: #FDF0EF; color: #9E3833; border: 1px solid #F3CFCC; }

.btn[aria-busy="true"] { opacity: .68; pointer-events: none; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-list svg { width: 21px; height: 21px; color: var(--pink); flex: none; margin-top: 4px; }
.contact-list b { display: block; color: var(--charcoal); }
.contact-list a { color: var(--rose-deep); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.hours { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--hairline); }
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--muted); }

/* ---------- callout ----------------------------------------------------- */

.callout {
  background: linear-gradient(140deg, var(--pink) 0%, var(--rose-deep) 100%);
  color: #fff; border-radius: var(--radius); padding: clamp(38px, 5.5vw, 68px);
  text-align: center;
}
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,.92); max-width: 560px; margin-inline: auto; }
.callout .btn-row { justify-content: center; margin-top: 26px; }
.callout .btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.callout .btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ---------- signature note ---------------------------------------------- */

.note {
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.note p { font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.18rem); color: var(--charcoal); line-height: 1.75; }
.signature {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--rose-deep); margin-top: 26px;
}
.signature small { display: block; font-family: var(--sans); font-style: normal; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ---------- footer ------------------------------------------------------ */

.site-footer { background: var(--charcoal); color: #D9D8DA; padding-block: clamp(52px, 6vw, 78px) 32px; font-size: .93rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #D9D8DA; text-decoration: none; }
.site-footer a:hover { color: var(--pink-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: #A3A2A6; }
.site-footer .bear .line { stroke: var(--pink-soft); }
.footer-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: .82rem; color: #A3A2A6;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.disclaimer { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ---------- page hero (interior) ---------------------------------------- */

.page-hero { background: linear-gradient(170deg, var(--pink-wash), var(--cream)); padding-block: clamp(52px, 7vw, 92px); text-align: center; }
.page-hero p { max-width: 620px; margin-inline: auto; }

/* ---------- reveal ------------------------------------------------------ */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
