@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --navy: #173b58;
  --navy-deep: #102c43;
  --cyan: #60cbd3;
  --cyan-dark: #2698a7;
  --brown: #8a5d46;
  --clay: #d88963;
  --sand: #f1e3d6;
  --cream: #fbf7f2;
  --ink: #213842;
  --muted: #687980;
  --white: #fff;
  --line: rgba(23,59,88,.13);
  --shadow: 0 22px 60px rgba(24,51,66,.13);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font: 16px/1.7 var(--sans); }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-sm { padding: 78px 0; }
.bg-white { background: var(--white); }
.bg-sand { background: var(--sand); }
.bg-navy { color: var(--white); background: var(--navy); }
.eyebrow { margin: 0 0 15px; color: var(--cyan-dark); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.bg-navy .eyebrow, .image-band .eyebrow, .page-hero .eyebrow { color: #8ce1e5; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; }
h1, h2 { letter-spacing: -.035em; }
h2 { margin: 0 0 20px; font-size: clamp(38px, 5vw, 66px); }
h3 { margin: 0 0 12px; font-size: 26px; }
p { margin: 0 0 18px; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.75; }
.bg-navy .lead { color: #cbdde3; }
.button, .button-outline, .text-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 0 23px; border: 0; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.button { color: var(--white); background: var(--navy); box-shadow: 0 10px 26px rgba(23,59,88,.18); transition: transform .25s, background .25s; }
.button:hover { transform: translateY(-3px); background: var(--cyan-dark); }
.button.warm { background: var(--clay); }
.button.warm:hover { background: var(--brown); }
.button-outline { border: 1px solid currentColor; background: transparent; transition: color .25s, background .25s; }
.button-outline:hover { color: var(--white); background: var(--navy); }
.text-link { min-height: 0; padding: 0 0 5px; border-bottom: 2px solid var(--cyan); }

/* Header */
.topbar { color: #d7e7ec; background: var(--navy-deep); font-size: 11px; }
.topbar-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-inner > span { color: #9fc1ce; letter-spacing: .06em; }
.topbar-inner div { display: flex; gap: 24px; }
.topbar a:hover { color: var(--cyan); }
.site-header { position: sticky; top: 0; z-index: 90; border-bottom: 1px solid var(--line); background: rgba(251,247,242,.96); transition: box-shadow .25s, background .25s; backdrop-filter: blur(15px); }
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 12px 34px rgba(18,52,68,.09); }
.header-inner { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: clamp(245px, 28vw, 350px); flex: 0 1 auto; }
.desktop-nav { display: flex; align-items: center; gap: 7px; }
.nav-link, .nav-trigger { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border: 0; background: none; cursor: pointer; color: var(--navy); font-size: 12px; font-weight: 700; line-height: 1; }
.nav-trigger .nav-chevron { width: 7px; height: 7px; display: inline-block; flex: 0 0 7px; margin: -4px 0 0 8px; border-right: 1.5px solid var(--clay); border-bottom: 1.5px solid var(--clay); transform: rotate(45deg); transform-origin: 50% 50%; transition: transform .2s ease; }
.nav-link:hover, .nav-trigger:hover, .nav-link.is-active, .nav-trigger.is-active { color: var(--cyan-dark); }
.nav-group { position: relative; }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-group:hover .nav-trigger .nav-chevron, .nav-group:focus-within .nav-trigger .nav-chevron { transform: rotate(225deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: -16px; width: 250px; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(10px); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); transition: .22s; }
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -15px; height: 15px; }
.dropdown a { display: block; padding: 11px 13px; color: var(--muted); font-size: 13px; transition: color .2s, background .2s, padding .2s; }
.dropdown a:hover { padding-left: 18px; color: var(--navy); background: var(--cream); }
.nav-cta { min-height: 45px; display: inline-flex; align-items: center; padding: 0 18px; color: var(--white); background: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.nav-cta:hover, .nav-cta.is-active { background: var(--cyan-dark); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--navy); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--white); transition: .2s; }
.mobile-panel { display: none; }

/* Homepage hero */
.hero { position: relative; min-height: 680px; overflow: hidden; background: var(--navy); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s, visibility .9s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-media { position: absolute; inset: 0; background: var(--bg) center/cover no-repeat; transform: scale(1.035); transition: transform 7s ease; }
.hero-media.hero-media-active-life { background-position: center top; transform-origin: center top; }
.hero-slide.is-active .hero-media-active-life { transform: scale(1.02); }
.media-focus-faces { background-position: center top !important; }
img.media-focus-faces { object-position: center top; }
.page-hero-media.media-focus-faces, .image-band-media.media-focus-faces { inset: 0; transform: none; }
.hero-slide.is-active .hero-media { transform: scale(1.08); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,44,67,.94) 0%, rgba(16,44,67,.78) 36%, rgba(16,44,67,.1) 72%); }
.hero-content { position: relative; z-index: 2; min-height: 680px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: var(--white); }
.hero-content > * { max-width: 620px; }
.hero h1, .hero h2 { margin: 0 0 24px; color: var(--white); font-size: clamp(54px, 7vw, 94px); }
.hero h1 em, .hero h2 em { color: var(--cyan); font-style: normal; }
.hero-copy { color: #d9e8ec; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 24px; }
.hero .button-outline { color: var(--white); }
.hero .button-outline:hover { color: var(--navy); background: var(--white); }
.hero-controls { position: absolute; z-index: 5; right: max(24px, calc((100vw - 1180px)/2)); bottom: 72px; display: flex; align-items: center; gap: 12px; }
.hero-arrow { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); background: rgba(16,44,67,.3); color: var(--white); cursor: pointer; font-size: 20px; }
.hero-dots { display: flex; gap: 8px; margin-inline: 7px; }
.hero-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dot.is-active { width: 25px; border-radius: 8px; background: var(--cyan); }
.hero-badge { position: absolute; z-index: 5; right: 9vw; top: 70px; width: 132px; height: 132px; display: grid; place-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); color: var(--white); text-align: center; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; animation: float 4s ease-in-out infinite; }
.hero-badge strong { color: var(--cyan); font: 600 25px var(--serif); letter-spacing: 0; }

/* Home blocks */
.quick-actions { position: relative; z-index: 8; margin-top: -42px; }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); box-shadow: var(--shadow); }
.quick-card { min-height: 170px; display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; padding: 34px; background: var(--white); transition: transform .25s, background .25s; }
.quick-card:nth-child(2) { background: var(--sand); }
.quick-card:nth-child(3) { color: var(--white); background: var(--brown); }
.quick-card:hover { position: relative; z-index: 2; transform: translateY(-8px); }
.quick-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px 18px 18px 5px; color: var(--navy); background: rgba(96,203,211,.22); }
.quick-card:nth-child(3) .quick-icon { color: var(--white); background: rgba(255,255,255,.15); }
.quick-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.quick-card h3 { font-size: 21px; }
.quick-card p { margin: 0; color: var(--muted); font-size: 13px; }
.quick-card:nth-child(3) p { color: #f0dfd5; }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; align-items: start; }
.intro-note { margin-top: 35px; padding: 25px; border-left: 4px solid var(--clay); background: var(--sand); }
.intro-copy { padding-top: 22px; }
.intro-copy .lead { margin-bottom: 28px; }
.service-mosaic { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 250px 250px; gap: 18px; }
.service-tile { position: relative; overflow: hidden; min-height: 240px; color: var(--white); background: var(--navy); }
.service-tile:first-child { grid-row: 1 / 3; }
.service-tile:nth-child(4) { grid-column: 2 / 4; }
.service-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.service-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(16,44,67,.85)); }
.service-tile:hover img { transform: scale(1.06); }
.tile-copy { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 23px; }
.tile-copy span { color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.tile-copy h3 { margin: 4px 0 0; font-size: 27px; }
.image-band { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.image-band-media { position: absolute; inset: -12% 0; background: var(--bg) center/cover no-repeat; transform: translateY(var(--parallax-y,0)); }
.image-band-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,44,67,.92), rgba(16,44,67,.24)); }
.image-band-content { position: relative; max-width: 650px; }
.image-band h2 { font-size: clamp(46px, 6vw, 78px); }
.path-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 65px; }
.path-grid::before { content: ""; position: absolute; left: 8%; right: 8%; top: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--clay)); }
.path-step { position: relative; padding-top: 64px; }
.path-step > span { position: absolute; top: 0; left: 0; width: 57px; height: 57px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy); font-weight: 700; box-shadow: 0 0 0 9px var(--cream); }
.path-step:nth-child(2) > span { background: var(--cyan-dark); }
.path-step:nth-child(3) > span { background: var(--clay); }
.family-panel { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 620px; background: var(--white); }
.family-photo { min-height: 520px; background: url("assets/images/family-wellness.jpg") center/cover; }
.family-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(35px,7vw,100px); }
.family-points { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin: 25px 0 32px; }
.family-point { padding: 18px; border: 1px solid var(--line); }
.family-point strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 18px; }
.cta-panel { position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 70px clamp(30px,6vw,80px); color: var(--white); background: var(--cyan-dark); }
.cta-panel::after { content: ""; position: absolute; width: 350px; height: 350px; right: -120px; top: -150px; border: 70px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 700px; margin: 0; font-size: clamp(37px,5vw,60px); }
.cta-panel .button { position: relative; z-index: 1; flex: 0 0 auto; }

/* Interior pages */
.page-hero { position: relative; min-height: 475px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.page-hero-media { position: absolute; inset: -10% 0; background: var(--bg) center/cover; transform: translateY(var(--parallax-y,0)); }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,44,67,.94), rgba(16,44,67,.42)); }
.page-hero-content { position: relative; max-width: 760px; padding: 90px 0; }
.breadcrumbs { margin-bottom: 18px; color: #a8d4dc; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.page-hero h1 { margin: 0 0 22px; font-size: clamp(50px,7vw,84px); }
.page-hero-content > p:last-child { max-width: 640px; color: #d5e5e9; font-size: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; min-height: 520px; }
.split-media img { width: 100%; height: 520px; object-fit: cover; }
.split-media::after { content: ""; position: absolute; width: 44%; height: 45%; right: -24px; bottom: -24px; z-index: -1; background: var(--cyan); opacity: .3; }
.split-copy ul, .check-list { list-style: none; padding: 0; margin: 28px 0; }
.split-copy li, .check-list li { position: relative; padding: 9px 0 9px 32px; color: var(--muted); }
.split-copy li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan-dark); font-weight: 800; }
.value-grid, .care-grid, .faq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card, .care-card { padding: 34px; border: 1px solid var(--line); background: var(--white); transition: transform .25s, box-shadow .25s; }
.value-card:hover, .care-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.value-card > span, .care-card > span { color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.value-card p, .care-card p { color: var(--muted); }
.care-card { min-height: 310px; display: flex; flex-direction: column; }
.care-card:nth-child(2n) { background: var(--sand); }
.care-card .text-link { align-self: flex-start; margin-top: auto; }
.detail-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; color: var(--white); background: var(--navy); }
.detail-photo { min-height: 520px; background: var(--bg) center/cover; }
.detail-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(40px,7vw,110px); }
.detail-copy h1 { margin: 0 0 25px; font-size: clamp(50px,6vw,82px); }
.detail-copy .lead { color: #c6dbe1; }
.process-list { display: grid; gap: 0; counter-reset: item; }
.process-item { display: grid; grid-template-columns: 85px 1fr; gap: 25px; padding: 35px 0; border-top: 1px solid var(--line); }
.process-item::before { counter-increment: item; content: "0" counter(item); color: var(--clay); font: 600 30px var(--serif); }
.process-item p { color: var(--muted); }
.quote-card { padding: 52px; color: var(--white); background: var(--brown); }
.quote-card blockquote { margin: 0; font: 500 clamp(28px,4vw,45px)/1.35 var(--serif); }
.quote-card p { margin: 22px 0 0; color: #f2dfd5; }
.info-strip { display: grid; grid-template-columns: repeat(3,1fr); }
.info-strip > div { padding: 35px; border-right: 1px solid rgba(255,255,255,.16); color: var(--white); background: var(--navy); }
.info-strip > div:nth-child(2) { background: var(--cyan-dark); }
.info-strip > div:nth-child(3) { background: var(--brown); }
.info-strip span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.info-strip strong { font: 600 23px var(--serif); }

/* FAQ, reviews, forms */
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); background: var(--white); }
.faq-list summary { position: relative; padding: 24px 60px 24px 25px; cursor: pointer; list-style: none; color: var(--navy); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 25px; top: 16px; color: var(--clay); font: 400 31px var(--serif); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 25px 25px; color: var(--muted); }
.review-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.review-placeholder { padding: 55px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.review-placeholder .stars { color: var(--clay); font-size: 25px; letter-spacing: .18em; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: start; }
.contact-card { padding: 35px; color: var(--white); background: var(--navy); }
.contact-card a { display: block; margin-top: 5px; color: #b8e9eb; overflow-wrap: anywhere; }
.contact-card hr { margin: 25px 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 38px; background: var(--white); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #d7dfdf; outline: 0; background: var(--cream); padding: 14px; transition: border .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 3px rgba(96,203,211,.16); }
.field textarea { min-height: 145px; resize: vertical; }
.form-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { grid-column: 1 / -1; margin: 0; padding: 12px; border-left: 3px solid var(--cyan-dark); color: var(--cyan-dark); background: rgba(96,203,211,.12); font-size: 13px; font-weight: 700; }
.form-status.is-error { border-color: #b54a4a; color: #9a3c3c; background: #fff1f0; }
.legal { max-width: 900px; }
.legal h2 { margin-top: 48px; font-size: 32px; }
.legal p, .legal li { color: var(--muted); }

/* Footer and motion */
.site-footer { position: relative; overflow: hidden; padding: 85px 0 20px; color: #bed1d8; background: var(--navy-deep); }
.footer-orbit { position: absolute; border: 1px solid rgba(96,203,211,.13); border-radius: 50%; }
.footer-orbit-one { width: 430px; height: 430px; right: -170px; top: -180px; }
.footer-orbit-two { width: 250px; height: 250px; right: -80px; top: -90px; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.45fr .7fr 1fr 1fr; gap: 55px; }
.footer-brand img { width: min(350px,100%); }
.footer-brand p { max-width: 390px; margin-top: 25px; }
.footer-grid h2 { margin: 8px 0 22px; color: var(--white); font: 600 17px var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span { display: block; margin: 8px 0; font-size: 13px; overflow-wrap: anywhere; }
.footer-grid a:hover { color: var(--cyan); }
.footer-button { display: inline-flex !important; align-items: center; gap: 10px; margin-top: 15px !important; padding-bottom: 5px; border-bottom: 1px solid var(--cyan); color: var(--white); }
.footer-bottom { position: relative; display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }
.scroll-top { position: fixed; z-index: 80; right: 24px; bottom: 24px; width: 49px; height: 49px; display: grid; place-items: center; border: 0; border-radius: 50%; opacity: 0; visibility: hidden; transform: translateY(12px); color: var(--white); background: var(--clay); box-shadow: 0 12px 30px rgba(94,56,39,.25); cursor: pointer; transition: .25s; }
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); background: var(--brown); }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s, transform .75s; }
[data-reveal="left"] { transform: translateX(-35px); }
[data-reveal="right"] { transform: translateX(35px); }
[data-reveal].is-visible { opacity: 1; transform: translate(0); }
@keyframes float { 50% { transform: translateY(-9px) rotate(2deg); } }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-panel { position: absolute; z-index: 89; top: 100%; left: 0; right: 0; bottom: auto; height: calc(100dvh - 86px); display: flex; flex-direction: column; gap: 4px; padding: 28px 7vw 50px; opacity: 0; visibility: hidden; transform: translateY(-12px); overflow-y: auto; overscroll-behavior: contain; background: var(--cream); transition: .2s; }
  .menu-open .mobile-panel { opacity: 1; visibility: visible; transform: none; }
  .mobile-panel > a, .mobile-panel summary { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 700; cursor: pointer; }
  .mobile-panel details a { display: block; padding: 10px 18px; color: var(--muted); }
  .mobile-cta { margin-top: 15px; padding: 15px 20px !important; border: 0 !important; color: var(--white) !important; background: var(--navy); text-align: center; }
  .quick-card { grid-template-columns: 45px 1fr; padding: 27px; }
  .quick-icon { width: 44px; height: 44px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, 1180px); }
  .section { padding: 78px 0; }
  .section-sm { padding: 60px 0; }
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-inner div { width: 100%; justify-content: space-between; gap: 10px; font-size: 9px; }
  .header-inner { height: 74px; }
  .brand { width: 235px; }
  .mobile-panel { top: 100%; height: calc(100dvh - 74px); }
  .hero, .hero-content { min-height: 670px; }
  .hero-media { background-position: 63% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(16,44,67,.95), rgba(16,44,67,.63)); }
  .hero h1, .hero h2 { font-size: clamp(42px, 12vw, 48px); }
  .hero-copy { font-size: 16px; }
  .hero-badge { display: none; }
  .hero-controls { right: 16px; bottom: 25px; }
  .quick-actions { margin-top: 0; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 0; }
  .intro-grid, .split, .review-intro, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .service-tile, .service-tile:first-child, .service-tile:nth-child(4) { grid-column: auto; grid-row: auto; min-height: 340px; }
  .image-band { min-height: 560px; }
  .path-grid { grid-template-columns: 1fr; gap: 24px; }
  .path-grid::before { top: 5%; bottom: 5%; left: 28px; width: 1px; height: auto; }
  .path-step { padding: 8px 0 20px 82px; }
  .path-step > span { box-shadow: 0 0 0 7px var(--cream); }
  .family-panel { grid-template-columns: 1fr; }
  .family-photo { min-height: 390px; }
  .family-copy { padding: 60px 24px; }
  .family-points { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 50px 25px; }
  .page-hero { min-height: 420px; }
  .page-hero h1 { font-size: 50px; }
  .split.reverse .split-media { order: 0; }
  .split-media, .split-media img { min-height: 390px; height: 390px; }
  .value-grid, .care-grid, .faq-grid { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-photo { min-height: 400px; }
  .detail-copy { padding: 65px 24px; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .contact-form { grid-template-columns: 1fr; padding: 25px 20px; }
  .field.full { grid-column: auto; }
  .quote-card, .review-placeholder { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 430px) {
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .button, .hero-actions .button-outline { width: 100%; }
}

@media (max-width: 1080px) {
  .menu-toggle { display: grid !important; place-content: center; flex: 0 0 42px; min-width: 42px; visibility: visible; opacity: 1; }
}

@media (max-width: 1080px) {
  .menu-toggle { position: absolute; right: max(15px, calc((100vw - 1180px) / 2)); top: 50%; z-index: 3; transform: translateY(-50%); }
}
