:root {
  --blue: #2454e8;
  --blue-dark: #17369b;
  --cream: #fff8ee;
  --white: #fff;
  --ink: #14231d;
  --muted: #68736d;
  --coral: #ff6654;
  --yellow: #ffd66b;
  --mint: #ddf3e5;
  --line: #e6e1d8;
  --shadow: 0 20px 56px rgba(20, 35, 29, .12);
  --shell: min(1240px, calc(100% - 64px));
  --section: clamp(5rem, 9vw, 8.5rem);
  --radius: 28px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Manrope", system-ui, sans-serif; font-size: 16px; line-height: 1.6; }
body.is-locked { overflow: hidden; }
body.is-menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 12px 18px; color: var(--white); background: var(--ink); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--blue-dark); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(255, 255, 255, .96); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Fraunces", Georgia, serif; letter-spacing: -.045em; }
h1 { font-size: clamp(3.5rem, 7vw, 6.4rem); line-height: .92; }
h2 { margin-bottom: 0; font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: .98; }
h3 { line-height: 1.15; }
em { color: var(--blue); font-style: italic; }
.eyebrow { margin-bottom: 20px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: rgba(255, 255, 255, .92); }

.demo-bar { position: relative; z-index: 90; color: var(--white); background: var(--ink); font-size: .72rem; }
.demo-bar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 34px; }
.demo-bar__link { padding: 6px 0; border: 0; color: var(--yellow); background: transparent; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }

.site-header { position: sticky; z-index: 80; top: 0; background: rgba(255, 248, 238, .92); border-bottom: 1px solid rgba(230, 225, 216, .8); backdrop-filter: blur(14px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand svg { width: 38px; height: 38px; fill: var(--blue); }
.brand svg circle { fill: var(--coral); }
.brand span { display: grid; line-height: 1; }
.brand b { font-size: 1.28rem; letter-spacing: .08em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .56rem; font-weight: 800; letter-spacing: .2em; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: .8rem; font-weight: 700; }
.main-nav > a { position: relative; padding-block: 12px; }
.main-nav > a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 2px; background: var(--blue); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .24s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 20px; font-size: .7rem; }
.button--primary { color: var(--white); background: var(--blue); box-shadow: 0 10px 26px rgba(36, 84, 232, .22); }
.button--primary:hover { background: var(--blue-dark); }
.button--ghost { border-color: rgba(20, 35, 29, .26); background: rgba(255, 255, 255, .42); }
.button--dark { color: var(--white); background: var(--ink); }
.button--coral { color: var(--ink); background: var(--coral); }
.button--white { color: var(--blue-dark); background: var(--white); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.text-link--light { color: var(--white); }

.hero { position: relative; min-height: min(790px, calc(100vh - 110px)); overflow: hidden; background: #f9ecda; }
.hero__media { position: absolute; inset: 0; }
.hero__media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 248, 238, .36), transparent 48%); content: ""; }
.hero__media img { height: 100%; object-fit: cover; object-position: center; }
.hero__content { position: relative; z-index: 2; display: flex; align-items: center; min-height: min(790px, calc(100vh - 110px)); }
.hero__copy { max-width: 590px; padding-block: 76px; }
.hero__copy h1 { max-width: 650px; margin-bottom: 28px; }
.hero__lead { max-width: 520px; margin-bottom: 32px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__micro { margin: 18px 0 0; color: var(--muted); font-size: .78rem; font-weight: 600; }
.hero__stamp { position: absolute; z-index: 3; right: 5vw; bottom: 34px; display: grid; place-items: center; width: 138px; height: 138px; border-radius: 50%; color: var(--white); background: var(--blue); box-shadow: var(--shadow); text-align: center; transform: rotate(7deg); }
.hero__stamp span { max-width: 92px; font-size: .57rem; font-weight: 800; letter-spacing: .12em; }
.hero__stamp strong { color: var(--yellow); font-size: 1.25rem; line-height: .7; }

.trust-strip { color: var(--white); background: var(--blue); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip article { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 27px clamp(18px, 3vw, 42px); border-right: 1px solid rgba(255, 255, 255, .2); }
.trust-strip article:first-child { padding-left: 0; }
.trust-strip article:last-child { border-right: 0; }
.trust-strip article > span { color: var(--yellow); font-size: .65rem; font-weight: 800; }
.trust-strip strong { display: block; font-size: .88rem; }
.trust-strip p { margin: 2px 0 0; color: rgba(255, 255, 255, .92); font-size: .72rem; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; align-items: end; margin-bottom: 64px; }
.section-heading > p { max-width: 450px; margin: 0 0 7px; color: var(--muted); font-size: 1.02rem; }
.section-heading--compact { margin-bottom: 48px; }
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.service-card { grid-column: span 4; display: flex; flex-direction: column; min-height: 360px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card--photo { grid-column: span 6; min-height: 520px; padding: 0; }
.service-card--photo img { height: 290px; object-fit: cover; }
.service-card--wide { grid-column: span 12; display: grid; grid-template-columns: 1.08fr .92fr; min-height: 390px; }
.service-card--wide img { height: 100%; min-height: 390px; }
.service-card__body { display: flex; flex: 1; flex-direction: column; padding: 30px 34px 34px; }
.service-card--blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.service-card--yellow { background: var(--yellow); border-color: var(--yellow); }
.service-card__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: auto; border: 1px solid currentColor; border-radius: 50%; font-size: 1.1rem; }
.service-card__number { margin-bottom: 18px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.service-card--blue .service-card__number { color: rgba(255, 255, 255, .62); }
.service-card h3 { margin: 0 0 14px; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.service-card p { margin-bottom: 26px; color: var(--muted); }
.service-card--blue p { color: rgba(255, 255, 255, .92); }
.service-card .text-link { margin-top: auto; align-self: flex-start; }

.clinic { color: var(--white); background: var(--ink); }
.clinic__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.clinic__image { position: relative; }
.clinic__image img { min-height: 660px; border-radius: var(--radius); object-fit: cover; }
.clinic__image span { position: absolute; right: -24px; bottom: 36px; padding: 14px 18px; color: var(--ink); background: var(--yellow); border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.clinic__copy h2 { max-width: 600px; margin-bottom: 28px; }
.clinic__copy > p:not(.eyebrow):not(.clinic__note) { max-width: 560px; color: rgba(255, 255, 255, .72); font-size: 1.05rem; }
.check-list { display: grid; gap: 0; margin: 34px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 30px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.check-list li::before { position: absolute; left: 0; color: var(--yellow); content: "✓"; }
.clinic__note { margin: 24px 0 0; color: rgba(255, 255, 255, .5); font-size: .72rem; }

.care { background: var(--mint); }
.care__intro { display: grid; grid-template-columns: 1fr .7fr; gap: 10vw; align-items: end; margin-bottom: 72px; }
.care__intro .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; }
.care__intro p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 1.06rem; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid rgba(20, 35, 29, .22); list-style: none; }
.process-list li { padding: 32px 26px 0 0; border-right: 1px solid rgba(20, 35, 29, .18); }
.process-list li + li { padding-left: 26px; }
.process-list li:last-child { border-right: 0; }
.process-list span { color: var(--blue); font-size: .7rem; font-weight: 800; }
.process-list h3 { margin: 58px 0 14px; font-size: 1.25rem; }
.process-list p { color: var(--muted); font-size: .88rem; }

.club { background: var(--cream); }
.club__card { display: grid; grid-template-columns: 1fr 1.05fr; overflow: hidden; border-radius: 36px; color: var(--white); background: var(--blue); box-shadow: var(--shadow); }
.club__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 580px; padding: clamp(42px, 7vw, 86px); }
.club__copy h2 { margin-bottom: 24px; }
.club__copy p:not(.eyebrow) { max-width: 480px; margin-bottom: 34px; color: rgba(255, 255, 255, .92); }
.club__benefits { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 18px; padding: 40px; background: var(--blue-dark); }
.club__benefits article { min-height: 190px; padding: 28px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 22px; background: rgba(255, 255, 255, .06); }
.club__benefits article:first-child { grid-column: 1 / -1; }
.club__benefits span { color: var(--yellow); font-size: .66rem; font-weight: 800; }
.club__benefits h3 { margin: 46px 0 7px; font-size: 1.15rem; }
.club__benefits p { margin: 0; color: rgba(255, 255, 255, .65); font-size: .82rem; }
.club__disclaimer { grid-column: 1 / -1; margin: 4px 0 0; color: rgba(255, 255, 255, .88) !important; font-size: .68rem !important; }

.gallery { padding-top: 0; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 310px); gap: 20px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-grid__wide { grid-row: 1 / -1; }
.gallery-grid figure img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; right: 18px; bottom: 18px; padding: 9px 13px; border-radius: 999px; color: var(--ink); background: rgba(255, 255, 255, .9); font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }

.stories { background: var(--white); }
.stories__heading { max-width: 790px; margin: 0 auto 60px; text-align: center; }
.stories__heading h2 { margin-bottom: 24px; }
.stories__heading > p:last-child { max-width: 620px; margin-inline: auto; color: var(--muted); }
.stories-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.story-card { display: flex; flex-direction: column; min-height: 280px; margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.story-card--featured { grid-row: span 2; min-height: 580px; padding: clamp(40px, 6vw, 72px); color: var(--white); background: var(--blue); }
.story-card--featured > p { margin-block: auto; font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 3.8vw, 3.5rem); line-height: 1.08; }
.story-card--mint { background: var(--mint); }
.story-card > p { font-size: 1.05rem; }
.story-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 28px; }
.story-card footer > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--white); background: var(--coral); font-size: .7rem; font-weight: 800; }
.story-card footer div { display: grid; }
.story-card footer strong { font-size: .8rem; }
.story-card footer small { color: var(--muted); font-size: .68rem; }
.story-card--featured footer small { color: rgba(255, 255, 255, .9); }

.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; align-items: start; }
.faq__intro { position: sticky; top: 130px; }
.faq__intro h2 { margin-bottom: 24px; }
.faq__intro > p:not(.eyebrow) { max-width: 390px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item h3 { margin: 0; }
.accordion__item button { display: flex; align-items: center; justify-content: space-between; gap: 22px; width: 100%; min-height: 90px; padding: 18px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion__item button span { font-size: 1.08rem; font-weight: 700; }
.accordion__item i { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--ink); border-radius: 50%; }
.accordion__item i::before, .accordion__item i::after { position: absolute; top: 13px; left: 7px; width: 12px; height: 1px; background: var(--ink); content: ""; }
.accordion__item i::after { transform: rotate(90deg); transition: transform .2s ease; }
.accordion__item button[aria-expanded="true"] i { background: var(--blue); border-color: var(--blue); }
.accordion__item button[aria-expanded="true"] i::before, .accordion__item button[aria-expanded="true"] i::after { background: var(--white); }
.accordion__item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion__panel { padding: 0 54px 26px 0; color: var(--muted); }
.accordion__panel p { margin: 0; }

.location { background: var(--white); }
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.location__map { position: relative; min-height: 590px; overflow: hidden; border-radius: 36px; background: var(--mint); }
.map-grid { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(20, 35, 29, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 35, 29, .12) 1px, transparent 1px); background-size: 54px 54px; transform: rotate(10deg) scale(1.25); }
.location__map::before, .location__map::after { position: absolute; width: 150%; height: 120px; border: 28px solid var(--white); border-radius: 50%; content: ""; opacity: .7; }
.location__map::before { top: 60px; left: -35%; transform: rotate(-16deg); }
.location__map::after { right: -50%; bottom: 68px; transform: rotate(28deg); }
.map-pin { position: absolute; z-index: 2; top: 46%; left: 54%; display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50% 50% 50% 8px; color: var(--white); background: var(--blue); box-shadow: var(--shadow); transform: translate(-50%, -50%) rotate(-45deg); }
.map-pin i, .map-pin b { transform: rotate(45deg); }
.map-pin i { width: 16px; height: 16px; margin-top: 12px; border-radius: 50%; background: var(--coral); }
.map-pin b { margin-top: -16px; font-size: .72rem; letter-spacing: .08em; }
.location__map > p { position: absolute; z-index: 3; right: 26px; bottom: 16px; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-align: right; }
.location__copy h2 { margin-bottom: 38px; }
.location__details { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-block: 28px; border-block: 1px solid var(--line); }
.location__details span { color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.location__details p { margin: 10px 0 0; font-size: .9rem; }
.location__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.location__note { margin: 18px 0 0; color: var(--muted); font-size: .7rem; }

.final-cta { padding-block: 100px; color: var(--white); background: var(--blue); }
.final-cta__inner { max-width: 900px; text-align: center; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p:not(.eyebrow) { max-width: 560px; margin: 0 auto 32px; color: rgba(255, 255, 255, .92); }

.site-footer { padding: 70px 0 26px; color: var(--white); background: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 8vw; }
.brand--footer svg { fill: var(--yellow); }
.brand--footer svg circle { fill: var(--coral); }
.brand--footer small { color: rgba(255, 255, 255, .55); }
.site-footer__grid > div:first-child > p { margin: 20px 0 0; color: rgba(255, 255, 255, .58); }
.site-footer nav { display: grid; gap: 10px; align-content: start; font-size: .8rem; }
.site-footer__contact > span { color: var(--yellow); font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.site-footer__contact p { margin: 14px 0 0; color: rgba(255, 255, 255, .55); font-size: .75rem; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 62px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .42); font-size: .65rem; }
.mobile-booking { display: none; }

.booking-dialog { width: min(980px, calc(100% - 32px)); max-width: none; max-height: calc(100dvh - 32px); padding: 0; overflow: hidden; border: 0; border-radius: 30px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.booking-dialog::backdrop { background: rgba(10, 20, 16, .7); backdrop-filter: blur(5px); }
.booking-dialog__layout { display: grid; grid-template-columns: .85fr 1.15fr; max-height: calc(100dvh - 32px); overflow: auto; overscroll-behavior: contain; }
.booking-dialog__intro { display: flex; flex-direction: column; justify-content: center; padding: 52px; color: var(--white); background: var(--blue); }
.booking-dialog__intro h2 { margin-bottom: 22px; font-size: clamp(2.5rem, 4vw, 4rem); }
.booking-dialog__intro > p:not(.eyebrow) { color: rgba(255, 255, 255, .72); }
.booking-dialog__privacy { display: flex; gap: 12px; align-items: flex-start; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .18); }
.booking-dialog__privacy span { display: grid; flex: 0 0 24px; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: var(--blue); background: var(--yellow); font-size: .7rem; font-weight: 800; }
.booking-dialog__privacy p { margin: 0; color: rgba(255, 255, 255, .72); font-size: .75rem; }
.dialog-close { position: absolute; z-index: 3; top: 14px; right: 14px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 1.5rem; cursor: pointer; }
.booking-form, .booking-result { padding: 52px; }
.booking-form { display: grid; gap: 18px; }
.booking-form label { display: grid; gap: 8px; font-size: .72rem; font-weight: 800; }
.booking-form label > span { color: var(--muted); font-weight: 500; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--cream); font-size: 16px; }
.booking-form textarea { min-height: 90px; resize: vertical; }
.booking-form :is(input, select, textarea)[aria-invalid="true"] { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(255, 102, 84, .18); }
.form-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 14px; }
.form-error { margin: 0; color: #a02a1d; font-size: .75rem; font-weight: 700; }
.booking-form__note { margin: -7px 0 0; color: var(--muted); font-size: .67rem; text-align: center; }
.booking-result { display: flex; flex-direction: column; justify-content: center; }
.booking-result h3 { margin: 0 0 18px; font-size: 1.8rem; }
.booking-result > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: .72rem; }
.message-preview { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); white-space: pre-line; font-size: .86rem; }
.booking-result__actions { display: flex; gap: 10px; margin-top: 20px; }
.toast { position: fixed; z-index: 999; right: 20px; bottom: 20px; max-width: min(360px, calc(100% - 40px)); padding: 14px 18px; border-radius: 14px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); font-size: .78rem; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: none; }

.reveal { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 40px, 1240px); }
  .menu-toggle { display: grid; gap: 6px; width: 48px; height: 48px; place-content: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
  .menu-toggle i { width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 110px 0 auto; display: grid; gap: 0; padding: 26px 20px 34px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a { min-height: 50px; border-bottom: 1px solid var(--line); }
  .nav-booking { margin-top: 18px; }
  .hero__media img { object-position: 58% center; }
  .hero__copy { max-width: 520px; }
  .service-card { grid-column: span 6; }
  .service-card--wide { grid-column: span 12; }
  .clinic__grid { gap: 50px; }
  .clinic__image img { min-height: 560px; }
  .care__intro { gap: 60px; }
  .process-list { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-list li:nth-child(2) { border-right: 0; }
  .club__card { grid-template-columns: 1fr; }
  .club__copy { min-height: 430px; }
  .faq__grid { gap: 50px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 40px); --section: 4.5rem; --radius: 22px; }
  html { scroll-padding-top: 86px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .demo-bar__inner { justify-content: center; min-height: 30px; }
  .demo-bar__inner > span { font-size: .75rem; letter-spacing: -.01em; text-align: center; }
  .demo-bar__link { display: none; }
  .site-header__inner { min-height: 68px; }
  .main-nav { inset-block-start: 98px; }
  .brand svg { width: 34px; height: 34px; }
  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero__content { order: 1; min-height: 0; padding-block: 58px 48px; }
  .hero__media { position: relative; order: 2; height: 430px; }
  .hero__media::after { display: none; }
  .hero__media img { object-position: 65% center; }
  .hero__copy { padding: 0; }
  .hero__copy h1 { margin-bottom: 22px; font-size: clamp(3rem, 14vw, 4.1rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__stamp { right: 20px; bottom: 28px; width: 108px; height: 108px; }
  .hero__stamp span { max-width: 78px; font-size: .62rem; letter-spacing: .06em; }
  .trust-strip__grid { display: grid; grid-template-columns: 1fr; padding-block: 6px; }
  .trust-strip article, .trust-strip article:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .trust-strip article:last-child { border-bottom: 0; }
  .section-heading, .care__intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .care__intro .eyebrow { grid-column: auto; margin-bottom: -5px; }
  .services-grid { display: grid; grid-template-columns: 1fr; }
  .service-card, .service-card--photo { grid-column: auto; min-height: 340px; }
  .service-card--photo { min-height: 500px; }
  .service-card--photo img { height: 265px; }
  .service-card--wide { display: flex; min-height: 500px; }
  .service-card--wide img { min-height: 0; }
  .clinic__grid { grid-template-columns: 1fr; }
  .clinic__image img { min-height: 420px; }
  .clinic__image span { right: 12px; bottom: 14px; }
  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li, .process-list li + li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 0; border-top: 1px solid rgba(20, 35, 29, .2); border-right: 0; }
  .process-list h3 { margin: 0 0 7px; }
  .club__card { width: calc(100% - 24px); border-radius: 28px; }
  .club__copy { min-height: auto; padding: 42px 28px; }
  .club__benefits { grid-template-columns: 1fr; padding: 24px; }
  .club__benefits article:first-child, .club__disclaimer { grid-column: auto; }
  .club__benefits article { min-height: 150px; }
  .club__benefits h3 { margin-top: 30px; }
  .gallery-grid { display: flex; gap: 14px; margin-right: -20px; padding-right: 20px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .gallery-grid figure, .gallery-grid__wide { flex: 0 0 82vw; height: 450px; scroll-snap-align: start; }
  .gallery-grid__tall { grid-row: auto; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card--featured { grid-row: auto; min-height: 480px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .accordion__item button { min-height: 78px; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 400px; }
  .location__details { grid-template-columns: 1fr; }
  .location__actions { display: grid; }
  .location__actions .button { width: 100%; }
  .site-footer { padding-bottom: 28px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__bottom { flex-direction: column; }
  .mobile-booking { position: fixed; z-index: 70; right: 12px; bottom: max(10px, env(safe-area-inset-bottom)); left: 12px; display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 8px 18px; border: 0; border-radius: 18px; color: var(--white); background: var(--coral); box-shadow: 0 14px 34px rgba(20, 35, 29, .28); cursor: pointer; }
  .mobile-booking span { font-size: .75rem; font-weight: 800; letter-spacing: .06em; }
  .mobile-booking strong { font-size: .75rem; }
  body.is-locked .mobile-booking { display: none; }
  .booking-dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); margin: auto; border-radius: 24px; }
  .booking-dialog__layout { grid-template-columns: 1fr; max-height: calc(100dvh - 24px); }
  .booking-dialog__intro { padding: 38px 24px; }
  .booking-dialog__intro h2 { padding-right: 30px; }
  .booking-dialog__privacy { margin-top: 24px; }
  .booking-form, .booking-result { padding: 30px 24px 38px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-result__actions { display: grid; }
  .dialog-close { top: 10px; right: 10px; }
  .toast { bottom: 82px; }
}

@media (max-width: 390px) {
  :root { --shell: calc(100% - 32px); }
  .hero__media { height: 380px; }
  .hero__content { padding-top: 48px; }
  .service-card { padding: 28px; }
  .service-card--photo { padding: 0; }
  .service-card__body { padding: 26px 28px 30px; }
  .club__card { width: calc(100% - 16px); }
  .gallery-grid { margin-right: -16px; padding-right: 16px; }
}

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