/* =========================================================================
   Joy-Based Parent Coaching stylesheet
   Palette pulled from the logo: purple (primary), coral & teal (accents).
   Light & airy theme.
   ========================================================================= */

:root {
  /* Brand from logo */
  --purple:      #8A5CF0;
  --purple-deep: #6D3FD1;
  --purple-soft: #efe9ff;
  --coral:       #F45577;
  --coral-deep:  #e23c60;
  --coral-soft:  #ffe7ec;
  --teal:        #3AA5B8;
  --teal-deep:   #2b8798;
  --teal-soft:   #e2f5f8;

  /* Neutrals */
  --ink:      #2c2740;
  --ink-soft: #625b78;
  --line:     #ece7f5;
  --bg:       #ffffff;
  --bg-tint:  #faf7ff;   /* lavender white */
  --bg-cream: #fff8f4;   /* warm white     */
  --white:    #ffffff;

  --grad: linear-gradient(120deg, var(--teal) 0%, var(--purple) 50%, var(--coral) 100%);
  --grad-soft: linear-gradient(135deg, var(--teal-soft), var(--purple-soft) 55%, var(--coral-soft));

  --shadow-sm: 0 4px 14px rgba(70, 50, 120, .07);
  --shadow-md: 0 14px 34px rgba(70, 50, 120, .10);
  --shadow-lg: 0 26px 60px rgba(70, 50, 120, .16);

  --radius: 18px;
  --radius-lg: 30px;
  --maxw: 1160px;
  --header-h: 76px;

  --font-display: "Fredoka", "Poppins", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }   /* height:auto stops width/height attrs from stretching photos */
a { color: var(--purple-deep); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
::selection { background: var(--purple); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(24px, 5vw, 72px); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--bg-tint); }
.section--cream { background: var(--bg-cream); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; font-size: .74rem;
  color: var(--purple-deep); background: var(--purple-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow.-coral { color: var(--coral-deep); background: var(--coral-soft); }
.eyebrow.-teal  { color: var(--teal-deep);  background: var(--teal-soft); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 58ch; }
.section-head { max-width: 640px; margin: 0 auto clamp(34px, 5vw, 54px); }
.section-head.-left { margin-inline: 0; }

.gradient-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--purple);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--bg); color: #fff; line-height: 1;
  box-shadow: 0 10px 24px rgba(138, 92, 240, .30);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(138, 92, 240, .38); }
.btn:active { transform: translateY(-1px); }
.btn--coral { --bg: var(--coral); box-shadow: 0 10px 24px rgba(244, 85, 119, .32); }
.btn--coral:hover { box-shadow: 0 16px 30px rgba(244, 85, 119, .42); }
.btn--grad { background: var(--grad); box-shadow: 0 12px 28px rgba(138, 92, 240, .34); }
.btn--ghost {
  background: transparent; color: var(--purple-deep);
  box-shadow: inset 0 0 0 2px var(--purple);
}
.btn--ghost:hover { background: var(--purple); color: #fff; box-shadow: 0 12px 26px rgba(138,92,240,.3); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--purple-deep); }
.brand-name span { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 700; color: var(--ink); padding: 10px 14px; border-radius: 999px;
  font-size: .96rem; transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--purple-deep); background: var(--purple-soft); }
.nav-links a.is-active { color: var(--purple-deep); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px;
  border-radius: 3px; background: var(--grad);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { display: inline-flex; }
.nav-links .mobile-cta { display: none; }   /* shown only inside mobile menu */

.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; background: var(--purple-soft);
  border-radius: 12px; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; background: var(--purple-deep);
  border-radius: 3px; transition: transform .28s ease, opacity .2s ease; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(44,39,64,.42); opacity: 0; visibility: hidden;
  transition: opacity .3s; z-index: 55;
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-tint); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(244,85,119,.14), transparent 60%),
    radial-gradient(55% 50% at 8% 92%, rgba(58,165,184,.16), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 96px);
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; color: var(--ink-soft); }
.hero-badge svg { width: 22px; height: 22px; flex-shrink: 0; }

/* hero visual: illustrated banner + photo */
.hero-visual { position: relative; }
.hero-photo-wrap {
  position: relative; border-radius: 34px; overflow: hidden;
  box-shadow: var(--shadow-lg); max-width: 430px; margin-inline: auto;
  border: 6px solid #fff;
}
.hero-photo-wrap img { width: 100%; height: auto; }   /* photos always render at their exact natural proportions */
.hero-illus { position: absolute; inset: 0; z-index: -1; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .9; }
.hero-chip {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: .9rem; z-index: 2;
}
.hero-chip small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .74rem; }
.hero-chip .dot { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.hero-chip.-tl { top: 14px; left: -14px; }
.hero-chip.-br { bottom: 22px; right: -10px; }

/* floating deco hearts */
.float-heart { position: absolute; z-index: 0; opacity: .5; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-6deg);} 50% { transform: translateY(-16px) rotate(6deg);} }

/* ---------- marquee band (trust) ---------- */
.marquee {
  background: var(--grad); color: #fff; padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 46px; align-items: center; animation: slide 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 12px; }
.marquee span::after { content: "\2665"; opacity: .7; }
@keyframes slide { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent, var(--purple));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 20px; background: var(--accent-soft, var(--purple-soft)); color: var(--accent, var(--purple));
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 6px; }
.card .kicker { font-weight: 800; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--accent, var(--purple)); margin-bottom: 12px; }
.card p { color: var(--ink-soft); flex: 1; }
.card .card-link { margin-top: 18px; font-weight: 800; color: var(--accent, var(--purple)); display: inline-flex; align-items: center; gap: 7px; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- about split ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.-rev .split-media { order: 2; }
.split-media { position: relative; max-width: 460px; margin-inline: auto; width: 100%; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 25%; }
.split-media .frame-accent {
  position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--radius-lg);
  background: var(--grad-soft); z-index: -1;
}
.split-body h2 { margin-bottom: 18px; }
.split-body p { color: var(--ink-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-sm); display: inline-flex; gap: 8px; align-items: center; }
.chip b { color: var(--purple-deep); }

.stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 20px; }
.stat b { font-family: var(--font-display); font-size: 2rem; color: var(--purple-deep); display: block; line-height: 1; }
.stat span { font-size: .86rem; color: var(--ink-soft); font-weight: 700; }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: #fff; border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pillar .p-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px; }
.pillar h3 { font-size: 1.15rem; }
.pillar p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---------- testimonials ---------- */
.tstrip { overflow: hidden; position: relative; }
.tstrip::before, .tstrip::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.tstrip::before { left: 0; background: linear-gradient(90deg, var(--bg-tint), transparent); }
.tstrip::after { right: 0; background: linear-gradient(-90deg, var(--bg-tint), transparent); }
.tstrip-track { display: flex; gap: 22px; width: max-content; animation: slide 44s linear infinite; }
.tstrip:hover .tstrip-track { animation-play-state: paused; }

.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 22px; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
}
.tstrip .quote { width: 340px; flex-shrink: 0; }
.quote .stars { color: #f7b500; letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }
.quote p { font-size: 1.02rem; color: var(--ink); margin-bottom: 16px; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; font-size: .95rem; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; line-height: 1; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; flex-shrink: 0; }
.quote .who b { font-weight: 800; }
.quote .who span span { display: block; font-size: .8rem; color: var(--ink-soft); font-weight: 600; }   /* only the small label, never the avatar */
.quote .qmark { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 3rem; color: var(--purple-soft); line-height: 1; }

/* testimonials page masonry grid */
.t-grid { column-count: 3; column-gap: 22px; }
.t-grid .quote { break-inside: avoid; margin-bottom: 22px; display: inline-flex; width: 100%; }
.t-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.t-filter button {
  border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 800;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; font-family: var(--font-body); font-size: .9rem;
  transition: all .2s;
}
.t-filter button:hover { border-color: var(--purple); color: var(--purple-deep); }
.t-filter button.is-active { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--grad); color: #fff; padding: clamp(42px, 6vw, 70px); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 0 auto 26px; font-size: 1.08rem; }
.cta-band .btn { background: #fff; color: var(--purple-deep); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.cta-band .btn:hover { background: #fff; }
.cta-band .deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); }
.cta-band .deco.-a { width: 220px; height: 220px; top: -70px; left: -50px; }
.cta-band .deco.-b { width: 160px; height: 160px; bottom: -60px; right: -30px; }

/* ---------- OK Clarity trust badge ---------- */
.trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 22px 12px 14px; box-shadow: var(--shadow-sm); font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.trust-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trust-badge .seal { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal-deep); }
.trust-badge small { display: block; color: var(--ink-soft); font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.trust-badge b { color: var(--ink); }

/* ---------- summer special ---------- */
.coupon {
  position: relative; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(30px, 5vw, 52px); overflow: hidden; border: 2px dashed var(--coral);
  max-width: 560px; margin-inline: auto; text-align: center;
}
.coupon::before, .coupon::after {
  content: ""; position: absolute; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-cream); top: 50%; transform: translateY(-50%);
}
.coupon::before { left: -20px; } .coupon::after { right: -20px; }
.coupon .tag { display: inline-block; background: var(--coral-soft); color: var(--coral-deep); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
.coupon .big { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1; margin: 6px 0 4px; }
.coupon .sub { color: var(--ink-soft); font-weight: 700; }
.coupon .divider { height: 1px; background: var(--line); margin: 22px 0; }

/* ---------- footer ---------- */
.site-footer { background: #1f1a30; color: #cdc7de; padding: 60px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer .brand-name b { color: #fff; }
.site-footer .brand-name span { color: #b49bff; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #cdc7de; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-about { max-width: 34ch; color: #b3abc8; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--purple); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: #9d95b8; }
.footer-bottom a { color: #b49bff; }

/* ---------- floating actions ---------- */
.fab-book {
  position: fixed; z-index: 50; right: 20px; bottom: 20px;
  display: none; /* mobile only */
}
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); cursor: pointer;
  display: grid; place-items: center; color: var(--purple-deep); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.-d1 { transition-delay: .08s; }
.reveal.-d2 { transition-delay: .16s; }
.reveal.-d3 { transition-delay: .24s; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--grad-soft); padding: clamp(50px, 7vw, 88px) 0 clamp(40px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs { font-weight: 700; font-size: .84rem; color: var(--ink-soft); margin-bottom: 12px; }
.breadcrumbs a { color: var(--purple-deep); }

/* ======================= responsive ======================= */
@media (max-width: 940px) {
  .cards, .pillars { grid-template-columns: 1fr 1fr; }
  .t-grid { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  /* mobile slide-in menu */
  .nav-links {
    display: flex; position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; gap: 6px; background: #fff; z-index: 58;
    padding: calc(var(--header-h) + 20px) 22px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.06rem; border-radius: 14px; }
  .nav-links a.is-active::after { display: none; }
  .nav-links a.is-active { background: var(--purple-soft); }
  .nav-links li:last-child { margin-top: 12px; }
  .nav-links .mobile-cta { display: block; }
  .nav-links .mobile-cta a { background: var(--purple); color: #fff; text-align: center; }

  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; padding-top: 30px; }
  .hero .lead { margin-inline: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; max-width: 380px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split.-rev .split-media { order: 0; }
  .fab-book { display: inline-flex; }
  .to-top { right: auto; left: 20px; bottom: 20px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards, .pillars { grid-template-columns: 1fr; }
  .t-grid { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-chip.-tl { left: 2px; } .hero-chip.-br { right: 2px; }
  .stats { gap: 22px; }
  .btn--block-sm { display: flex; width: 100%; }
}

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