:root {
  --navy: #082f3c;
  --navy-2: #0b3f4f;
  --teal: #0b8b91;
  --teal-bright: #24b8b6;
  --sky: #bdebea;
  --cream: #f7f5ee;
  --white: #ffffff;
  --ink: #153640;
  --muted: #637780;
  --gold: #eab676;
  --line: rgba(15, 64, 78, .13);
  --shadow: 0 28px 70px rgba(3, 45, 58, .14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 13px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "DM Sans", sans-serif; color: var(--ink); background: #fbfcfa; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 9999; background: white; padding: .75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.utility-bar { background: #062a35; color: rgba(255,255,255,.78); font-size: .78rem; letter-spacing: .02em; }
.utility-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.utility-inner p, .utility-links { display: flex; align-items: center; gap: .65rem; margin: 0; }
.utility-inner svg { width: 15px; height: 15px; color: var(--teal-bright); }
.utility-links { gap: 1.5rem; }
.utility-links a { display: inline-flex; align-items: center; gap: .45rem; transition: color .25s; }
.utility-links a:hover { color: white; }

.site-header { position: absolute; top: 38px; left: 0; width: 100%; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.16); transition: .35s ease; }
.site-header.scrolled { position: fixed; top: 0; background: rgba(5, 45, 57, .95); backdrop-filter: blur(18px); box-shadow: 0 12px 35px rgba(0,0,0,.13); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 250px; max-height: 55px; object-fit: contain; object-position: left center; }
.brand-fallback { color: white; display: none; align-items: center; gap: .65rem; line-height: 1.05; font-family: Manrope, sans-serif; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid var(--teal-bright); border-radius: 50%; font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 1.7rem; color: white; font-size: .91rem; font-weight: 600; }
.site-nav > a:not(.nav-portal) { position: relative; padding-block: 1rem; }
.site-nav > a:not(.nav-portal)::after { content: ""; position: absolute; left: 0; bottom: .62rem; width: 0; height: 2px; background: var(--teal-bright); transition: width .25s; }
.site-nav > a:hover::after { width: 100%; }
.nav-portal { display: inline-flex; align-items: center; gap: .45rem; padding: .78rem 1rem; border-radius: 100px; background: white; color: var(--navy); box-shadow: 0 10px 20px rgba(0,0,0,.12); transition: transform .25s, box-shadow .25s; }
.nav-portal:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.17); }
.nav-portal svg { width: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.13); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 20px; height: 2px; background: white; border-radius: 3px; transition: .25s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; background: var(--navy); }
.hero-slider { height: min(860px, 92vh); min-height: 690px; position: relative; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.04); transition: opacity .9s ease, transform 1.4s ease, visibility .9s; background-image: var(--hero-image); background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-slide:nth-child(2) { background-position: center 35%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,35,45,.94) 0%, rgba(6,49,61,.78) 42%, rgba(6,41,51,.22) 75%, rgba(5,30,39,.14) 100%), linear-gradient(0deg, rgba(5,38,48,.45), transparent 40%); }
.hero-content { height: 100%; display: flex; justify-content: center; flex-direction: column; position: relative; z-index: 3; color: white; padding-top: 110px; padding-bottom: 80px; }
.hero-content > * { max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; width: fit-content; padding: .52rem .85rem; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); text-transform: uppercase; font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.eyebrow svg { width: 15px; color: var(--teal-bright); }
.hero h1 { font: 800 clamp(3.4rem, 6.2vw, 6.55rem)/.97 Manrope, sans-serif; letter-spacing: -.065em; margin: 1.25rem 0 1.4rem; text-wrap: balance; }
.hero h1 em { color: var(--sky); font-style: normal; font-weight: 600; }
.hero-content > p { font-size: clamp(1rem, 1.5vw, 1.22rem); max-width: 650px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; padding: .82rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: .92rem; border: 1px solid transparent; transition: transform .25s, box-shadow .25s, background .25s; }
.btn svg { width: 18px; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--teal-bright); color: #052f39; box-shadow: 0 16px 35px rgba(19,184,182,.25); }
.btn-primary:hover { background: #55d3d0; box-shadow: 0 18px 42px rgba(19,184,182,.35); }
.btn-glass { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.btn-glass:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--navy); color: white; }
.btn-light { background: white; color: var(--navy); }
.slider-arrow { position: absolute; z-index: 5; top: 50%; translate: 0 -50%; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); color: white; background: rgba(6,40,50,.28); backdrop-filter: blur(8px); transition: .25s; }
.slider-arrow:hover { background: white; color: var(--navy); transform: scale(1.06); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }
.slider-arrow svg { width: 20px; }
.slider-status { position: absolute; z-index: 5; left: 50%; bottom: 50px; translate: -50% 0; display: flex; align-items: center; gap: 1rem; color: white; }
.slider-dots { display: flex; align-items: center; gap: .55rem; }
.dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); transition: .3s; }
.dot.active { width: 34px; border-radius: 10px; background: var(--teal-bright); }
.slide-count { font-size: .72rem; letter-spacing: .12em; opacity: .75; }
.slide-count strong { color: white; font-size: .88rem; }

.quick-access-wrap { position: relative; z-index: 8; margin-top: -34px; }
.quick-access { display: grid; grid-template-columns: repeat(4, 1fr); background: white; border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; }
.quick-card { min-height: 132px; display: flex; align-items: center; gap: .9rem; padding: 1.4rem; position: relative; border-right: 1px solid var(--line); transition: background .25s, color .25s; }
.quick-card:last-child { border-right: 0; }
.quick-card:hover { background: var(--navy); color: white; }
.quick-icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 50%; background: #e9f7f5; color: var(--teal); flex-shrink: 0; transition: .25s; }
.quick-card:hover .quick-icon { background: var(--teal-bright); color: var(--navy); transform: rotate(-6deg) scale(1.05); }
.quick-icon svg { width: 22px; }
.quick-card span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.25; }
.quick-card small { color: var(--muted); font-size: .72rem; margin-bottom: .3rem; transition: color .25s; }
.quick-card:hover small { color: rgba(255,255,255,.62); }
.quick-card strong { font: 700 1rem Manrope, sans-serif; }
.quick-arrow { width: 16px; margin-left: auto; color: #8aa1a7; }
.quick-card:hover .quick-arrow { color: var(--teal-bright); }

.section-pad { padding: 115px 0; }
.section-kicker { display: inline-block; color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; margin-bottom: .85rem; }
.section-kicker.light { color: var(--sky); }
h2 { font: 800 clamp(2.5rem, 4.6vw, 4.55rem)/1.03 Manrope, sans-serif; letter-spacing: -.055em; margin: 0; }
h2 span { color: var(--teal); }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 5rem; align-items: end; }
.intro-copy { padding-bottom: .35rem; }
.intro-copy p { font-size: 1.08rem; color: var(--muted); margin: 0 0 1.5rem; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; color: var(--navy); border-bottom: 1px solid rgba(8,47,60,.25); padding-bottom: .35rem; }
.text-link svg { width: 18px; transition: transform .25s; }
.text-link:hover svg { transform: translateX(5px); }
.stats-row { margin-top: 4.5rem; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: white; box-shadow: 0 18px 45px rgba(9,47,59,.06); }
.stat-card { min-height: 180px; padding: 1.6rem; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid var(--line); }
.stat-card:last-child { border-right: 0; }
.stat-card > strong { font: 800 3.2rem/1 Manrope, sans-serif; letter-spacing: -.05em; color: var(--navy); }
.stat-card > strong::after { content: "+"; color: var(--teal); font-size: 1.5rem; vertical-align: top; }
.stat-card:nth-child(2) > strong::after, .stat-card:nth-child(3) > strong::after { content: ""; }
.stat-card > span { margin-top: .7rem; color: var(--muted); line-height: 1.35; font-size: .88rem; max-width: 170px; }
.stat-highlight { background: linear-gradient(145deg, var(--teal), #086e77); color: white; justify-content: center; }
.stat-highlight svg { width: 28px; height: 28px; margin-bottom: 1rem; color: var(--sky); fill: rgba(189,235,234,.15); }
.stat-highlight > span { color: rgba(255,255,255,.64); margin: 0 0 .25rem; }
.stat-highlight > strong { color: white; font-size: 1.25rem; line-height: 1.25; letter-spacing: -.025em; }
.stat-highlight > strong::after { display: none; }

.services-section { background: var(--navy); color: white; position: relative; overflow: hidden; }
.services-section::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; right: -280px; top: -320px; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 5rem; position: relative; z-index: 2; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 1.03rem; }
.services-section .section-heading > p { color: rgba(255,255,255,.65); }
.services-section h2 span, .team-section h2 span { color: var(--sky); }
.services-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); overflow: hidden; position: relative; z-index: 2; }
.service-card { min-height: 300px; position: relative; background: #0a3b4a; padding: 2rem; display: flex; flex-direction: column; overflow: hidden; transition: background .35s, transform .35s; }
.service-card:hover { background: #0c4a5a; }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); right: -80px; bottom: -100px; transition: .4s; }
.service-card:hover::after { right: -40px; bottom: -70px; border-color: rgba(36,184,182,.4); }
.service-card.featured { grid-row: span 2; min-height: 601px; padding: 0; }
.service-image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s; }
.featured:hover .service-image { transform: scale(1.04); }
.featured .service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,35,44,.98) 0%, rgba(4,39,49,.64) 52%, rgba(4,39,49,.18) 100%); }
.service-content { position: relative; z-index: 2; margin-top: auto; padding: 2rem; }
.service-number { position: absolute; right: 1.65rem; top: 1.45rem; color: rgba(255,255,255,.28); font: 700 .73rem Manrope, sans-serif; letter-spacing: .14em; }
.service-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: rgba(36,184,182,.12); color: var(--teal-bright); margin-bottom: auto; transition: .3s; }
.service-card:hover .service-icon { background: var(--teal-bright); color: var(--navy); transform: rotate(-8deg); }
.service-icon svg { width: 23px; }
.service-card h3 { font: 700 1.3rem Manrope, sans-serif; margin: 1.7rem 0 .65rem; letter-spacing: -.02em; }
.service-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.35rem; color: var(--sky); font-size: .8rem; font-weight: 700; }
.card-link svg { width: 15px; transition: transform .25s; }
.service-card:hover .card-link svg { transform: translateX(5px); }
.featured .service-icon { background: var(--teal-bright); color: var(--navy); }
.featured h3 { font-size: 1.75rem; }
.featured p { max-width: 390px; }

.story-section { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 7rem; align-items: center; }
.story-visual { min-height: 650px; position: relative; }
.story-photo { position: absolute; background-size: cover; background-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.main-photo { inset: 0 100px 75px 0; }
.small-photo { width: 265px; height: 320px; right: 0; bottom: 0; border: 9px solid var(--cream); background-position: center; }
.floating-note { position: absolute; left: -30px; bottom: 22px; z-index: 3; width: 310px; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow); padding: 1.1rem; display: flex; align-items: center; gap: .9rem; }
.floating-note > svg { width: 44px; height: 44px; padding: .7rem; background: #e7f7f5; border-radius: 50%; color: var(--teal); flex-shrink: 0; }
.floating-note span { font-size: .78rem; color: var(--muted); line-height: 1.35; }
.floating-note strong { display: block; color: var(--ink); font: 700 .95rem Manrope, sans-serif; margin-bottom: .2rem; }
.orbit { position: absolute; border: 1px solid rgba(11,139,145,.22); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 110px; height: 110px; top: -36px; right: 48px; }
.orbit-two { width: 55px; height: 55px; top: 10px; right: 77px; background: rgba(36,184,182,.1); }
.story-copy .lead { font-size: 1.1rem; color: var(--ink); font-weight: 600; margin-top: 1.6rem; }
.story-copy > p:not(.lead) { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 1.7rem 0 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem 1rem; }
.check-list li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600; }
.check-list svg { width: 20px; height: 20px; padding: 3px; background: #dff3f1; color: var(--teal); border-radius: 50%; flex-shrink: 0; }

.journey-section { background: white; }
.section-heading.centered { text-align: center; flex-direction: column; align-items: center; gap: .75rem; }
.section-heading.centered > p { max-width: 650px; }
.journey-track { margin-top: 5rem; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; gap: 2rem; }
.journey-line { position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: #dbe6e7; overflow: hidden; }
.journey-line span { display: block; height: 100%; width: 25%; background: var(--teal); transition: width .45s ease; }
.journey-step { text-align: center; position: relative; z-index: 2; }
.journey-step button { width: 74px; height: 74px; border-radius: 50%; border: 5px solid white; background: #edf4f3; color: #6d878d; box-shadow: 0 0 0 1px #dbe6e7; display: grid; place-items: center; margin: 0 auto 1.5rem; position: relative; transition: .3s; }
.journey-step button > span { position: absolute; top: -10px; right: -6px; width: 25px; height: 25px; display: grid; place-items: center; background: white; border: 1px solid #d9e6e5; border-radius: 50%; font: 800 .65rem Manrope, sans-serif; }
.journey-step button svg { width: 25px; }
.journey-step.active button, .journey-step:hover button { background: var(--teal); color: white; box-shadow: 0 0 0 1px var(--teal), 0 15px 30px rgba(11,139,145,.2); transform: translateY(-4px); }
.journey-step small { color: var(--teal); text-transform: uppercase; font-weight: 800; letter-spacing: .14em; font-size: .65rem; }
.journey-step h3 { font: 700 1.15rem Manrope, sans-serif; margin: .35rem 0 .6rem; }
.journey-step p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }

.team-section { background: linear-gradient(135deg, #0a3b4a, #075663); color: white; overflow: hidden; position: relative; }
.team-section::after { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); left: -330px; bottom: -330px; box-shadow: 0 0 0 90px rgba(255,255,255,.025); }
.team-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6rem; align-items: center; position: relative; z-index: 2; }
.team-copy p { color: rgba(255,255,255,.67); font-size: 1.02rem; margin: 1.5rem 0 2rem; }
.doctor-cards { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; min-height: 520px; }
.doctor-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: rgba(255,255,255,.09); min-height: 520px; }
.doctor-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s; }
.doctor-card:hover img { transform: scale(1.025); }
.doctor-card > div { position: absolute; inset: auto 0 0; padding: 5rem 1.6rem 1.6rem; background: linear-gradient(0deg, rgba(5,35,43,.98), transparent); }
.doctor-card h3 { margin: 0; font: 700 1.25rem Manrope, sans-serif; }
.doctor-card p { margin: .15rem 0 .75rem; color: rgba(255,255,255,.7); font-size: .85rem; }
.doctor-card span { display: inline-flex; align-items: center; gap: .4rem; color: var(--sky); font-size: .78rem; font-weight: 700; }
.doctor-card span svg { width: 15px; }
.doctor-message { min-height: 520px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; background: var(--teal-bright); color: var(--navy); }
.doctor-message > div { position: static; padding: 0; background: none; }
.doctor-message > svg { width: 44px; height: 44px; opacity: .4; margin-bottom: 1.2rem; }
.doctor-message blockquote { margin: 0; font: 700 1.8rem/1.25 Manrope, sans-serif; letter-spacing: -.035em; }
.doctor-message p { color: rgba(4,50,60,.7); margin-top: 1.2rem; }

.locations-section { background: var(--cream); }
.location-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.location-card { border: 1px solid rgba(8,47,60,.11); border-radius: var(--radius-md); padding: 2rem; background: white; position: relative; overflow: hidden; min-height: 350px; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.location-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.location-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: #edf7f5; right: -85px; bottom: -95px; }
.location-top { display: flex; align-items: center; gap: .75rem; }
.location-pin { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; background: #e5f5f3; color: var(--teal); }
.location-pin svg { width: 20px; }
.location-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; font-weight: 800; letter-spacing: .1em; }
.location-card h3 { font: 800 1.8rem Manrope, sans-serif; margin: 1.6rem 0 .5rem; letter-spacing: -.035em; }
.location-card p { color: var(--muted); margin: 0; font-size: .9rem; }
.location-phone { display: flex; align-items: center; gap: .5rem; margin-top: 1.2rem; font-weight: 700; }
.location-phone svg { width: 17px; color: var(--teal); }
.location-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; position: relative; z-index: 2; color: var(--teal); font-weight: 800; font-size: .82rem; }
.location-link svg { width: 16px; }
.featured-location { background: var(--navy); color: white; transform: translateY(-15px); }
.featured-location:hover { transform: translateY(-23px); }
.featured-location p, .featured-location .location-label { color: rgba(255,255,255,.62); }
.featured-location .location-pin { background: var(--teal-bright); color: var(--navy); }
.featured-location .location-phone svg, .featured-location .location-link { color: var(--sky); }
.featured-location::after { background: rgba(255,255,255,.04); }

.testimonial-section { padding-top: 30px; background: var(--cream); }
.testimonial-card { min-height: 330px; border-radius: var(--radius-lg); background: white; display: grid; grid-template-columns: 270px 1fr 180px; align-items: center; gap: 2.5rem; padding: 2.5rem; box-shadow: 0 25px 65px rgba(5,45,57,.09); position: relative; overflow: hidden; }
.testimonial-card::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(11,139,145,.12); right: 110px; top: -170px; box-shadow: 0 0 0 55px rgba(11,139,145,.025); }
.testimonial-art { height: 220px; display: grid; place-items: center; border-radius: 50% 50% 45% 55% / 57% 43% 57% 43%; background: linear-gradient(145deg, #e2f5f2, #f4e7d7); }
.heart-ring { width: 105px; height: 105px; display: grid; place-items: center; border: 1px solid rgba(11,139,145,.25); border-radius: 50%; box-shadow: 0 0 0 18px rgba(11,139,145,.07), 0 0 0 36px rgba(11,139,145,.035); }
.heart-ring svg { width: 45px; height: 45px; color: var(--teal); fill: rgba(11,139,145,.14); }
.quote-icon { width: 34px; height: 34px; color: var(--teal); opacity: .35; }
.testimonial-copy blockquote { margin: .85rem 0; font: 700 clamp(1.55rem, 2.6vw, 2.35rem)/1.25 Manrope, sans-serif; letter-spacing: -.035em; }
.testimonial-copy p { color: var(--muted); }
.circle-link { width: 135px; height: 135px; justify-self: end; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; background: var(--navy); color: white; font: 700 .86rem Manrope, sans-serif; gap: .4rem; transition: transform .3s, background .3s; position: relative; z-index: 2; }
.circle-link:hover { transform: rotate(-7deg) scale(1.05); background: var(--teal); }
.circle-link svg { width: 18px; color: var(--sky); }

.contact-section { background: var(--cream); padding: 0 0 95px; }
.contact-panel { border-radius: var(--radius-lg); background: linear-gradient(135deg, #0b7f86, #075663); color: white; padding: 4rem; display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; position: relative; overflow: hidden; }
.contact-panel::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; left: -260px; bottom: -270px; box-shadow: 0 0 0 70px rgba(255,255,255,.035); }
.contact-copy, .contact-actions { position: relative; z-index: 2; }
.contact-copy h2 span { color: var(--sky); }
.contact-copy p { color: rgba(255,255,255,.72); margin: 1.3rem 0 0; }
.contact-actions { display: grid; gap: .75rem; }
.contact-action { min-height: 88px; padding: 1rem 1.15rem 1rem 1.35rem; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); transition: background .25s, transform .25s; }
.contact-action:hover { background: white; color: var(--navy); transform: translateX(7px); }
.contact-action span { display: flex; flex-direction: column; }
.contact-action small { color: rgba(255,255,255,.58); font-size: .72rem; margin-bottom: .1rem; transition: color .25s; }
.contact-action:hover small { color: var(--muted); }
.contact-action strong { font: 700 1.05rem Manrope, sans-serif; }
.contact-action > svg { width: 42px; height: 42px; padding: .72rem; border-radius: 50%; background: var(--teal-bright); color: var(--navy); }

.site-footer { background: #052833; color: white; padding: 75px 0 25px; }
.footer-top { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 4rem; }
.footer-brand .brand img { width: 245px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.56); font-size: .88rem; margin-top: 1.3rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links h3 { font: 700 .9rem Manrope, sans-serif; margin: 0 0 .55rem; color: var(--sky); }
.footer-links a { color: rgba(255,255,255,.58); font-size: .82rem; transition: color .25s, transform .25s; }
.footer-links a:hover { color: white; transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.11); margin-top: 4rem; padding-top: 1.4rem; color: rgba(255,255,255,.42); font-size: .72rem; }

.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--teal-bright); color: var(--navy); display: grid; place-items: center; box-shadow: 0 14px 32px rgba(6,55,66,.25); z-index: 90; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2), .location-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .location-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .08s; }
.services-grid .reveal:nth-child(5) { transition-delay: .16s; }
.services-grid .reveal:nth-child(6) { transition-delay: .24s; }
.services-grid .reveal:nth-child(7) { transition-delay: .16s; }
.services-grid .reveal:nth-child(8) { transition-delay: .24s; }

@media (max-width: 1100px) {
  .site-nav { gap: 1.05rem; font-size: .84rem; }
  .brand img { width: 215px; }
  .quick-access { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 4rem; }
  .team-grid { gap: 3rem; }
  .testimonial-card { grid-template-columns: 210px 1fr 130px; }
  .footer-top { gap: 2rem; }
}

@media (max-width: 900px) {
  .utility-links a:last-child { display: none; }
  .menu-toggle { display: flex; z-index: 102; }
  .site-nav { position: fixed; inset: 0; padding: 115px 28px 40px; background: rgba(5,40,51,.985); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; transform: translateX(100%); transition: transform .35s ease; z-index: 101; }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a { font: 700 1.3rem Manrope, sans-serif; padding: 1rem .25rem !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav > a::after { display: none; }
  .nav-portal { margin-top: 1rem; border-bottom: 0 !important; justify-content: center; }
  .hero-slider { min-height: 720px; height: 85vh; }
  .hero-content { padding-top: 120px; }
  .slider-arrow { display: none; }
  .slider-status { bottom: 42px; }
  .intro-grid, .section-heading, .story-grid, .team-grid, .contact-panel { grid-template-columns: 1fr; display: grid; gap: 2.2rem; }
  .section-heading { align-items: start; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: 0; }
  .stat-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-copy { max-width: 670px; }
  .story-visual { max-width: 680px; width: 100%; margin-inline: auto; }
  .journey-track { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .journey-line { display: none; }
  .doctor-cards { max-width: 680px; }
  .location-grid { grid-template-columns: 1fr; }
  .featured-location, .featured-location:hover { transform: none; }
  .testimonial-card { grid-template-columns: 160px 1fr; }
  .circle-link { grid-column: 1 / -1; justify-self: center; width: 115px; height: 115px; }
  .contact-panel { padding: 3rem; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1200px); }
  .utility-inner { justify-content: center; min-height: 34px; }
  .utility-links { display: none; }
  .site-header { top: 34px; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 190px; }
  .hero-slider { min-height: 700px; height: 88vh; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,35,45,.94), rgba(6,49,61,.65)), linear-gradient(0deg, rgba(5,38,48,.55), transparent 55%); }
  .hero-content { padding-top: 110px; padding-bottom: 95px; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.1rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .quick-access-wrap { margin-top: 0; padding: 18px 0 0; background: var(--cream); }
  .quick-access { grid-template-columns: 1fr; }
  .quick-card { min-height: 103px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .quick-card:last-child { border-bottom: 0 !important; }
  .section-pad { padding: 80px 0; }
  h2 { font-size: clamp(2.3rem, 11vw, 3.3rem); }
  .intro-grid { gap: 1.5rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 145px; }
  .stat-card:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { min-height: 500px; grid-row: auto; }
  .service-card { min-height: 275px; }
  .story-visual { min-height: 510px; }
  .main-photo { inset: 0 45px 65px 0; }
  .small-photo { width: 190px; height: 230px; }
  .floating-note { left: 8px; bottom: 14px; width: calc(100% - 45px); }
  .check-list { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .journey-step { display: grid; grid-template-columns: 74px 1fr; text-align: left; gap: 1.2rem; align-items: start; }
  .journey-step button { margin: 0; }
  .doctor-cards { grid-template-columns: 1fr; min-height: 0; }
  .doctor-card, .doctor-message { min-height: 460px; }
  .testimonial-card { grid-template-columns: 1fr; text-align: center; padding: 1.5rem; }
  .testimonial-art { width: 210px; height: 210px; justify-self: center; }
  .quote-icon { margin-inline: auto; }
  .contact-panel { padding: 2rem 1.4rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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

/* =========================================================
   MOBILE MENU FIX
   Keeps the slide-out navigation above the page and prevents
   the sticky header's backdrop filter from trapping the menu.
   ========================================================= */
@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(2, 24, 31, .58);
  }

  .site-header,
  .site-header.scrolled {
    z-index: 9999;
  }

  /* backdrop-filter creates a containing block for fixed children
     on some mobile browsers, so disable it for the mobile header. */
  .site-header.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 10002;
    flex: 0 0 44px;
  }

  .site-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(88vw, 390px);
    height: 100vh;
    height: 100dvh;
    padding: 118px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #052833;
    box-shadow: -24px 0 60px rgba(0, 0, 0, .28);
    transform: translate3d(105%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform .35s ease,
      opacity .25s ease,
      visibility 0s linear .35s;
    z-index: 10001;
  }

  .site-nav.open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: .9rem .25rem !important;
    color: #fff;
    font: 700 1.16rem/1.25 Manrope, sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav > a::after {
    display: none !important;
  }

  .site-nav .nav-portal {
    justify-content: center;
    margin-top: 1.25rem;
    padding: .9rem 1rem !important;
    color: var(--navy);
    background: #fff;
    border: 0 !important;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: min(92vw, 390px);
    padding: 104px 22px 32px;
  }
}
