:root {
  --navy-950: #03172f;
  --navy-900: #052448;
  --navy-800: #07345f;
  --navy-700: #0b4778;
  --teal-700: #078f8d;
  --teal-600: #0aa9a5;
  --teal-500: #19c2bb;
  --teal-100: #d9f6f3;
  --teal-50: #eefbf9;
  --ink: #0b1d31;
  --muted: #5c6a78;
  --line: #dce5e9;
  --surface: #ffffff;
  --surface-soft: #f5f8f9;
  --sand: #f4f1ec;
  --success: #11a36a;
  --shadow-sm: 0 12px 30px rgba(3, 31, 60, .08);
  --shadow-md: 0 24px 60px rgba(3, 31, 60, .13);
  --shadow-lg: 0 36px 90px rgba(3, 31, 60, .2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; height: auto; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  letter-spacing: -.035em;
  line-height: 1.05;
}
h1 { font-size: clamp(3.35rem, 7.2vw, 6.8rem); margin-bottom: 1.4rem; }
h2 { font-size: clamp(2.45rem, 4.8vw, 4.6rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); margin-bottom: .75rem; }
p { margin-bottom: 1rem; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  border-radius: 10px;
  color: white;
  background: var(--navy-950);
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
}
.eyebrow--light { color: var(--teal-500); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 48px;
  padding: .78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(25, 194, 187, .35);
  outline-offset: 4px;
}
.button--small { min-height: 42px; padding: .65rem 1.05rem; }
.button--large { min-height: 56px; padding: .95rem 1.5rem; }
.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  box-shadow: 0 14px 30px rgba(10, 169, 165, .26);
}
.button--primary:hover { box-shadow: 0 18px 38px rgba(10, 169, 165, .35); }
.button--ghost {
  color: var(--navy-900);
  background: rgba(255,255,255,.82);
  border-color: rgba(7,52,95,.14);
  backdrop-filter: blur(10px);
}
.button--ghost:hover { background: white; border-color: rgba(7,52,95,.28); }
.button--teal { color: var(--navy-950); background: var(--teal-500); }
.button--teal:hover { background: #36d4cc; box-shadow: 0 14px 34px rgba(25,194,187,.22); }
.button--outline { color: var(--navy-900); border-color: rgba(7,52,95,.25); background: transparent; }
.button--outline:hover { color: white; border-color: var(--navy-900); background: var(--navy-900); }

.topbar {
  position: relative;
  z-index: 1002;
  color: white;
  background: var(--navy-950);
  font-size: .84rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
}
.topbar p { display: flex; align-items: center; gap: .55rem; margin: 0; }
.topbar a { color: var(--teal-500); font-weight: 800; text-decoration: none; white-space: nowrap; }
.topbar a:hover { color: white; }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #32db93;
  box-shadow: 0 0 0 5px rgba(50,219,147,.13);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(220,229,233,.72);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.97); box-shadow: 0 10px 30px rgba(3,31,60,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .78rem; min-width: 0; text-decoration: none; }
.brand__mark {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(7,52,95,.1);
  border-radius: 16px;
  background: white;
  box-shadow: 0 6px 18px rgba(3,31,60,.08);
}
.brand__mark img { width: 52px; height: 52px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.1; }
.brand__text strong { color: var(--navy-900); font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; white-space: nowrap; }
.brand__text small { margin-top: .3rem; color: var(--teal-700); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 1.65rem; }
.primary-nav > a:not(.button) { position: relative; color: #273a4d; font-size: .91rem; font-weight: 750; text-decoration: none; }
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--teal-600);
  transition: transform .2s ease;
}
.primary-nav > a:not(.button):hover::after { transform: scaleX(1); }
.primary-nav .button { color: white; background: var(--navy-900); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 12px; background: var(--surface-soft); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4.5rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 72% 22%, rgba(25,194,187,.13), transparent 29%),
    linear-gradient(145deg, #f9fcfd 0%, #f2f8f8 45%, #eef6f5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(7,52,95,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,52,95,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero__glow--one { top: -220px; right: -160px; width: 580px; height: 580px; border: 95px solid rgba(10,169,165,.08); }
.hero__glow--two { bottom: -280px; left: -220px; width: 500px; height: 500px; border: 75px solid rgba(7,52,95,.045); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero__copy { max-width: 690px; }
.hero h1 { color: var(--navy-950); }
.hero h1 em { color: var(--teal-600); font-style: normal; }
.hero__lede { max-width: 640px; margin-bottom: 2rem; color: #526271; font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.72; }
.hero__lede strong { color: var(--navy-900); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__proof { display: flex; align-items: stretch; gap: 0; margin-top: 2.7rem; }
.hero__proof div { display: flex; min-width: 0; flex-direction: column; padding: 0 1.5rem; border-left: 1px solid rgba(7,52,95,.14); }
.hero__proof div:first-child { padding-left: 0; border-left: 0; }
.hero__proof strong { color: var(--navy-900); font-family: "Arial Narrow", "Segoe UI", sans-serif; font-size: 1.22rem; letter-spacing: -.02em; }
.hero__proof span { color: var(--muted); font-size: .78rem; }

.hero__visual { position: relative; min-height: 620px; }
.hero-card {
  position: absolute;
  inset: 30px 25px 20px 60px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 42px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}
.hero-card__backdrop { position: absolute; inset: 0; }
.hero-card__backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,23,47,.15), rgba(3,23,47,.84)); }
.hero-card__backdrop img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.08); }
.hero-card__portrait { position: absolute; inset: 38px 26px 0 32px; overflow: hidden; border-radius: 34px 34px 0 0; }
.hero-card__portrait::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; background: linear-gradient(to top, rgba(3,23,47,.92), transparent); }
.hero-card__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-card__caption { position: absolute; z-index: 2; right: 28px; bottom: 26px; left: 28px; display: flex; align-items: center; gap: .8rem; color: white; }
.hero-card__caption div { display: flex; flex-direction: column; line-height: 1.25; }
.hero-card__caption strong { font-size: 1.05rem; }
.hero-card__caption span { color: rgba(255,255,255,.72); font-size: .78rem; }
.avatar-check { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--teal-500); }
.avatar-check svg { width: 20px; height: 20px; stroke-width: 2.5; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: .75rem; min-width: 205px; padding: .95rem 1rem; border: 1px solid rgba(255,255,255,.76); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.floating-card--top { top: 0; right: 0; }
.floating-card--bottom { bottom: 0; left: 0; }
.floating-card__icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: var(--teal-700); background: var(--teal-100); }
.floating-card__icon svg { width: 21px; height: 21px; }
.floating-card div { display: flex; flex-direction: column; line-height: 1.25; }
.floating-card strong { color: var(--navy-900); font-size: .88rem; }
.floating-card span { color: var(--muted); font-size: .72rem; }

.trust-band { position: relative; z-index: 4; color: white; background: var(--navy-900); }
.trust-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-band__grid > div { display: flex; align-items: center; gap: .9rem; min-height: 105px; padding: 1.25rem 2rem; border-left: 1px solid rgba(255,255,255,.12); }
.trust-band__grid > div:first-child { padding-left: 0; border-left: 0; }
.trust-band svg { width: 30px; height: 30px; flex: 0 0 auto; color: var(--teal-500); }
.trust-band span { color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.45; }
.trust-band strong { display: block; color: white; font-size: .9rem; }

.section { position: relative; padding: clamp(5.5rem, 9vw, 9rem) 0; }
.section-heading { margin-bottom: clamp(2.7rem, 5vw, 4.8rem); }
.section-heading h2 { color: var(--navy-950); }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 5rem; }
.section-heading--split > p { max-width: 490px; margin-bottom: .45rem; }
.section-heading--centred { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--centred .eyebrow { justify-content: center; }

.section--intro { background: white; }
.need-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.need-card { position: relative; overflow: hidden; min-height: 360px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 8px 24px rgba(3,31,60,.045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.need-card::after { content: ""; position: absolute; right: -50px; bottom: -65px; width: 150px; height: 150px; border: 26px solid var(--teal-100); border-radius: 50%; opacity: .58; }
.need-card:hover { transform: translateY(-7px); border-color: rgba(10,169,165,.4); box-shadow: var(--shadow-md); }
.need-card__number { position: absolute; top: 1.7rem; right: 1.8rem; color: rgba(7,52,95,.1); font-family: "Arial Narrow", sans-serif; font-size: 3.3rem; font-weight: 800; line-height: 1; }
.need-card__icon { display: grid; width: 60px; height: 60px; margin-bottom: 2.8rem; place-items: center; border-radius: 18px; color: var(--teal-700); background: var(--teal-50); }
.need-card__icon svg { width: 31px; height: 31px; }
.need-card h3 { color: var(--navy-900); }
.need-card p { position: relative; z-index: 1; color: var(--muted); }
.need-card a { position: absolute; z-index: 2; bottom: 2rem; left: 2rem; color: var(--teal-700); font-size: .9rem; font-weight: 800; text-decoration: none; }
.need-card a:hover { color: var(--navy-900); }

.section--services { background: var(--surface-soft); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card { display: grid; grid-template-rows: 300px auto; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.service-card--wide { grid-template-columns: .94fr 1.06fr; grid-template-rows: none; min-height: 470px; }
.service-card__image { position: relative; min-height: 0; overflow: hidden; background: #dce9e9; }
.service-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(3,23,47,.18)); pointer-events: none; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__tag { position: absolute; z-index: 1; top: 1.15rem; left: 1.15rem; padding: .48rem .75rem; border-radius: 999px; color: var(--navy-950); background: var(--teal-500); font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.service-card__body { position: relative; padding: clamp(1.65rem, 3.4vw, 2.55rem); }
.service-card__index { display: block; margin-bottom: .9rem; color: var(--teal-700); font-size: .77rem; font-weight: 900; letter-spacing: .16em; }
.service-card h3 { color: var(--navy-900); }
.service-card p { color: var(--muted); }
.check-list { display: grid; gap: .55rem; margin: 1.3rem 0 1.6rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.55rem; color: #3b4c5c; font-size: .9rem; }
.check-list li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--teal-700); font-weight: 900; }
.text-link { display: inline-flex; gap: .45rem; margin-top: .4rem; color: var(--teal-700); font-size: .9rem; font-weight: 850; text-decoration: none; }
.text-link:hover { color: var(--navy-900); }

.section--about { overflow: hidden; color: white; background: var(--navy-950); }
.section--about::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(90deg, black, transparent 68%); }
.about-shape { position: absolute; top: -230px; right: -190px; width: 680px; height: 680px; border: 115px solid rgba(25,194,187,.1); border-radius: 50%; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(4rem, 8vw, 8rem); }
.about-visual { position: relative; max-width: 480px; padding: 0 0 38px 32px; }
.about-photo { overflow: hidden; height: 590px; border: 1px solid rgba(255,255,255,.17); border-radius: 38px; background: #173f58; box-shadow: 0 30px 75px rgba(0,0,0,.35); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.about-visual::before { content: ""; position: absolute; top: -30px; left: 0; width: 175px; height: 175px; border: 2px solid var(--teal-500); border-radius: 32px; opacity: .7; }
.qualification-card { position: absolute; right: -25px; bottom: 0; display: flex; align-items: center; gap: .85rem; min-width: 255px; padding: 1.1rem 1.2rem; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: var(--ink); background: white; box-shadow: 0 24px 55px rgba(0,0,0,.25); }
.qualification-card__icon { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; border-radius: 14px; color: var(--teal-700); background: var(--teal-100); }
.qualification-card__icon svg { width: 25px; height: 25px; }
.qualification-card div { display: flex; flex-direction: column; line-height: 1.3; }
.qualification-card strong { color: var(--navy-900); font-size: .93rem; }
.qualification-card span { color: var(--muted); font-size: .74rem; }
.about-copy h2 { color: white; }
.about-copy__lead { max-width: 700px; color: white !important; font-size: 1.22rem; font-weight: 650; line-height: 1.65; }
.about-copy > p { max-width: 720px; color: rgba(255,255,255,.68); }
.about-points { display: grid; gap: 1rem; margin: 2.1rem 0 2.3rem; }
.about-points > div { display: grid; grid-template-columns: 34px 1fr; gap: .75rem; }
.about-points > div > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--teal-500); font-weight: 900; }
.about-points p { margin: 0; color: rgba(255,255,255,.67); font-size: .92rem; }
.about-points strong { color: white; }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.35rem; }
.social-link { display: inline-flex; align-items: center; gap: .55rem; color: white; font-size: .9rem; font-weight: 800; text-decoration: none; }
.social-link svg { width: 21px; height: 21px; color: var(--teal-500); }
.social-link:hover { color: var(--teal-500); }

.section--process { background: white; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.process-grid::before { content: ""; position: absolute; z-index: 0; top: 56px; right: 17%; left: 17%; border-top: 2px dashed rgba(10,169,165,.25); }
.process-card { position: relative; z-index: 1; min-height: 360px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.process-card__step { display: inline-flex; margin-bottom: 1.6rem; padding: .42rem .7rem; border-radius: 999px; color: var(--teal-700); background: var(--teal-50); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.process-card__icon { display: grid; width: 70px; height: 70px; margin-bottom: 1.8rem; place-items: center; border-radius: 22px; color: white; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); box-shadow: 0 13px 30px rgba(3,31,60,.18); }
.process-card__icon svg { width: 33px; height: 33px; }
.process-card h3 { color: var(--navy-900); }
.process-card p { color: var(--muted); }

.section--gallery { overflow: hidden; background: linear-gradient(145deg, #eef8f7, #f8fbfb); }
.gallery-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.gallery-copy h2 { color: var(--navy-950); }
.gallery-copy > p { color: var(--muted); }
.condition-tags { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.8rem 0 2.2rem; }
.condition-tags span { padding: .55rem .8rem; border: 1px solid rgba(7,52,95,.1); border-radius: 999px; color: #405363; background: rgba(255,255,255,.8); font-size: .78rem; font-weight: 700; }
.treatment-gallery { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 1fr 1fr; gap: 1rem; min-height: 560px; transform: rotate(1deg); }
.treatment-gallery figure { position: relative; overflow: hidden; margin: 0; border: 8px solid white; border-radius: 27px; box-shadow: var(--shadow-md); }
.treatment-gallery__large { grid-row: 1 / 3; }
.treatment-gallery img { width: 100%; height: 100%; object-fit: cover; }
.treatment-gallery figure:nth-child(2) img { object-position: 50% 55%; }

.section--booking { overflow: hidden; color: white; background: var(--navy-950); }
.section--booking::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 44px 44px; }
.booking-glow { position: absolute; top: -260px; left: 50%; width: 900px; height: 540px; transform: translateX(-50%); border-radius: 50%; background: rgba(10,169,165,.18); filter: blur(100px); }
.booking-intro { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr); align-items: end; gap: 4rem; margin-bottom: 2.6rem; }
.booking-intro h2 { color: white; }
.booking-intro p { max-width: 720px; color: rgba(255,255,255,.68); }
.booking-help { padding: 1.35rem; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.06); }
.booking-help strong { display: block; margin-bottom: .2rem; color: white; }
.booking-help span { display: block; color: rgba(255,255,255,.62); font-size: .85rem; }
.booking-help a { display: inline-flex; gap: .35rem; margin-top: .8rem; color: var(--teal-500); font-size: .86rem; font-weight: 850; text-decoration: none; }
.booking-shell { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; color: var(--ink); background: white; box-shadow: 0 40px 90px rgba(0,0,0,.35); }
.booking-shell__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; padding: .8rem 1.35rem; border-bottom: 1px solid var(--line); background: #f8fbfb; }
.booking-shell__status { display: flex; align-items: center; gap: .55rem; color: var(--navy-900); font-size: .86rem; font-weight: 850; }
.booking-shell__top a { color: var(--teal-700); font-size: .82rem; font-weight: 850; text-decoration: none; }
.booking-frame { position: relative; min-height: 930px; background: white; }
.booking-frame iframe { position: relative; z-index: 2; width: 100%; min-height: 1000px; border: 0; opacity: 0; background: white; transition: opacity .35s ease; }
.booking-frame.is-loaded iframe { opacity: 1; }
.booking-frame__loading { position: absolute; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 6rem 1.5rem 2rem; color: var(--muted); text-align: center; background: linear-gradient(180deg, #fff, #f6fafa); }
.booking-frame.is-loaded .booking-frame__loading { visibility: hidden; opacity: 0; pointer-events: none; }
.booking-frame__loading strong { margin-top: 1rem; color: var(--navy-900); font-size: 1.05rem; }
.booking-frame__loading p { max-width: 420px; font-size: .86rem; }
.booking-frame__loading .button { margin-top: .55rem; color: white; }
.loader { width: 46px; height: 46px; border: 4px solid var(--teal-100); border-top-color: var(--teal-600); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.booking-shell__note { display: flex; align-items: flex-start; gap: .65rem; padding: 1rem 1.3rem; border-top: 1px solid var(--line); color: var(--muted); background: #f8fbfb; }
.booking-shell__note svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: .15rem; color: var(--teal-700); }
.booking-shell__note p { margin: 0; font-size: .78rem; }
.booking-shell__note a { color: var(--navy-900); font-weight: 800; }
.noscript-message { margin: 0; padding: 1rem 1.3rem; color: var(--ink); background: #fff4d7; }
.noscript-message a { font-weight: 800; }

.section--faq { background: white; }
.faq-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 45px); }
.faq-intro h2 { color: var(--navy-950); }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.45rem 3rem 1.45rem 0; color: var(--navy-900); font-size: 1.03rem; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; top: 50%; right: .3rem; width: 17px; height: 2px; border-radius: 2px; background: var(--teal-700); transition: transform .2s ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details > div { padding: 0 3rem 1.45rem 0; color: var(--muted); }
.faq-list details p { margin: 0; }

.section--contact { padding-top: 0; background: white; }
.contact-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); overflow: hidden; border-radius: 36px; color: white; background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); box-shadow: var(--shadow-lg); }
.contact-card__copy { position: relative; overflow: hidden; padding: clamp(2.6rem, 5vw, 4.6rem); }
.contact-card__copy::after { content: ""; position: absolute; right: -100px; bottom: -150px; width: 340px; height: 340px; border: 60px solid rgba(25,194,187,.12); border-radius: 50%; }
.contact-card__copy h2 { position: relative; z-index: 1; color: white; }
.contact-card__copy p { position: relative; z-index: 1; max-width: 520px; color: rgba(255,255,255,.67); }
.contact-card__copy .button { position: relative; z-index: 1; margin-top: 1rem; }
.contact-card__links { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); }
.contact-card__links > a { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: .85rem; min-height: 150px; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); text-decoration: none; transition: background-color .2s ease; }
.contact-card__links > a:nth-child(2n) { border-right: 0; }
.contact-card__links > a:nth-last-child(-n+2) { border-bottom: 0; }
.contact-card__links > a:hover { background: rgba(25,194,187,.08); }
.contact-card__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: var(--teal-500); background: rgba(25,194,187,.1); }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__links a > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; line-height: 1.3; }
.contact-card__links small { color: rgba(255,255,255,.52); font-size: .72rem; }
.contact-card__links strong { overflow: hidden; color: white; font-size: .86rem; text-overflow: ellipsis; }
.contact-card__links a > span:last-child { color: var(--teal-500); }

.site-footer { color: white; background: var(--navy-950); }
.footer__top { display: grid; grid-template-columns: auto minmax(240px, 1fr) auto; align-items: center; gap: 4rem; padding-top: 3.2rem; padding-bottom: 3.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand--footer .brand__text strong { color: white; }
.brand--footer .brand__text small { color: var(--teal-500); }
.footer__top > p { max-width: 540px; margin: 0; color: rgba(255,255,255,.58); font-size: .88rem; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 82px; color: rgba(255,255,255,.48); font-size: .78rem; }
.footer__bottom p { margin: 0; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: white; }

.mobile-actions { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.inner-page { background: var(--surface-soft); }
.inner-hero { padding: 5.5rem 0 4rem; color: white; background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); }
.inner-hero .eyebrow { color: var(--teal-500); }
.inner-hero h1 { max-width: 900px; margin-bottom: 1rem; font-size: clamp(3rem, 6vw, 5.4rem); color: white; }
.inner-hero p { max-width: 720px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.prose-wrap { padding: 4.5rem 0 6rem; }
.prose { max-width: 850px; margin: 0 auto; padding: clamp(1.8rem, 4vw, 4rem); border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow-sm); }
.prose h2 { margin-top: 2.6rem; color: var(--navy-900); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; color: var(--navy-900); font-size: 1.35rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--teal-700); font-weight: 750; }
.prose ul { padding-left: 1.2rem; }
.notice { margin: 1.5rem 0; padding: 1.2rem 1.35rem; border-left: 4px solid var(--teal-600); border-radius: 0 14px 14px 0; background: var(--teal-50); }
.notice p { margin: 0; color: #35515a; }

@media (max-width: 1100px) {
  :root { --container: 980px; }
  .primary-nav { gap: 1.1rem; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .85fr); gap: 3rem; }
  .hero__visual { min-height: 560px; }
  .hero-card { inset: 26px 15px 20px 45px; }
  .gallery-grid { grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); gap: 3.5rem; }
  .footer__top { gap: 2.2rem; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .topbar__inner { justify-content: center; }
  .topbar a { display: none; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    z-index: 999;
    top: calc(38px + var(--header-height));
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 38px - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 20px 2rem;
    transform: translateX(100%);
    background: white;
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .menu-open .primary-nav { transform: translateX(0); opacity: 1; visibility: visible; }
  .primary-nav > a:not(.button) { padding: 1.2rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { margin-top: 1.3rem; }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(3) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 760px; }
  .hero__visual { width: min(590px, 100%); min-height: 600px; margin: 1rem auto 0; }
  .trust-band__grid { grid-template-columns: 1fr; padding: .6rem 0; }
  .trust-band__grid > div { min-height: 72px; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
  .trust-band__grid > div:first-child { border-top: 0; }

  .section-heading--split { grid-template-columns: 1fr; gap: 1rem; }
  .need-grid, .process-grid { grid-template-columns: 1fr; }
  .need-card { min-height: 310px; }
  .process-grid::before { display: none; }
  .process-card { min-height: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--wide { grid-template-columns: 1fr; grid-template-rows: 310px auto; min-height: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(510px, 100%); margin-inline: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .treatment-gallery { width: min(660px, 100%); margin-inline: auto; }
  .booking-intro { grid-template-columns: 1fr; gap: 1.3rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card__links { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 26px; }
  body { padding-bottom: 70px; }
  .container { width: min(100% - 28px, var(--container)); }
  .topbar { font-size: .74rem; }
  .topbar p { text-align: center; }
  .brand__mark { width: 48px; height: 48px; border-radius: 14px; }
  .brand__mark img { width: 46px; height: 46px; }
  .brand__text strong { font-size: .8rem; }
  .brand__text small { font-size: .55rem; letter-spacing: .1em; }

  .hero { padding-top: 3.8rem; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 4.8rem); }
  .hero__lede { font-size: 1rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero__proof div { padding: 0 .55rem; }
  .hero__proof strong { font-size: .95rem; }
  .hero__proof span { font-size: .65rem; }
  .hero__visual { min-height: 480px; }
  .hero-card { inset: 25px 4px 18px 24px; border-radius: 30px; }
  .hero-card__portrait { inset: 24px 18px 0 20px; border-radius: 25px 25px 0 0; }
  .hero-card__caption { right: 20px; bottom: 20px; left: 20px; }
  .floating-card { min-width: 174px; padding: .75rem .85rem; border-radius: 15px; }
  .floating-card--top { right: -4px; }
  .floating-card--bottom { left: -4px; }
  .floating-card__icon { width: 34px; height: 34px; }
  .floating-card strong { font-size: .78rem; }
  .floating-card span { font-size: .64rem; }

  .section { padding: 5rem 0; }
  .section-heading { margin-bottom: 2.5rem; }
  h2 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .need-card { padding: 1.5rem; }
  .need-card a { bottom: 1.5rem; left: 1.5rem; }
  .service-card, .service-card--wide { grid-template-rows: 250px auto; }
  .service-card__body { padding: 1.5rem; }
  .about-visual { padding-left: 12px; }
  .about-photo { height: 500px; border-radius: 28px; }
  .qualification-card { right: -4px; min-width: 235px; }
  .about-actions { align-items: flex-start; flex-direction: column; }
  .process-card { padding: 1.5rem; }
  .treatment-gallery { min-height: 450px; gap: .6rem; }
  .treatment-gallery figure { border-width: 5px; border-radius: 18px; }
  .condition-tags { gap: .45rem; }
  .condition-tags span { font-size: .7rem; }

  .booking-shell { border-radius: 22px; }
  .booking-shell__top { align-items: flex-start; flex-direction: column; min-height: 0; padding: 1rem; }
  .booking-frame { min-height: 950px; }
  .booking-frame iframe { min-height: 1100px; }
  .booking-frame__loading { padding-top: 4rem; }
  .booking-shell__note { padding: .9rem 1rem; }

  .faq-list summary { padding-right: 2.3rem; font-size: .96rem; }
  .contact-card { border-radius: 26px; }
  .contact-card__copy { padding: 2rem 1.5rem 2.4rem; }
  .contact-card__links { grid-template-columns: 1fr; }
  .contact-card__links > a { min-height: 105px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
  .contact-card__links > a:last-child { border-bottom: 0 !important; }
  .contact-card__links strong { font-size: .8rem; }

  .footer__top { padding-bottom: 2.2rem; }
  .footer__bottom { align-items: flex-start; flex-direction: column; padding-top: 1.5rem; padding-bottom: 1.5rem; }

  .mobile-actions {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    min-height: 66px;
    border-top: 1px solid rgba(7,52,95,.12);
    background: white;
    box-shadow: 0 -12px 35px rgba(3,31,60,.12);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: .5rem; color: var(--navy-900); font-size: .85rem; font-weight: 850; text-decoration: none; }
  .mobile-actions a:last-child { color: white; background: var(--teal-600); }
  .mobile-actions svg { width: 20px; height: 20px; }

  .prose-wrap { padding: 2rem 0 4rem; }
  .prose { padding: 1.5rem; border-radius: 22px; }
}

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

@media print {
  .topbar, .site-header, .mobile-actions, .button, .site-footer { display: none !important; }
  body { color: black; background: white; }
  .section { padding: 2rem 0; }
}
