:root {
  --plum: #4b283e;
  --plum-dark: #321b2b;
  --plum-soft: #7a5268;
  --sage: #9cab91;
  --sage-light: #edf0e9;
  --cream: #f7f1e8;
  --ivory: #fdfbf7;
  --beige: #dfd0bd;
  --text: #302b2d;
  --muted: #6f6668;
  --line: rgba(75, 40, 62, .13);
  --white: #fff;
  --whatsapp: #25d366;
  --phone: #3d6078;
  --shadow: 0 18px 50px rgba(69, 51, 59, .10);
  --shadow-lg: 0 28px 80px rgba(69, 51, 59, .16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --container-wide: 1370px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--plum-dark);
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
h3 { line-height: 1.3; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--wide { width: min(calc(100% - 36px), var(--container-wide)); }
.section { padding: 112px 0; }
.section--sage { background: var(--sage-light); }
.section--cream { background: var(--cream); }
.section-kicker, .eyebrow {
  margin-bottom: 15px;
  color: var(--plum-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.5;
}
.section-kicker--light { color: #ddc6d3; }
.section-heading { max-width: 750px; margin: 0 auto 54px; text-align: center; }
.section-heading h2 { margin-bottom: 17px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-heading--left { margin-left: 0; text-align: left; }
.skip-link {
  position: fixed;
  z-index: 999;
  left: 18px;
  top: -80px;
  padding: 10px 16px;
  color: #fff;
  background: var(--plum);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(253, 251, 247, .96);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(60, 43, 51, .07);
}
.navbar {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand-logo {
  width: 228px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--plum);
  font-family: Georgia, serif;
  font-size: .9rem;
  letter-spacing: .05em;
}
.logo__text { display: grid; color: var(--plum); line-height: 1.08; }
.logo__text strong { font-family: Georgia, serif; font-size: .71rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; }
.logo__text span { font-family: Georgia, serif; font-size: 1.14rem; }
.nav-panel { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.nav-menu {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}
.nav-link {
  position: relative;
  display: block;
  padding: 12px 8px;
  color: #514a4c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .055em;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 1.5px;
  background: var(--plum);
  transition: left .2s ease, right .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--plum); }
.nav-link:hover::after, .nav-link.active::after { left: 9px; right: 9px; }
.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--plum);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Buttons */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav-link:focus-visible, .faq-question:focus-visible, .floating-btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(122, 82, 104, .28);
  outline-offset: 3px;
}
.btn--header { min-height: 42px; padding: 10px 17px; color: #fff; background: var(--plum); font-size: .78rem; white-space: nowrap; }
.btn--primary { color: #fff; background: var(--plum); box-shadow: 0 13px 28px rgba(75, 40, 62, .22); }
.btn--primary:hover { background: var(--plum-dark); box-shadow: 0 17px 36px rgba(75, 40, 62, .27); }
.btn--ghost { color: var(--plum); background: rgba(255,255,255,.64); border-color: rgba(75,40,62,.22); }
.btn--ghost:hover { background: #fff; }
.btn svg,
.btn img { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }
.btn--call { color: #fff; background: var(--phone); }
.btn--whatsapp { color: #fff; background: var(--whatsapp); }
.btn--outline { color: var(--plum); border-color: rgba(75,40,62,.3); background: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(223,208,189,.46), transparent 27%),
    linear-gradient(135deg, var(--ivory) 40%, #f1e8dd 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(75,40,62,.1);
  border-radius: 50%;
}
.hero::before { width: 420px; height: 420px; left: -260px; bottom: -180px; }
.hero::after { width: 230px; height: 230px; right: -110px; top: 45px; }
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}
.eyebrow { color: var(--sage); }
.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em { display: block; color: var(--plum-soft); font-weight: 400; }
.hero__text { max-width: 620px; margin-bottom: 31px; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 31px; color: #61595b; font-size: .85rem; }
.hero__meta span { position: relative; padding-left: 15px; }
.hero__meta span::before { content: ""; position: absolute; left: 0; top: .73em; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
.hero__visual {
  position: relative;
  aspect-ratio: 1.04 / 1;
  min-height: 480px;
  margin: 0;
  border-radius: 48% 48% 24px 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(49,27,43,.55)); pointer-events: none; }
.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.06rem;
  line-height: 1.5;
}
.hero__visual-mark { font-size: 2.6rem; line-height: .9; color: #e6d8c8; }

/* About */
.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 8vw, 100px); align-items: start; }
.about__portrait-wrap { position: sticky; top: calc(var(--header-height) + 28px); }
.about__portrait { aspect-ratio: 4 / 5; margin: 0; border-radius: var(--radius-lg); background: var(--cream); overflow: hidden; box-shadow: var(--shadow); }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.about__name-card {
  position: relative;
  width: calc(100% - 38px);
  margin: -40px auto 0;
  padding: 21px 24px;
  display: grid;
  border: 1px solid rgba(75,40,62,.08);
  border-radius: 17px;
  background: rgba(253,251,247,.95);
  box-shadow: var(--shadow);
  text-align: center;
}
.about__name-card strong { color: var(--plum); font-family: Georgia, serif; font-size: 1.17rem; font-weight: 500; }
.about__name-card span { color: var(--muted); font-size: .82rem; }
.about__content h2 { max-width: 700px; }
.about__story { display: grid; gap: 22px; color: var(--muted); }
.about__story > div { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.about__story h3 { margin-bottom: 8px; color: var(--plum); font-family: "Segoe UI", Arial, sans-serif; font-size: 1rem; font-weight: 750; }
.about__story p { margin-bottom: 11px; }
.about__story p:last-child { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 27px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 8px 14px; border-radius: 999px; color: #4a5546; background: var(--sage-light); font-size: .8rem; font-weight: 700; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card {
  min-height: 280px;
  padding: 31px;
  border: 1px solid rgba(75,40,62,.09);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 36px rgba(62,58,50,.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--shadow); }
.service-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  color: var(--plum);
  background: var(--cream);
}
.service-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { min-height: 2.6em; margin-bottom: 11px; font-size: 1.28rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Approach */
.approach { background: var(--plum); }
.approach__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.approach h2, .approach h3 { color: #fff; }
.approach__intro > p:not(.section-kicker) { color: #dfd3d9; font-size: 1.04rem; }
.approach blockquote {
  margin: 31px 0 0;
  padding: 22px 0 2px 24px;
  border-left: 2px solid var(--beige);
  color: #f4eae1;
  font-family: Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.65;
}
.approach__steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.approach__steps li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.approach__steps li:last-child { border-bottom: 0; }
.approach__steps > li > span { color: #c8b0bd; font-family: Georgia, serif; font-size: 1.1rem; }
.approach__steps h3 { margin-bottom: 4px; font-family: "Segoe UI", Arial, sans-serif; font-size: 1rem; font-weight: 750; }
.approach__steps p { margin: 0; color: #cfc2c8; font-size: .92rem; }

/* Children */
.children { background: #fbf7f1; }
.children__grid { display: grid; grid-template-columns: minmax(350px, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 95px); align-items: center; }
.children__visual { position: relative; aspect-ratio: 4 / 5; margin: 0; border-radius: 160px 160px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.children__visual img { width: 100%; height: 100%; object-fit: cover; }
.children__visual figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 13px 18px; border-radius: 999px; color: var(--plum); background: rgba(255,255,255,.91); font-size: .82rem; font-weight: 700; text-align: center; }
.children__content > p:not(.section-kicker):not(.children__note) { color: var(--muted); font-size: 1.04rem; }
.children__lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 30px; }
.children__lists h3 { margin-bottom: 15px; color: var(--plum); font-family: "Segoe UI", Arial, sans-serif; font-size: .98rem; font-weight: 750; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: #554d50; font-size: .91rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border: 2px solid var(--sage); border-radius: 50%; }
.children__note { margin: 31px 0 0; padding: 17px 20px; border-radius: var(--radius-sm); color: #4d584a; background: var(--sage-light); font-size: .9rem; }

/* Appointment */
.appointment { background: var(--plum-dark); }
.appointment__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 7vw, 85px); align-items: start; }
.appointment__intro { position: sticky; top: calc(var(--header-height) + 30px); }
.appointment__intro h2 { color: #fff; }
.appointment__intro > p:not(.section-kicker) { color: #d3c6cc; }
.privacy-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 28px; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); color: #e5d9df; background: rgba(255,255,255,.055); font-size: .88rem; }
.privacy-note svg { flex: 0 0 auto; width: 22px; height: 22px; fill: none; stroke: #d9bfcf; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.appointment-form { padding: clamp(25px, 4vw, 42px); border-radius: var(--radius); background: var(--ivory); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px; }
.field { display: grid; gap: 7px; min-width: 0; color: #514a4c; font-size: .87rem; font-weight: 700; }
.field small { color: var(--muted); font-weight: 400; }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8cfca;
  border-radius: 10px;
  color: var(--text);
  background: #fff;
  outline: 0;
}
.field input, .field select { height: 49px; padding: 0 13px; }
.field textarea { padding: 12px 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--plum-soft); box-shadow: 0 0 0 3px rgba(122,82,104,.1); }
.choice-group { min-width: 0; margin: 0; padding: 0; border: 0; }
.choice-group legend { margin-bottom: 7px; color: #514a4c; font-size: .87rem; font-weight: 700; }
.choice-group label { display: inline-flex; margin: 0 6px 6px 0; cursor: pointer; }
.choice-group input { position: absolute; opacity: 0; pointer-events: none; }
.choice-group span { padding: 8px 12px; border: 1px solid #d8cfca; border-radius: 999px; background: #fff; font-size: .82rem; }
.choice-group input:checked + span { color: #fff; border-color: var(--plum); background: var(--plum); }
.choice-group input:focus-visible + span { outline: 3px solid rgba(122,82,104,.25); outline-offset: 2px; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .79rem; font-weight: 400; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 4px; accent-color: var(--plum); }
.btn--submit { width: 100%; margin-top: 23px; border: 0; }
.form-status { min-height: 1.4em; margin: 9px 0 0; color: var(--plum); font-size: .82rem; text-align: center; }

/* FAQ */
.faq-list { max-width: 900px; margin-inline: auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid rgba(75,40,62,.12); border-radius: var(--radius-sm); background: rgba(255,255,255,.68); overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; font-family: "Segoe UI", Arial, sans-serif; font-size: .98rem; font-weight: 700; text-align: left; cursor: pointer; }
.faq-question i { position: relative; flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; background: var(--plum); }
.faq-question i::before, .faq-question i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 1px; background: #fff; transition: transform .25s ease; }
.faq-question i::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 58px 21px 22px; color: var(--muted); font-size: .93rem; }
.faq-item.active { background: #fff; box-shadow: 0 10px 30px rgba(75,40,62,.06); }

/* Contact */
.contact { background: #fff; }
.contact__grid { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); gap: 24px; align-items: stretch; }
.contact-card { padding: clamp(27px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); }
.contact-card__brand { display: flex; align-items: center; gap: 13px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.contact-card__brand > div { display: grid; }
.contact-card__brand strong { color: var(--plum); font-family: Georgia, serif; font-size: 1.14rem; font-weight: 500; }
.contact-card__brand span { color: var(--muted); font-size: .8rem; }
.contact-list { display: grid; gap: 0; margin: 10px 0 25px; }
.contact-list div { display: grid; grid-template-columns: 95px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list dt { color: var(--muted); font-size: .82rem; }
.contact-list dd { margin: 0; color: var(--text); font-size: .9rem; }
.contact-list a { color: var(--plum); font-weight: 750; }
.contact__actions { display: grid; gap: 9px; }
.emergency-note { margin: 19px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.map-wrapper { min-height: 540px; border-radius: var(--radius); background: var(--sage-light); overflow: hidden; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 540px; display: block; border: 0; }

/* Floating */
.floating-actions { position: fixed; z-index: 90; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 9px; }
.floating-btn {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 25px rgba(42,29,35,.2);
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.floating-btn:hover { transform: translateY(-2px); }
.floating-btn svg,
.floating-btn img { width: 21px; height: 21px; fill: currentColor; }
.floating-btn--phone { background: var(--phone); }
.floating-btn--whatsapp { background: var(--whatsapp); }
.floating-btn--top { opacity: 0; visibility: hidden; background: var(--plum); }
.floating-btn--top.visible { opacity: 1; visibility: visible; }
.floating-btn--top svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-btn::before { content: attr(data-tooltip); position: absolute; right: 54px; padding: 5px 9px; border-radius: 6px; color: #fff; background: var(--plum-dark); font-size: .72rem; white-space: nowrap; opacity: 0; pointer-events: none; transform: translateX(5px); transition: opacity .2s ease, transform .2s ease; }
.floating-btn:hover::before { opacity: 1; transform: translateX(0); }

/* Footer */
.site-footer { padding: 68px 0 22px; color: #d9cfd4; background: #281923; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(190px, .75fr)); gap: 50px; }
.footer-logo {
  width: min(100%, 285px);
  display: inline-flex;
  align-items: center;
  margin-bottom: 17px;
  padding: 9px 12px;
  border-radius: 12px;
  background: #fff;
}
.footer-brand-logo { width: 100%; height: auto; display: block; }
.footer-logo .logo__mark { background: #fff; color: var(--plum); }
.footer-logo strong { display: block; font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand p { max-width: 440px; margin: 0; color: #c3b7bd; font-size: .89rem; }
.footer-column h2 { margin-bottom: 17px; color: #fff; font-family: "Segoe UI", Arial, sans-serif; font-size: .83rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; color: #c3b7bd; font-size: .86rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 45px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.12); color: #a99ca3; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #e7dce2; }

@media (max-width: 1160px) {
  :root { --header-height: 70px; }
  .menu-toggle { display: block; order: 3; }
  .nav-panel {
    position: fixed;
    z-index: 120;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 24px 24px 35px;
    background: var(--ivory);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu { display: grid; gap: 2px; }
  .nav-menu { position: static; transform: none; }
  .nav-menu li { border-bottom: 1px solid var(--line); }
  .nav-link { padding: 16px 4px; font-size: .82rem; }
  .nav-link::after { display: none; }
  .btn--header { width: 100%; margin-top: 22px; }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .hero { min-height: auto; }
  .hero__grid, .about__grid, .approach__grid, .children__grid, .appointment__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 46px; }
  .hero__content { text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .hero__meta { justify-content: center; }
  .hero__visual { width: min(100%, 690px); min-height: 420px; margin-inline: auto; aspect-ratio: 4 / 3; border-radius: 34px; }
  .about__portrait-wrap, .appointment__intro { position: static; }
  .about__portrait-wrap { width: min(100%, 520px); margin-inline: auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .children__visual { width: min(100%, 560px); aspect-ratio: 4 / 4.5; margin-inline: auto; border-radius: 120px 120px var(--radius) var(--radius); }
  .map-wrapper, .map-wrapper iframe { min-height: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --header-height: 64px; }
  .container, .container--wide { width: min(calc(100% - 28px), var(--container)); }
  .brand-logo { width: 184px; }
  .menu-toggle { width: 40px; height: 40px; }
  .section { padding: 68px 0; }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .section-heading { margin-bottom: 38px; }
  .section-kicker, .eyebrow { font-size: .69rem; letter-spacing: .14em; }
  .hero { padding: 58px 0 62px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero__text { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { display: grid; justify-content: start; margin-left: 8px; text-align: left; }
  .hero__visual { min-height: 285px; aspect-ratio: 1.1 / 1; border-radius: 24px; }
  .hero__visual figcaption { left: 18px; right: 18px; bottom: 15px; font-size: .88rem; }
  .about__grid, .approach__grid, .children__grid, .appointment__grid { gap: 42px; }
  .about__portrait { aspect-ratio: 1 / 1.12; }
  .about__name-card { padding: 17px; }
  .service-grid, .children__lists, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 25px; }
  .service-card h3 { min-height: 0; }
  .children__visual { aspect-ratio: 1 / 1.04; border-radius: 70px 70px 18px 18px; }
  .field--full { grid-column: auto; }
  .appointment-form { padding: 22px 18px; }
  .choice-group span { padding: 8px 10px; }
  .faq-question { padding: 18px 16px; font-size: .9rem; }
  .faq-answer p { padding: 0 45px 18px 16px; }
  .contact-list div { grid-template-columns: 76px 1fr; }
  .contact__actions .btn { width: 100%; }
  .map-wrapper, .map-wrapper iframe { min-height: 340px; }
  .footer__grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .floating-actions { right: 10px; bottom: 10px; gap: 7px; }
  .floating-btn { width: 42px; height: 42px; }
  .floating-btn::before { display: none; }
  .site-footer { padding-bottom: 72px; }
}

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