@font-face {
  font-family: Manrope;
  src: url(../fonts/manrope-variable.woff2) format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy-950: #031229;
  --navy-900: #071b3a;
  --navy-800: #0a2852;
  --blue-700: #155eef;
  --blue-600: #2676f3;
  --blue-100: #e8efff;
  --blue-050: #f4f7ff;
  --periwinkle: #e6ebff;
  --red-600: #d7192d;
  --red-700: #b81324;
  --ink: #071a3c;
  --muted: #657189;
  --line: #dce3ef;
  --white: #fff;
  --ease: cubic-bezier(.22,1,.36,1);
  --radius: 18px;
  --content: 1500px;
  --page-pad: max(clamp(30px,5vw,92px),calc((100vw - 1540px) / 2));
  --z-header: 20;
  --z-menu: 30;
  --z-dialog: 50;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; }
button:focus-visible, a:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid #f4be32; outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 11px 16px; border-radius: 99px; color: #fff; background: var(--red-600); }
.site-shell {
  width: 100%;
  margin: 0;
  overflow: clip;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}
.eyebrow {
  margin: 0;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { display: inline-block; width: 6px; height: 6px; margin: 0 10px 1px 0; border-radius: 50%; background: var(--red-600); content: ""; }
.pill-action {
  display: inline-flex;
  width: max-content;
  min-width: 226px;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 5px 4px 24px;
  border: 0;
  border-radius: 99px;
  color: #fff;
  background: var(--navy-900);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s ease;
}
.pill-action span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: #fff;
  font-size: 18px;
}
.pill-action:hover { background: var(--blue-700); transform: translateY(-2px); }
.pill-action:active { transform: translateY(1px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: grid;
  height: 92px;
  grid-template-columns: 300px 1fr 248px;
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid #edf0f6;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 30px rgba(7,27,58,.035);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; width: max-content; min-height: 58px; align-items: center; gap: 12px; }
.brand img { width: 55px; height: 55px; object-fit: contain; filter: drop-shadow(0 5px 8px rgba(7,27,58,.13)); }
.brand span { display: grid; gap: 2px; }
.brand strong { color: var(--navy-900); font-size: 16px; font-weight: 760; letter-spacing: -.025em; }
.brand small { color: var(--blue-700); font-size: 8px; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(26px,3.2vw,52px); }
.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: #24324a;
  font-size: 12px;
  font-weight: 650;
  transition: color .2s ease;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--blue-700); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-booking {
  display: inline-flex;
  width: 232px;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  padding: 4px 5px 4px 22px;
  border: 0;
  border-radius: 99px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 12px;
  font-weight: 740;
  cursor: pointer;
  transition: background .2s ease, transform .2s var(--ease);
}
.header-booking span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: #fff; font-size: 17px; }
.header-booking:hover { background: #d8e3ff; transform: translateY(-2px); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 800px;
  padding: 0 var(--page-pad) 124px;
  background:
    radial-gradient(circle at 72% 45%, rgba(94,129,255,.22), transparent 31%),
    linear-gradient(180deg,#fff 0%,#f9faff 42%,#dfe7ff 100%);
}
.hero-copy {
  position: relative;
  z-index: 8;
  display: flex;
  width: 35%;
  min-height: 660px;
  flex-direction: column;
  justify-content: center;
  padding-top: 22px;
}
.hero-copy h1 {
  max-width: 9.3ch;
  margin: 24px 0 0;
  color: var(--navy-900);
  font-size: clamp(62px,5.2vw,84px);
  font-weight: 640;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}
.hero-copy h1 em {
  display: block;
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-summary { max-width: 40ch; margin: 28px 0 0; color: #3e4c65; font-size: 15px; line-height: 1.7; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.quiet-link { display: inline-flex; min-height: 48px; align-items: center; gap: 10px; color: var(--navy-900); font-size: 12px; font-weight: 720; }
.quiet-link span { color: var(--blue-700); transition: transform .2s var(--ease); }
.quiet-link:hover span { transform: translateY(4px); }
.hero-visual { position: absolute; z-index: 2; top: 0; right: 1.5%; bottom: 80px; width: 66%; overflow: hidden; }
.orbit {
  position: absolute;
  top: 23%;
  left: 4%;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(21,94,239,.3);
  border-radius: 50%;
  transform: rotate(-17deg);
}
.orbit::before, .orbit::after { position: absolute; border: 1px solid rgba(21,94,239,.16); border-radius: inherit; content: ""; }
.orbit::before { inset: 8%; }
.orbit::after { inset: 18%; border-style: dashed; }
.hero-heart-static {
  --heart-yaw: 0deg;
  --heart-pitch: 0deg;
  position: absolute;
  z-index: 5;
  top: 9%;
  bottom: 6%;
  left: 1%;
  width: 58%;
  outline: none;
  perspective: 1400px;
  touch-action: pan-y;
}
.hero-heart-static > img {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 99%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 32px 26px rgba(38,60,116,.23));
  user-select: none;
  transform: translate(-50%,-50%) rotateX(var(--heart-pitch)) rotateY(var(--heart-yaw));
  transform-style: preserve-3d;
  transition: transform .26s var(--ease), filter .25s ease;
}
.hero-heart-static.is-dragging > img { filter: drop-shadow(0 38px 34px rgba(38,60,116,.28)); transition: filter .2s ease; }
.static-heart-dock {
  position: absolute;
  right: 12%;
  bottom: 2%;
  left: 12%;
  z-index: 8;
  display: grid;
  height: 54px;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  border: 1px solid rgba(21,94,239,.25);
  border-radius: 99px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 35px rgba(43,70,140,.13);
  backdrop-filter: blur(12px);
}
.static-heart-dock button { height: 100%; border: 0; color: var(--blue-700); background: transparent; font-size: 18px; cursor: pointer; }
.static-heart-reset { display: grid; grid-template-columns: auto auto; align-items: center; justify-content: center; gap: 7px; }
.static-heart-reset i { display: block; width: 8px; height: 8px; border: 2px solid var(--blue-700); border-radius: 50%; }
.static-heart-reset span { color: var(--muted); font-size: 9px; font-style: normal; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.hero-doctor { position: absolute; z-index: 4; top: 7%; right: -1%; bottom: 0; width: 52%; }
.hero-doctor::before {
  position: absolute;
  inset: 10% 0 0 8%;
  border-radius: 52% 0 0 0;
  background: linear-gradient(145deg,#d9e4ff 0%,#93afff 100%);
  content: "";
  clip-path: ellipse(76% 74% at 78% 58%);
}
.hero-doctor img { position: absolute; z-index: 2; right: 4%; bottom: -7%; width: auto; height: 106%; object-fit: contain; filter: drop-shadow(0 30px 28px rgba(18,43,99,.17)); }
.care-cards {
  position: absolute;
  z-index: 10;
  right: var(--page-pad);
  bottom: -46px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.care-cards article {
  display: grid;
  min-height: 142px;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(15,42,88,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 45px rgba(24,43,92,.11);
}
.care-cards article > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-050); font-size: 22px; font-weight: 520; }
.care-cards article > div { display: grid; gap: 7px; }
.care-cards strong { font-size: 16px; font-weight: 760; letter-spacing: -.02em; }
.care-cards p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

/* Profile */
.profile-section {
  display: grid;
  min-height: 760px;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(70px,10vw,160px);
  padding: 136px var(--page-pad) 104px;
  background: #fff;
}
.profile-content { max-width: 670px; }
.profile-content h2 {
  max-width: 14ch;
  margin: 24px 0 0;
  font-size: clamp(45px,4.2vw,68px);
  font-weight: 620;
  letter-spacing: -.05em;
  line-height: 1.04;
  text-wrap: balance;
}
.profile-content h2 span, .section-heading h2 span, .agenda-heading h2 span, .closing-cta h2 span { color: var(--red-600); }
.profile-lead { max-width: 52ch; margin: 28px 0 34px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.profile-image {
  position: relative;
  align-self: center;
  width: min(100%,610px);
  height: 520px;
  justify-self: end;
}
.profile-image::before { position: absolute; inset: 8% 5% 5%; border-radius: 24px; background: linear-gradient(145deg,#edf1ff,#cdd9ff); content: ""; }
.profile-orbit { position: absolute; inset: 1% -1%; border: 1px solid rgba(21,94,239,.45); border-radius: 50%; transform: rotate(15deg); }
.profile-image img { position: absolute; z-index: 2; right: 8%; bottom: 5%; width: auto; height: 94%; object-fit: contain; }
.profile-badge { position: absolute; z-index: 4; display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; color: var(--blue-700); background: #fff; box-shadow: 0 13px 32px rgba(21,42,90,.14); font-size: 25px; }
.profile-badge::after { position: absolute; top: 12px; right: 12px; width: 5px; height: 5px; border-radius: 50%; background: var(--red-600); content: ""; }
.badge-top { top: -2%; left: 44%; }
.badge-bottom { right: 10%; bottom: -1%; }

/* Method */
.method-section { padding: 110px var(--page-pad) 120px; background: var(--blue-050); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; }
.section-heading .eyebrow { grid-column: 1/-1; }
.section-heading h2 { max-width: 17ch; margin: 18px 0 0; font-size: clamp(42px,4vw,64px); font-weight: 620; letter-spacing: -.05em; line-height: 1.04; }
.section-heading > p:last-child { max-width: 44ch; margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.method-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(70px,9vw,150px); align-items: center; margin-top: 64px; }
.heart-stage { position: relative; min-height: 540px; }
.heart-stage > img { position: absolute; z-index: 2; top: 43%; left: 50%; width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 28px 24px rgba(40,65,120,.19)); transform: translate(-50%,-50%); }
.heart-pedestal { position: absolute; right: 13%; bottom: 10%; left: 13%; height: 80px; border: 1px solid #cbd8f4; border-radius: 50%; background: radial-gradient(ellipse at center,#fff 0%,#eef3ff 56%,#dfe7f8 100%); box-shadow: 0 18px 34px rgba(40,62,112,.11); }
.heart-stage > a { position: absolute; z-index: 4; bottom: 0; left: 50%; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--blue-700); color: var(--blue-700); font-size: 12px; font-weight: 700; transform: translateX(-50%); }
.care-path { border-top: 1px solid #c8d4e8; }
.care-path article { display: grid; min-height: 154px; grid-template-columns: 72px 1fr; align-items: center; gap: 24px; border-bottom: 1px solid #c8d4e8; }
.care-path b { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; color: var(--blue-700); background: #fff; font-size: 25px; font-weight: 430; }
.care-path article > div { display: grid; gap: 8px; }
.care-path strong { font-size: 18px; font-weight: 760; }
.care-path p { max-width: 48ch; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

/* 3D anatomy */
.anatomy-section {
  display: grid;
  min-height: 820px;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(56px,7vw,110px);
  padding: 112px var(--page-pad);
  color: #fff;
  background: var(--navy-900);
}
.anatomy-copy h2 { max-width: 9ch; margin: 24px 0 0; font-size: clamp(50px,4.6vw,72px); font-weight: 590; letter-spacing: -.055em; line-height: .98; }
.anatomy-copy h2 em { color: #a8c4ff; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.anatomy-lead { max-width: 40ch; margin: 28px 0 0; color: #aebcd0; font-size: 14px; line-height: 1.7; }
.anatomy-copy dl { margin: 42px 0 0; border-top: 1px solid rgba(255,255,255,.15); }
.anatomy-copy dl > div { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.anatomy-copy dt { font-size: 12px; font-weight: 720; }
.anatomy-copy dd { margin: 0; color: #8fa1b9; font-size: 11px; }
.anatomy-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: radial-gradient(circle at 50% 45%,rgba(58,113,255,.34),transparent 40%),#0c2a58;
}
.anatomy-panel::after { position: absolute; inset: 10%; border: 1px solid rgba(165,194,255,.18); border-radius: 50%; content: ""; pointer-events: none; }
.panel-label { position: absolute; z-index: 7; top: 26px; left: 30px; margin: 0; color: #c6d6f8; font-size: 10px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
#focus-heart-canvas { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; }
.heart-fallback { position: absolute; z-index: 2; inset: 9%; width: 82%; height: 82%; object-fit: contain; opacity: 0; visibility: hidden; }
.heart-fallback.is-visible { opacity: 1; visibility: visible; }
.model-loader { position: absolute; z-index: 8; inset: 0; display: grid; place-content: center; gap: 16px; color: #fff; background: rgba(7,27,58,.92); text-align: center; transition: opacity .35s ease, visibility .35s ease; }
.model-loader.is-hidden { opacity: 0; visibility: hidden; }
.model-loader span { width: 44px; height: 44px; margin: auto; border: 2px solid rgba(255,255,255,.18); border-top-color: #fff; border-radius: 50%; animation: spin 1s linear infinite; }
.model-loader p { margin: 0; color: #adc3e7; font-size: 11px; }
.model-loader strong { color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }
.panel-tools { position: absolute; z-index: 9; top: 50%; left: 18px; display: grid; gap: 5px; padding: 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; background: rgba(4,22,50,.56); backdrop-filter: blur(10px); transform: translateY(-50%); }
.panel-tools button { display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; color: #c9dafb; background: transparent; cursor: pointer; }
.panel-tools button:hover, .panel-tools button.is-active { color: #fff; background: var(--blue-700); }
.anatomy-connectors { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.anatomy-connectors path { fill: none; stroke: rgba(255,255,255,.88); stroke-width: 1; }
.anatomy-connectors circle { fill: var(--blue-700); stroke: #fff; stroke-width: 2; }
.anatomy-connectors .anchor-core { fill: #fff; stroke: none; }
.anatomy-label { position: absolute; z-index: 6; display: flex; max-width: 170px; align-items: center; gap: 9px; color: #fff; pointer-events: none; }
.anatomy-label i { width: 8px; height: 8px; flex: 0 0 auto; border: 2px solid #fff; border-radius: 50%; background: var(--blue-700); }
.anatomy-label span { display: grid; gap: 3px; color: #aebfda; font-size: 9px; line-height: 1.3; }
.anatomy-label strong { color: #fff; font-size: 10px; }
.label-aorta { top: 23%; right: 6%; }
.label-coronary { top: 49%; right: 4%; }
.label-ventricle { right: 8%; bottom: 18%; }

/* Agenda */
.agenda-section {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  align-items: start;
  gap: clamp(70px,8vw,130px);
  padding: 112px var(--page-pad);
  background: #fff;
}
.agenda-heading h2 { max-width: 8ch; margin: 22px 0 0; font-size: clamp(54px,4.7vw,74px); font-weight: 620; letter-spacing: -.055em; line-height: .98; }
.agenda-heading > p:last-child { max-width: 32ch; margin: 28px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.location-list { border-top: 1px solid var(--line); }
.location { border-bottom: 1px solid var(--line); }
.location summary {
  display: grid;
  min-height: 118px;
  grid-template-columns: 56px minmax(210px,1fr) minmax(255px,.9fr) 46px;
  align-items: center;
  gap: 20px;
  padding: 18px 10px;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease;
}
.location summary::-webkit-details-marker { display: none; }
.location summary:hover { background: var(--blue-050); }
.location-active summary { background: linear-gradient(90deg,var(--blue-050),rgba(244,247,255,.35)); }
.location-symbol { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: 22px; }
.location summary > span:nth-child(2) { display: grid; gap: 6px; }
.location summary strong { font-size: 16px; font-weight: 720; letter-spacing: -.02em; }
.location summary small { color: var(--muted); font-size: 10px; }
.location-times { display: flex; gap: 18px; padding-left: 24px; border-left: 1px solid var(--line); }
.location-times small { display: grid; gap: 4px; }
.location-times b { color: var(--ink); font-weight: 680; }
.chevron { display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue-700); font-size: 22px; font-style: normal; }
.location-detail { padding: 0 10px 22px 86px; }
.location-detail a { display: inline-flex; min-height: 44px; align-items: center; gap: 14px; padding: 0 17px; border-radius: 99px; color: #fff; background: var(--navy-900); font-size: 11px; font-weight: 720; }
.location-detail p { max-width: 55ch; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

/* Closing + footer */
.closing-cta {
  position: relative;
  display: grid;
  min-height: 470px;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  overflow: hidden;
  padding: 84px var(--page-pad);
  color: #fff;
  background: radial-gradient(circle at 74% 50%,#123d83 0%,transparent 30%),var(--navy-900);
}
.closing-cta::before { position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); content: ""; pointer-events: none; }
.closing-cta > div:first-child { position: relative; z-index: 4; }
.closing-cta .eyebrow { color: #a8c4ff; }
.closing-cta h2 { max-width: 12ch; margin: 22px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(50px,4.5vw,70px); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; text-wrap: balance; }
.accent-action { min-width: 220px; margin-top: 32px; background: var(--red-600); }
.accent-action:hover { background: var(--red-700); }
.closing-heart { position: absolute; z-index: 2; top: 50%; right: 4%; width: 39%; height: 120%; opacity: .22; transform: translateY(-50%); }
.closing-heart img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(1) saturate(0) brightness(2.2); }
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  align-items: start;
  gap: clamp(44px,6vw,90px);
  padding: 54px var(--page-pad) 48px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: #fff;
  background: var(--navy-900);
}
.site-footer .brand strong { color: #fff; }
.site-footer .brand small { color: #8db4ff; }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.site-footer nav a { display: flex; min-height: 40px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.11); color: #aebdd2; font-size: 11px; transition: color .2s ease; }
.site-footer nav a:hover { color: #fff; }
.footer-meta { display: grid; gap: 8px; color: #8295ad; }
.footer-meta p { margin: 0 0 5px; color: #fff; font-size: 11px; }
.footer-meta small { font-size: 8px; line-height: 1.55; }

/* Dialog */
.booking-dialog { z-index: var(--z-dialog); width: min(620px,calc(100% - 28px)); padding: 0; border: 0; border-radius: 22px; color: var(--ink); background: #fff; box-shadow: 0 28px 72px rgba(0,20,60,.3); }
.booking-dialog::backdrop { background: rgba(2,12,28,.72); backdrop-filter: blur(6px); }
.dialog-inner { position: relative; padding: 46px; }
.dialog-close { position: absolute; top: 16px; right: 16px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 24px; cursor: pointer; }
.dialog-label { margin: 0; color: var(--blue-700); font-size: 11px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.dialog-inner h2 { max-width: 11ch; margin: 14px 0; font-size: 44px; font-weight: 600; letter-spacing: -.04em; line-height: 1; text-wrap: balance; }
.dialog-inner > p:not(.dialog-label) { max-width: 52ch; color: var(--muted); font-size: 13px; line-height: 1.6; }
.dialog-options { margin-top: 26px; border-top: 1px solid var(--line); }
.dialog-options > a, .dialog-options > div { display: grid; min-height: 88px; grid-template-columns: 72px 1fr auto; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.dialog-options b { color: var(--blue-700); font-size: 9px; }
.dialog-options span { display: grid; gap: 4px; }
.dialog-options strong { font-size: 14px; }
.dialog-options small { color: #6f7d8d; font-size: 10px; }
.dialog-options i { color: #6f7d8d; font-size: 9px; font-style: normal; }
.dialog-options a i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue-700); font-size: 16px; }
.dialog-disclaimer { display: block; margin-top: 22px; color: #6f7d8d; font-size: 9px; line-height: 1.5; }

@media (max-width: 1280px) {
  .site-header { grid-template-columns: 250px 1fr 220px; padding-right: 30px; padding-left: 30px; }
  .header-booking { width: 212px; }
  .hero { padding-right: 30px; padding-left: 30px; }
  .hero-copy { width: 37%; }
  .hero-copy h1 { font-size: 62px; }
  .hero-visual { right: 0; width: 64%; }
  .care-cards { right: 30px; left: 30px; gap: 14px; }
  .care-cards article { padding: 22px; }
  .anatomy-section { grid-template-columns: .7fr 1.3fr; }
  .agenda-section { grid-template-columns: .58fr 1.42fr; gap: 60px; }
  .location summary { grid-template-columns: 52px minmax(190px,1fr) minmax(220px,.9fr) 38px; }
}

@media (max-width: 1020px) {
  html { scroll-padding-top: 76px; }
  body { background: #fff; }
  .site-shell { width: 100%; margin: 0; border-radius: 0; box-shadow: none; }
  .site-header { height: 76px; grid-template-columns: 1fr auto; padding: 0 20px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 14px; }
  .menu-toggle { position: relative; z-index: 32; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
  .menu-toggle i { position: absolute; top: 50%; left: 50%; width: 17px; height: 1px; background: var(--navy-900); transition: transform .2s ease; }
  .menu-toggle i:first-of-type { transform: translate(-50%,-4px); }
  .menu-toggle i:last-of-type { transform: translate(-50%,4px); }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translate(-50%,-50%) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translate(-50%,-50%) rotate(-45deg); }
  .main-nav { position: absolute; z-index: var(--z-menu); top: 68px; right: 14px; left: 14px; display: none; padding: 8px; flex-direction: column; align-items: stretch; gap: 2px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 18px 45px rgba(7,27,58,.16); }
  .main-nav.is-open { display: flex; }
  .main-nav a { min-height: 50px; padding: 0 14px; border-radius: 10px; color: var(--ink); }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); background: var(--blue-050); }
  .header-booking { display: none; }

  .hero { display: flex; min-height: 0; padding: 0 20px 92px; flex-direction: column; }
  .hero-copy { width: 100%; min-height: 520px; padding: 68px 0 34px; }
  .hero-copy h1 { max-width: 8.6ch; font-size: clamp(53px,13vw,70px); }
  .hero-summary { max-width: 38ch; font-size: 14px; }
  .hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: calc(100% + 40px); height: 690px; margin-left: -20px; }
  .hero-heart-static { top: 2%; bottom: 2%; left: 0; width: 58%; }
  .hero-doctor { top: 3%; right: 0; width: 54%; }
  .hero-doctor img { right: 0; height: 96%; }
  .care-cards { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: 1fr; gap: 10px; margin: -22px 0 0; }
  .care-cards article { min-height: 108px; grid-template-columns: 48px 1fr; padding: 18px 20px; }
  .care-cards article > span { width: 44px; height: 44px; }

  .profile-section { min-height: 0; grid-template-columns: 1fr; gap: 70px; padding: 100px 20px 84px; }
  .profile-content h2 { font-size: clamp(43px,10.8vw,58px); }
  .profile-image { width: min(100%,620px); justify-self: center; }
  .method-section { padding: 88px 20px 96px; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: clamp(42px,10.5vw,58px); }
  .section-heading > p:last-child { margin-top: 24px; }
  .method-layout { grid-template-columns: 1fr; gap: 66px; margin-top: 44px; }
  .heart-stage { min-height: 520px; }
  .care-path article { grid-template-columns: 62px 1fr; }
  .anatomy-section { grid-template-columns: 1fr; min-height: 0; gap: 52px; padding: 88px 20px 96px; }
  .anatomy-copy h2 { font-size: clamp(48px,11vw,64px); }
  .anatomy-panel { min-height: 650px; }
  .agenda-section { grid-template-columns: 1fr; gap: 54px; padding: 88px 20px 96px; }
  .agenda-heading h2 { font-size: clamp(50px,12vw,66px); }
  .location summary { grid-template-columns: 50px 1fr 40px; }
  .location-times { grid-column: 2/4; padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .closing-cta { min-height: 540px; grid-template-columns: 1fr; padding: 72px 20px; }
  .closing-heart { right: -15%; width: 68%; }
  .closing-cta h2 { max-width: 10ch; font-size: clamp(48px,11vw,62px); }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 54px 20px 42px; }
  .footer-meta { grid-column: 1/-1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 640px) {
  .site-header { padding: 0 14px; }
  .brand { gap: 8px; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 7px; }
  .hero { padding-right: 16px; padding-left: 16px; }
  .hero-copy { min-height: 500px; padding-top: 54px; }
  .hero-copy h1 { font-size: clamp(50px,14.8vw,63px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 4px; }
  .pill-action { min-width: 218px; }
  .quiet-link { padding-left: 14px; }
  .hero-visual { width: calc(100% + 32px); height: clamp(560px,145vw,660px); margin-left: -16px; }
  .orbit { top: 13%; left: -12%; width: 94%; }
  .hero-heart-static { top: 0; bottom: 0; left: 0; width: 100%; height: 100%; }
  .hero-heart-static > img { top: 39%; left: 34%; width: 96%; height: 86%; }
  .static-heart-dock { right: auto; bottom: 24px; left: 50%; width: min(calc(100% - 32px),360px); height: 48px; transform: translateX(-50%); }
  .hero-doctor { top: 7%; right: 0; bottom: 18%; width: 100%; }
  .hero-doctor::before { inset: 8% -7% 0 36%; clip-path: ellipse(76% 74% at 78% 58%); }
  .hero-doctor img { right: 0; bottom: 0; height: 88%; }
  .care-cards { margin-top: 20px; }
  .care-cards article { min-height: 102px; padding: 16px; }

  .profile-section { gap: 54px; padding: 88px 16px 76px; }
  .profile-content h2 { max-width: 12ch; font-size: clamp(39px,11.5vw,50px); }
  .profile-lead { font-size: 14px; }
  .profile-image { height: 430px; }
  .profile-image img { right: 2%; height: 94%; }
  .profile-badge { width: 52px; height: 52px; font-size: 21px; }
  .method-section { padding: 78px 16px 86px; }
  .section-heading h2 { font-size: clamp(38px,11.2vw,50px); }
  .heart-stage { min-height: 430px; }
  .heart-stage > img { width: 100%; height: 88%; }
  .heart-pedestal { right: 3%; bottom: 11%; left: 3%; height: 58px; }
  .care-path article { min-height: 144px; grid-template-columns: 48px 1fr; gap: 12px; }
  .care-path b { width: 40px; height: 40px; }
  .care-path strong { font-size: 16px; }
  .care-path p { font-size: 11px; }
  .anatomy-section { padding: 78px 16px 86px; }
  .anatomy-copy h2 { font-size: clamp(43px,12vw,54px); }
  .anatomy-copy dl > div { grid-template-columns: 1fr; gap: 5px; }
  .anatomy-panel { min-height: 520px; }
  .panel-label { top: 20px; left: 20px; }
  .panel-tools { top: auto; right: 10px; bottom: 10px; left: 10px; display: flex; padding: 5px; transform: none; }
  .panel-tools button { flex: 1; height: 42px; }
  .anatomy-label, .anatomy-connectors { display: none; }
  .agenda-section { padding: 78px 16px 86px; }
  .agenda-heading h2 { font-size: clamp(48px,13vw,58px); }
  .location summary { min-height: 104px; grid-template-columns: 46px 1fr 32px; gap: 11px; padding: 14px 4px; }
  .location-symbol { width: 42px; height: 42px; font-size: 18px; }
  .location summary strong { font-size: 13px; }
  .location-times { gap: 14px; padding-top: 11px; }
  .location-times small { font-size: 9px; }
  .location-detail { padding: 0 4px 18px 57px; }
  .location-detail a, .location-detail p { font-size: 9px; }
  .closing-cta { min-height: 580px; padding: 70px 16px; }
  .closing-cta::before { inset: 10px; }
  .closing-heart { right: -42%; bottom: -8%; top: auto; width: 120%; height: 72%; transform: none; }
  .closing-cta h2 { font-size: clamp(45px,12.4vw,56px); }
  .site-footer { grid-template-columns: 1fr; gap: 40px; padding: 48px 16px 34px; }
  .site-footer nav { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: auto; }
  .dialog-inner { padding: 40px 20px 26px; }
  .dialog-inner h2 { font-size: 37px; }
  .dialog-options > a, .dialog-options > div { grid-template-columns: 62px 1fr auto; gap: 8px; }
  .dialog-options i { max-width: 64px; text-align: right; }
}

@media (max-width: 380px) {
  .brand span { max-width: 175px; }
  .hero-visual { height: 560px; }
  .hero-heart-static > img { left: 34%; width: 98%; }
  .hero-doctor img { height: 84%; }
  .care-cards p { font-size: 10px; }
  .profile-image { height: 390px; }
  .anatomy-panel { min-height: 480px; }
  .location-times { flex-direction: column; }
  .dialog-options > a, .dialog-options > div { grid-template-columns: 1fr; padding: 16px 0; }
  .dialog-options a i { grid-row: 1; }
  .dialog-options i { max-width: none; text-align: left; }
}

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