:root {
  --bg-dark: #100c08;
  --bg-darker: #080604;
  --coffee: #241407;
  --gold: #c88b2d;
  --gold-light: #efc16f;
  --cream: #f7f0e6;
  --cream-deep: #eee1d1;
  --text: #fffaf3;
  --text-dark: #1d140e;
  --text-muted: #d7cec2;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --radius: 28px;
  --container: 1240px;
  --shadow: 0 18px 48px rgba(45, 25, 7, .14);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 106px; }
body { margin: 0; overflow-x: hidden; background: var(--bg-darker); color: var(--text-dark); font-family: var(--sans); font-size: 18px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { border: 0; }
svg { width: 1.5em; height: 1.5em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { max-width: 980px; }
.dark-section { position: relative; overflow: hidden; color: var(--text); background: radial-gradient(circle at 78% 20%, rgba(155, 89, 18, .18), transparent 35%), linear-gradient(140deg, var(--bg-darker), var(--bg-dark)); }
.dark-section::before { content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none; background-image: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.025) 50%, transparent 75%); }
.light-section { position: relative; background: radial-gradient(circle at 15% 20%, #fff 0, transparent 35%), linear-gradient(145deg, #fbf7f1, var(--cream)); }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 12px 16px; background: #fff; color: #111; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #ffd879; outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.21,.8,.32,1), transform .7s cubic-bezier(.21,.8,.32,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.21,.8,.32,1), transform .7s cubic-bezier(.21,.8,.32,1); }
.reveal-group.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > :nth-child(1) { transition-delay: .05s; }
.reveal-group.is-visible > :nth-child(2) { transition-delay: .15s; }
.reveal-group.is-visible > :nth-child(3) { transition-delay: .25s; }

@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.site-header { position: sticky; z-index: 50; top: 0; color: var(--text); background: rgba(8, 6, 4, .95); border-bottom: 1px solid rgba(200, 139, 45, .42); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; width: 180px; }
.brand img { width: 100%; height: 82px; object-fit: contain; }
.desktop-nav { display: none; align-items: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { color: #eee3d5; font-size: 15px; font-weight: 700; text-decoration: none; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--gold-light); }
.menu-toggle { display: grid; width: 56px; height: 56px; place-content: center; gap: 6px; color: var(--gold-light); background: transparent; border: 1px solid var(--gold); border-radius: 18px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: currentColor; border-radius: 4px; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 49; inset: 92px 0 auto; max-height: 0; overflow: hidden; visibility: hidden; color: var(--text); background: rgba(8, 6, 4, .99); transition: max-height .35s ease, visibility .35s; }
.mobile-menu.is-open { max-height: calc(100vh - 86px); visibility: visible; border-bottom: 1px solid var(--gold); }
.mobile-menu nav { display: grid; width: min(calc(100% - 36px), 620px); margin: 0 auto; padding: 14px 0 28px; }
.mobile-menu a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 18px; font-weight: 650; text-decoration: none; }

.practice-strip { border-bottom: 1px solid rgba(200,139,45,.22); background: linear-gradient(90deg, #1b0f05, #4a280c 50%, #160c05); color: var(--gold-light); }
.practice-strip .container { display: flex; min-height: 68px; align-items: center; justify-content: center; gap: 12px; text-align: center; font-size: clamp(14px, 2.7vw, 18px); font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.practice-strip svg { flex: 0 0 auto; font-size: 26px; }
.hero { min-height: auto; padding-bottom: 38px; }
.hero-grid { position: relative; z-index: 1; display: flex; min-height: 900px; flex-direction: column; padding-top: 30px; }
.hero-copy { position: relative; z-index: 2; width: 74%; }
.eyebrow, .section-kicker { margin: 0; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.pill { display: inline-flex; min-height: 48px; align-items: center; gap: 10px; padding: 8px 18px; color: var(--gold-light); border: 1px solid var(--gold); border-radius: 999px; font-size: 14px; }
.eyebrow.pill svg { font-size: 22px; }
.eyebrow.pill span { opacity: .7; }
.hero h1 { max-width: 720px; margin: 26px 0 22px; font-family: var(--serif); font-size: clamp(36px, 10vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.hero h1 span, .areas h2 span, .about h2 span, .process h2 span, .location h2 span { color: var(--gold-light); }
.hero-lead { max-width: 610px; margin: 0; color: #eee9e2; font-size: 17px; line-height: 1.55; }
.hero-location { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(200,139,45,.5); }
.hero-location > svg { width: 48px; height: 48px; padding: 10px; flex: 0 0 auto; color: var(--gold-light); border: 1px solid var(--gold); border-radius: 50%; }
.hero-location p { display: grid; margin: 0; line-height: 1.3; text-transform: uppercase; }
.hero-location strong { font-size: 18px; }
.hero-location span { color: var(--gold-light); font-size: 15px; font-weight: 700; letter-spacing: .04em; }
.hero-photo { position: absolute; z-index: 0; top: 102px; right: -90px; width: 360px; height: auto; overflow: visible; margin: 0; border: 0; border-radius: 0; }
.hero-photo::before { content: ""; position: absolute; z-index: 0; inset: 5% -8% 8% 4%; background: radial-gradient(circle at 55% 38%, rgba(191,116,31,.65), rgba(91,46,10,.24) 42%, transparent 70%); filter: blur(16px); pointer-events: none; }
.hero-photo::after { content: ""; position: absolute; z-index: 2; right: -2px; bottom: -2px; left: 12%; height: 24%; background: linear-gradient(to top, var(--bg-darker), transparent); pointer-events: none; }
.hero-photo img { position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain; object-position: center bottom; border-radius: 0; filter: none; animation: hero-float 4.5s ease-in-out infinite; will-change: transform; }
.hero-bottom { position: relative; z-index: 3; margin-top: auto; }
.trust-row { display: grid; grid-template-columns: 1fr; gap: 0; margin: -4px 0 20px; padding: 8px 18px; background: rgba(25,15,7,.88); border: 1px solid rgba(200,139,45,.45); border-radius: 22px; }
.trust-row div { display: flex; min-height: 78px; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(200,139,45,.24); font-size: 15px; font-weight: 650; line-height: 1.35; }
.trust-row div:last-child { border: 0; }
.trust-row svg { flex: 0 0 auto; color: var(--gold-light); font-size: 34px; }
.trust-row em { color: var(--gold-light); font-style: normal; }
.cta { display: flex; width: 100%; min-height: 62px; align-items: center; justify-content: center; gap: 12px; padding: 13px 18px; border: 1px solid transparent; border-radius: 18px; font-weight: 850; line-height: 1.2; text-align: center; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.cta > svg { flex: 0 0 auto; font-size: 28px; }
.cta .arrow { margin-left: auto; font-size: 21px; }
.cta-gold { color: #160e07; background: linear-gradient(110deg, #b77822, #f2c878 52%, #d99c3e); box-shadow: 0 8px 32px rgba(210,146,46,.18); }
.cta-dark { color: var(--gold-light); background: linear-gradient(110deg, #160b03, #422307 55%, #150b04); border-color: #4e2c0f; }
.cta-outline { color: var(--gold-light); background: transparent; border-color: var(--gold); }

.quick-service { padding: 70px 0; }
.service-card { padding: 34px 20px 24px; background: rgba(255,250,244,.88); border: 1px solid rgba(92,54,18,.08); border-radius: var(--radius); box-shadow: var(--shadow); }
.section-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 8px; place-items: center; color: #ad772a; }
.section-icon svg { font-size: 52px; }
.service-card > .section-kicker { color: var(--text-dark); font-family: var(--serif); font-size: clamp(29px, 8vw, 44px); font-weight: 400; letter-spacing: .015em; text-align: center; }
.service-card > .section-kicker::after { content: ""; display: block; width: min(75%, 420px); height: 1px; margin: 12px auto 18px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.service-card > h2 { margin: 0; color: #a36c21; font-size: clamp(27px, 7vw, 38px); line-height: 1.15; text-align: center; }
.section-intro { max-width: 680px; margin: 12px auto 30px; text-align: center; }
.field { margin-bottom: 22px; }
.field label { display: flex; align-items: center; gap: 10px; margin: 0 4px 9px; font-size: 18px; font-weight: 780; }
.field label svg { color: #ad772a; font-size: 26px; }
.field input, .field select { width: 100%; min-height: 58px; padding: 12px 16px; color: #3f3b38; background: rgba(255,255,255,.52); border: 1px solid #d8c4ae; border-radius: 14px; font-size: 17px; }
.field input:focus, .field select:focus { border-color: var(--gold); outline: 3px solid rgba(200,139,45,.2); }
.form-error { min-height: 0; margin: -6px 0 12px; color: #9e271d; font-size: 16px; font-weight: 700; }
.privacy-note { display: flex; align-items: flex-start; gap: 12px; margin: 18px 4px 0; font-size: 15px; line-height: 1.4; }
.privacy-note svg { flex: 0 0 auto; color: #a36c21; font-size: 29px; }
.confidentiality { display: flex; align-items: center; gap: 15px; margin-top: 22px; padding: 22px; border: 1px solid rgba(200,139,45,.24); border-radius: 24px; box-shadow: 0 12px 30px rgba(68,42,17,.07); }
.confidentiality > svg { flex: 0 0 auto; color: #a36c21; font-size: 44px; }
.confidentiality strong { display: block; font-size: 16px; line-height: 1.3; text-transform: uppercase; }
.confidentiality p { margin: 5px 0 0; font-size: 15px; line-height: 1.45; }

.section-progress { position: relative; z-index: 2; padding-top: 18px; padding-bottom: 20px; }
.section-progress p { display: flex; margin: 0 0 10px; align-items: center; gap: 7px; font-size: 14px; }
.section-progress p strong { color: var(--gold-light); text-transform: uppercase; }
.section-progress p span { margin-left: auto; }
.section-progress > div, .dark-progress .container > div { height: 7px; overflow: hidden; background: #292723; border-radius: 10px; }
.section-progress i, .dark-progress i { display: block; width: var(--progress); height: 100%; background: linear-gradient(90deg, #b77b24, #f0bf62); border-radius: inherit; }
.areas { padding-bottom: 74px; }
.areas-heading { max-width: 840px; margin: 22px auto 32px; text-align: center; }
.section-kicker.gold { color: var(--gold-light); font-size: 16px; }
.areas h2 { margin: 16px auto 18px; font-size: clamp(41px, 10vw, 72px); line-height: .98; letter-spacing: -.04em; }
.areas-heading > p:last-of-type { max-width: 700px; margin: 0 auto; color: #e3ddd5; font-size: 18px; }
.carousel-controls { display: flex; justify-content: center; gap: 14px; margin-top: 20px; }
.carousel-controls button { display: grid; width: 54px; height: 54px; place-items: center; color: #f6c347; background: transparent; border: 1px solid #efbd32; border-radius: 50%; cursor: pointer; }
.carousel-controls svg { font-size: 25px; }
.carousel-controls .reverse { transform: rotate(180deg); }
.services-carousel { display: flex; gap: 16px; width: calc(100% + 18px); overflow-x: auto; padding: 8px 18px 18px 0; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.services-carousel::-webkit-scrollbar { display: none; }
.service-item { display: flex; min-width: min(83vw, 360px); min-height: 500px; flex: 0 0 min(83vw, 360px); flex-direction: column; padding: 26px 22px 22px; scroll-snap-align: start; background: radial-gradient(circle at 70% 20%, rgba(125,74,17,.22), transparent 46%), #100c08; border: 1px solid #9c6916; border-radius: 26px; transition: transform .2s, border-color .2s; }
.service-item:hover { transform: translateY(-4px); border-color: var(--gold-light); }
.card-icon { display: grid; width: 76px; height: 76px; place-items: center; color: #e9b837; border: 1px solid #84600f; border-radius: 50%; }
.card-icon svg { font-size: 38px; }
.service-item h3 { margin: 22px 0 10px; font-size: 26px; line-height: 1.08; }
.service-item > i { width: 60px; height: 3px; margin: 4px 0 18px; background: #e9b900; border-radius: 4px; }
.service-item p { margin: 0 0 22px; color: #ede7df; font-size: 17px; line-height: 1.55; }
.service-item button { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding: 12px 16px; color: #f3c629; background: rgba(0,0,0,.2); border: 1px solid #b78311; border-radius: 999px; font-size: 15px; font-weight: 850; text-align: left; text-transform: uppercase; cursor: pointer; }
.service-item button svg { flex: 0 0 auto; font-size: 22px; }
.swipe-hint { margin: 0; color: #ddd4c8; font-size: 15px; text-align: center; }

.family-section { overflow: hidden; padding-top: 1.1rem; }
.family-stage { position: relative; min-height: 0; padding-bottom: 2rem; }
.family-stage__content { min-width: 0; }
.family-stage__eyebrow { display: flex; max-width: 18rem; align-items: center; gap: .6rem; margin: 0; color: #895818; font-size: clamp(.72rem, 3.3vw, .88rem); font-weight: 800; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.family-stage__eyebrow svg { width: 2rem; height: 2rem; flex: 0 0 2rem; }
.family-stage h2 { max-width: 21rem; margin: 1.2rem 0 0; color: var(--text-dark); font-family: var(--serif); font-size: clamp(2rem, 10vw, 2.65rem); font-weight: 400; letter-spacing: -.045em; line-height: 1.03; }
.family-heading-line { display: block; }
.family-stage h2 em { color: #93621d; font-style: normal; }
.family-stage__callout { display: flex; width: min(80%, 16.75rem); min-width: 0; align-items: center; gap: .7rem; margin-top: 1.25rem; padding: .9rem 1rem; color: #845616; background: rgba(255,255,255,.94); border: 1px solid #dfc7a7; border-radius: var(--radius-lg, 22px); box-shadow: 0 10px 28px rgba(86,48,13,.09); font-family: var(--serif); font-size: clamp(1rem, 4.7vw, 1.25rem); line-height: 1.18; }
.family-stage__callout svg { width: 3rem; height: 3rem; flex: 0 0 3rem; }
.family-stage__callout-icon--desktop { display: none; }
.family-stage__callout strong { min-width: 0; flex: 1; overflow-wrap: break-word; }
.family-stage__note { max-width: 14.75rem; margin: .9rem 0; font-size: clamp(.78rem, 3.7vw, .94rem); line-height: 1.45; }
.family-stage__cta { width: min(86%, 18rem); min-height: 3.65rem; padding: .7rem .9rem; border-radius: 999px; font-size: clamp(.72rem, 3.5vw, .9rem); }
.family-stage__cta > svg { width: 1.75rem; height: 1.75rem; flex: 0 0 1.75rem; }
.family-stage__cta .arrow { width: 1.4rem; height: 1.4rem; flex-basis: 1.4rem; }
.family-benefits { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; padding: 0; background: rgba(247,240,230,.98); border-top: 1px solid #dfc5a0; }
.family-benefits__item { display: flex; min-width: 0; min-height: 5.4rem; align-items: center; gap: 1rem; padding: .8rem 1rem; border-bottom: 1px solid #dfc5a0; }
.family-benefits__item:last-child { border-bottom: 0; }
.family-benefits__item svg { width: 3rem; height: 3rem; flex: 0 0 3rem; color: #9d691e; }
.family-benefits__item strong { min-width: 0; flex: 1; overflow-wrap: break-word; line-height: 1.25; }

.about { padding-bottom: 72px; }
.about-card { position: relative; z-index: 1; display: grid; max-width: 980px; gap: 24px; padding: 28px 20px; border: 1px solid #9a681d; border-radius: var(--radius); }
.about h2 { margin: 24px 0 26px; font-size: clamp(38px, 10vw, 63px); line-height: 1.02; letter-spacing: -.045em; }
.about h3 { margin: 0; font-family: var(--serif); font-size: 40px; font-weight: 400; }
.about-role { margin: 0; color: var(--gold-light); }
.about-place { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; color: #eee7de; font-size: 16px; }
.about-place svg { color: var(--gold-light); }
.about-photo { overflow: hidden; margin: 0; border: 1px solid var(--gold); border-radius: 24px; }
.about-photo img { width: 100%; height: clamp(165px, 43vw, 460px); object-fit: cover; object-position: center 31%; filter: none; }
.about-details > p { margin: 0 0 20px; color: #eee8e0; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.about-badges span { display: flex; min-height: 43px; align-items: center; gap: 8px; padding: 7px 13px; color: var(--gold-light); border: 1px solid #8c621a; border-radius: 999px; font-size: 15px; }
.about-features { display: grid; gap: 12px; margin: 22px 0; }
.about-features > div { display: flex; min-height: 80px; align-items: center; gap: 14px; padding: 16px; border: 1px solid rgba(200,139,45,.34); border-radius: 18px; }
.about-features svg { color: var(--gold-light); font-size: 36px; }
.about-features strong { font-size: 16px; line-height: 1.35; }
.about-actions { display: grid; gap: 12px; }

.dark-progress { padding: 18px 0; color: var(--text); background: var(--bg-darker); }
.dark-progress .container { padding: 0; }
.location { padding-bottom: 72px; }
.location-card { display: grid; gap: 28px; margin-top: 24px; padding: 28px 20px; border: 1px solid #d3a45c; border-radius: var(--radius); }
.location .eyebrow { color: #97631a; }
.location h2 { margin: 24px 0 18px; font-family: var(--serif); font-size: clamp(41px, 11vw, 68px); font-weight: 400; line-height: 1.08; letter-spacing: -.04em; }
.location h2 span { display: block; color: #a77831; }
.location-copy > p:not(.eyebrow) { margin: 0 0 24px; }
.location address { display: flex; align-items: center; gap: 16px; margin: 26px 0; font-style: normal; }
.location address > svg { flex: 0 0 auto; color: #a97018; font-size: 50px; }
.location address p { margin: 0; line-height: 1.45; }
.map-gif { position: relative; overflow: hidden; margin: 0; background: #211508; border: 1px solid #b57b25; border-radius: 24px; box-shadow: var(--shadow); }
.map-gif img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.map-gif figcaption { display: flex; justify-content: space-between; gap: 10px; padding: 13px 16px; color: #fff8ef; font-size: 14px; }
.map-gif figcaption strong { color: var(--gold-light); }
.location-facts { display: grid; grid-column: 1 / -1; gap: 0; padding: 8px 18px; border: 1px solid #d6ad73; border-radius: 22px; }
.location-facts div { display: flex; min-height: 105px; flex-direction: column; align-items: center; justify-content: center; padding: 16px 6px; border-bottom: 1px solid #dec7a7; text-align: center; }
.location-facts div:last-child { border: 0; }
.location-facts svg { color: #a56c16; font-size: 38px; }
.location-facts strong { font-size: 16px; }
.location-facts span { color: #765f4c; font-size: 14px; }

.process { padding-bottom: 72px; }
.process-card { position: relative; z-index: 1; padding: 30px 20px; border: 1px solid #b27a24; border-radius: var(--radius); }
.process h2 { margin: 24px 0 20px; font-family: var(--serif); font-size: clamp(41px, 11vw, 70px); font-weight: 400; line-height: 1.06; letter-spacing: -.04em; }
.process-intro { max-width: 690px; margin: 0 0 30px; color: #ded7cf; }
.steps { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 72px 1fr; min-height: 170px; align-items: center; gap: 18px; padding: 18px; background: rgba(20,14,8,.55); border: 1px solid #a67422; border-radius: 22px; }
.steps li > span { display: grid; width: 68px; height: 68px; place-items: center; color: var(--gold-light); border: 1px solid #986918; border-radius: 50%; font-family: var(--serif); font-size: 40px; }
.steps li div { padding-left: 17px; border-left: 1px dashed #a57421; }
.steps h3 { margin: 0 0 6px; font-size: 20px; line-height: 1.2; }
.steps p { margin: 0; color: #ded7d0; font-size: 16px; line-height: 1.45; }
.legal-divider { display: flex; align-items: center; gap: 18px; margin: 30px 0; color: var(--gold); }
.legal-divider i { height: 1px; flex: 1; background: #85591b; }
.legal-divider svg { font-size: 36px; }

.site-footer { padding: 58px 0 0; color: #ddd4ca; background: #050403; border-top: 1px solid rgba(200,139,45,.42); }
.footer-grid { display: grid; gap: 38px; }
.footer-brand img { width: 250px; height: auto; margin-bottom: 10px; }
.footer-brand p { color: var(--gold-light); font-size: 14px; text-transform: uppercase; }
.site-footer h2 { margin: 0 0 12px; color: var(--gold-light); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.site-footer address { font-style: normal; }
.site-footer p, .site-footer address { margin: 0 0 14px; font-size: 15px; line-height: 1.65; }
.site-footer a { text-decoration-color: rgba(239,193,111,.5); text-underline-offset: 4px; }
.site-footer nav { display: grid; gap: 8px; }
.footer-bottom { margin-top: 42px; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #a79e94; font-size: 13px; }
.floating-whatsapp { position: fixed; z-index: 40; left: 18px; bottom: max(18px, env(safe-area-inset-bottom)); display: grid; width: 60px; height: 60px; padding: 0; place-items: center; background: transparent; border: 0; border-radius: 50%; filter: drop-shadow(0 8px 14px rgba(0,0,0,.3)); cursor: pointer; transition: transform .2s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp.is-hidden { opacity: 0; visibility: hidden; transform: translateY(12px) scale(.9); pointer-events: none; }
.floating-whatsapp img { width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 600px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
  .hero-grid { min-height: 820px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); padding: 12px 0; }
  .trust-row div { padding: 8px 20px; border-right: 1px solid rgba(200,139,45,.24); border-bottom: 0; }
  .trust-row div:last-child { border-right: 0; }
  .service-card { padding: 46px 42px 34px; }
  .confidentiality strong { font-size: 19px; }
  .family-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .family-benefits__item { flex-direction: column; border-right: 1px solid #dfc5a0; border-bottom: 0; text-align: center; }
  .family-benefits__item:last-child { border-right: 0; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .location-facts { grid-template-columns: repeat(3, 1fr); }
  .location-facts div { border-right: 1px solid #dec7a7; border-bottom: 0; }
  .location-facts div:last-child { border-right: 0; }
}

@media (min-width: 768px) {
  .header-inner { min-height: 94px; }
  .brand { width: 194px; }
  .brand img { height: 78px; }
  .mobile-menu { inset-block-start: 94px; }
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-grid { display: grid; min-height: auto; grid-template-columns: 1.04fr .96fr; align-items: center; padding-top: 54px; }
  .hero h1 { font-size: clamp(58px, 7vw, 85px); }
  .hero-photo { position: relative; top: auto; right: auto; width: auto; height: auto; overflow: visible; grid-column: 2; grid-row: 1; margin: 0 -20px 0 10px; border-radius: 0; }
  .hero-photo img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center bottom; border-radius: 0; }
  .hero-copy { width: auto; grid-column: 1; grid-row: 1; }
  .hero-bottom { grid-column: 1 / -1; margin-top: 24px; }
  .cta { font-size: 17px; }
  .service-item { min-width: min(44vw, 410px); flex-basis: min(44vw, 410px); }
  .family-section { padding-top: 0; }
  .family-stage { min-height: 0; padding-bottom: clamp(4rem, 8vw, 5rem); }
  .family-stage__content { max-width: 50rem; padding-top: clamp(3.75rem, 7.8vw, 5rem); }
  .family-stage__eyebrow { position: relative; max-width: none; padding-bottom: 3rem; font-size: clamp(.9rem, 1.8vw, 1.15rem); }
  .family-stage__eyebrow::after { content: ""; position: absolute; bottom: 1.25rem; left: 0; width: 4.3rem; height: 2px; background: #96631a; }
  .family-stage h2 { width: min(100%, 48rem); max-width: none; margin-top: 2.4rem; font-size: clamp(3.5rem, 7vw, 4.5rem); }
  .family-stage__callout { width: min(100%, 38rem); max-width: none; min-height: clamp(8rem, 16.5vw, 10.5rem); gap: 1.5rem; margin-top: 2.5rem; padding: 1.5rem 2rem; font-size: clamp(1.45rem, 2.8vw, 2rem); }
  .family-stage__callout svg { width: clamp(4.5rem, 9vw, 5.75rem); height: clamp(4.5rem, 9vw, 5.75rem); flex-basis: clamp(4.5rem, 9vw, 5.75rem); }
  .family-stage__callout-icon--mobile { display: none; }
  .family-stage__callout-icon--desktop { display: block; }
  .family-stage__note { width: min(100%, 36rem); max-width: none; margin: 1.65rem 0; font-size: clamp(1rem, 1.85vw, 1.2rem); }
  .family-stage__cta { width: min(100%, 42rem); max-width: none; min-height: clamp(4.75rem, 9.8vw, 6.25rem); padding-inline: 1.75rem; font-size: clamp(1rem, 2vw, 1.25rem); }
  .family-benefits__item { min-height: clamp(13rem, 26.5vw, 17rem); gap: 1.35rem; padding: 1.5rem; font-size: clamp(1.15rem, 2.5vw, 1.65rem); }
  .family-benefits__item svg { width: clamp(4.75rem, 9vw, 5.75rem); height: clamp(4.75rem, 9vw, 5.75rem); flex-basis: clamp(4.75rem, 9vw, 5.75rem); padding: 1rem; border: 1px solid currentColor; border-radius: 50%; }
  .about-card { grid-template-columns: minmax(0, 1fr); max-width: 900px; padding: 40px; }
  .about-copy, .about-photo, .about-details { min-width: 0; grid-column: 1; grid-row: auto; }
  .location-card { grid-template-columns: 1fr 1fr; align-items: center; padding: 42px; }
  .steps li { grid-template-columns: 90px 1fr; }
  .steps li > span { width: 80px; height: 80px; font-size: 50px; }
  .footer-grid { grid-template-columns: 1.35fr repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .menu-toggle, .mobile-menu { display: none; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; }
  .hero-copy { padding-bottom: 90px; }
  .hero-photo img { max-height: 720px; }
  .hero-bottom { margin-top: 24px; }
  .hero-bottom .cta { max-width: 720px; margin: 20px auto 0; }
  .quick-service { padding-block: 100px; }
  .areas { padding-bottom: 100px; }
  .areas-heading { margin-top: 48px; }
  .services-carousel { width: 100%; gap: 20px; padding-right: 0; }
  .service-item { min-width: calc((100% - 40px) / 3); flex-basis: calc((100% - 40px) / 3); }
  .family-stage h2 { line-height: 1.14; }
  .family-stage__cta { margin-top: 0; }
  .about { padding-bottom: 100px; }
  .about-card { grid-template-columns: minmax(0, 1fr); max-width: 1000px; gap: 28px; padding: 54px; }
  .about-copy, .about-photo, .about-details { grid-column: 1; grid-row: auto; }
  .about-photo img { height: clamp(165px, 43vw, 460px); }
  .about-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location { padding-bottom: 100px; }
  .process { padding-bottom: 100px; }
  .process-card { padding: 54px; }
  .process h2 { max-width: 850px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li { grid-template-columns: 1fr; align-content: start; min-height: 320px; }
  .steps li div { padding: 18px 0 0; border-top: 1px dashed #a57421; border-left: 0; }
  .process-card > .cta { max-width: 700px; margin-inline: auto; }
}

@media (min-width: 1280px) {
  .hero-copy { padding-left: 20px; }
  .hero-photo { margin-right: 0; }
  .hero-bottom { padding-inline: 18px; }
  .service-card { padding-inline: 64px; }
  .family-stage h2 { font-size: 4.5rem; }
  .about h2 { font-size: 61px; }
}

@media (max-width: 374px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { width: 148px; }
  .hero h1 { font-size: 36px; }
  .hero-photo { right: -120px; }
  .cta { padding-inline: 13px; font-size: 15px; }
  .cta > svg { font-size: 24px; }
  .steps li { grid-template-columns: 58px 1fr; gap: 12px; padding: 14px; }
  .steps li > span { width: 54px; height: 54px; font-size: 32px; }
  .steps li div { padding-left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none !important; }
  .hero-photo img { animation: none !important; transform: none; will-change: auto; }
}
