:root {
  --navy: #123B5D;
  --navy-2: #0A2B47;
  --yellow: #F7C948;
  --sky: #5DB7E8;
  --mint: #63C7A6;
  --coral: #FF8A7A;
  --lavender: #A98BEA;
  --cream: #FFF7E8;
  --cream-2: #FFF1D8;
  --white: #FFFFFF;
  --ink: #173B57;
  --muted: #5F7180;
  --border: rgba(18, 59, 93, .12);
  --shadow: 0 20px 70px rgba(18, 59, 93, .12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--yellow); color: var(--navy-2); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 96px 0; position: relative; }
.skip-link { position: fixed; inset-inline-start: 12px; top: -60px; z-index: 999; background: var(--navy); color: white; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,247,232,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,59,93,.07);
}
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-inline-end: auto; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 14px; background: white; box-shadow: 0 4px 18px rgba(18,59,93,.08); }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { color: var(--navy); font-family: "Nunito", sans-serif; font-size: 19px; letter-spacing: .2px; }
.brand small { color: var(--coral); font-weight: 700; font-size: 12px; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 14px; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; width: 0; height: 3px; border-radius: 20px; background: var(--yellow); transition: width .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span { width: 25px; height: 2px; background: var(--navy); margin: 5px 0; display: block; border-radius: 9px; }

.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 22px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 1px solid transparent; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-2); background: var(--yellow); box-shadow: 0 10px 26px rgba(247,201,72,.3); }
.button-primary:hover { box-shadow: 0 14px 32px rgba(247,201,72,.42); }
.button-ghost { color: var(--navy); border-color: rgba(18,59,93,.15); background: rgba(255,255,255,.5); }
.button-small { background: var(--navy); color: white; padding: 10px 18px; font-size: 13px; }

.hero { min-height: 760px; display: flex; align-items: center; overflow: hidden; padding-top: 64px; background:
  radial-gradient(circle at 10% 15%, rgba(169,139,234,.18), transparent 23%),
  radial-gradient(circle at 85% 20%, rgba(93,183,232,.16), transparent 24%),
  linear-gradient(180deg, #FFF9EE 0%, var(--cream) 100%);
}
.hero::after { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; border: 80px solid rgba(247,201,72,.14); left: -290px; top: 150px; }
.hero-stars span { position: absolute; color: var(--yellow); opacity: .8; }
.hero-stars span:nth-child(1){ top: 110px; right: 8%; font-size: 22px; }
.hero-stars span:nth-child(2){ top: 230px; right: 48%; color: var(--lavender); font-size: 28px; }
.hero-stars span:nth-child(3){ bottom: 100px; right: 4%; color: var(--sky); }
.hero-stars span:nth-child(4){ bottom: 130px; left: 10%; color: var(--coral); font-size: 30px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; position: relative; z-index: 2; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; font-size: 12px; font-weight: 800; color: var(--navy); background: rgba(255,255,255,.75); border: 1px solid var(--border); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(99,199,166,.15); }
.eyebrow.light { background: rgba(247,201,72,.16); border-color: rgba(247,201,72,.28); }
.eyebrow.dark { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.2); }
.hero h1 { color: var(--navy); font-size: clamp(42px, 5.2vw, 74px); line-height: 1.28; letter-spacing: -1.7px; margin: 20px 0 22px; }
.hero h1 em { color: var(--coral); font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; right: 4%; bottom: -4px; width: 85%; height: 10px; border-radius: 50%; border-top: 4px solid var(--yellow); transform: rotate(-2deg); }
.hero-lead { font-size: 19px; color: #476174; max-width: 620px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: var(--muted); font-size: 12px; font-weight: 700; }
.visual-card { position: relative; border-radius: 38px; overflow: visible; }
.visual-card::before { content: ""; position: absolute; inset: -18px 30px 26px -20px; border-radius: 42px; background: var(--yellow); opacity: .35; transform: rotate(-4deg); z-index: -1; }
.visual-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); border: 7px solid rgba(255,255,255,.9); }
.floating-chip { position: absolute; background: white; color: var(--navy); padding: 11px 15px; border-radius: 999px; box-shadow: 0 12px 35px rgba(18,59,93,.15); font-size: 12px; font-weight: 800; }
.chip-one { top: 9%; right: -24px; }
.chip-two { bottom: 9%; left: -22px; }

.promise-strip { background: var(--navy); color: white; padding: 20px 0; }
.promise-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.promise-inner p { margin: 0; font-size: 16px; }
.promise-inner strong { color: var(--yellow); }
.promise-inner span { font-family: "Nunito", sans-serif; color: rgba(255,255,255,.7); font-weight: 700; font-size: 13px; }

.section-heading { margin-bottom: 48px; }
.section-heading h2, .why-copy h2, .privacy-copy h2, .launch-copy h2 { color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.35; margin: 14px 0 10px; letter-spacing: -.8px; }
.section-heading p, .why-copy > p, .privacy-copy > p, .launch-copy > p { color: var(--muted); font-size: 16px; margin: 0; }
.center-heading { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 54px; }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; }
.split-heading p { max-width: 500px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step-card { position: relative; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; min-height: 290px; box-shadow: 0 10px 35px rgba(18,59,93,.05); overflow: hidden; }
.step-card::after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; background: var(--sky); opacity: .07; bottom: -35px; left: -25px; }
.step-card:nth-child(2)::after { background: var(--mint); }
.step-card:nth-child(3)::after { background: var(--lavender); }
.step-card:nth-child(4)::after { background: var(--coral); }
.step-number { position: absolute; top: 17px; left: 18px; color: rgba(18,59,93,.2); font-size: 28px; font-weight: 800; }
.step-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; background: var(--cream); font-size: 30px; margin-bottom: 18px; }
.step-card h3 { color: var(--navy); margin: 0 0 8px; font-size: 20px; }
.step-card p { color: var(--muted); margin: 0; font-size: 14px; }

.stories-section { background: #FFFDF8; border-block: 1px solid rgba(18,59,93,.06); }
.stories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.story-card { grid-column: span 2; background: white; border-radius: 28px; overflow: hidden; box-shadow: 0 14px 45px rgba(18,59,93,.07); border: 1px solid rgba(18,59,93,.07); transition: transform .25s ease, box-shadow .25s ease; }
.story-card:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(18,59,93,.12); }
.story-card:nth-child(4), .story-card:nth-child(5) { grid-column: span 3; }
.story-art { height: 220px; display: grid; place-items: center; position: relative; overflow: hidden; }
.story-art span { font-size: 84px; filter: drop-shadow(0 10px 10px rgba(18,59,93,.12)); transform: rotate(-4deg); }
.story-art i, .story-art b { position: absolute; font-style: normal; }
.story-art i { right: 12%; bottom: 18%; font-size: 34px; }
.story-art b { left: 15%; top: 16%; color: white; font-size: 30px; }
.story-dino .story-art { background: linear-gradient(135deg, #B8E2D5, #63C7A6); }
.story-space .story-art { background: linear-gradient(135deg, #173B74, #8E75DB); }
.story-school .story-art { background: linear-gradient(135deg, #BEE8FA, #5DB7E8); }
.story-sibling .story-art { background: linear-gradient(135deg, #FFF0CB, #F7C948); }
.story-birthday .story-art { background: linear-gradient(135deg, #FFD5CE, #FF8A7A); }
.story-content { padding: 24px; }
.story-age { color: var(--muted); font-size: 11px; font-weight: 800; }
.story-content h3 { color: var(--navy); font-size: 21px; margin: 5px 0 6px; }
.story-content p { color: var(--muted); font-size: 13px; margin: 0 0 15px; }
.story-tag { display: inline-block; background: var(--cream); color: var(--navy); border-radius: 999px; padding: 5px 10px; font-size: 10px; font-weight: 800; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.why-copy { max-width: 620px; }
.feature-list { display: grid; gap: 18px; margin-top: 32px; }
.feature-list > div { display: flex; align-items: flex-start; gap: 14px; }
.feature-list > div > span { flex: 0 0 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: white; border: 1px solid var(--border); box-shadow: 0 8px 25px rgba(18,59,93,.06); }
.feature-list p { margin: 0; }
.feature-list strong { display: block; color: var(--navy); font-size: 15px; }
.feature-list small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.book-stage { min-height: 520px; position: relative; display: grid; place-items: center; perspective: 1200px; }
.moon-orbit { position: absolute; width: 360px; height: 360px; border: 74px solid var(--yellow); border-radius: 50%; opacity: .18; transform: translate(40px, -20px); }
.moon-orbit::after { content: ""; position: absolute; width: 290px; height: 290px; border-radius: 50%; background: var(--cream); top: -26px; left: -8px; }
.book { position: absolute; width: 280px; height: 380px; border-radius: 12px 24px 24px 12px; box-shadow: 0 30px 60px rgba(18,59,93,.18); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 8px solid white; overflow: hidden; }
.book::after { content: ""; position: absolute; inset-block: 0; right: 0; width: 12px; background: rgba(0,0,0,.07); }
.book-back { background: linear-gradient(145deg, #183C68, #694FBA); color: white; transform: translate(-120px, -20px) rotate(-12deg); }
.book-mid { background: linear-gradient(145deg, #63C7A6, #B8E2D5); color: var(--navy); transform: translate(105px, 25px) rotate(10deg); }
.book-front { background: white; color: var(--navy); transform: translateY(35px) rotate(-1deg); z-index: 3; padding: 28px; }
.book b { font-size: 84px; }
.book span { font-size: 14px; font-weight: 800; }
.book-front img { width: 128px; height: 128px; object-fit: contain; border-radius: 18px; margin-bottom: 18px; background: var(--cream); }
.book-front strong { font-size: 19px; line-height: 1.5; }
.book-front small { color: var(--coral); font-weight: 800; margin-top: 8px; }

.privacy-section { padding-top: 48px; }
.privacy-card { background: var(--navy); color: white; border-radius: var(--radius-xl); padding: 62px; display: grid; grid-template-columns: 130px 1fr; align-items: start; gap: 34px; position: relative; overflow: hidden; }
.privacy-card::before { content: ""; position: absolute; width: 330px; height: 330px; background: var(--sky); border-radius: 50%; opacity: .1; left: -120px; bottom: -150px; }
.privacy-icon { width: 110px; height: 110px; border-radius: 30px; display: grid; place-items: center; font-size: 52px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.privacy-copy h2 { color: white; margin-top: 12px; }
.privacy-copy > p { color: rgba(255,255,255,.72); max-width: 820px; }
.privacy-copy ul { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 10px; }
.privacy-copy li { position: relative; padding-right: 25px; color: rgba(255,255,255,.9); font-size: 13px; }
.privacy-copy li::before { content: "✓"; position: absolute; right: 0; color: var(--mint); font-weight: 900; }

.launch-section { padding-top: 40px; }
.launch-card { min-height: 430px; background: linear-gradient(135deg, #FF8A7A 0%, #A98BEA 100%); border-radius: var(--radius-xl); padding: 52px 58px; display: grid; grid-template-columns: 340px 1fr; align-items: center; gap: 56px; color: white; position: relative; overflow: hidden; box-shadow: 0 30px 70px rgba(169,139,234,.2); }
.launch-card::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; border: 90px solid rgba(255,255,255,.08); left: -240px; top: -120px; }
.launch-decoration { position: absolute; left: 10%; top: 12%; color: rgba(255,255,255,.45); letter-spacing: 20px; font-size: 18px; }
.launch-logo { width: 300px; max-height: 340px; object-fit: contain; border-radius: 28px; background: var(--navy); box-shadow: 0 20px 60px rgba(20,40,60,.28); z-index: 2; }
.launch-copy { position: relative; z-index: 2; }
.launch-copy h2 { color: white; }
.launch-copy > p { color: rgba(255,255,255,.82); max-width: 650px; }
.social-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.social-grid a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 999px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); font-weight: 800; font-family: "Nunito", "Cairo", sans-serif; font-size: 12px; transition: background .2s ease, transform .2s ease; }
.social-grid a:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.social-grid span { width: 22px; height: 22px; border-radius: 50%; background: white; color: var(--navy); display: grid; place-items: center; font-size: 11px; }
.contact-emails { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; }
.contact-emails a { color: rgba(255,255,255,.92); font-family: "Nunito", "Cairo", sans-serif; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 1px; }
.contact-emails a:hover { color: white; border-bottom-color: white; }
.launch-actions { margin-top: 22px; }
.launch-ghost { color: white !important; border-color: rgba(255,255,255,.35) !important; background: rgba(255,255,255,.12) !important; }

.waitlist-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(247,201,72,.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(93,183,232,.16), transparent 26%),
    linear-gradient(180deg, #FFFDF8 0%, var(--cream) 100%);
}
.waitlist-heading { margin-bottom: 36px; }
.waitlist-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 36px 34px;
}
.waitlist-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; color: var(--navy); font-weight: 700; font-size: 13px; }
.field small { color: var(--muted); font-weight: 600; }
.field-full { grid-column: 1 / -1; }
.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(18,59,93,.14);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 600;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus {
  border-color: rgba(93,183,232,.7);
  box-shadow: 0 0 0 4px rgba(93,183,232,.15);
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}
.consent-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  flex: 0 0 auto;
}
.consent-row a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.waitlist-submit { width: 100%; justify-content: center; }
.form-note { margin: 0; text-align: center; color: var(--muted); font-size: 12px; font-weight: 600; }
.form-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,138,122,.12);
  color: #9B3B30;
  border: 1px solid rgba(255,138,122,.35);
  font-size: 13px;
  font-weight: 700;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.waitlist-state { text-align: center; padding: 28px 10px 12px; }
.waitlist-state .state-icon { font-size: 42px; margin-bottom: 10px; }
.waitlist-state h3 { margin: 0 0 12px; color: var(--navy); font-size: clamp(24px, 4vw, 34px); line-height: 1.45; }
.waitlist-state p { margin: 0 auto 10px; max-width: 520px; color: var(--muted); font-size: 15px; }
.waitlist-state .state-soft { color: var(--navy); font-weight: 800; }

.site-footer { padding: 42px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; border-top: 1px solid var(--border); padding-top: 28px; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; justify-self: start; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; background: white; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand strong { font-family: "Nunito", sans-serif; color: var(--navy); }
.footer-brand small { color: var(--coral); font-weight: 700; font-size: 10px; margin-top: 4px; }
.footer-center { text-align: center; }
.footer-center > p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-emails { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; margin-top: 10px; }
.footer-emails a { color: var(--navy); font-family: "Nunito", "Cairo", sans-serif; font-size: 12px; font-weight: 700; }
.footer-emails a:hover { color: var(--coral); }
.copyright { justify-self: end; margin: 0; color: var(--muted); font-size: 11px; }

@media (max-width: 980px) {
  .section-pad { padding: 76px 0; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero-grid, .why-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 700px; margin-inline: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card, .story-card:nth-child(4), .story-card:nth-child(5) { grid-column: auto; }
  .story-card:last-child { grid-column: 1 / -1; }
  .split-heading { grid-template-columns: 1fr; gap: 12px; }
  .book-stage { min-height: 500px; }
  .launch-card { grid-template-columns: 260px 1fr; padding: 45px; gap: 36px; }
  .launch-logo { width: 250px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { height: 72px; }
  .header-cta { display: none; }
  .menu-button { display: block; order: -1; }
  .main-nav { display: none; position: absolute; top: 72px; inset-inline: 14px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); border: 1px solid var(--border); flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--cream); }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 17px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(38px, 11vw, 55px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-row { font-size: 11px; }
  .chip-one { right: 8px; top: 8px; }
  .chip-two { left: 8px; bottom: 8px; }
  .promise-inner { flex-direction: column; align-items: flex-start; gap: 3px; }
  .steps-grid, .stories-grid { grid-template-columns: 1fr; }
  .story-card:last-child { grid-column: auto; }
  .story-art { height: 190px; }
  .book-stage { transform: scale(.9); margin-inline: -20px; }
  .privacy-card { grid-template-columns: 1fr; padding: 34px 26px; gap: 20px; }
  .privacy-icon { width: 74px; height: 74px; border-radius: 22px; font-size: 34px; }
  .launch-card { grid-template-columns: 1fr; padding: 34px 24px; text-align: center; }
  .launch-logo { width: 220px; justify-self: center; }
  .launch-copy > p { margin-inline: auto; }
  .social-grid { justify-content: center; }
  .contact-emails { justify-content: center; }
  .launch-actions { justify-content: center; }
  .waitlist-card { padding: 26px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .copyright { justify-self: center; }
}

@media (max-width: 430px) {
  .section-pad { padding: 64px 0; }
  .hero { padding-top: 38px; }
  .hero h1 { letter-spacing: -.8px; }
  .visual-card img { border-width: 5px; border-radius: 26px; }
  .floating-chip { font-size: 10px; padding: 8px 10px; }
  .section-heading h2, .why-copy h2, .privacy-copy h2, .launch-copy h2 { font-size: 30px; }
  .steps-grid { gap: 12px; }
  .step-card { min-height: auto; }
  .book-stage { transform: scale(.76); margin-top: -50px; margin-bottom: -70px; }
}

.privacy-page { padding-top: 48px; }
.privacy-page-wrap { max-width: 760px; }
.privacy-page h1 { color: var(--navy); font-size: clamp(34px, 5vw, 52px); line-height: 1.35; margin: 14px 0 16px; }
.privacy-lead { color: var(--muted); font-size: 16px; margin: 0 0 34px; }
.privacy-page section { margin-bottom: 28px; }
.privacy-page h2 { color: var(--navy); font-size: 24px; margin: 0 0 10px; }
.privacy-page p, .privacy-page li { color: var(--muted); font-size: 15px; line-height: 1.9; }
.privacy-page ul { padding-inline-start: 22px; margin: 10px 0 0; }
.privacy-page a { color: var(--navy); font-weight: 700; }
.privacy-back { margin-top: 36px; }

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