: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% + 8px); 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; }
.item.open .drop { display: grid; }
.drop.wide { grid-template-columns: 1fr 1fr; min-width: 520px; }
.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); }
.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; }

/* 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; }

/* people */
.person { 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; }
.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.4fr 1fr 1fr 1.3fr; gap: 40px; }
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; }
.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; }
}
@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; }
.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; }
/* 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; } }
.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; }

/* ============ NRI / Gulf families page ============ */
.nri-hero { position: relative; background: #062C52; color: #fff; overflow: hidden; }
.nri-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1100px 620px at 74% 18%, #0B4780 0%, #062C52 58%, #04203C 100%); }
.nri-hero .bgimg { position: absolute; right: 0; top: 0; width: 52%; height: 100%; object-fit: cover; opacity: .20; }
.nri-hero .wrap { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 64px; }
.nri-hero h1 { color: #fff; font-size: clamp(36px, 4.6vw, 62px); max-width: 17ch; }
.nri-hero .sub { color: #C3D6EA; font-size: 19px; line-height: 1.65; max-width: 56ch; margin-top: 18px; }
.nri-hero .crumbs a, .nri-hero .crumbs span { color: #9FBAD6; }

/* country picker */
.cpick { display: flex; gap: 10px; flex-wrap: wrap; margin: 30px 0 0; }
.cpick button { border: 1.5px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); color: #fff; border-radius: 999px; padding: 11px 20px; font-family: var(--head); font-weight: 600; font-size: 15px; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.cpick button:hover { border-color: var(--lime); }
.cpick button[aria-pressed="true"] { background: var(--lime); border-color: var(--lime); color: #062C52; }

/* bridge: two clocks + arc */
.bridge { margin-top: 34px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 26px; padding: 26px 30px; }
.bridge .ends { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.bridge .end { display: flex; flex-direction: column; gap: 4px; }
.bridge .end.r { text-align: right; }
.bridge .lbl { font-size: 14px; font-weight: 700; letter-spacing: .12em; color: #9FBAD6; }
.bridge .city { font-family: var(--head); font-size: 24px; font-weight: 600; color: #fff; }
.bridge .clock { font-family: var(--head); font-size: 40px; font-weight: 600; color: var(--lime); line-height: 1; font-variant-numeric: tabular-nums; }
.bridge .arc { position: relative; width: clamp(160px, 26vw, 320px); }
.bridge .arc svg { width: 100%; height: auto; display: block; }
.bridge .arc .fly { position: absolute; left: 0; right: 0; top: 52%; text-align: center; font-size: 14px; font-weight: 700; color: #C3D6EA; }
.bridge .dash { stroke-dasharray: 7 9; animation: march 2.4s linear infinite; }
@keyframes march { to { stroke-dashoffset: -32; } }
.bridge .foot { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 15.5px; color: #C3D6EA; }
.bridge .live { display: inline-flex; align-items: center; gap: 9px; background: rgba(211,223,78,.14); border-radius: 999px; padding: 8px 16px; font-weight: 700; color: var(--lime); }
.bridge .live i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); display: block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.82); } }

/* country detail strip */
.cfacts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.cfacts div { padding: 24px 26px; border-left: 1px solid var(--line); }
.cfacts div:first-child { border-left: 0; }
.cfacts b { display: block; font-family: var(--head); font-size: 26px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.cfacts span { display: block; font-size: 14.5px; color: var(--muted); margin-top: 6px; font-weight: 600; }

/* spine timeline */
.spine { position: relative; padding-left: 78px; }
.spine::before { content: ''; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 3px; background: linear-gradient(180deg, var(--sky), var(--lime)); border-radius: 3px; }
.spine .st { position: relative; padding: 0 0 38px; }
.spine .st:last-child { padding-bottom: 0; }
.spine .st .num { position: absolute; left: -78px; top: -4px; width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 3px solid var(--sky); color: var(--navy); font-family: var(--head); font-size: 21px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.spine .st h3 { font-size: 23px; margin-bottom: 8px; }
.spine .st p { font-size: 16.5px; }
.sec.navy .spine .st .num { background: #0B3B67; border-color: var(--lime); color: #fff; }

/* service tiles */
.ntile { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 28px; display: flex; flex-direction: column; gap: 10px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.ntile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #BFD5E8; }
.ntile .n { font-family: var(--head); font-size: 14px; font-weight: 700; color: var(--orange-d); letter-spacing: .1em; }
.ntile h3 { font-size: 20px; }
.ntile p { font-size: 15.5px; }

/* gulf-life concern chips */
.concern { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; }
.concern:hover { border-color: var(--blue); transform: translateX(4px); }
.concern .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sky); flex: 0 0 10px; }
.concern span { font-size: 17px; font-weight: 600; color: var(--navy); }
.concern .ar { margin-left: auto; color: var(--blue); }

/* malayalam block */
.mal { background: linear-gradient(120deg, #0B3B67 0%, #062C52 100%); border-radius: 28px; padding: 46px 52px; color: #fff; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.mal h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.3; }
.mal p { color: #C3D6EA; font-size: 18.5px; line-height: 1.75; margin-top: 16px; }
.mal .lang { font-size: 14px; font-weight: 700; letter-spacing: .14em; color: var(--lime); }

/* nri enquiry */
.nform { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.nform .form { box-shadow: 0 24px 60px -30px rgba(6,44,82,.55); }
.trustline { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; }
.trustline span { font-size: 15.5px; font-weight: 600; color: var(--body); display: inline-flex; align-items: center; gap: 9px; }
.trustline svg { flex: 0 0 18px; }

@media (max-width: 1100px) { .cfacts { grid-template-columns: 1fr 1fr; } .cfacts div:nth-child(3) { border-left: 0; } .cfacts div:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (max-width: 860px) {
  .nri-hero .bgimg { width: 100%; opacity: .12; }
  .nri-hero .wrap { padding-top: 40px; padding-bottom: 44px; }
  .bridge { padding: 20px; border-radius: 22px; }
  .bridge .ends { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bridge .arc { display: none; }
  .bridge .clock { font-size: 32px; }
  .bridge .city { font-size: 19px; }
  .cpick { gap: 8px; }
  .cpick button { padding: 10px 16px; font-size: 14px; }
  .cfacts { grid-template-columns: 1fr; }
  .cfacts div { border-left: 0; border-top: 1px solid var(--line); }
  .cfacts div:first-child { border-top: 0; }
  .spine { padding-left: 56px; }
  .spine::before { left: 19px; }
  .spine .st .num { left: -56px; width: 40px; height: 40px; font-size: 17px; border-width: 2px; }
  .mal { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
  .nform { grid-template-columns: 1fr; gap: 26px; }
}
