/* =========================================================
   Magic Moments Play Therapy, design system
   Theme: Rainbow & Clouds (pastel sky, warm serif, rounded sans)
   ========================================================= */

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

:root {
  /* palette, pastel sky + rainbow */
  --sky: #EAF4FB;
  --sky-2: #D6EAF5;
  --sky-3: #BEDDEF;
  --cloud: #FFFFFF;
  --cream: #FFF9EE;
  --cream-2: #FFF3DE;
  --blush: #FAD2DB;
  --blush-2: #F5B3C0;
  --peach: #FFDFC7;
  --peach-2: #FCC19E;
  --butter: #FFEFC8;
  --butter-2: #F8DE95;
  --sage: #D4E8D0;
  --sage-2: #A8CFA0;
  --lavender: #E0D5F0;
  --lavender-2: #C2B0E0;
  --ocean: #7BAED1;
  --ocean-2: #4F8EB9;
  --ocean-3: #3D6B8F;
  --ocean-4: #2B516E;
  --ink: #2B3A4D;
  --ink-2: #4F5F73;
  --mute: #8FA1B5;

  /* type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', 'Comic Sans MS', cursive;

  /* shape */
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(61, 107, 143, 0.06);
  --shadow: 0 10px 40px rgba(61, 107, 143, 0.08);
  --shadow-lg: 0 25px 70px rgba(61, 107, 143, 0.14);

  --container: 1180px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sky);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ocean-3); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ocean-2); }
:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; border-radius: 6px; }

/* ---------- type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.25rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3vw + 1rem, 3rem); }
h3 { font-size: clamp(1.3rem, 1.4vw + 0.9rem, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: clamp(1.1rem, 1vw + .9rem, 1.3rem); color: var(--ink-2); max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--ocean-2);
  margin: 0 0 .15em;
  transform: rotate(-2deg);
}
.hand { font-family: var(--font-hand); font-weight: 700; color: var(--ocean-2); }
.italic { font-style: italic; }
.ink-strong { color: var(--ink); }

/* ---------- layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 860px; }
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--sky { background: var(--sky-2); }
.section--cream { background: var(--cream); }
.section--cloud { background: var(--cloud); }
.section--ocean { background: var(--ocean-3); color: #EAF4FB; }
.section--ocean h2, .section--ocean h3 { color: #fff; }
.section--ocean p { color: #CDE1EE; }

.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p { max-width: 60ch; margin-inline: auto; }
.center { text-align: center; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: .9rem 0;
  background: rgba(234, 244, 251, 0.82);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(123, 174, 209, 0.14);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--sky-2);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.1; }
.brand__name small { display: block; font-family: var(--font-hand); font-weight: 500; font-size: 1rem; color: var(--ocean-2); margin-top: 2px; }

.menu { display: flex; gap: .25rem; align-items: center; list-style: none; padding: 0; margin: 0; }
.menu a {
  padding: .55rem 1rem; border-radius: var(--r-pill);
  color: var(--ink); font-weight: 700; font-size: .95rem;
  transition: background .2s, color .2s;
}
.menu a:hover, .menu a.active { background: var(--cloud); color: var(--ocean-3); }
.menu .btn { margin-left: .5rem; padding: .6rem 1.2rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border: none; background: var(--cloud); border-radius: 50%;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 1rem;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--ocean-2); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { transform: translateY(-2px); background: var(--ocean-3); color: #fff; box-shadow: var(--shadow-lg); }
.btn--ghost { background: var(--cloud); color: var(--ocean-3); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ocean-3); }
.btn--sun { background: var(--butter-2); color: var(--ocean-4); box-shadow: var(--shadow-sm); }
.btn--sun:hover { transform: translateY(-2px); background: var(--butter); box-shadow: var(--shadow); }
.btn__arrow { transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--ocean-3); font-weight: 500; }
.hero__lead { font-size: clamp(1.15rem, 1vw + .9rem, 1.35rem); color: var(--ink-2); max-width: 34ch; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}
.hero__disk {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #FFFFFF 0%, var(--sky-2) 55%, var(--sky-3) 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.6);
  overflow: hidden;
}
.hero__rainbow { position: absolute; left: 12%; right: 12%; bottom: 22%; z-index: 2; }
.hero__scene {
  position: absolute; inset: 18% 18% 28% 18%;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cream) 0%, var(--butter) 100%);
  display: grid; place-items: center;
  color: var(--peach-2); font-size: 4rem;
  box-shadow: inset 0 -20px 40px rgba(245,179,192,.3);
}
.hero__cloud {
  position: absolute; z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.hero__cloud--1 { top: 8%; left: -4%; width: 110px; animation-delay: -1s; }
.hero__cloud--2 { top: 22%; right: 2%; width: 90px; animation-delay: -3s; }
.hero__cloud--3 { bottom: 10%; left: 6%; width: 80px; animation-delay: -5s; }
.hero__sparkle {
  position: absolute; z-index: 4;
  animation: twinkle 3s ease-in-out infinite;
}
.hero__sparkle--1 { top: 4%; right: 18%; width: 26px; animation-delay: 0s; }
.hero__sparkle--2 { top: 52%; left: -2%; width: 22px; animation-delay: -1s; }
.hero__sparkle--3 { bottom: 4%; right: 12%; width: 30px; animation-delay: -2s; }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes twinkle { 0%,100% { opacity: .4; transform: scale(.9) } 50% { opacity: 1; transform: scale(1.1) } }

/* ---------- decorative shapes ---------- */
.blob { position: absolute; border-radius: 50%; opacity: .55; pointer-events: none; z-index: 0; filter: blur(50px); }
.blob--blush { background: var(--blush); }
.blob--butter { background: var(--butter); }
.blob--sage { background: var(--sage); }
.blob--peach { background: var(--peach); }
.blob--lavender { background: var(--lavender); }

/* ---------- trust strip ---------- */
.trust {
  background: var(--cloud); padding: 1.5rem 2rem; border-radius: var(--r-lg);
  box-shadow: var(--shadow); margin: -3rem auto 0; position: relative; z-index: 2;
  max-width: calc(var(--container) - 3rem);
}
.trust__list { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; align-items: center; list-style: none; padding: 0; margin: 0; }
.trust__list li {
  font-family: var(--font-body);
  font-weight: 700; color: var(--ink); font-size: .92rem;
  display: inline-flex; align-items: center; gap: .5rem;
  letter-spacing: .01em;
}
.trust__list li::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sage-2); box-shadow: 0 0 0 3px rgba(168, 207, 160, 0.25);
}

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--aside { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; }

.card {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .4em; font-weight: 700; font-size: 1.2rem; }
.card p { font-size: .98rem; margin-bottom: 0; }

.card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 1.2rem; font-size: 30px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}
.card__icon--blush { background: var(--blush); }
.card__icon--peach { background: var(--peach); }
.card__icon--butter { background: var(--butter); }
.card__icon--sage { background: var(--sage); }
.card__icon--lavender { background: var(--lavender); }
.card__icon--sky { background: var(--sky-2); }

.card__number {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  background: var(--sky-2); color: var(--ocean-3);
  margin-bottom: 1rem;
}

/* ---------- pills ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: .65rem; list-style: none; padding: 0; margin: 0; justify-content: center; }
.pill-list--left { justify-content: flex-start; }
.pill {
  padding: .6rem 1.15rem; background: var(--cloud);
  border-radius: var(--r-pill); color: var(--ink);
  font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.pill:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pill--blush { background: var(--blush); }
.pill--peach { background: var(--peach); }
.pill--butter { background: var(--butter); }
.pill--sage { background: var(--sage); }
.pill--lavender { background: var(--lavender); }
.pill--sky { background: var(--sky-2); }

/* ---------- toolkit tiles ---------- */
.toolkit { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; }
.tool {
  padding: 1.75rem 1.25rem; border-radius: var(--r-lg);
  background: var(--cloud);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.tool:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tool__emoji {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 1rem;
  font-size: 34px;
}
.tool h4 { font-family: var(--font-body); font-weight: 800; font-size: 1rem; margin: 0 0 .35em; color: var(--ink); }
.tool p { font-size: .88rem; margin: 0; color: var(--ink-2); line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  background: var(--cloud);
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary {
  list-style: none;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--ocean-2);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 1.75rem 1.5rem; color: var(--ink-2); }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body ul { padding-left: 1.25rem; margin: 0 0 1em; }
.faq__body li { margin-bottom: .35em; }

/* ---------- fees ---------- */
.fees {
  background: var(--cloud); border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px; margin-inline: auto;
}
.fees__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px dashed rgba(61, 107, 143, 0.12);
  align-items: center;
}
.fees__row:last-child { border-bottom: none; }
.fees__row h4 { font-family: var(--font-body); font-weight: 800; font-size: 1rem; margin: 0 0 .2rem; color: var(--ink); }
.fees__row p { margin: 0; color: var(--ink-2); font-size: .92rem; }
.fees__amount { font-family: var(--font-display); font-size: 1.9rem; color: var(--ocean-3); font-weight: 500; letter-spacing: -.02em; }

/* ---------- quote callout ---------- */
.quote {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 780px;
  margin-inline: auto;
  position: relative;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: .4;
  color: var(--blush-2);
  opacity: .5;
  display: block;
  margin-bottom: 1rem;
}
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 1rem;
}
.quote cite { font-style: normal; color: var(--ink-2); font-weight: 600; font-size: .95rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 35%, var(--butter) 65%, var(--sky-2) 100%);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-banner h2 { font-style: italic; }
.cta-banner p { max-width: 56ch; margin-inline: auto 1.75em; }
.cta-banner__buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; opacity: .35; filter: blur(30px); pointer-events: none;
}
.cta-banner::before { width: 240px; height: 240px; background: var(--cloud); top: -60px; left: -40px; }
.cta-banner::after { width: 200px; height: 200px; background: var(--cloud); bottom: -60px; right: -40px; }

/* ---------- footer ---------- */
.footer { background: var(--ocean-3); color: #DCEBF7; padding: 4rem 0 2rem; position: relative; }
.footer a { color: #DCEBF7; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { color: #B8CEDF; max-width: 32ch; }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name small { color: #FFE0C7; }
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; font-size: .95rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: #9DB6CB;
}
.footer__bottom p { margin: 0; color: #9DB6CB; }

/* ---------- image placeholders ---------- */
.placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(123,174,209,.08) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, var(--cloud), var(--sky-2));
  border: 2px dashed rgba(123,174,209,.4);
  border-radius: var(--r-lg);
  min-height: 320px;
  display: grid; place-items: center;
  text-align: center;
  color: var(--mute); font-size: .9rem; padding: 2rem;
  font-weight: 600;
}
.placeholder::before { content: "🖼"; display: block; font-size: 2.4rem; margin-bottom: .5rem; opacity: .5; }
.placeholder--round { border-radius: 50%; aspect-ratio: 1; min-height: 0; }
.placeholder--square { aspect-ratio: 1; min-height: 0; }
.placeholder--wide { aspect-ratio: 16/10; min-height: 0; }

/* ---------- real photography: frames & galleries ---------- */
.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cloud);
  aspect-ratio: 1;
  margin: 0;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 4 / 3; }
.media-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
  pointer-events: none;
}
.media-frame__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.1rem .85rem;
  font-family: var(--font-hand); font-size: 1.35rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(43, 58, 77, .62));
}

/* circular profile picture */
.avatar {
  position: relative;
  width: clamp(190px, 24vw, 300px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cloud);
  box-shadow: var(--shadow);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--cloud), inset 0 0 0 8px rgba(123, 174, 209, .28);
  pointer-events: none;
}

/* "peek inside" gallery, CSS grid (robust across browsers, reserves space while images load) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery .photo { margin: 0; aspect-ratio: 1; }
.gallery .photo img { height: 100%; object-fit: cover; }
.photo {
  position: relative; display: block;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cloud);
  transition: transform .3s ease, box-shadow .3s ease;
}
.photo img { width: 100%; height: auto; display: block; transition: transform .6s ease; }
.photo:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.photo:hover img { transform: scale(1.045); }

/* tidy captioned photo cards */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.25rem; }
.photo-card {
  background: var(--cloud); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.photo-card figcaption {
  padding: .8rem 1rem 1rem; text-align: center;
  font-family: var(--font-body); font-weight: 800; font-size: .98rem; color: var(--ink);
}

@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .photo-card figcaption { font-size: .9rem; padding: .65rem .5rem .8rem; }
}

/* ---------- page header (non-home) ---------- */
.page-header {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header__inner { position: relative; z-index: 1; max-width: 780px; margin-inline: auto; padding: 0 1.5rem; }
.page-header__deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* ---------- prose / long text ---------- */
.prose { max-width: 68ch; }
.prose p { font-size: 1.05rem; line-height: 1.75; }
.prose h3 { margin-top: 2em; }
.prose ul { padding-left: 1.25em; }
.prose ul li { margin-bottom: .5em; color: var(--ink-2); }

/* ---------- qualifications ---------- */
.quals {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.quals ul { list-style: none; padding: 0; margin: 0; }
.quals li {
  padding: .95rem 0;
  border-bottom: 1px dashed rgba(61, 107, 143, 0.12);
  display: grid; grid-template-columns: 1fr auto; gap: 1rem;
  font-size: .98rem; align-items: baseline;
}
.quals li:last-child { border-bottom: none; }
.quals li strong { color: var(--ink); font-weight: 700; }
.quals li small { color: var(--mute); font-size: .9rem; white-space: nowrap; font-weight: 600; }

/* ---------- badges ---------- */
.badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.badge {
  background: var(--cloud);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1rem;
}
.badge__dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px; flex-shrink: 0;
}
.badge h5 { font-family: var(--font-body); font-weight: 800; font-size: .98rem; margin: 0 0 .1em; color: var(--ink); }
.badge p { margin: 0; font-size: .85rem; color: var(--ink-2); }

/* ---------- steps (numbered process) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; position: relative; }

/* ---------- contact ---------- */
.contact-card {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-list li {
  display: flex; gap: 1rem; align-items: flex-start; padding: .85rem 0;
  border-bottom: 1px dashed rgba(61, 107, 143, 0.1);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list__icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 18px;
  flex-shrink: 0;
}
.contact-list__label { font-weight: 800; color: var(--ink); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .1em; }
.contact-list__val { color: var(--ink-2); font-size: 1rem; line-height: 1.5; }
.contact-list__val a { font-weight: 600; }
.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  background: var(--cloud);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- form ---------- */
.form { text-align: left; }
.form__row { margin-bottom: 1.1rem; }
.form__row--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.form__req { color: var(--blush-2); font-weight: 700; }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  padding: .9rem 1.05rem;
  border: 1.5px solid rgba(123, 174, 209, 0.28);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cloud);
  transition: border-color .15s, box-shadow .15s;
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
}
.form input::placeholder,
.form textarea::placeholder { color: var(--mute); opacity: 1; }
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(123, 174, 209, 0.18);
}
.form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}
.form__submit[disabled] { opacity: .7; cursor: progress; }
.form__status {
  margin: 1rem 0 0;
  padding: 0;
  font-size: .95rem;
  display: none;
  border-radius: var(--r);
}
.form__status.ok,
.form__status.err { display: block; padding: .9rem 1.15rem; }
.form__status.ok { background: var(--sage); color: var(--ocean-4); }
.form__status.err { background: #FCE3E3; color: #7A1E1E; }
.form__status a { color: inherit; text-decoration: underline; font-weight: 700; }
.form__note {
  font-size: .85rem;
  color: var(--mute);
  margin: 1rem 0 0;
  text-align: center;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .form__row--inline { grid-template-columns: 1fr; gap: 0; }
  .form__row--inline > div { margin-bottom: 1.1rem; }
  .form__row--inline > div:last-child { margin-bottom: 0; }
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__cloud, .hero__sparkle { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero__art { max-width: 360px; }
  .hero__cloud--1 { width: 80px; }
  .hero__cloud--2 { width: 70px; }
  .hero__cloud--3 { width: 60px; }
  .hero__lead { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  section { padding: clamp(3rem, 6vw, 5rem) 0; }
  .page-header { padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem); }
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .grid--aside { grid-template-columns: 1fr; gap: 2rem; }
  .toolkit { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
  .tool { padding: 1.25rem .9rem; }
  .tool__emoji { width: 64px; height: 64px; font-size: 28px; margin-bottom: .75rem; }
  .card { padding: 1.6rem 1.4rem; }
  .cta-banner { padding: clamp(2.5rem, 5vw, 4rem) 1.5rem; }
  .trust__list { gap: .75rem 1.5rem; }
  .trust__list li { font-size: .88rem; }
  .quote p { font-size: clamp(1.3rem, 2vw + .9rem, 1.8rem); }
  .contact-map { aspect-ratio: 16/10; }
  .container { padding: 0 1.25rem; }
  .blob { filter: blur(35px); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-toggle { display: grid; place-items: center; }
  .menu {
    position: absolute; top: calc(100% + .2rem); left: 1rem; right: 1rem;
    background: var(--cloud); flex-direction: column; align-items: stretch;
    padding: .75rem; gap: .1rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu a { padding: .9rem 1.1rem; border-radius: var(--r); font-size: 1rem; }
  .menu .btn { margin: .35rem 0 0; justify-content: center; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(2rem, 7vw + .5rem, 2.75rem); }
  h2 { font-size: clamp(1.55rem, 5vw + .5rem, 2.2rem); }
  .hero__lead, .lead { font-size: 1.05rem; }
  .hero__art { max-width: 280px; }
  .hero__cloud--1, .hero__cloud--2, .hero__cloud--3 { width: 60px; }
  .hero__sparkle--1, .hero__sparkle--2, .hero__sparkle--3 { width: 20px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer__grid { margin-bottom: 2rem; }
  .brand__mark { width: 48px; height: 48px; }
  .brand__name { font-size: 1.05rem; }
  .brand__name small { font-size: .9rem; }
  .card__icon, .tool__emoji { width: 58px; height: 58px; font-size: 26px; }
  .card__number { width: 42px; height: 42px; font-size: 1.2rem; }
  .card { padding: 1.5rem 1.3rem; }
  .btn { padding: .85rem 1.25rem; font-size: .95rem; }
  .cta-banner__buttons { flex-direction: column; align-items: stretch; }
  .cta-banner__buttons .btn { justify-content: center; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .quals { padding: 1.5rem; }
  .quals li { grid-template-columns: 1fr; gap: .15rem; }
  .quals li small { margin-top: .1rem; }
  .contact-card { padding: 1.5rem; }
  .fees__row { grid-template-columns: 1fr; gap: .5rem; padding: 1.25rem 1.3rem; }
  .fees__amount { font-size: 1.55rem; }
  .faq__item summary { padding: 1.1rem 1.3rem; font-size: 1rem; }
  .faq__item summary::after { font-size: 1.5rem; }
  .faq__body { padding: 0 1.3rem 1.25rem; }
  .quote { padding: 2rem 1rem; }
  .quote__mark { font-size: 4.5rem; }
  .section-head { margin-bottom: 2rem; }
  .trust { margin: -2rem 1rem 0; padding: 1.25rem 1rem; }
  .trust__list { gap: .5rem 1.25rem; }
  .trust__list li { font-size: .85rem; }
  .pill { padding: .55rem 1rem; font-size: .9rem; }
  .page-header__inner .lead { font-size: 1rem; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .blob { filter: blur(25px); opacity: .4; }
}

@media (max-width: 380px) {
  .brand__name { display: none; }
  .brand__mark { width: 44px; height: 44px; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .hero__art { max-width: 240px; }
}
