@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #061d2b;
  --ink-2: #0a3044;
  --ink-3: #12465a;
  --teal: #00c7df;
  --teal-deep: #00a9c2;
  --ice: #eaf8fb;
  --mist: #f4f8f9;
  --white: #fff;
  --muted: #5e717b;
  --line: rgba(6, 29, 43, .12);
  --radius-sm: .65rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 24px 60px rgba(4, 31, 45, .14);
  --shell: min(1680px, calc(100% - clamp(2.5rem, 6vw, 7rem)));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 400 1rem/1.65 'DM Sans', sans-serif; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .6rem; font-family: 'Manrope', sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.shell { width: var(--shell); margin-inline: auto; }
.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; top: .75rem; left: .75rem; z-index: 100; padding: .75rem 1rem; color: var(--ink); background: var(--white); border-radius: .5rem; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { display: flex; gap: .6rem; align-items: center; margin-bottom: .75rem; color: var(--teal-deep); font-size: .8rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 1.8rem; height: 2px; background: currentColor; }
.lead { max-width: 700px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.accent { color: var(--teal); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-soft { background: var(--mist); }
.section-dark { color: var(--white); background: var(--ink); background-image: radial-gradient(circle at 12% 18%, rgba(0,199,223,.12), transparent 32%), linear-gradient(125deg, rgba(255,255,255,.025) 25%, transparent 25% 50%, rgba(255,255,255,.018) 50% 75%, transparent 75%); background-size: auto, 26px 26px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.25rem; }
.section-head p { max-width: 580px; color: var(--muted); }
.section-dark .section-head p { color: #b7ccd5; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button { display: inline-flex; min-height: 3.2rem; padding: .85rem 1.25rem; align-items: center; justify-content: center; gap: .6rem; color: #001e2b; background: var(--teal); border: 1px solid var(--teal); border-radius: .65rem; font-weight: 800; line-height: 1; box-shadow: 0 10px 28px rgba(0,199,223,.18); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: #19d6eb; }
.button-small { min-height: 2.7rem; padding: .7rem 1rem; font-size: .88rem; }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); box-shadow: none; }
.button-outline:hover { color: var(--white); background: var(--ink); }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.7); box-shadow: none; }
.button-outline-light:hover { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--teal-deep); font-weight: 800; }

.notice-bar { padding: .35rem 0; color: #c9e9ef; background: #02141f; font-size: .77rem; text-align: center; }
.notice-bar span { margin: 0 .55rem; color: var(--teal); }
.site-header { position: sticky; top: 0; z-index: 50; color: var(--white); background: rgba(5, 28, 41, .96); border-bottom: 1px solid rgba(255,255,255,.11); backdrop-filter: blur(16px); }
.nav-shell { display: flex; min-height: 4.7rem; align-items: center; gap: 1.3rem; }
.brand { display: inline-flex; min-width: 220px; align-items: center; gap: .65rem; color: var(--white); }
.brand span:last-child { display: flex; flex-direction: column; }
.brand strong { font: 800 1.45rem/1 'Manrope', sans-serif; letter-spacing: .24em; }
.brand small { margin-top: .2rem; font-size: .52rem; font-weight: 700; letter-spacing: .085em; }
.brand-mark { position: relative; width: 38px; height: 27px; }
.brand-mark i { position: absolute; bottom: 2px; width: 19px; height: 19px; border-top: 3px solid var(--teal); border-left: 3px solid var(--teal); transform: rotate(45deg); }
.brand-mark i:nth-child(1) { left: 0; bottom: -1px; border-color: var(--white); }
.brand-mark i:nth-child(2) { left: 11px; bottom: 5px; }
.brand-mark i:nth-child(3) { left: 21px; bottom: -1px; border-color: var(--white); }
.primary-nav { display: flex; margin-left: auto; align-items: center; gap: 1.2rem; }
.primary-nav a { position: relative; padding: 1.65rem 0 1.5rem; color: #d5e3e8; font-size: .86rem; font-weight: 600; }
.primary-nav a::after { content: ''; position: absolute; right: 0; bottom: 1.1rem; left: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .2s; }
.primary-nav a:hover, .primary-nav a[aria-current] { color: var(--white); }
.primary-nav a:hover::after, .primary-nav a[aria-current]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.phone-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; font-weight: 700; white-space: nowrap; }
.phone-link svg { color: var(--teal); }
.nav-toggle { display: none; width: 2.8rem; height: 2.8rem; margin-left: auto; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: .55rem; place-items: center; }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; color: var(--white); background: var(--ink); isolation: isolate; overflow: hidden; }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { content: ''; background: linear-gradient(90deg, rgba(2,21,32,.98) 0%, rgba(2,21,32,.85) 37%, rgba(2,21,32,.2) 70%, rgba(2,21,32,.35)), linear-gradient(0deg, rgba(4,26,38,.8), transparent 40%); }
.hero-copy { width: var(--shell); max-width: none; padding: 7rem 0 8.5rem; }
.hero h1 { max-width: 1120px; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero .lead { max-width: 760px; color: #d5e5ea; }
.trust-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.6rem; }
.trust-pill { display: flex; max-width: 210px; align-items: center; gap: .7rem; padding: .75rem .9rem; color: #d8e9ed; background: rgba(3,31,44,.7); border: 1px solid rgba(255,255,255,.14); border-radius: .7rem; backdrop-filter: blur(10px); font-size: .8rem; font-weight: 700; }
.trust-pill svg { flex: 0 0 auto; color: var(--teal); }
.scroll-cue { position: absolute; right: max(2rem, calc((100vw - 1680px) / 2)); bottom: 2.2rem; display: flex; align-items: center; gap: .7rem; color: #d7e5e9; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: bottom right; }
.scroll-cue::after { content: ''; width: 3.5rem; height: 1px; background: var(--teal); }

.proof-strip { position: relative; z-index: 2; width: 100%; margin-top: -3.2rem; color: var(--white); background: var(--ink-2); box-shadow: var(--shadow); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); width: var(--shell); margin-inline: auto; color: var(--white); background: var(--ink-2); }
.proof-grid > div { padding: 1.8rem clamp(1rem, 2vw, 2.25rem); border-right: 1px solid rgba(255,255,255,.1); }
.proof-grid > div:last-child { border: 0; }
.proof-grid strong { display: block; color: var(--teal); font: 800 1.45rem/1.1 'Manrope', sans-serif; }
.proof-grid span { display: block; margin-top: .35rem; color: #c7dbe1; font-size: .8rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 325px; overflow: hidden; color: var(--white); background: var(--ink-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card::after { content: ''; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(2,23,34,.97)); }
.service-card:hover img { transform: scale(1.05); }
.service-card div { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; }
.service-card h3 { margin: 0; font-size: 1.05rem; }
.service-card small { color: #b9d3da; }
.card-arrow { position: absolute; right: 0; bottom: 0; display: grid; width: 2rem; height: 2rem; color: var(--teal); border: 1px solid currentColor; border-radius: 50%; place-items: center; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-card { min-height: 185px; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 34px rgba(5,41,57,.06); }
.feature-icon { display: grid; width: 3rem; height: 3rem; margin-bottom: 1.1rem; color: var(--ink); background: var(--ice); border-radius: .8rem; place-items: center; }
.feature-icon svg { width: 1.55rem; height: 1.55rem; color: var(--teal-deep); }
.feature-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.condition-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; }
.condition-card { position: relative; min-height: 215px; overflow: hidden; color: var(--white); background: var(--ink); border-radius: .85rem; }
.condition-card img { width: 100%; height: 100%; object-fit: cover; }
.condition-card::after { content: ''; position: absolute; inset: 25% 0 0; background: linear-gradient(transparent, rgba(2,24,35,.94)); }
.condition-card span { position: absolute; z-index: 1; right: .85rem; bottom: .8rem; left: .85rem; font: 700 .86rem/1.2 'Manrope', sans-serif; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-media { min-height: 590px; }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; }
.split-media-portrait img { object-position: center 38%; }
.split-copy { display: flex; padding: clamp(3rem, 7vw, 6rem); flex-direction: column; justify-content: center; background: var(--white); }
.split-copy .lead { font-size: 1.05rem; }
.check-list { display: grid; margin: 1.3rem 0 0; padding: 0; list-style: none; gap: .8rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: var(--muted); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-deep); font-weight: 900; }

.review-band { position: relative; overflow: hidden; }
.review-layout { display: grid; grid-template-columns: .85fr 1.65fr; gap: 2.25rem; align-items: center; }
.rating-large { color: #ffc840; font-size: 1.6rem; letter-spacing: .12em; }
.review-summary strong { display: block; margin-top: .5rem; font: 800 2rem/1.1 'Manrope', sans-serif; }
.review-summary p { color: #b9ced5; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.review-card { padding: 1.5rem; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.review-card h3 { color: var(--teal); }
.review-card p { color: #c6d8de; font-size: .9rem; }

.insurance { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; align-items: center; }
.insurance-image { min-height: 390px; overflow: hidden; border-radius: var(--radius-lg); }
.insurance-image img { width: 100%; height: 100%; object-fit: cover; }
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }
.badge { padding: .5rem .75rem; color: var(--ink-2); background: var(--ice); border-radius: 999px; font-size: .78rem; font-weight: 800; }

.page-hero { position: relative; min-height: 470px; display: flex; color: var(--white); background: var(--ink); align-items: end; overflow: hidden; isolation: isolate; }
.page-hero > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(2,22,33,.96), rgba(2,22,33,.52) 60%, rgba(2,22,33,.18)); }
.page-hero .shell { padding: 5rem 0; }
.page-hero p { max-width: 820px; color: #d6e5e9; font-size: 1.12rem; }
.crumbs { margin-bottom: 1rem; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.service-list { display: grid; gap: 1.25rem; }
.service-row { display: grid; grid-template-columns: 260px 1fr auto; gap: 1.6rem; align-items: center; padding: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.service-row img { width: 260px; height: 185px; object-fit: cover; border-radius: .75rem; }
.service-row p { margin: 0; color: var(--muted); }
.service-row .button { white-space: nowrap; }
.service-group + .service-group { margin-top: 4rem; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.audience-card { padding: 1.7rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.audience-card span { display: inline-block; margin-bottom: 1rem; color: var(--teal-deep); font: 800 .75rem 'Manrope', sans-serif; letter-spacing: .1em; }
.audience-card p { margin: 0; color: var(--muted); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: steps; }
.step { position: relative; padding: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); counter-increment: steps; }
.step::before { content: '0' counter(steps); display: block; margin-bottom: 2rem; color: var(--teal-deep); font: 800 1.6rem 'Manrope', sans-serif; }
.step p { color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.team-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.team-card img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; }
.team-card div { padding: 1.1rem; }
.team-card p { margin: 0; color: var(--teal-deep); font-size: .82rem; font-weight: 800; }

.profile-stack { display: grid; border-top: 1px solid var(--line); }
.profile { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); gap: clamp(2rem, 5vw, 5rem); padding: clamp(3.5rem, 7vw, 7rem) 0; align-items: center; border-bottom: 1px solid var(--line); }
.profile-reverse .profile-media { order: 2; }
.profile-media { min-height: 620px; overflow: hidden; background: var(--ink-2); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.profile-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center top; }
.profile-media-wide img { object-position: center; }
.profile-copy { max-width: 900px; }
.profile-copy > p:not(.eyebrow):not(.profile-role) { color: var(--muted); }
.profile-role { margin-bottom: 1.4rem; color: var(--teal-deep); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.profile-role span { padding-inline: .4rem; color: var(--muted); }
.profile-quote { margin: 1.75rem 0 0; padding: 1.5rem 1.6rem; color: var(--ink); background: var(--ice); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; font: 600 1.05rem/1.7 'Manrope', sans-serif; }
.feature-number { display: block; margin-bottom: 1.5rem; color: var(--teal-deep); font: 800 1rem/1 'Manrope', sans-serif; letter-spacing: .08em; }
.section-dark .feature-number { color: var(--teal); }

.booking-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.booking-card { display: flex; min-height: 320px; padding: 1.7rem; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(5,41,57,.07); }
.booking-card.featured { grid-column: span 2; color: var(--white); background: linear-gradient(135deg, var(--ink), var(--ink-3)); border-color: transparent; }
.booking-card h3 { margin-top: .45rem; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.booking-card p { color: var(--muted); }
.booking-card.featured p { color: #c8dce2; }
.booking-card .button { margin-top: auto; align-self: flex-start; }
.visit-time { color: var(--teal-deep); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.booking-card.featured .visit-time { color: var(--teal); }

.gallery-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(5, 1fr); gap: .55rem; }
.gallery-item { padding: 0; overflow: hidden; background: var(--ink); border: 0; border-radius: .65rem; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-item:hover img { opacity: .88; transform: scale(1.04); }
.gallery-item.item-0, .gallery-item.item-7 { grid-column: span 2; grid-row: span 2; }
.gallery-item.item-0 img, .gallery-item.item-7 img { min-height: 390px; }
.lightbox { width: min(1000px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; overflow: visible; background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(1,16,24,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 2rem); object-fit: contain; border-radius: .7rem; }
.lightbox-close { position: absolute; z-index: 2; top: .75rem; right: .75rem; display: grid; width: 2.75rem; height: 2.75rem; color: var(--white); background: rgba(2,26,38,.75); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; place-items: center; cursor: pointer; }

.faq-list { border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq button { display: flex; width: 100%; padding: 1.35rem 0; align-items: center; justify-content: space-between; gap: 1rem; background: transparent; border: 0; font: 700 1.05rem 'Manrope', sans-serif; text-align: left; cursor: pointer; }
.faq button::after { content: '+'; color: var(--teal-deep); font-size: 1.6rem; font-weight: 400; }
.faq.open button::after { content: '−'; }
.faq div { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }
.faq.open div { max-height: 250px; }
.faq div p { padding: 0 2rem 1.4rem 0; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; }
.contact-card { padding: 2rem; background: var(--ink); color: var(--white); border-radius: var(--radius-lg); }
.contact-card > a, .contact-card > div { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-card svg { flex: 0 0 auto; color: var(--teal); }
.contact-card strong { display: block; }
.contact-card span { color: #c3d8df; }
.map-card { min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.area-cloud { display: flex; flex-wrap: wrap; gap: .75rem; }
.area-cloud span { padding: .75rem 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-weight: 700; }

.cta-panel { display: grid; grid-template-columns: 1.1fr auto; gap: 2rem; padding: clamp(2.5rem, 6vw, 4.5rem); align-items: center; color: var(--white); background: linear-gradient(120deg, var(--ink), var(--ink-3)); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.cta-panel p { max-width: 660px; color: #c2d7dd; }
.cta-panel .button-row { margin: 0; }

.visit-band { padding: 4.5rem 0; color: var(--white); background: linear-gradient(115deg, rgba(3,27,40,.97), rgba(4,56,72,.88)), url('images/formcontentday-40.webp') center/cover; }
.visit-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.visit-grid p { max-width: 620px; color: #c3d7de; }
.visit-details { display: grid; gap: .3rem; }
.visit-details > a, .visit-details > div { display: flex; gap: .9rem; padding: .8rem; border-radius: .6rem; }
.visit-details > a:hover { background: rgba(255,255,255,.07); }
.visit-details svg { flex: 0 0 auto; margin-top: .2rem; color: var(--teal); }
.visit-details span { color: #c8dce2; }
.visit-details strong { color: var(--white); }
.footer { padding: 4rem 0 1.4rem; color: var(--white); background: #02141f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr 1fr; gap: 3rem; }
.footer-grid > div:first-child p { max-width: 300px; margin-top: 1.1rem; color: #91adb7; font-size: .88rem; }
.footer h3 { margin-bottom: 1rem; color: var(--teal); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: .35rem 0; color: #c0d3da; font-size: .88rem; }
.footer-grid > div:not(:first-child) a:hover { color: var(--white); }
.footer-grid > div:last-child p { color: #c0d3da; font-size: .88rem; }
.footer-note { color: #7897a2 !important; }
.copyright { display: flex; margin-top: 3rem; padding-top: 1.25rem; justify-content: space-between; gap: 1rem; color: #7897a2; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

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

@media (max-width: 1080px) {
  .primary-nav { gap: .8rem; }
  .phone-link span { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .condition-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .booking-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile { grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr); gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1.2fr .7fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 2rem); }
  .notice-bar { display: none; }
  .nav-shell { min-height: 4.25rem; }
  .nav-toggle { display: grid; }
  .primary-nav { position: absolute; top: 100%; right: 0; left: 0; display: flex; height: calc(100dvh - 4.25rem); padding: 1.25rem 1rem; align-items: stretch; flex-direction: column; gap: 0; visibility: hidden; opacity: 0; background: rgba(2,20,31,.99); transform: translateY(-10px); transition: opacity .2s, transform .2s, visibility .2s; }
  .primary-nav.open { visibility: visible; opacity: 1; transform: none; }
  .primary-nav a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1.05rem; }
  .primary-nav a::after { display: none; }
  .nav-actions .phone-link { display: none; }
  .hero { min-height: 760px; align-items: end; }
  .hero-copy { padding: 7rem 0 5.2rem; }
  .hero-media::after { background: linear-gradient(0deg, rgba(2,21,32,.98) 5%, rgba(2,21,32,.58) 62%, rgba(2,21,32,.32)); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .section-head { align-items: start; flex-direction: column; }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 480px; }
  .split-copy { padding: 3.5rem 1rem; }
  .review-layout, .insurance, .contact-layout, .visit-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 180px 1fr; }
  .service-row img { width: 180px; height: 160px; grid-row: span 2; }
  .service-row .button { justify-self: start; }
  .audience-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile-reverse .profile-media { order: 0; }
  .profile-media, .profile-media img { min-height: 520px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .button-row { margin-top: .5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 1.4rem); }
  body { font-size: 1rem; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 2.75rem); }
  .brand { min-width: 0; }
  .brand strong { font-size: 1.15rem; }
  .brand small { font-size: .43rem; }
  .brand-mark { width: 32px; transform: scale(.85); transform-origin: left; }
  .nav-actions .button { display: none; }
  .hero { min-height: 700px; }
  .hero-copy { padding: 5.8rem 0 4.5rem; }
  .hero .lead { font-size: 1rem; }
  .hero .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-pill { font-size: .72rem; }
  .trust-pill:last-child { grid-column: 1 / -1; }
  .scroll-cue { display: none; }
  .proof-strip { margin-top: -1.5rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 1.15rem; }
  .proof-grid strong { font-size: 1.2rem; }
  .section { padding: 3.8rem 0; }
  .service-grid, .feature-grid, .condition-grid, .audience-grid, .timeline { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .condition-grid { grid-template-columns: 1fr 1fr; }
  .condition-card { min-height: 190px; }
  .split-media { min-height: 420px; }
  .split-copy { padding: 3.5rem .7rem; }
  .page-hero { min-height: 420px; }
  .page-hero .shell { padding: 3.5rem 0; }
  .service-row { grid-template-columns: 1fr; padding: .8rem; }
  .service-row img { width: 100%; height: 230px; grid-row: auto; }
  .service-row .button { width: 100%; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .profile-media, .profile-media img { min-height: 460px; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-card.featured { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.item-0, .gallery-item.item-7 { grid-column: span 2; }
  .gallery-item img { min-height: 160px; }
  .gallery-item.item-0 img, .gallery-item.item-7 img { min-height: 330px; }
  .insurance-image { min-height: 310px; }
  .contact-card { padding: 1.3rem; }
  .map-card { min-height: 380px; }
  .cta-panel { padding: 2rem 1.3rem; }
  .visit-band { padding: 3.5rem 0; }
  .visit-grid { gap: 2.5rem; }
  .visit-grid .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .copyright { align-items: start; flex-direction: column; }
}
