
:root {
  --blue: #0061AF; --blue-d: #004B89; --navy: #062C52; --sky: #1A9DD8; --lime: #D3DF4E; --leaf: #6FA533; --orange: #F2801F; --orange-d: #C85A08;
  --paper: #F6F9FC; --mist: #EAF2F9; --ink: #13253A; --body: #3B4E62; --muted: #6A7C8E; --line: #DCE6EF; --white: #FFFFFF;
  --r-lg: 28px; --r-md: 18px; --r-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(6, 44, 82, .35);
  --head: 'Outfit', 'Segoe UI', system-ui, sans-serif; --text: 'Mulish', 'Segoe UI', system-ui, sans-serif;
  --wrap: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--text); font-size: 17px; line-height: 1.65; color: var(--ink); background: var(--paper); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.12; margin: 0; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 600; }
h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }
p { margin: 0; color: var(--body); }
a { color: var(--blue); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sec { padding: 96px 0; }
.sec.tight { padding: 64px 0; }
.sec.mist { background: var(--mist); }
.sec.navy { background: var(--navy); }
.sec.navy h2, .sec.navy h3 { color: #fff; }
.sec.navy p { color: #C3D6EA; }
.kicker { display: inline-block; font-family: var(--head); font-weight: 600; font-size: 16px; color: var(--orange-d); margin-bottom: 12px; }
.sec.navy .kicker { color: var(--lime); }
.lead { font-size: 19px; max-width: 64ch; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.head-row > div { max-width: 700px; }
.head-row p { margin-top: 14px; }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 18px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 15px 28px; font-family: var(--head); font-weight: 600; font-size: 16px; text-decoration: none; cursor: pointer; transition: background .2s, color .2s, transform .2s; white-space: nowrap; }
.btn:active { transform: scale(.98); }
.btn.primary { background: var(--blue); color: #fff; } .btn.primary:hover { background: var(--blue-d); }
.btn.warm { background: var(--orange); color: #fff; } .btn.warm:hover { background: var(--orange-d); }
.btn.ghost { background: transparent; color: var(--blue); box-shadow: inset 0 0 0 2px var(--blue); } .btn.ghost:hover { background: var(--blue); color: #fff; }
.btn.light { background: #fff; color: var(--navy); } .btn.light:hover { background: var(--lime); }
.btn.outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); } .btn.outline-light:hover { background: rgba(255,255,255,.12); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.link { font-family: var(--head); font-weight: 600; text-decoration: none; color: var(--blue); display: inline-flex; gap: 8px; align-items: center; }
.link svg { transition: transform .2s; } .link:hover svg { transform: translateX(4px); }

/* top bar + header */
.topbar { background: var(--navy); color: #C3D6EA; font-size: 14px; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: #C3D6EA; text-decoration: none; }
.topbar .em { color: var(--lime); font-weight: 700; }
header.site { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
header.site.scrolled { box-shadow: 0 8px 24px -16px rgba(6,44,82,.4); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height .25s; }
header.site.scrolled .navbar { height: 68px; }
.brand img { height: 56px; width: auto; transition: height .25s; }
header.site.scrolled .brand img { height: 46px; }
nav.main { display: flex; align-items: center; gap: 4px; }
nav.main > .item { position: relative; }
nav.main > .item > a, nav.main > .item > button { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 10px; font-family: var(--head); font-weight: 500; font-size: 16px; color: var(--ink); text-decoration: none; background: none; border: 0; cursor: pointer; }
nav.main > .item > a:hover, nav.main > .item > button:hover, nav.main > .item.open > button { background: var(--mist); color: var(--blue); }
nav.main > .item > a.active, nav.main > .item > button.active { color: var(--blue); box-shadow: inset 0 -3px 0 var(--orange); border-radius: 10px 10px 0 0; }
.drop { position: absolute; top: calc(100% + 4px); left: -8px; min-width: 260px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow); padding: 10px; display: none; z-index: 50; }
.drop::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
nav.main > .item:hover .drop, .item.open .drop { display: grid; }
.drop.wide { grid-template-columns: 1fr 1fr; min-width: 740px; gap: 16px; padding: 16px; }
.drop a { display: block; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; }
.drop a small { display: block; font-weight: 400; color: var(--muted); font-size: 13px; }
.drop a:hover { background: var(--mist); color: var(--blue); }
.drop-col { display: flex; flex-direction: column; gap: 2px; }
.drop-col { max-height: 70vh; overflow-y: auto; padding-right: 4px; scrollbar-width: thin; }
.drop-col-header { font-family: var(--head); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding: 4px 10px 6px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.drop-col a { display: block; padding: 6px 10px; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14px; }
.drop-col a:hover { background: var(--mist); color: var(--blue); }
.drop-col a.drop-all-btn { margin-top: 4px; background: var(--mist); color: var(--blue); font-weight: 700; font-size: 13.5px; text-align: center; }
.drop-col a.drop-all-btn:hover { background: var(--blue); color: #fff; }
.drawer-section-title { font-family: var(--head); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding: 8px 10px 4px 24px; margin-top: 4px; }
.drawer-therapy-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 10px 8px 24px; }
.drawer-therapy-tag { display: inline-block; font-size: 12.5px; font-weight: 500; color: var(--body); background: var(--mist); text-decoration: none; border-radius: 6px; padding: 4px 8px; border-left: 2px solid var(--navy); cursor: pointer; }
.drawer-therapy-tag:hover, .drawer-therapy-tag:focus-visible { background: var(--blue); color: #fff; }
.nav-cta { margin-left: 10px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.drawer { position: fixed; inset: 0; z-index: 80; display: none; }
.drawer.open { display: block; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(6,44,82,.5); }
.drawer .panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: #fff; padding: 22px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; animation: slidein .25s ease-out; }
@keyframes slidein { from { transform: translateX(40px); opacity: 0; } }
.drawer .panel a { padding: 12px 10px; border-radius: 10px; text-decoration: none; color: var(--ink); font-family: var(--head); font-weight: 500; font-size: 18px; }
.drawer .panel a.sub { font-family: var(--text); font-size: 15px; padding: 8px 10px 8px 24px; color: var(--body); }
.drawer .panel a:hover { background: var(--mist); }

/* hero */
.hero { position: relative; min-height: min(720px, 88vh); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--navy); }
.hero .slides { position: absolute; inset: 0; }
.hero .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; transform: scale(1.06); }
.hero .slide.on { opacity: 1; animation: drift 9s ease-out forwards; }
@keyframes drift { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,44,82,.15) 0%, rgba(6,44,82,.55) 45%, rgba(6,44,82,.94) 100%); }
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-top: 140px; padding-bottom: 56px; }
.hero .motto { font-family: var(--head); font-size: 20px; color: var(--lime); margin-bottom: 14px; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .intro { color: #DCE8F3; font-size: 19px; max-width: 54ch; margin: 20px 0 30px; }
.hero .caption { position: absolute; right: 24px; top: 24px; z-index: 2; font-size: 13px; background: rgba(6,44,82,.6); padding: 6px 12px; border-radius: 999px; color: #DCE8F3; }
.dots { display: flex; gap: 8px; margin-top: 34px; }
.dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.dots button.on { width: 34px; background: var(--lime); }

/* finder */
.finder { position: relative; z-index: 5; margin-top: -48px; }
.finder .box { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 30px 34px; display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: center; }
.finder h2 { font-size: 26px; }
.finder p { font-size: 15px; margin-top: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); border-radius: 999px; padding: 10px 16px; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; transition: all .2s; }
.chip:hover, .chip[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.stat { padding: 8px 28px; border-left: 2px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-family: var(--head); font-size: clamp(40px, 5vw, 60px); font-weight: 600; color: var(--blue); line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--body); font-size: 15px; }

/* media blocks */
.photo { border-radius: var(--r-lg); overflow: hidden; background: var(--mist); position: relative; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 16 / 10; }
.collage { position: relative; }
.collage .photo.b { position: absolute; width: 46%; right: -18px; bottom: -32px; border: 8px solid var(--paper); aspect-ratio: 1; }
.badge-float { position: absolute; left: 22px; top: 22px; background: var(--navy); color: #fff; border-radius: var(--r-md); padding: 16px 20px; }
.badge-float b { display: block; font-family: var(--head); font-size: 34px; color: var(--lime); line-height: 1; }
.badge-float span { font-size: 14px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 600; }
.checks svg { flex: 0 0 22px; margin-top: 3px; }

/* treatment cards */
.tcard { background: #fff; border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tcard .im { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.tcard .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tcard:hover .im img { transform: scale(1.05); }
.tcard .tx { padding: 20px 22px 22px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.tcard h3 { font-size: 20px; }
.arrow { flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--mist); color: var(--blue); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.tcard:hover .arrow { background: var(--orange); color: #fff; }
.tcard-text .tcard-icon { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%); display: flex; align-items: center; justify-content: center; font-size: 52px; color: rgba(255,255,255,0.35); }
.tcard-text .tx { flex-direction: column; align-items: flex-start; }
.tcard-text .row1 { display: flex; width: 100%; justify-content: space-between; align-items: center; }

/* explorer (treatments tabs) */
.explorer { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.tablist { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 100px; }
.tablist button, .tablist a { text-align: left; padding: 14px 18px; border-radius: 14px; border: 0; background: transparent; font-family: var(--head); font-size: 17px; font-weight: 500; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; text-decoration: none; transition: background .2s, color .2s; }
.tablist button:hover, .tablist a:hover { background: #fff; color: var(--blue); }
.tablist button[aria-selected="true"], .tablist a[aria-selected="true"], .tablist a.active { background: var(--blue) !important; color: #fff !important; }
.tablist button[aria-selected="true"] .tab-arr, .tablist a[aria-selected="true"] .tab-arr, .tablist a.active .tab-arr { opacity: 1; transform: translateX(3px); }
.tab-arr { font-size: 18px; opacity: 0.5; transition: transform .2s, opacity .2s; }
.panel-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); animation: fadein .35s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } }
.panel-card .im { aspect-ratio: 21 / 9; background: var(--mist); }
.panel-card .im img { width: 100%; height: 100%; object-fit: cover; }
.panel-card .bd { padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--mist); color: var(--navy); border-radius: 999px; padding: 6px 13px; font-size: 14px; font-weight: 600; }
.points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.point { background: var(--paper); border-radius: var(--r-sm); padding: 18px; }
.point h4 { font-size: 17px; color: var(--blue); margin-bottom: 6px; }
.point p { font-size: 15px; }

/* feature list */
.feat { padding: 26px; border-radius: var(--r-md); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.feat h3 { font-size: 20px; margin-bottom: 8px; }
.feat .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--lime); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.btn.outline-navy { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn.outline-navy:hover { background: var(--navy); color: #fff; }

/* people */
.person { position: relative; background: #fff; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.person .ph { aspect-ratio: 4 / 5; background: var(--mist); position: relative; overflow: hidden; }
.person .ph img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.person:hover .ph img { transform: scale(1.04); }
.initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 54px; font-weight: 600; color: var(--blue); background: linear-gradient(160deg, var(--mist), #D6E6F4); }
.person .tx { padding: 16px 18px 20px; }
.person h3 { font-size: 18px; }
.person p { font-size: 14px; margin-top: 4px; color: var(--orange-d); font-weight: 600; }
.btn-add-staff, .person.add-card { display: none !important; }
body.simhar-editing button.btn-add-staff { display: inline-flex !important; }
body.simhar-editing .person.add-card:not([hidden]) { display: flex !important; }
.person.add-card { border: 2px dashed var(--sky); background: rgba(26, 157, 216, 0.04); cursor: pointer; min-height: 260px; align-items: center; justify-content: center; transition: all .25s ease; user-select: none; }
.person.add-card:hover { background: rgba(26, 157, 216, 0.1); border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 25px -10px rgba(0, 97, 175, 0.25); }
.add-card-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 30px 20px; text-align: center; }
.add-card-inner .plus-circle { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 2px solid var(--sky); color: var(--sky); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(26, 157, 216, 0.18); transition: all .25s ease; }
.person.add-card:hover .plus-circle { background: var(--blue); border-color: var(--blue); color: #fff; transform: scale(1.1); }
.add-card-text { font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--navy); }
.btn-del-person { position: absolute; top: 10px; right: 10px; z-index: 5; width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(229, 57, 53, 0.9); color: #fff; font-size: 18px; line-height: 1; font-weight: bold; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.25); transition: transform 0.2s, background 0.2s; }
.btn-del-person:hover { background: #d32f2f; transform: scale(1.15); }
body.simhar-editing .btn-del-person { display: flex !important; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.team-search { position: relative; display: block; max-width: 360px; margin-bottom: 18px; }
.search { position: relative; }
.search input { border: 1.5px solid var(--line); border-radius: 999px; padding: 12px 16px 12px 42px; width: 100%; background: #fff; font-size: 16px; }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.empty { padding: 40px; text-align: center; color: var(--muted); background: #fff; border-radius: var(--r-md); }

/* testimonials */
.quotes { position: relative; }
.quote { display: none; animation: fadein .5s ease; }
.quote.on { display: block; }
.quote blockquote { margin: 0; font-family: var(--head); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.35; color: #fff; font-weight: 400; }
.quote cite { display: block; margin-top: 22px; font-style: normal; font-weight: 700; color: var(--lime); }
.q-ctrl { display: flex; gap: 10px; margin-top: 30px; align-items: center; }
.q-ctrl button.nav { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); background: transparent; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.q-ctrl button.nav:hover { background: rgba(255,255,255,.12); }
.rating { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.rating div { background: rgba(255,255,255,.08); border-radius: var(--r-md); padding: 18px 22px; }
.rating b { display: block; font-family: var(--head); font-size: 40px; color: #fff; line-height: 1; }
.rating span { color: #C3D6EA; font-size: 14px; }

/* branches */
.branch { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; padding: 40px 0; }
.branch + .branch { border-top: 1px solid var(--line); }
.branch.rev .photo { order: 2; }
.branch .photo { aspect-ratio: 4 / 3; }
.place { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-weight: 600; font-size: 15px; }
.bcard { background: #fff; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.bcard .im { aspect-ratio: 16 / 10; overflow: hidden; }
.bcard .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bcard:hover .im img { transform: scale(1.05); }
.bcard .tx { padding: 22px; }
.bcard p { font-size: 15px; margin-top: 6px; }

/* gallery */
.masonry { columns: 3 280px; column-gap: 16px; }
.masonry button { display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; border-radius: var(--r-sm); overflow: hidden; cursor: zoom-in; position: relative; background: var(--mist); break-inside: avoid; }
.masonry img { width: 100%; height: auto; transition: transform .5s; }
.masonry button:hover img { transform: scale(1.04); }
.masonry figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; color: #fff; font-size: 14px; font-weight: 600; text-align: left; background: linear-gradient(transparent, rgba(6,44,82,.85)); }
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(4,20,38,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); }
.lightbox img { max-height: 78vh; margin: 0 auto; border-radius: 10px; }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 14px; }
.lightbox .lb-btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox .lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 20px; right: 20px; } .lb-prev { left: 20px; top: 50%; } .lb-next { right: 20px; top: 50%; }

/* page hero */
.phero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.phero .wrap { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 72px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.phero h1 { color: #fff; font-size: clamp(38px, 5vw, 60px); }
.phero p { color: #C3D6EA; margin-top: 16px; font-size: 18px; max-width: 52ch; }
.crumbs { display: flex; gap: 8px; font-size: 14px; margin-bottom: 18px; color: #9FBAD6; }
.crumbs a { color: #9FBAD6; text-decoration: none; } .crumbs a:hover { color: #fff; }
.crumbs span:last-child { color: var(--lime); }
.phero .photo { aspect-ratio: 16 / 11; border: 6px solid rgba(255,255,255,.08); }
.phero .ring { position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(26,157,216,.12); }

/* cards generic */
.card { background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.card .im { aspect-ratio: 16 / 10; background: var(--mist); overflow: hidden; }
.card .im img { width: 100%; height: 100%; object-fit: cover; }
.card .tx { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .tx .link { margin-top: auto; padding-top: 6px; }
.meta { font-size: 14px; color: var(--muted); font-weight: 600; }
.vm { background: #fff; border-radius: var(--r-md); padding: 30px; border-top: 5px solid var(--sky); }
.vm:nth-child(2) { border-top-color: var(--orange); } .vm:nth-child(3) { border-top-color: var(--leaf); }
.vm h3 { margin-bottom: 10px; }
ol.mission { margin: 0; padding-left: 20px; color: var(--body); display: grid; gap: 8px; }
.values { display: grid; gap: 14px; }
.values div b { font-family: var(--head); color: var(--navy); }

/* accordion */
.acc { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); overflow: hidden; }
.acc-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 26px; background: none; border: 0; text-align: left; cursor: pointer; font-family: var(--head); font-size: 19px; font-weight: 500; color: var(--navy); }
.acc-item .pm { flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--mist); color: var(--blue); display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s, color .3s; }
.acc-item.open .pm { transform: rotate(45deg); background: var(--blue); color: #fff; }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-body p { padding: 0 26px 24px; }

/* forms */
.form { background: #fff; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 700; color: var(--ink); }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea { border: 1.5px solid #C9D7E5; border-radius: 12px; padding: 13px 15px; font-size: 16px; background: #fff; color: var(--ink); font-weight: 400; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px rgba(0,97,175,.15); }
.alert { border-radius: 12px; padding: 14px 18px; font-weight: 700; font-size: 15px; background: #FDEEDF; color: #8A3B00; }
.ok { background: #EEF6E3; color: #3D6A12; }

/* booking */
.book { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 32px; }
.steps div { font-size: 13px; font-weight: 700; color: var(--muted); }
.steps i { display: block; height: 6px; border-radius: 999px; background: var(--line); margin-bottom: 8px; transition: background .3s; }
.steps div.on { color: var(--navy); } .steps div.on i { background: var(--blue); }
.opt-grid { display: grid; gap: 10px; }
.opt { padding: 14px 18px; border-radius: 14px; border: 2px solid #C9D7E5; background: #fff; text-align: left; cursor: pointer; font-weight: 700; color: var(--ink); transition: all .15s; }
.opt:hover { border-color: var(--blue); }
.opt[aria-pressed="true"] { border-color: var(--blue); background: var(--blue); color: #fff; }
.date { display: flex; flex-direction: column; align-items: center; padding: 12px 4px; }
.date small { font-size: 12px; font-weight: 700; } .date b { font-family: var(--head); font-size: 24px; line-height: 1.1; }
.qlabel { font-family: var(--head); font-size: 19px; color: var(--navy); margin: 0 0 12px; font-weight: 600; }
.summary { background: var(--paper); border-radius: var(--r-sm); padding: 6px 22px; }
.summary div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary div:last-child { border-bottom: 0; }
.summary b { text-align: right; }
.side-card { border-radius: var(--r-md); padding: 26px; }
.side-card.warn { background: #FDEEDF; color: #6B3A10; border-left: 6px solid var(--orange); }
.side-card.warn h3 { color: #8A3B00; }
.side-card.navy { background: var(--navy); color: #C3D6EA; }
.side-card.navy h3 { color: #fff; }

/* cta band */
.cta { background: var(--blue); border-radius: var(--r-lg); padding: 56px; display: flex; justify-content: space-between; align-items: center; gap: 32px; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 50px solid rgba(211,223,78,.18); right: -120px; bottom: -160px; }
.cta h2 { color: #fff; max-width: 18ch; }
.cta p { color: #DCE8F3; margin-top: 12px; }
.cta .btn-row { position: relative; }

/* footer */
footer.site { background: var(--navy); color: #C3D6EA; padding-top: 80px; }
.fgrid4 { display: grid; grid-template-columns: 1.3fr 0.9fr 1fr 1.15fr 1.35fr; gap: 32px; }
footer h4 { color: #fff; font-size: 18px; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a { color: #C3D6EA; text-decoration: none; } footer a:hover { color: var(--lime); }
footer .about p { color: #C3D6EA; font-size: 15px; margin: 20px 0; }
.fcol summary { list-style: none; }
.fcol summary::-webkit-details-marker { display: none; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.socials a:hover { background: var(--blue); color: #fff; }
.ci { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; }
.ci svg { flex: 0 0 20px; margin-top: 3px; color: var(--lime); }
.ci a { color: #fff; font-weight: 700; }
.map { border-radius: var(--r-sm); overflow: hidden; margin-top: 8px; height: 150px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3); }
.fbar { border-top: 1px solid rgba(255,255,255,.1); margin-top: 60px; padding: 22px 0; font-size: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* floating */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fab a, .fab button { width: 56px; height: 56px; border-radius: 50%; border: 0; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); cursor: pointer; color: #fff; }
.fab .wa { background: #25D366; }
.fab .call { background: var(--orange); }
.fab .top { background: var(--navy); width: 44px; height: 44px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.fab .top.show { opacity: 1; pointer-events: auto; }

.page { display: none; }
.page.on { display: block; animation: pagein .4s ease; }
@keyframes pagein { from { opacity: 0; } }

/* responsive */
@media (max-width: 1100px) {
  nav.main { display: none; }
  .burger { display: flex; }
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .explorer { grid-template-columns: 1fr; }
  .tablist { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .tablist button { white-space: nowrap; background: #fff; }
  .book { grid-template-columns: 1fr; }
  .fgrid4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .sec { padding: 64px 0; }
  .split, .branch, .phero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .branch.rev .photo { order: 0; }
  .g3, .g2 { grid-template-columns: 1fr; }
  .finder .box { grid-template-columns: 1fr; padding: 24px; }
  .stats { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .points { grid-template-columns: 1fr; }
  .fgrid4 { grid-template-columns: 1fr 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 36px; }
  .topbar .hide-sm { display: none; }
  .collage .photo.b { right: 0; }
  .team-search { max-width: none; }
  .form { padding: 26px; }
  .fgrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps div span { display: none; }
}
@media (max-width: 520px) {
  .g4 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fgrid4 { grid-template-columns: 1fr; }
  .person .tx { padding: 12px; } .person h3 { font-size: 16px; }
  .brand img { height: 44px; }
  .hero .wrap { padding-top: 100px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.stat b span, .rating b span { display: inline; font-size: inherit; color: inherit; margin: 0; }
/* ---------- carousel ---------- */
.carousel { position: relative; }
.c-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 6px 0 10px; }
.c-track::-webkit-scrollbar { display: none; }
.c-track > * { flex: 0 0 calc((100% - 66px) / 4); scroll-snap-align: start; }
.c-track.wide > * { flex: 0 0 calc((100% - 44px) / 3); }
.c-ctrl { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.c-ctrl button.nv { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--blue); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s, opacity .2s; }
.c-ctrl button.nv:hover { background: var(--blue); color: #fff; }
.c-ctrl button.nv[disabled] { opacity: .35; cursor: default; }
.sec.navy .c-ctrl button.nv { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.sec.navy .c-ctrl button.nv:hover { background: rgba(255,255,255,.14); }
.c-dots { display: flex; gap: 8px; margin-left: 6px; }
.c-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: width .3s, background .3s; }
.c-dots button.on { width: 28px; background: var(--blue); }
.sec.navy .c-dots button { background: rgba(255,255,255,.28); } .sec.navy .c-dots button.on { background: var(--lime); }
.c-count { margin-left: auto; font-weight: 700; color: var(--muted); font-size: 14px; }
.sec.navy .c-count { color: #9FBAD6; }
.c-track.grab { cursor: grab; } .c-track.grabbing { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.c-track .person .ph { aspect-ratio: 1 / 1; }

/* treatment card with hover blurb */
.tcard .blurb { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s ease, margin .4s; font-size: 14.5px; line-height: 1.6; color: var(--body); margin: 0; }
.tcard:hover .blurb, .tcard:focus-visible .blurb, .tcard.open .blurb { max-height: 140px; opacity: 1; margin-top: 8px; }
.tcard .tx { flex-direction: column; align-items: flex-start; }
.tcard .row1 { display: flex; justify-content: space-between; align-items: center; gap: 10px; width: 100%; }

/* vision mission */
.vmgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vmcard { background: #fff; border-radius: var(--r-md); padding: 34px; border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.vmcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vmcard::after { content: ''; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--mist); z-index: 0; }
.vmcard > * { position: relative; z-index: 1; }
.vmcard .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vmcard:nth-child(2) .ic { background: var(--orange); } .vmcard:nth-child(3) .ic { background: var(--leaf); }
.vmcard h3 { font-size: 24px; margin-bottom: 12px; }
.vmcard ol { margin: 0; padding-left: 20px; color: var(--body); display: grid; gap: 8px; font-size: 15.5px; }
.vmcard .val { display: grid; gap: 12px; }
.vmcard .val b { font-family: var(--head); color: var(--navy); font-size: 17px; }
.vmcard .val p { font-size: 15px; }

/* detail pages */
.detail { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.prose { display: flex; flex-direction: column; gap: 18px; }
.prose p { font-size: 17.5px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--mist); color: var(--navy); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; }
.note { background: var(--mist); border-left: 5px solid var(--sky); border-radius: 12px; padding: 18px 22px; font-size: 15.5px; color: var(--body); }
@media (max-width: 1100px) { .c-track > * { flex: 0 0 calc((100% - 44px) / 3); } .c-track.wide > * { flex: 0 0 calc((100% - 22px) / 2); } .detail { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .c-track { gap: 14px; margin: 0 -18px; padding: 4px 18px 10px; }
  .c-track > *, .c-track.wide > * { flex: 0 0 78%; }
  .c-ctrl { margin-top: 16px; }
  .c-ctrl button.nv { width: 44px; height: 44px; }
  .vmgrid { grid-template-columns: 1fr; }
  .vmcard { padding: 26px; }
}
.noimg { background: linear-gradient(150deg, var(--mist), #D6E6F4); position: relative; }
.noimg::after { content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 18px; text-align: center; color: #6A7C8E; font-size: 13px; font-weight: 700; line-height: 1.5; }
.phero .noimg::after, .hero .noimg::after { color: #9FBAD6; }
/* credentials carousel */
.acc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px; display: flex; flex-direction: column; gap: 12px; min-height: 260px; }
.acc-card .lg { width: 84px; height: 84px; border-radius: 18px; background: var(--mist); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-bottom: 4px; overflow: hidden; position: relative; }
.acc-card .lg img { width: 100%; height: 100%; object-fit: contain; padding: 8px; display: block; transition: transform .25s ease; }
.acc-card:hover .lg img { transform: scale(1.08); }
.acc-card.blank { border-style: dashed; }
.acc-card.blank .lg { color: var(--muted); }
.acc-card.blank h3, .acc-card.blank p { color: var(--muted); }
.acc-card h3 { font-size: 21px; }
.acc-card p { font-size: 15px; }
.acc-card .pill { align-self: flex-start; }
.acc-card.dark { background: var(--navy); border-color: var(--navy); }
.acc-card.dark .lg { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.12); color: var(--orange); }
.acc-card.dark .kind-label { font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.acc-card.dark h3 { color: #fff; }
.acc-card.dark p { color: rgba(255,255,255,.72); }
.acc-card.dark .link { color: var(--lime); }
.acc-card.dark:hover .lg { background: rgba(255,255,255,.2); }
/* callback band */
.cbback { background: linear-gradient(135deg, var(--mist), #E6F0F9); border-radius: var(--r-lg); padding: 48px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.cbback .form { box-shadow: var(--shadow); }
@media (max-width: 860px) { .cbback { grid-template-columns: 1fr; padding: 24px; gap: 26px; } .acc-card { min-height: 0; padding: 24px; } }
/* academic & internship partners */
.partner-stats { display: flex; gap: 40px; flex-shrink: 0; }
.partner-stats div { text-align: left; }
.partner-stats b { display: block; font-family: var(--head); font-size: clamp(30px, 3.4vw, 42px); font-weight: 600; color: var(--blue); line-height: 1; }
.partner-stats span { display: block; margin-top: 6px; color: var(--muted); font-size: 13.5px; }
.partner-group-title { font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 36px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.partner-group-title:first-of-type { margin-top: 4px; }
.partner-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 16px; }
.partner-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--mist); color: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 14px; border: 1.5px dashed var(--blue); margin-bottom: 16px; }
.partner-card h4 { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--navy); margin: 0 0 4px; line-height: 1.3; }
.partner-card p { font-size: 12.5px; color: var(--muted); margin: 0; }
@media (max-width: 1000px) { .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .partner-stats { gap: 26px; } }
.tgroup + .tgroup { margin-top: 18px; }
.tgroup .group { border-top: 2px solid var(--line); padding-top: 22px; }
.tgroup[hidden] { display: none; }
/* light-background feature cards */
.sec:not(.navy) .feat { background: #fff; border: 1px solid var(--line); }
.sec:not(.navy) .feat h3 { color: var(--navy); }
.sec:not(.navy) .feat p { color: var(--body); }
/* credentials */
.cred { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; display: flex; flex-direction: column; gap: 10px; min-height: 230px; transition: transform .25s, box-shadow .25s; }
.cred:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.crest-box { height: 72px; display: flex; align-items: center; margin-bottom: 4px; }
.crest { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(150deg, var(--mist), #D6E6F4); color: var(--blue); font-family: var(--head); font-size: 26px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cred h3 { font-size: 20px; }
.cred p { font-size: 15px; }
/* inpatient stats */
.ipstat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px 20px; }
.ipstat b { display: block; font-family: var(--head); font-size: 32px; color: var(--lime); line-height: 1.1; }
.ipstat span { font-size: 14px; color: #C3D6EA; }

/* ---------- motion layer ---------- */
.progress { position: fixed; top: 0; left: 0; height: 4px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--sky), var(--lime)); z-index: 100; }
[data-reveal] { opacity: 0; transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1), clip-path 1s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--d, 0) * 80ms); will-change: transform, opacity; }
[data-reveal="up"] { transform: translateY(46px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="zoom"] { transform: scale(.9); }
[data-reveal="clip"] { opacity: 1; clip-path: inset(18% 18% 18% 18% round 28px); transform: scale(1.04); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="clip"].in { clip-path: inset(0 0 0 0 round 28px); }
.hero .slides { will-change: transform; }
.hero .wrap { will-change: transform, opacity; }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: inline-block; transform: translateY(105%); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .12s; } .hero h1 .ln:nth-child(3) > span { animation-delay: .24s; }
.hero .motto, .hero .intro, .hero .btn-row, .hero .dots { opacity: 0; animation: fadeup .8s ease forwards .45s; }
.hero .intro { animation-delay: .55s; } .hero .btn-row { animation-delay: .65s; } .hero .dots { animation-delay: .75s; }
@keyframes rise { to { transform: none; } }
@keyframes fadeup { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.scroll-hint { position: absolute; left: 50%; bottom: 76px; z-index: 3; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #DCE8F3; font-size: 13px; }
.scroll-hint i { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.scroll-hint i::after { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--lime); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* marquee */
.marquee { background: var(--lime); color: var(--navy); overflow: hidden; padding: 18px 0; transform: rotate(-1.2deg); margin: 70px -20px 10px; box-shadow: 0 10px 30px -18px rgba(6,44,82,.5); }
.marquee .row { display: flex; width: max-content; animation: marq 38s linear infinite; }
.marquee:hover .row { animation-play-state: paused; }
.marquee span { font-family: var(--head); font-size: clamp(22px, 3vw, 34px); font-weight: 600; padding: 0 22px; display: inline-flex; align-items: center; gap: 44px; white-space: nowrap; }
.marquee span::after { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); }
.marquee.alt { background: var(--navy); color: #fff; transform: rotate(1.2deg); margin-top: -8px; }
.marquee.alt .row { animation-direction: reverse; animation-duration: 44s; }
.marquee.alt span::after { background: var(--orange); }
@keyframes marq { to { transform: translateX(-50%); } }

/* horizontal journey */
.journey { position: relative; background: var(--navy); }
.journey .pin { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.journey .intro { padding: 0 24px; max-width: var(--wrap); margin: 0 auto 36px; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.journey .intro h2 { color: #fff; }
.journey .intro p { color: #C3D6EA; }
.journey .bar { width: 220px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.15); overflow: hidden; }
.journey .bar i { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--lime); }
.journey .track { display: flex; gap: 28px; padding: 0 max(24px, calc((100vw - var(--wrap)) / 2 + 24px)); will-change: transform; }
.jcard { flex: 0 0 min(460px, 78vw); height: min(58vh, 480px); border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--blue-d); }
.jcard img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 1.2s; }
.jcard.act img { transform: scale(1); }
.jcard .ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,44,82,0) 30%, rgba(6,44,82,.92) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.jcard b { font-family: var(--head); font-size: 90px; line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--lime); position: absolute; top: 22px; right: 26px; }
.jcard h3 { color: #fff; font-size: 30px; }
.jcard p { color: #DCE8F3; margin-top: 8px; }

/* word fill statement */
.statement { padding: 140px 0; }
.statement p.big { font-family: var(--head); font-size: clamp(30px, 4.6vw, 64px); line-height: 1.18; font-weight: 600; color: var(--navy); max-width: 22ch; }
.statement .w { opacity: .14; transition: opacity .25s linear; }
.statement .w.on { opacity: 1; }
.statement .by { margin-top: 30px; font-weight: 700; color: var(--orange-d); }

/* sticky story */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.story .visual { position: sticky; top: 110px; height: calc(100vh - 150px); max-height: 640px; border-radius: var(--r-lg); overflow: hidden; }
.story .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity .8s, transform 1.4s; }
.story .visual img.on { opacity: 1; transform: none; }
.story .visual .count { position: absolute; left: 24px; bottom: 24px; background: rgba(6,44,82,.8); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.story .steps-v { display: flex; flex-direction: column; }
.story .st { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; gap: 14px; opacity: .25; transition: opacity .5s; }
.story .st.on { opacity: 1; }
.story .st h3 { font-size: clamp(28px, 3vw, 40px); color: #fff; }
.story .st p { font-size: 19px; }

/* tilt + magnetic */
.tilt { transform-style: preserve-3d; transition: transform .25s ease, box-shadow .25s; }
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.2,1), background .2s; }
.phero .ring { transition: transform .1s linear; }
.float-y { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-10px); } }

@media (max-width: 860px) {
  .journey .pin { position: static; height: auto; padding: 64px 0; }
  .journey { height: auto !important; }
  .journey .track { flex-direction: column; transform: none !important; padding: 0 24px; }
  .jcard { flex: none; width: 100%; height: 340px; }
  .journey .bar { display: none; }
  .story { grid-template-columns: 1fr; }
  .story .visual { position: relative; top: 0; height: 280px; }
  .story .st { min-height: auto; opacity: 1; padding: 22px 0; }
  .statement { padding: 80px 0; }
  .scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero h1 .ln > span, .hero .motto, .hero .intro, .hero .btn-row, .hero .dots { opacity: 1 !important; transform: none !important; }
  .marquee .row { animation: none !important; }
  .statement .w { opacity: 1; }
  .journey .pin { position: static; height: auto; padding: 64px 0; }
  .journey { height: auto !important; }
  .journey .track { flex-wrap: wrap; transform: none !important; }
}
html, body { overflow-x: clip; }
main { overflow-x: clip; }
.scroll-hint { left: auto; right: 32px; bottom: 90px; transform: none; }

/* ---------- mobile optimisation ---------- */
.mbar { display: none; }
.swipe-hint { display: none; }
@media (max-width: 860px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .wrap { padding: 0 18px; }
  h2 { font-size: clamp(28px, 7.5vw, 34px); }
  .lead { font-size: 17px; }
  .sec { padding: 56px 0; }
  .sec.tight { padding: 40px 0; }
  .head-row { margin-bottom: 28px; }

  /* header */
  .topbar .wrap { justify-content: center; padding-top: 7px; padding-bottom: 7px; }
  .topbar .wrap > div:first-child { display: none; }
  .navbar, header.site.scrolled .navbar { height: 62px; }
  .brand img, header.site.scrolled .brand img { height: 40px; }
  .burger { width: 44px; height: 44px; }
  .drawer .panel a { padding: 13px 10px; }

  /* bottom action bar */
  .mbar { display: grid; grid-template-columns: .85fr 1.2fr 1.25fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 75; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -16px rgba(6,44,82,.4); }
  .mbar a { display: flex; align-items: center; justify-content: center; gap: 6px; height: 50px; border-radius: 14px; font-family: var(--head); font-weight: 600; font-size: 14.5px; white-space: nowrap; text-decoration: none; }
  .mbar .c { background: var(--mist); color: var(--navy); }
  .mbar .w { background: #25D366; color: #fff; }
  .mbar .b { background: var(--orange); color: #fff; }
  .fab { bottom: calc(80px + env(safe-area-inset-bottom)); right: 14px; }
  .fab .call, .fab .wa { display: none; }

  /* hero */
  .hero { min-height: calc(100svh - 96px); }
  .hero .wrap { padding-top: 80px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); }
  .hero .intro { font-size: 17px; margin: 16px 0 24px; }
  .hero .btn-row { flex-direction: column; align-items: stretch; }
  .hero .btn-row .btn { width: 100%; }
  .hero .caption { display: none; }
  .dots button { width: 12px; height: 12px; }
  .finder { margin-top: -40px; }
  .finder h2 { font-size: 23px; }
  .chips { gap: 8px; }
  .chip { padding: 10px 14px; font-size: 14px; min-height: 44px; display: inline-flex; align-items: center; }

  /* marquee */
  .marquee { padding: 12px 0; margin-top: 40px; }
  .marquee span { font-size: 20px; gap: 28px; padding: 0 14px; }

  /* stats */
  .stat { padding: 4px 16px; }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .stat b { font-size: 42px; }

  /* treatment cards */
  .g4 { gap: 12px; }
  .tcard .tx { padding: 12px 14px 14px; }
  .tcard h3 { font-size: 16px; }
  .tcard .arrow { display: none; }
  .tcard:hover { transform: none; }

  /* horizontal swipe rows */
  .swipe { display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin: 0 -18px; padding: 4px 18px 14px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .swipe::-webkit-scrollbar { display: none; }
  .swipe > * { flex: 0 0 82%; scroll-snap-align: start; }
  .swipe-hint { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--muted); margin-top: 4px; }
  .sec.navy .swipe-hint, .journey .swipe-hint { color: #9FBAD6; }
  .swipe-hint i { width: 26px; height: 3px; border-radius: 3px; background: currentColor; position: relative; overflow: hidden; }
  .swipe-hint i::after { content: ''; position: absolute; inset: 0; background: var(--lime); animation: hint 1.8s ease-in-out infinite; }
  @keyframes hint { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

  /* journey as swipe carousel */
  .journey .pin { padding: 56px 0 40px; }
  .journey .intro { padding: 0 18px; margin-bottom: 22px; flex-direction: column; align-items: flex-start; }
  .journey .track { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 18px 10px; gap: 14px; scrollbar-width: none; }
  .journey .track::-webkit-scrollbar { display: none; }
  .jcard { flex: 0 0 82vw; width: auto; height: 400px; scroll-snap-align: start; }
  .jcard img { transform: none; }
  .jcard b { font-size: 70px; }
  .jcard h3 { font-size: 26px; }

  /* team + filters */
  .filters { flex-wrap: nowrap; overflow-x: auto; margin: 0 -18px 22px; padding: 2px 18px 8px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filters .chip { flex: 0 0 auto; }
  .person .tx { padding: 12px; }
  .person h3 { font-size: 15px; }
  .person p { font-size: 12.5px; }

  /* explorer tabs */
  .tablist { margin: 0 -18px; padding: 2px 18px 8px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .tablist::-webkit-scrollbar { display: none; }
  .tablist button { scroll-snap-align: start; padding: 12px 16px; font-size: 15px; border: 1px solid var(--line); }
  .panel-card .im { aspect-ratio: 16 / 10; }
  .panel-card .bd { padding: 22px; }
  .panel-card h2 { font-size: 26px !important; }

  /* gallery */
  .masonry { columns: 2; column-gap: 10px; }
  .masonry button { margin-bottom: 10px; }
  .masonry figcaption { font-size: 12px; padding: 22px 10px 8px; }
  .lightbox { padding: 12px; }
  .lightbox .lb-prev, .lightbox .lb-next { top: auto; bottom: 24px; }
  .lightbox .lb-prev { left: calc(50% - 64px); } .lightbox .lb-next { right: calc(50% - 64px); }

  /* page hero */
  .phero .wrap { padding-top: 40px; padding-bottom: 40px; gap: 24px; }
  .phero h1 { font-size: clamp(34px, 9vw, 42px); }
  .phero p { font-size: 16px; }
  .phero .ring { width: 260px; height: 260px; border-width: 40px; right: -110px; top: -90px; }

  /* branches / collage */
  .branch { padding: 26px 0; gap: 20px; }
  .collage .photo.b { width: 44%; bottom: -20px; border-width: 5px; }
  .badge-float { left: 14px; top: 14px; padding: 12px 14px; }
  .badge-float b { font-size: 26px; }

  /* forms + booking */
  .form { padding: 22px 18px; border-radius: 22px; }
  .opt { padding: 13px 14px; min-height: 50px; }
  .qlabel { font-size: 18px; }
  .book .btn-row .btn { flex: 1; }
  .summary { padding: 4px 14px; font-size: 15px; }
  .side-card { padding: 22px; }

  /* cta */
  .cta { padding: 30px 22px; border-radius: 22px; }
  .cta .btn-row { width: 100%; flex-direction: column; }
  .cta .btn { width: 100%; }

  /* statement + story */
  .statement p.big { font-size: clamp(28px, 8vw, 36px); }
  .story .st h3 { font-size: 24px; }
  .story .st p { font-size: 16px; }

  /* footer */
  footer.site { padding-top: 48px; }
  .fgrid4 { grid-template-columns: 1fr; gap: 6px; }
  footer .about { margin-bottom: 18px; }
  .fcol { border-bottom: 1px solid rgba(255,255,255,.1); }
  .fcol summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
  .fcol summary::-webkit-details-marker { display: none; }
  .fcol summary h4 { margin: 0; }
  .fcol summary::after { content: '+'; font-size: 26px; color: var(--lime); line-height: 1; transition: transform .25s; }
  .fcol[open] summary::after { transform: rotate(45deg); }
  .fcol ul { padding-bottom: 14px; gap: 0; }
  .fcol ul a { display: block; padding: 9px 0; }
  .map { display: none; }
  .dir-btn { display: inline-flex !important; }
  .fbar { margin-top: 26px; flex-direction: column; gap: 8px; }

  /* motion: lighter on phones */
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(30px); }
  [data-reveal] { transition-duration: .6s; transition-delay: calc(var(--d, 0) * 50ms); }
}
@media (min-width: 861px) {
  .fcol summary { pointer-events: none; list-style: none; }
  .fcol summary::-webkit-details-marker { display: none; }
  .dir-btn { display: none !important; }
}
@media (max-width: 380px) {
  .mbar a { font-size: 14px; gap: 6px; }
  .mbar svg { display: none; }
  .g4 { grid-template-columns: 1fr 1fr; }
}


/* --- Dropdown Enhancements --- */
nav.main > .item { position: relative; }
.drop.wide {
  grid-template-columns: 1fr 1fr !important;
  min-width: 680px !important;
  max-width: min(780px, 92vw) !important;
  gap: 16px !important;
  padding: 16px !important;
  left: 50% !important;
  transform: translateX(-42%) !important;
}
.drop-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  max-height: 65vh !important;
  overflow-y: auto !important;
  padding-right: 6px !important;
  scrollbar-width: thin !important;
}
.drop-col::-webkit-scrollbar { width: 4px; }
.drop-col::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

/* --- Clickable Doctor Cards --- */
.person.has-link {
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s cubic-bezier(.2,.7,.2,1) !important;
  cursor: pointer !important;
}
.person.has-link a.person-card-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
}
.person.has-link:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 32px -12px rgba(6, 44, 82, .25) !important;
}
.person.has-link:hover h3 {
  color: var(--blue) !important;
  transition: color .2s ease;
}
.person.has-link:hover .ph img {
  transform: scale(1.04);
  transition: transform .35s ease;
}
.person .ph { overflow: hidden; }

/* ---------- Drawer Accordions & Mobile Navigation Override ---------- */
.drawer-acc {
  display: flex;
  flex-direction: column;
}
.drawer-acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: var(--ink);
  font-family: var(--head);
  font-weight: 500;
  font-size: 18px;
  transition: background .2s ease, color .2s ease;
}
.drawer-acc-head:hover, .drawer-acc-head:active {
  background: var(--mist);
}
.drawer-acc-head > span, .drawer-acc-head > a {
  flex: 1;
}
.drawer-acc.open > .drawer-acc-head {
  color: var(--blue);
  font-weight: 600;
}
.drawer-acc-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  border-radius: 8px;
  transition: transform .25s ease, color .2s ease;
}
.drawer-acc.open > .drawer-acc-head .drawer-acc-btn {
  transform: rotate(180deg);
  color: var(--blue);
}
.drawer-acc-content {
  display: none;
  padding: 4px 6px 10px 14px;
  flex-direction: column;
  gap: 2px;
  max-height: 50vh;
  overflow-y: auto;
  border-left: 2px solid var(--mist);
  margin-left: 10px;
}
.drawer-acc.open > .drawer-acc-content {
  display: flex;
}
.drawer-acc-content a.sub {
  font-family: var(--text) !important;
  font-size: 14px !important;
  padding: 7px 10px !important;
  color: var(--body) !important;
  border-radius: 6px;
  text-decoration: none;
}
.drawer-acc-content a.sub:hover {
  background: var(--mist);
  color: var(--blue) !important;
}

@media (max-width: 1100px) {
  nav.main {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .drop, .drop.wide {
    display: none !important;
  }
  .burger {
    display: flex !important;
  }
}
