/* CODE 17 captions-only video release v13 */
:root {
  --ink: #1f2428;
  --ink-soft: #626a70;
  --paper: #f2f3f2;
  --paper-deep: #e3e6e6;
  --white: #fbfbfa;
  --plum: #353c42;
  --plum-dark: #20262a;
  --rose: #5c7180;
  --sage: #909a98;
  --line: rgba(31, 36, 40, .14);
  --shadow: 0 24px 70px rgba(20, 25, 28, .13);
  --radius: 28px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--plum);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(46px, 6vw, 82px); }
h2 { margin-bottom: 24px; font-size: clamp(40px, 4.6vw, 66px); }
h3 { font-size: 30px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(242, 243, 242, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(25, 30, 34, .08);
}

.header-inner { display: flex; align-items: center; min-height: 82px; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 14px;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: Georgia, serif; font-size: 16px; font-weight: 500; }
.brand-copy small { color: var(--ink-soft); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.desktop-nav { display: flex; margin-left: auto; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: 14px; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; content: ""; background: var(--plum); transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; flex-direction: column; line-height: 1.2; }
.phone-link span { font-size: 14px; font-weight: 700; }
.phone-link small { color: var(--ink-soft); font-size: 10px; }

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--plum);
  border: 1px solid var(--plum);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
  transition: color .2s, background .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.button:hover { background: var(--plum-dark); border-color: var(--plum-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31, 38, 42, .22); }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(92, 113, 128, .46); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 11px 20px; }
.button-ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.button-ghost:hover { color: var(--white); }
.button-light { color: var(--plum); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: 50%; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { padding: 10px 24px 26px; border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }

.hero { position: relative; min-height: 100vh; padding: 154px 0 40px; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { top: 100px; right: -220px; width: 620px; height: 620px; background: rgba(145, 156, 163, .22); }
.hero-orb-two { bottom: 60px; left: -190px; width: 430px; height: 430px; background: rgba(193, 199, 199, .25); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .78fr; align-items: center; gap: 76px; }
.hero-copy { padding-bottom: 20px; }
.hero-text { max-width: 650px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; margin-top: 42px; flex-wrap: wrap; gap: 14px 24px; color: var(--ink-soft); font-size: 13px; }
.hero-proof > div { display: flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 19px; height: 19px; fill: none; stroke: var(--rose); stroke-width: 1.6; }
.hero-visual { position: relative; padding: 0 20px 42px; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: .78; background: #dfe2e2; border-radius: 220px 220px 24px 24px; box-shadow: var(--shadow); }
.portrait-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 65%, rgba(24, 29, 32, .13)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; filter: saturate(.78) contrast(1.02); }
.hero-card { position: absolute; display: flex; padding: 17px 20px; align-items: center; gap: 12px; background: rgba(251, 251, 250, .94); border: 1px solid rgba(255,255,255,.88); border-radius: 16px; box-shadow: 0 18px 44px rgba(24, 29, 32, .16); backdrop-filter: blur(14px); }
.hero-card span { color: var(--ink-soft); font-size: 11px; }
.hero-card strong { font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.hero-card-price { top: 16%; left: -38px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero-card-place { right: -22px; bottom: 16px; }
.hero-card-place div { display: flex; flex-direction: column; line-height: 1.25; }
.status-dot { width: 10px; height: 10px; background: #7d9188; border-radius: 50%; box-shadow: 0 0 0 6px rgba(125,145,136,.15); }
.trust-bar { position: relative; display: grid; margin-top: 62px; padding: 28px 0 4px; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.trust-bar div { display: flex; padding: 0 26px; flex-direction: column; border-right: 1px solid var(--line); }
.trust-bar div:first-child { padding-left: 0; }
.trust-bar div:last-child { border: 0; }
.trust-bar strong { font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.trust-bar span { color: var(--ink-soft); font-size: 12px; }

.video-story { padding: 22px 0 120px; background: var(--paper); }
.video-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 9; min-height: 520px; color: var(--white); background: #d5d9da; border-radius: var(--radius); box-shadow: var(--shadow); }
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,32,35,.18), transparent 40%, rgba(27,32,35,.7)); pointer-events: none; }
.video-topline { position: absolute; top: 26px; right: 30px; left: 30px; display: flex; justify-content: space-between; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.video-caption { position: absolute; right: 180px; bottom: 34px; left: 36px; }
.video-caption .eyebrow { color: #d8e0e4; }
.video-caption h2 { max-width: 760px; margin: 0; font-size: clamp(36px, 4.5vw, 64px); text-shadow: 0 3px 24px rgba(20,24,27,.28); }
.video-toggle { position: absolute; right: 34px; bottom: 36px; display: flex; min-width: 114px; height: 54px; padding: 0 18px; align-items: center; justify-content: center; gap: 10px; color: var(--white); background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.45); border-radius: 999px; cursor: pointer; backdrop-filter: blur(12px); }
.video-toggle:hover { background: rgba(255,255,255,.22); }
.video-toggle-icon { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid currentColor; }
.video-toggle[aria-pressed="true"] .video-toggle-icon { width: 10px; height: 12px; border: 0; border-right: 3px solid currentColor; border-left: 3px solid currentColor; }
.video-toggle span:last-child { font-size: 11px; font-weight: 750; letter-spacing: .04em; }

.section-head { display: grid; margin-bottom: 54px; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head > p { margin: 0 0 6px; color: var(--ink-soft); }
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-card { position: relative; display: grid; min-height: 300px; padding: 34px 28px 32px; grid-template-columns: 52px 1fr auto; gap: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, transform .25s; }
.service-card:nth-child(2n) { border-right: 0; }
.service-card:hover, .service-card.active { z-index: 1; background: var(--paper); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card.featured { color: var(--white); background: var(--plum); }
.service-card.featured .service-number, .service-card.featured .service-kicker, .service-card.featured p { color: rgba(255,255,255,.68); }
.service-card.featured .service-meta { border-color: rgba(255,255,255,.18); }
.service-number { color: var(--rose); font-size: 12px; font-weight: 750; letter-spacing: .12em; }
.service-kicker { margin-bottom: 14px; color: var(--rose); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 18px; }
.service-card p:not(.service-kicker) { max-width: 480px; color: var(--ink-soft); }
.service-meta { display: flex; margin-top: 30px; padding-top: 18px; flex-wrap: wrap; gap: 18px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.circle-link { align-self: end; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; color: var(--ink); background: transparent; border: 1px solid currentColor; border-radius: 50%; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.featured .circle-link { color: var(--white); }
.circle-link:hover { color: var(--white); background: var(--rose); border-color: var(--rose); transform: rotate(12deg); }

.method { color: var(--white); background: var(--plum); }
.method-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.method-copy { position: sticky; top: 130px; align-self: start; }
.method-copy h2 { font-size: clamp(40px, 4vw, 60px); }
.method-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.68); }
.text-link { padding: 8px 0; color: var(--white); background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.4); cursor: pointer; font-weight: 700; }
.text-link span { margin-left: 12px; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; padding: 34px 0 38px; grid-template-columns: 64px 1fr; gap: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.steps > li > span { color: #c3cdd2; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.steps h3 { margin-bottom: 12px; font-size: 34px; }
.steps p { max-width: 540px; margin: 0; color: rgba(255,255,255,.66); }

.doctor { background: var(--paper-deep); }
.doctor-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.doctor-visual { position: relative; max-width: 480px; }
.doctor-visual > img { width: 100%; aspect-ratio: .82; object-fit: cover; object-position: center 35%; border-radius: 210px 210px 18px 18px; filter: saturate(.78) contrast(1.02); }
.doctor-badge { position: absolute; right: -38px; bottom: 34px; display: grid; width: 124px; height: 124px; padding: 18px; place-content: center; text-align: center; color: var(--white); background: var(--plum); border: 6px solid var(--paper-deep); border-radius: 50%; }
.doctor-badge span { font-family: Georgia, serif; font-size: 24px; }
.doctor-badge small { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.doctor-lead { max-width: 670px; color: var(--ink-soft); font-family: Georgia, serif; font-size: 24px; line-height: 1.45; }
.credential-list { display: grid; margin: 34px 0; padding: 0; grid-template-columns: 1fr 1fr; gap: 0 30px; list-style: none; }
.credential-list li { position: relative; padding: 15px 0 15px 22px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.credential-list li::before { position: absolute; top: 23px; left: 2px; width: 7px; height: 7px; content: ""; background: var(--rose); border-radius: 50%; }
.doctor-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.license-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 700; }

.technology { background: var(--white); }
.technology-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.technology-gallery figure { position: relative; margin: 0; overflow: hidden; min-height: 520px; background: var(--paper); border-radius: 16px; }
.technology-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: transform .5s, filter .5s; }
.technology-gallery figure:hover img { transform: scale(1.025); filter: saturate(1); }
.technology-gallery figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 14px 16px; color: var(--white); background: rgba(29, 35, 39, .8); border-radius: 10px; font-size: 12px; backdrop-filter: blur(12px); }
.technology-gallery figcaption span { margin-right: 10px; color: #d4dde1; }

.prices { background: var(--paper); }
.prices-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.prices-copy { align-self: start; position: sticky; top: 130px; }
.prices-copy > p:not(.eyebrow) { max-width: 470px; color: var(--ink-soft); }
.price-note { margin-top: 26px; padding: 16px 18px; background: rgba(125,139,128,.12); border-left: 3px solid var(--sage); font-size: 12px; }
.price-list { border-top: 1px solid var(--line); }
.price-row { display: flex; min-height: 112px; padding: 24px 0; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.price-row div { display: flex; flex-direction: column; }
.price-row strong { font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.price-row span { color: var(--ink-soft); font-size: 12px; }
.price-row b { min-width: max-content; color: var(--plum); font-size: 14px; }
.price-cta { margin-top: 30px; }

.reviews { background: #dfe3e3; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { display: flex; min-height: 330px; margin: 0; padding: 32px; flex-direction: column; background: rgba(251,251,250,.82); border: 1px solid rgba(255,255,255,.74); border-radius: 14px; }
.review-stars { color: var(--rose); font-size: 12px; letter-spacing: .15em; }
.review-card blockquote { margin: 48px 0 32px; font-family: Georgia, serif; font-size: 21px; line-height: 1.45; }
.review-card footer { display: flex; margin-top: auto; flex-direction: column; }
.review-card footer strong { font-size: 13px; }
.review-card footer span { color: var(--ink-soft); font-size: 11px; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-grid > div:first-child > p:not(.eyebrow) { max-width: 420px; color: var(--ink-soft); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; min-height: 84px; padding: 22px 0; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; font-family: Georgia, serif; font-size: 23px; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--rose); font-family: Inter, sans-serif; font-size: 26px; font-weight: 300; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 650px; margin-bottom: 28px; color: var(--ink-soft); }

.contact { padding-top: 30px; background: var(--white); }
.contact-card { display: grid; padding: 76px; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 100px; color: var(--white); background: var(--plum); border-radius: var(--radius); }
.contact-copy h2 { max-width: 600px; }
.contact-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.68); }
.contact-details { border-top: 1px solid rgba(255,255,255,.18); }
.contact-details > * { display: flex; padding: 21px 0; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-details small { color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }

.site-footer { padding: 70px 0 100px; color: rgba(255,255,255,.72); background: var(--plum-dark); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 80px; }
.footer-brand { margin-bottom: 24px; color: var(--white); }
.footer-grid p { font-size: 12px; }
.footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; }
.footer-grid > div > strong { margin-bottom: 14px; color: var(--white); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a:not(.brand), .footer-grid button { margin: 4px 0; padding: 0; color: rgba(255,255,255,.72); background: none; border: 0; cursor: pointer; font-size: 12px; text-align: left; }
.footer-grid a:hover, .footer-grid button:hover { color: white; }
.disclaimer { display: flex; margin-top: 54px; padding-top: 26px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.13); }
.disclaimer p { margin: 0; color: white; font-size: 18px; font-weight: 750; text-transform: uppercase; }
.disclaimer span { min-width: max-content; font-size: 11px; }
.mobile-cta { display: none; }

.modal {
  width: min(560px, calc(100% - 32px));
  max-height: min(820px, calc(100vh - 32px));
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: auto;
}

.modal::backdrop { background: rgba(24, 29, 32, .7); backdrop-filter: blur(6px); }
.modal-close { position: absolute; top: 15px; right: 15px; display: grid; width: 38px; height: 38px; padding: 0; place-items: center; color: var(--ink); background: var(--paper); border: 0; border-radius: 50%; cursor: pointer; font-size: 24px; line-height: 1; }
.modal-heading h2, .legal-copy h2 { padding-right: 24px; font-size: 46px; }
.modal-heading > p:not(.eyebrow), .legal-copy p { color: var(--ink-soft); }
.lead-modal form { display: grid; margin-top: 28px; gap: 18px; }
.lead-modal label { display: flex; flex-direction: column; gap: 7px; }
.lead-modal label > span { font-size: 12px; font-weight: 700; }
.lead-modal input, .lead-modal select { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: var(--paper); border: 1px solid transparent; border-radius: 10px; outline: none; }
.lead-modal input:focus, .lead-modal select:focus { border-color: var(--rose); background: white; }
.lead-modal label.invalid input { border-color: #b04343; }
.field-error { display: none; color: #a53d3d; font-size: 10px; }
.lead-modal label.invalid .field-error { display: block; }
.checkbox { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 9px !important; }
.checkbox input { width: 18px !important; min-height: 18px; margin: 2px 0 0; accent-color: var(--plum); }
.checkbox > span { color: var(--ink-soft); font-size: 11px !important; font-weight: 400 !important; }
.checkbox button { padding: 0; color: var(--plum); background: transparent; border: 0; border-bottom: 1px solid var(--plum); cursor: pointer; }
.submit-button { width: 100%; }
.form-note { margin: -7px 0 0; color: var(--ink-soft); font-size: 10px; text-align: center; }
.legal-modal { width: min(700px, calc(100% - 32px)); }
.legal-copy h3 { margin: 28px 0 8px; font-family: Inter, sans-serif; font-size: 15px; font-weight: 750; letter-spacing: 0; }
.noscript { position: fixed; z-index: 100; right: 20px; bottom: 20px; left: 20px; padding: 14px; color: white; background: #8b3434; border-radius: 12px; text-align: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  :root { --container: min(100% - 40px, 900px); }
  .desktop-nav, .phone-link { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 34px; }
  .hero-card-price { left: -10px; }
  .hero-card-place { right: -8px; }
  .section-head, .method-grid, .doctor-grid, .prices-grid, .faq-grid { gap: 54px; }
  .doctor-grid { grid-template-columns: .82fr 1.18fr; }
  .contact-card { padding: 54px; gap: 50px; }
  .technology-gallery { grid-template-columns: 1fr 1fr; }
  .technology-gallery .tech-main { grid-row: span 2; }
  .technology-gallery figure { min-height: 320px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 30px); --radius: 20px; }
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 66px; }
  .section { padding: 78px 0; }
  .header-inner { min-height: 70px; }
  .header-actions > .button { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 14px; }
  .hero { min-height: auto; padding: 122px 0 34px; }
  .hero-grid { display: flex; flex-direction: column; gap: 40px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(45px, 13vw, 62px); }
  h2 { font-size: clamp(38px, 11vw, 50px); }
  .hero-text { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; margin-top: 30px; gap: 11px; }
  .hero-visual { width: min(100%, 500px); padding-inline: 8px; }
  .portrait-frame { border-radius: 180px 180px 18px 18px; }
  .hero-card { padding: 13px 15px; }
  .hero-card-price { top: 10%; left: -2px; }
  .hero-card-place { right: -2px; bottom: 10px; }
  .trust-bar { margin-top: 32px; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-bar div { min-height: 90px; padding: 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar div:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
  .trust-bar div:nth-child(even) { padding-right: 0; padding-left: 18px; }
  .video-story { padding: 8px 0 78px; }
  .video-shell { aspect-ratio: 4 / 5; min-height: 0; }
  .video-shell video { object-position: 66% center; }
  .video-topline { top: 18px; right: 18px; left: 18px; }
  .video-topline span:last-child { display: none; }
  .video-caption { right: 20px; bottom: 94px; left: 20px; }
  .video-caption h2 { font-size: 38px; }
  .video-toggle { right: auto; bottom: 24px; left: 20px; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head > p { margin-top: 22px; }
  .service-grid { display: block; border-top: 0; }
  .service-card { min-height: 280px; margin-bottom: 10px; padding: 27px 22px; grid-template-columns: 38px 1fr auto; border: 1px solid var(--line) !important; border-radius: 14px; }
  .service-card h3 { font-size: 28px; }
  .method-grid, .doctor-grid, .prices-grid, .faq-grid, .contact-card { display: block; }
  .method-copy, .prices-copy { position: static; margin-bottom: 50px; }
  .steps li { grid-template-columns: 42px 1fr; }
  .doctor-visual { margin: 0 auto 60px; }
  .doctor-badge { right: -8px; bottom: -35px; width: 110px; height: 110px; }
  .credential-list { grid-template-columns: 1fr; }
  .technology-gallery { display: flex; margin-right: calc((100vw - var(--container)) / -2); padding-right: 15px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .technology-gallery figure, .technology-gallery .tech-main { width: 78vw; min-width: 78vw; height: 470px; scroll-snap-align: start; }
  .price-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .price-cta { width: 100%; }
  .review-grid { display: flex; margin-right: calc((100vw - var(--container)) / -2); padding-right: 15px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .review-card { width: 82vw; min-width: 82vw; scroll-snap-align: start; }
  .faq-grid > div:first-child { margin-bottom: 42px; }
  .accordion summary { font-size: 20px; }
  .contact { padding-top: 10px; }
  .contact-card { padding: 40px 24px; }
  .contact-details { margin-top: 44px; }
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
  .disclaimer { align-items: flex-start; flex-direction: column; }
  .disclaimer p { font-size: 14px; }
  .mobile-cta { position: fixed; z-index: 45; right: 0; bottom: 0; left: 0; display: grid; min-height: 64px; padding: 8px; grid-template-columns: .8fr 1.2fr; gap: 8px; background: rgba(251,251,250,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
  .mobile-cta > * { display: grid; place-items: center; border-radius: 999px; font-size: 13px; font-weight: 750; }
  .mobile-cta a { color: var(--plum); border: 1px solid var(--plum); }
  .mobile-cta button { color: white; background: var(--plum); border: 1px solid var(--plum); }
  .modal { padding: 38px 24px 28px; }
  .modal-heading h2, .legal-copy h2 { font-size: 38px; }
}

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

/* Editorial luxe direction — 2026 */
:root {
  --ink: #191d20;
  --ink-soft: #60676b;
  --paper: #f1f2f1;
  --paper-deep: #dfe2e1;
  --white: #fcfcfa;
  --plum: #30373b;
  --plum-dark: #171c1f;
  --rose: #536c79;
  --sage: #8d9692;
  --line: rgba(25, 29, 32, .14);
  --shadow: 0 28px 80px rgba(20, 25, 28, .14);
  --radius: 8px;
  --container: min(1280px, calc(100% - 72px));
}

body {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(25, 29, 32, .035) .65px, transparent .65px);
  background-size: 7px 7px;
}

h1, h2, h3 {
  font-family: Didot, "Bodoni 72", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.eyebrow { color: var(--rose); letter-spacing: .21em; }
.section { position: relative; padding: 138px 0; }

.site-header {
  background: rgba(241, 242, 241, .79);
  border-bottom-color: rgba(25, 29, 32, .08);
}

.header-inner { min-height: 88px; }
.brand-mark {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: .08em;
}
.brand-copy strong { font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 18px; }
.desktop-nav { gap: 34px; }
.desktop-nav a { font-size: 12px; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; }
.header-actions .button-small { min-height: 46px; padding-inline: 24px; }

.button {
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 2px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.button-small { min-height: 46px; padding: 11px 20px; font-size: 11px; }
.button-ghost { background: rgba(252,252,250,.36); }

.hero {
  min-height: 940px;
  padding: 154px 0 58px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(25,29,32,.06) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(255,255,255,.35), transparent 62%);
}
.hero::after {
  position: absolute;
  right: 36px;
  bottom: 160px;
  content: "PRIVATE AESTHETIC MEDICINE";
  color: rgba(25,29,32,.38);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .26em;
  writing-mode: vertical-rl;
}
.hero-orb-one { top: 52px; right: -230px; background: rgba(133,145,150,.21); }
.hero-orb-two { bottom: 18px; background: rgba(199,203,201,.31); }
.hero-grid { grid-template-columns: 1.08fr .72fr; gap: 108px; }
.hero-copy { position: relative; z-index: 2; padding-top: 16px; }
.hero-editorial-meta {
  display: flex;
  max-width: 680px;
  margin-bottom: 68px;
  padding-bottom: 13px;
  justify-content: space-between;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 { max-width: 880px; margin-bottom: 32px; font-size: clamp(58px, 6.45vw, 102px); line-height: .9; }
.hero-text { max-width: 620px; padding-left: 72px; font-size: 18px; }
.hero-actions { padding-left: 72px; }
.hero-proof { margin-left: 72px; }
.hero-proof svg { stroke: var(--rose); }
.hero-visual { padding: 30px 14px 54px; }
.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 3px -10px 25px 40px;
  content: "";
  border: 1px solid rgba(25,29,32,.2);
  border-radius: 230px 230px 4px 4px;
}
.portrait-index {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -42px;
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}
.portrait-index span:first-child { margin-bottom: 7px; color: var(--ink); font-family: Didot, Georgia, serif; font-size: 18px; letter-spacing: 0; text-transform: none; }
.portrait-frame { background: #d8dcdb; border-radius: 220px 220px 4px 4px; box-shadow: 0 32px 80px rgba(17,22,25,.16); }
.portrait-frame img { filter: saturate(.68) contrast(1.045); }
.hero-card { border-color: rgba(255,255,255,.68); border-radius: 2px; box-shadow: 0 20px 50px rgba(17,22,25,.16); }
.hero-card-price { top: 19%; left: -52px; }
.hero-card-place { right: -20px; bottom: 22px; }

.trust-bar {
  margin-top: 62px;
  padding: 0;
  color: rgba(255,255,255,.88);
  background: var(--plum-dark);
  border: 0;
  border-radius: 2px;
  box-shadow: 0 28px 72px rgba(15,19,21,.18);
}
.trust-bar div { min-height: 118px; padding: 27px 34px; justify-content: center; border-color: rgba(255,255,255,.12); }
.trust-bar div:first-child { padding-left: 34px; }
.trust-bar strong { font-size: 30px; }
.trust-bar span { color: rgba(255,255,255,.53); letter-spacing: .06em; text-transform: uppercase; }

.video-story { padding: 98px 0 138px; background: var(--white); }
.video-shell { min-height: 620px; border-radius: 2px; box-shadow: 0 32px 90px rgba(16,21,24,.19); }
.video-shell::before { position: absolute; z-index: 3; inset: 18px; content: ""; border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.video-caption { right: 220px; bottom: 52px; left: 54px; }
.video-caption h2 { max-width: 900px; font-size: clamp(48px, 5.3vw, 78px); line-height: .92; }
.video-toggle { right: 50px; bottom: 52px; border-radius: 2px; }

.services { background: var(--paper); }
.section-head { margin-bottom: 70px; grid-template-columns: 1.2fr .55fr; }
.section-head h2 { max-width: 850px; }
.service-grid { grid-template-columns: repeat(3, 1fr); border-top: 0; gap: 14px; }
.service-card {
  min-height: 390px;
  padding: 34px 30px 30px;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line) !important;
  background: rgba(252,252,250,.7);
  overflow: hidden;
}
.service-card::before { position: absolute; top: 0; right: 0; width: 86px; height: 86px; content: ""; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 0 0 0 86px; opacity: .6; }
.service-card:hover, .service-card.active { background: var(--white); transform: translateY(-7px); box-shadow: 0 24px 60px rgba(20,25,28,.12); }
.service-card.featured { background: var(--plum-dark); }
.service-card-body { padding-top: 48px; }
.service-card h3 { min-height: 62px; font-size: 38px; line-height: 1; }
.service-meta { margin-top: 38px; }
.circle-link { position: absolute; right: 28px; bottom: 26px; width: 48px; height: 48px; border-radius: 50%; }

.method {
  background-color: var(--plum-dark);
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 80px 80px;
}
.method-grid { gap: 130px; }
.method-copy h2 { font-size: clamp(48px, 4.8vw, 72px); }
.steps li { padding: 44px 0 50px; }
.steps h3 { font-size: 42px; }

.doctor { background: var(--white); }
.doctor-grid { grid-template-columns: .72fr 1.28fr; gap: 128px; }
.doctor-visual { max-width: 520px; padding: 18px 0 0 18px; }
.doctor-visual::before { position: absolute; inset: 0 18px 20px 0; content: ""; border: 1px solid var(--line); }
.doctor-visual > img { position: relative; aspect-ratio: .78; border-radius: 220px 220px 2px 2px; filter: saturate(.66) contrast(1.04); }
.doctor-badge { right: -54px; bottom: 44px; width: 138px; height: 138px; background: var(--plum-dark); border-color: var(--white); }
.doctor-lead { max-width: 720px; font-size: 28px; }
.credential-list { margin-top: 46px; }

.technology { background: var(--paper); }
.technology-gallery { grid-template-columns: 1.3fr .7fr .7fr; gap: 10px; }
.technology-gallery figure { min-height: 590px; border-radius: 2px; }
.technology-gallery img { filter: grayscale(.18) saturate(.55) contrast(1.03); }
.technology-gallery figcaption { right: 10px; bottom: 10px; left: 10px; border-radius: 1px; }

.prices { background: var(--white); }
.price-row { min-height: 126px; transition: padding .2s, background .2s; }
.price-row:hover { padding-right: 18px; padding-left: 18px; background: var(--paper); }
.price-row strong { font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 29px; }
.price-note { background: rgba(83,108,121,.09); }

.reviews { background: var(--paper-deep); }
.review-grid { gap: 10px; }
.review-card { min-height: 360px; padding: 38px; border-radius: 2px; }
.review-card blockquote { font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 24px; }

.faq { background: var(--white); }
.accordion summary { font-family: Didot, "Bodoni 72", Georgia, serif; font-size: 27px; }
.contact-card { padding: 92px; background: var(--plum-dark); border-radius: 2px; }
.site-footer { background: #101416; }
.modal { border-radius: 3px; }

@media (max-width: 1120px) {
  :root { --container: min(100% - 40px, 960px); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 48px; }
  .hero-editorial-meta { margin-bottom: 46px; }
  .hero-text, .hero-actions, .hero-proof { padding-left: 0; margin-left: 0; }
  .portrait-index { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-grid, .method-grid { gap: 70px; }
  .technology-gallery { grid-template-columns: 1fr 1fr; }
  .technology-gallery .tech-main { grid-row: span 2; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 30px); --radius: 2px; }
  .section { padding: 88px 0; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 112px 0 32px; background-image: linear-gradient(180deg, rgba(255,255,255,.35), transparent 55%); }
  .hero::after { display: none; }
  .hero-grid { display: flex; gap: 44px; }
  .hero-editorial-meta { margin-bottom: 38px; }
  .hero-editorial-meta span:last-child { display: none; }
  .hero h1 { font-size: clamp(52px, 14.2vw, 70px); line-height: .9; }
  .hero-text { padding-left: 0; font-size: 17px; }
  .hero-actions { padding-left: 0; }
  .hero-proof { margin-left: 0; }
  .hero-visual { padding: 16px 8px 44px; }
  .hero-visual::before { inset: 0 0 20px 28px; border-radius: 180px 180px 2px 2px; }
  .portrait-frame { border-radius: 180px 180px 2px 2px; }
  .hero-card-price { left: -2px; }
  .hero-card-place { right: -2px; }
  .trust-bar { display: grid; grid-template-columns: 1fr 1fr; margin-top: 30px; }
  .trust-bar div, .trust-bar div:first-child { min-height: 100px; padding: 20px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-bar div:nth-child(2n) { border-right: 0; }
  .video-story { padding: 70px 0 88px; }
  .video-shell { min-height: 0; }
  .video-shell::before { inset: 10px; }
  .video-caption { right: 20px; bottom: 96px; left: 20px; }
  .video-caption h2 { font-size: 42px; }
  .video-toggle { right: auto; bottom: 26px; left: 20px; }
  .section-head { display: block; margin-bottom: 42px; }
  .service-grid { display: block; }
  .service-card { min-height: 350px; margin-bottom: 10px; padding: 28px 24px; }
  .service-card-body { padding-top: 34px; }
  .service-card h3 { min-height: auto; font-size: 34px; }
  .method-grid, .doctor-grid { display: block; }
  .method-copy { margin-bottom: 52px; }
  .method-copy h2 { font-size: 48px; }
  .steps h3 { font-size: 35px; }
  .doctor-visual { margin-bottom: 72px; }
  .doctor-badge { right: -6px; bottom: -42px; width: 116px; height: 116px; }
  .doctor-lead { font-size: 23px; }
  .technology-gallery { display: flex; }
  .technology-gallery figure, .technology-gallery .tech-main { min-height: 470px; }
  .contact-card { padding: 46px 24px; }
}

/* Black / gold identity inspired by the supplied CODE17 concept — v5 */
:root {
  --brand-black: #0b0c0c;
  --brand-charcoal: #151718;
  --brand-graphite: #242627;
  --brand-ivory: #f3f1ec;
  --brand-gold: #b99a5d;
  --brand-gold-light: #d9c79e;
  --brand-line-dark: rgba(255, 255, 255, .14);
  --brand-line-gold: rgba(185, 154, 93, .52);
  --rose: #9a7c45;
  --plum: #111313;
  --plum-dark: #090a0a;
  --paper: #ececea;
  --paper-deep: #d9dad8;
  --white: #f8f7f3;
}

h1, h2, h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, Inter, sans-serif;
  font-weight: 300;
  letter-spacing: -.045em;
}

.eyebrow { color: var(--brand-gold); font-weight: 650; letter-spacing: .28em; }
.eyebrow::before { display: inline-block; width: 34px; height: 1px; margin: 0 14px 3px 0; content: ""; background: currentColor; }

.site-header {
  color: rgba(255,255,255,.88);
  background: rgba(11, 12, 12, .9);
  border-bottom: 1px solid rgba(185,154,93,.25);
}
.site-header.scrolled { border-color: rgba(185,154,93,.38); box-shadow: 0 12px 40px rgba(0,0,0,.32); }
.brand-mark { color: var(--brand-gold-light); border-color: var(--brand-gold); }
.brand-copy strong { color: white; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 15px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; }
.brand-copy small, .phone-link small { color: rgba(255,255,255,.5); }
.desktop-nav a { color: rgba(255,255,255,.68); letter-spacing: .14em; }
.desktop-nav a::after { background: var(--brand-gold); }
.header-actions .button { color: var(--brand-gold-light); background: transparent; border-color: var(--brand-gold); }
.header-actions .button:hover { color: var(--brand-black); background: var(--brand-gold-light); }
.menu-toggle { border-color: rgba(185,154,93,.52); }
.menu-toggle span { background: var(--brand-gold-light); }
.mobile-menu { color: white; background: var(--brand-black); border-color: var(--brand-line-dark); }

.button { border-radius: 0; font-size: 11px; font-weight: 650; letter-spacing: .16em; }
.button-primary { color: var(--brand-black); background: var(--brand-gold); border-color: var(--brand-gold); }
.button-primary:hover { color: var(--brand-black); background: var(--brand-gold-light); border-color: var(--brand-gold-light); box-shadow: 0 14px 34px rgba(185,154,93,.2); }
.button-ghost { color: rgba(255,255,255,.88); background: transparent; border-color: rgba(185,154,93,.5); }
.button-ghost:hover { color: var(--brand-black); background: var(--brand-gold-light); border-color: var(--brand-gold-light); }

.hero {
  color: white;
  background-color: var(--brand-black);
  background-image:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(185,154,93,.13) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle at 78% 26%, rgba(185,154,93,.11), transparent 32%),
    linear-gradient(180deg, #0b0c0c, #111313);
}
.hero::after { content: "AESTHETIC MEDICINE · MOSCOW"; color: rgba(185,154,93,.68); }
.hero-orb-one { background: rgba(185,154,93,.08); border: 1px solid rgba(185,154,93,.13); }
.hero-orb-two { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); }
.hero-editorial-meta { color: rgba(255,255,255,.48); border-color: var(--brand-line-gold); }
.hero h1 { max-width: 900px; font-weight: 250; letter-spacing: -.055em; }
.hero-text { color: rgba(255,255,255,.64); }
.hero-proof { color: rgba(255,255,255,.59); }
.hero-proof svg { stroke: var(--brand-gold); }
.hero-visual::before { border-color: var(--brand-line-gold); }
.portrait-index { color: rgba(255,255,255,.5); }
.portrait-index span:first-child { color: var(--brand-gold-light); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; }
.portrait-frame { background: #171818; border: 1px solid rgba(185,154,93,.28); box-shadow: 0 34px 90px rgba(0,0,0,.5); }
.portrait-frame::after { background: linear-gradient(180deg, rgba(5,5,5,.04) 55%, rgba(5,5,5,.48)); }
.portrait-frame img { filter: grayscale(.38) saturate(.48) contrast(1.08) brightness(.86); }
.hero-card { color: white; background: rgba(15,16,16,.92); border-color: rgba(185,154,93,.45); box-shadow: 0 22px 50px rgba(0,0,0,.42); }
.hero-card span { color: rgba(255,255,255,.52); }
.hero-card strong { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 350; }
.status-dot { background: var(--brand-gold); box-shadow: 0 0 0 6px rgba(185,154,93,.14); }

.trust-bar { background: #101212; border-top: 1px solid var(--brand-gold); border-bottom: 1px solid rgba(185,154,93,.35); box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.trust-bar div { border-color: rgba(185,154,93,.2); }
.trust-bar strong { color: var(--brand-gold-light); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; letter-spacing: .04em; }

.video-story { background: var(--brand-black); }
.video-shell { border: 1px solid rgba(185,154,93,.3); box-shadow: 0 34px 100px rgba(0,0,0,.52); }
.video-shell::before { border-color: rgba(185,154,93,.38); }
.video-caption .eyebrow { color: var(--brand-gold-light); }
.video-toggle { color: var(--brand-gold-light); border-color: rgba(185,154,93,.65); }
.video-subtitles {
  position: absolute;
  z-index: 2;
  top: 88px;
  left: 54px;
  width: min(430px, calc(100% - 108px));
  padding: 22px 24px;
  color: white;
  background: rgba(11,12,12,.84);
  border-left: 2px solid var(--brand-gold-light);
  box-shadow: 0 22px 60px rgba(0,0,0,.3);
  backdrop-filter: blur(10px);
}
.video-subtitles span { display: block; margin-bottom: 12px; color: var(--brand-gold-light); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.video-subtitles p { margin: 0; font-size: 18px; line-height: 1.5; }

.services { background: var(--brand-ivory); }
.service-card { background: rgba(255,255,255,.55); border-color: rgba(21,23,24,.2) !important; }
.service-card::before { border-color: rgba(185,154,93,.5); }
.service-card:hover, .service-card.active { background: white; box-shadow: 0 24px 60px rgba(12,13,13,.13); }
.service-card.featured { color: white; background: var(--brand-black); border-color: var(--brand-gold) !important; }
.service-card.featured::before { border-color: var(--brand-gold); }
.service-number, .service-kicker { color: #8f7139; }
.circle-link:hover { color: var(--brand-black); background: var(--brand-gold); border-color: var(--brand-gold); }

.method { background-color: var(--brand-charcoal); background-image: linear-gradient(rgba(185,154,93,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(185,154,93,.08) 1px, transparent 1px); }
.method .eyebrow, .steps > li > span { color: var(--brand-gold-light); }
.text-link { border-color: var(--brand-gold); }
.steps li, .steps li:last-child { border-color: rgba(185,154,93,.22); }

.doctor { background: var(--brand-ivory); }
.doctor-visual::before { border-color: var(--brand-gold); }
.doctor-visual > img { filter: grayscale(.35) saturate(.45) contrast(1.07); }
.doctor-badge { color: var(--brand-gold-light); background: var(--brand-black); border-color: var(--brand-ivory); box-shadow: inset 0 0 0 1px var(--brand-gold); }
.credential-list li::before { background: var(--brand-gold); }
.license-link { border-color: var(--brand-gold); }

.technology { color: white; background: var(--brand-black); }
.technology .section-head > p { color: rgba(255,255,255,.55); }
.technology-gallery figure { background: var(--brand-charcoal); border: 1px solid rgba(185,154,93,.28); }
.technology-gallery img { filter: grayscale(.65) saturate(.25) contrast(1.1) brightness(.82); }
.technology-gallery figure:hover img { filter: grayscale(.15) saturate(.55) contrast(1.05); }
.technology-gallery figcaption { background: rgba(8,9,9,.86); border: 1px solid rgba(185,154,93,.25); }
.technology-gallery figcaption span { color: var(--brand-gold-light); }

.prices { background: var(--brand-ivory); }
.price-row:hover { background: rgba(185,154,93,.09); }
.price-row b { color: #806533; }
.price-note { background: rgba(185,154,93,.11); border-color: var(--brand-gold); }

.reviews { color: white; background: var(--brand-charcoal); }
.reviews .section-head > p { color: rgba(255,255,255,.55); }
.review-card { background: #101212; border-color: rgba(185,154,93,.3); }
.review-stars { color: var(--brand-gold); }
.review-card footer span { color: rgba(255,255,255,.45); }

.faq { background: var(--brand-ivory); }
.accordion summary span { color: #8f7139; }
.contact { background: var(--brand-ivory); }
.contact-card { background: var(--brand-black); border: 1px solid rgba(185,154,93,.45); box-shadow: 0 32px 90px rgba(0,0,0,.22); }
.contact-details, .contact-details > * { border-color: rgba(185,154,93,.25); }
.contact-details small { color: var(--brand-gold-light); }
.site-footer { background: #070808; border-top: 1px solid rgba(185,154,93,.28); }
.footer-grid > div > strong { color: var(--brand-gold-light); }
.disclaimer { border-color: rgba(185,154,93,.25); }

.modal { color: #1c1d1d; background: var(--brand-ivory); border: 1px solid rgba(185,154,93,.55); }
.modal-close { color: white; background: var(--brand-black); }
.lead-modal input, .lead-modal select { background: white; border-color: rgba(20,21,21,.14); }
.mobile-cta { background: rgba(11,12,12,.96) !important; border-color: rgba(185,154,93,.5) !important; }
.mobile-cta a { color: var(--brand-gold-light) !important; border-color: var(--brand-gold) !important; }
.mobile-cta button { color: var(--brand-black) !important; background: var(--brand-gold) !important; border-color: var(--brand-gold) !important; }
.mobile-cta .mobile-primary { color: var(--brand-black) !important; background: var(--brand-gold) !important; border: 1px solid var(--brand-gold) !important; }

@media (max-width: 760px) {
  .site-header { background: rgba(11,12,12,.94); }
  .hero { background-image: radial-gradient(circle at 76% 35%, rgba(185,154,93,.1), transparent 40%), linear-gradient(180deg, #0b0c0c, #111313); }
  .hero h1 { font-size: clamp(48px, 13.2vw, 66px); }
  .hero-card { background: rgba(12,13,13,.94); }
  .trust-bar div, .trust-bar div:first-child { border-color: rgba(185,154,93,.2); }
  .eyebrow::before { width: 24px; margin-right: 10px; }
}

/* Multipage system */
.desktop-nav { gap: 20px; }
.desktop-nav a { font-size: 10px; white-space: nowrap; }
.desktop-nav a[aria-current="page"], .mobile-menu a[aria-current="page"] { color: var(--brand-gold-light); }
.footer-grid { grid-template-columns: 1.1fr .7fr .8fr .65fr; gap: 56px; }

.page-hero {
  position: relative;
  min-height: 610px;
  padding: 190px 0 96px;
  color: white;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(185,154,93,.12) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle at 82% 30%, rgba(185,154,93,.13), transparent 30%),
    var(--brand-black);
  overflow: hidden;
}
.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(185,154,93,.2);
  border-radius: 50%;
}
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .55fr; align-items: end; gap: 110px; }
.page-hero h1 { max-width: 920px; margin: 24px 0 34px; font-size: clamp(64px, 7vw, 112px); line-height: .88; }
.page-hero-lead { max-width: 690px; margin: 0; color: rgba(255,255,255,.62); font-size: 19px; }
.page-hero-aside { padding: 28px 0 0; border-top: 1px solid var(--brand-gold); }
.page-hero-aside span { display: block; margin-bottom: 12px; color: var(--brand-gold-light); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.page-hero-aside p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }

.page-section { padding: 120px 0; background: var(--brand-ivory); }
.page-section-dark { color: white; background: var(--brand-charcoal); }
.page-section-dark .section-lead { color: rgba(255,255,255,.56); }
.page-heading { display: grid; margin-bottom: 64px; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 90px; }
.page-heading h2 { max-width: 800px; margin: 0; font-size: clamp(48px, 5vw, 76px); line-height: .95; }
.section-lead { margin: 0; color: var(--ink-soft); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.info-card { position: relative; min-height: 300px; padding: 34px; background: rgba(255,255,255,.55); border: 1px solid rgba(22,24,24,.17); overflow: hidden; }
.info-card::after { position: absolute; top: 0; right: 0; width: 72px; height: 72px; content: ""; border-bottom: 1px solid rgba(185,154,93,.48); border-left: 1px solid rgba(185,154,93,.48); border-radius: 0 0 0 72px; }
.info-card-number { color: #8f7139; font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.info-card h3 { margin: 70px 0 18px; font-size: 31px; line-height: 1; }
.info-card p { color: var(--ink-soft); font-size: 14px; }
.page-section-dark .info-card { color: white; background: #101212; border-color: rgba(185,154,93,.3); }
.page-section-dark .info-card p { color: rgba(255,255,255,.56); }
.page-section-dark .info-card::after { border-color: rgba(185,154,93,.45); }

.price-groups { display: grid; gap: 70px; }
.price-group-head { display: flex; margin-bottom: 22px; align-items: baseline; justify-content: space-between; gap: 30px; }
.price-group-head h2 { margin: 0; font-size: 42px; }
.price-group-head span { color: #8f7139; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.price-table { border-top: 1px solid rgba(22,24,24,.2); }
.price-entry { display: grid; min-height: 106px; padding: 24px 0; grid-template-columns: 1fr .75fr auto; align-items: center; gap: 34px; border-bottom: 1px solid rgba(22,24,24,.16); }
.price-entry strong { font-size: 17px; font-weight: 550; }
.price-entry p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.price-entry b { min-width: 170px; color: #806533; font-size: 14px; text-align: right; }
.price-disclaimer { padding: 26px 30px; background: rgba(185,154,93,.1); border-left: 2px solid var(--brand-gold); color: var(--ink-soft); font-size: 13px; }

.doctor-page-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 120px; }
.doctor-page-photo { position: relative; padding: 16px 0 0 16px; }
.doctor-page-photo::before { position: absolute; inset: 0 18px 18px 0; content: ""; border: 1px solid var(--brand-gold); }
.doctor-page-photo img { position: relative; width: 100%; aspect-ratio: .78; object-fit: cover; object-position: center 34%; filter: grayscale(.35) saturate(.45) contrast(1.07); }
.doctor-page-copy h2 { font-size: clamp(54px, 5vw, 82px); line-height: .9; }
.doctor-page-copy .doctor-title { color: #806533; font-size: 10px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.doctor-facts { display: grid; margin: 40px 0; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(22,24,24,.17); }
.doctor-facts div { padding: 20px 20px 20px 0; border-bottom: 1px solid rgba(22,24,24,.17); }
.doctor-facts strong { display: block; margin-bottom: 5px; font-size: 15px; }
.doctor-facts span { color: var(--ink-soft); font-size: 12px; }

.story-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 120px; }
.story-index { position: sticky; top: 130px; align-self: start; color: #806533; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.story-copy h2 { font-size: clamp(48px, 5vw, 78px); line-height: .94; }
.story-copy > p { color: var(--ink-soft); font-size: 18px; }
.principles { display: grid; margin-top: 56px; grid-template-columns: 1fr 1fr; gap: 12px; }
.principle { min-height: 210px; padding: 28px; background: white; border: 1px solid rgba(22,24,24,.15); }
.principle span { color: #8f7139; font-size: 10px; letter-spacing: .18em; }
.principle h3 { margin: 50px 0 10px; font-size: 25px; }
.principle p { color: var(--ink-soft); font-size: 13px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.article-card { display: flex; min-height: 410px; padding: 34px; flex-direction: column; background: white; border: 1px solid rgba(22,24,24,.16); }
.article-card-meta { display: flex; justify-content: space-between; color: #806533; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.article-card h2 { margin: 80px 0 22px; font-size: 34px; line-height: 1; }
.article-card p { color: var(--ink-soft); font-size: 14px; }
.article-card a { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(22,24,24,.16); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.article-body { max-width: 840px; margin: 0 auto; }
.article-body article { padding: 70px 0; border-top: 1px solid rgba(22,24,24,.17); scroll-margin-top: 110px; }
.article-body article:first-child { border-top: 0; }
.article-body h2 { font-size: clamp(42px, 4.5vw, 64px); }
.article-body p, .article-body li { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }

.route-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.route-card { padding: 42px; color: white; background: var(--brand-black); border: 1px solid rgba(185,154,93,.45); }
.route-card .eyebrow { margin-bottom: 42px; }
.route-detail { padding: 24px 0; border-top: 1px solid rgba(185,154,93,.24); }
.route-detail small { display: block; margin-bottom: 8px; color: var(--brand-gold-light); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.route-detail strong { font-size: 21px; font-weight: 350; }
.route-map { position: relative; min-height: 590px; padding: 52px; color: white; background:
  linear-gradient(rgba(11,12,12,.68), rgba(11,12,12,.88)),
  url("assets/clinic.jpg") center/cover;
  border: 1px solid rgba(185,154,93,.35);
  overflow: hidden;
}
.route-map::before { position: absolute; z-index: 2; inset: 18px; content: ""; border: 1px solid rgba(185,154,93,.45); pointer-events: none; }
.yandex-map { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.75) contrast(1.05); }
.route-map-content {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  min-height: 172px;
  padding: 26px 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  background: rgba(11,12,12,.92);
  border: 1px solid rgba(185,154,93,.55);
  backdrop-filter: blur(10px);
}
.route-map-content .eyebrow { margin-bottom: 13px; }
.route-map h2 { max-width: 410px; margin: 0; font-size: clamp(34px, 3.2vw, 52px); line-height: .94; }
.route-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.page-cta { padding: 90px 0; color: white; background: var(--brand-black); border-top: 1px solid rgba(185,154,93,.3); }
.page-cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.page-cta h2 { max-width: 760px; margin: 0; font-size: clamp(45px, 5vw, 72px); line-height: .93; }

/* CODE 17 primary logo */
.brand-logo {
  display: inline-flex;
  width: 174px;
  flex-direction: column;
  align-items: stretch;
  color: white;
  line-height: 1;
}
.brand-logo-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 250;
  letter-spacing: .25em;
  white-space: nowrap;
}
.brand-logo-main strong {
  color: var(--brand-gold-light);
  font-size: 23px;
  font-weight: 350;
  letter-spacing: .08em;
}
.brand-logo-sub {
  display: flex;
  margin-top: 7px;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  color: rgba(255,255,255,.68);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .48em;
  white-space: nowrap;
}
.brand-logo-sub::before,
.brand-logo-sub::after {
  width: 33px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: var(--brand-gold);
}
.footer-brand .brand-logo { width: 196px; }
.footer-brand .brand-logo-main,
.footer-brand .brand-logo-main strong { font-size: 27px; }

/* Presentation team */
.doctor-team-section { padding-top: 36px; }
.presentation-notice {
  display: grid;
  margin-bottom: 74px;
  padding: 22px 26px;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  color: rgba(255,255,255,.7);
  background: var(--brand-black);
  border-left: 2px solid var(--brand-gold);
  font-size: 12px;
  line-height: 1.6;
}
.presentation-notice strong { color: var(--brand-gold-light); letter-spacing: .12em; text-transform: uppercase; }
.doctor-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.doctor-card { display: flex; min-width: 0; flex-direction: column; background: #fff; border: 1px solid rgba(22,24,24,.16); }
.doctor-card-photo { position: relative; overflow: hidden; }
.doctor-card-photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 62%, rgba(8,9,9,.68)); pointer-events: none; }
.doctor-card-photo img { width: 100%; aspect-ratio: .8; object-fit: cover; filter: saturate(.55) contrast(1.04); transition: transform .65s ease, filter .65s ease; }
.doctor-card:hover .doctor-card-photo img { transform: scale(1.025); filter: saturate(.72) contrast(1.04); }
.doctor-card-photo > span { position: absolute; z-index: 1; right: 24px; bottom: 21px; color: var(--brand-gold-light); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.doctor-card-copy { display: flex; min-height: 360px; padding: 30px; flex-direction: column; }
.doctor-card-copy > p { margin: 0; color: #806533; font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.doctor-card-copy h2 { margin: 24px 0 20px; font-size: clamp(32px, 3vw, 45px); line-height: .92; }
.doctor-card-copy ul { margin: 0 0 30px; padding: 0; list-style: none; color: var(--ink-soft); font-size: 13px; }
.doctor-card-copy li { padding: 10px 0; border-top: 1px solid rgba(22,24,24,.12); }
.doctor-card-copy .button { width: 100%; margin-top: auto; }

/* Editorial blog */
.article-body h3 { margin: 38px 0 14px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 19px; font-weight: 550; letter-spacing: .02em; }
.article-body ul { margin: 22px 0; padding-left: 22px; }
.article-body li { margin: 9px 0; }
.article-note { margin-top: 30px; padding: 22px 26px; color: var(--ink) !important; background: rgba(185,154,93,.12); border-left: 2px solid var(--brand-gold); font-size: 15px !important; }

/* Online booking */
.booking-modal { width: min(850px, calc(100% - 32px)); max-height: min(940px, calc(100vh - 28px)); }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.lead-modal textarea {
  width: 100%;
  padding: 13px 14px;
  resize: vertical;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(20,21,21,.14);
  border-radius: 10px;
  outline: none;
  font: inherit;
}
.lead-modal textarea:focus { border-color: var(--brand-gold); }
.booking-submit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.button-telegram { color: white; background: #229ed9; border-color: #229ed9; }
.button-telegram:hover { color: white; background: #178bc2; border-color: #178bc2; }
.button-max { color: white; background: #6b63ff; border-color: #6b63ff; }
.button-max:hover { color: white; background: #584ff0; border-color: #584ff0; }

/* Messenger actions */
.messenger-dock {
  position: fixed;
  z-index: 44;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
}
.messenger-action {
  display: flex;
  min-height: 48px;
  padding: 0 16px 0 13px;
  align-items: center;
  gap: 10px;
  color: white;
  background: #171919;
  border: 1px solid rgba(185,154,93,.42);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  cursor: pointer;
  font: 650 11px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease;
}
.messenger-action:hover { color: white; transform: translateY(-2px); }
.messenger-action svg { width: 21px; height: 21px; flex: 0 0 auto; fill: currentColor; }
.messenger-whatsapp { background: #1f9e57; border-color: #1f9e57; }
.messenger-telegram { background: #229ed9; border-color: #229ed9; }
.messenger-max { background: #6b63ff; border-color: #6b63ff; }
.messenger-booking { color: var(--brand-black); background: var(--brand-gold-light); border-color: var(--brand-gold-light); }
.messenger-booking:hover { color: var(--brand-black); }
.contact-messenger-row { display: grid; margin-top: 26px; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.contact-messenger { display: flex; min-height: 48px; padding: 0 15px; align-items: center; justify-content: space-between; color: white; border: 1px solid rgba(255,255,255,.28); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-messenger:hover { color: white; }
.contact-messenger.whatsapp:hover { background: #1f9e57; border-color: #1f9e57; }
.contact-messenger.telegram:hover { background: #229ed9; border-color: #229ed9; }
.contact-messenger.max:hover { background: #6b63ff; border-color: #6b63ff; }

@media (max-width: 1280px) {
  .phone-link { display: none; }
  .page-hero-grid { gap: 60px; }
}

@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-heading, .doctor-page-grid, .story-grid, .route-grid { gap: 54px; }
  .info-grid, .blog-grid, .doctor-team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .brand-logo { width: 146px; }
  .brand-logo-main,
  .brand-logo-main strong { font-size: 19px; }
  .brand-logo-sub { font-size: 7px; }
  .brand-logo-sub::before,
  .brand-logo-sub::after { width: 25px; }
  .presentation-notice { display: block; margin-bottom: 48px; padding: 20px; }
  .presentation-notice strong { display: block; margin-bottom: 8px; }
  .doctor-team-grid { grid-template-columns: 1fr; }
  .doctor-card-copy { min-height: 330px; }
  .booking-modal { padding: 38px 20px 24px; }
  .booking-form-grid, .booking-submit-row { grid-template-columns: 1fr; }
  .booking-submit-row .button { width: 100%; }
  .messenger-dock { right: 12px; bottom: 78px; gap: 6px; }
  .messenger-action { width: 48px; min-height: 48px; padding: 0; justify-content: center; }
  .messenger-action span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .page-hero { min-height: auto; padding: 142px 0 76px; }
  .page-hero-grid, .page-heading, .doctor-page-grid, .story-grid, .route-grid { display: block; }
  .page-hero h1 { font-size: clamp(55px, 15vw, 74px); }
  .page-hero-aside { margin-top: 54px; }
  .page-section { padding: 82px 0; }
  .page-heading { margin-bottom: 42px; }
  .page-heading .section-lead { margin-top: 24px; }
  .info-grid, .blog-grid, .principles { grid-template-columns: 1fr; }
  .info-card { min-height: 270px; }
  .price-group-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .price-entry { grid-template-columns: 1fr; gap: 9px; }
  .price-entry b { min-width: 0; text-align: left; }
  .doctor-page-photo { margin-bottom: 65px; }
  .doctor-facts { grid-template-columns: 1fr; }
  .story-index { position: static; margin-bottom: 36px; }
  .article-card { min-height: 360px; }
  .article-card h2 { margin-top: 58px; }
  .route-card { padding: 32px 24px; }
  .route-map { min-height: 560px; padding: 0; }
  .route-map::before { inset: 10px; }
  .route-map-content { right: 18px; bottom: 18px; left: 18px; display: block; min-height: 0; padding: 22px; }
  .route-map h2 { font-size: 34px; }
  .route-actions { margin-top: 22px; }
  .route-actions .button { width: 100%; }
  .page-cta-grid { align-items: flex-start; flex-direction: column; }
  .page-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Luxury editorial hero portrait */
.hero-visual {
  display: block;
  padding: 0 22px 64px 28px;
  isolation: isolate;
}
.hero-visual::before {
  display: block;
  z-index: -1;
  inset: 34px -2px 34px 76px;
  background: linear-gradient(145deg, #d7c18f 0%, #a78648 48%, #5f4829 100%);
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.portrait-frame {
  aspect-ratio: 4 / 5;
  background: #ebe8e4;
  border: 0;
  border-radius: 0;
  box-shadow: 0 40px 100px rgba(0,0,0,.48);
}
.portrait-frame::after {
  display: block;
  background: linear-gradient(180deg, transparent 70%, rgba(11,12,12,.24));
}
.portrait-frame img {
  object-position: center 37%;
  filter: saturate(1.08) contrast(1.025) brightness(1.015);
}
.portrait-index {
  display: flex;
  top: 28px;
  right: -8px;
  min-width: 142px;
  padding: 17px 19px;
  color: rgba(255,255,255,.68);
  background: rgba(11,12,12,.94);
  border-left: 2px solid var(--brand-gold-light);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.portrait-index span:first-child {
  color: var(--brand-gold-light);
  font-size: 27px;
  font-weight: 300;
}
.hero-card {
  min-height: 104px;
  background: rgba(11,12,12,.96);
  border: 0;
  border-top: 1px solid var(--brand-gold);
  box-shadow: 0 24px 54px rgba(0,0,0,.38);
}
.hero-card-price {
  top: auto;
  right: 50%;
  bottom: 0;
  left: -4px;
  justify-content: center;
}
.hero-card-place {
  right: -6px;
  bottom: 0;
  left: calc(50% + 5px);
  justify-content: flex-start;
}

.geo-answer-section {
  background: #f4f1ea;
}

.geo-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 760px) {
  .hero-visual { padding: 0 8px 208px 18px; }
  .hero-visual::before { inset: 22px -2px 174px 48px; }
  .portrait-frame { aspect-ratio: 4 / 5; border-radius: 0; }
  .portrait-index { display: flex; top: 18px; right: -2px; min-width: 118px; padding: 13px 14px; }
  .portrait-index span:first-child { font-size: 22px; }
  .hero-card { min-height: 96px; }
  .hero-card-price { right: 0; bottom: 106px; left: 0; }
  .hero-card-place { right: 0; bottom: 4px; left: 0; }
  .video-subtitles { top: 64px; right: 20px; left: 20px; width: auto; padding: 17px 18px; }
  .video-subtitles p { font-size: 15px; }
  .geo-answer-grid { grid-template-columns: 1fr; }
}


/* AI / AEO / GEO marketing layer — 2026-08-02 */
.answer-engine {
  color: white;
  background: var(--brand-black);
  border-top: 1px solid rgba(185,154,93,.28);
  border-bottom: 1px solid rgba(185,154,93,.18);
}
.answer-engine.light {
  color: var(--ink);
  background: var(--brand-ivory);
}
.answer-engine .section-head > p,
.answer-engine .section-lead { color: rgba(255,255,255,.58); }
.answer-engine.light .section-lead { color: var(--ink-soft); }
.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.answer-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.answer-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  background: #101212;
  border: 1px solid rgba(185,154,93,.34);
}
.answer-engine.light .answer-card {
  background: white;
  border-color: rgba(22,24,24,.16);
}
.answer-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 74px;
  content: "";
  border-bottom: 1px solid rgba(185,154,93,.42);
  border-left: 1px solid rgba(185,154,93,.42);
  border-radius: 0 0 0 74px;
}
.answer-card > span,
.authority-list span {
  color: var(--brand-gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.answer-engine.light .answer-card > span { color: #806533; }
.answer-card h3 {
  margin: 58px 0 18px;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: .96;
}
.answer-card p {
  color: rgba(255,255,255,.62);
  font-size: 14px;
}
.answer-engine.light .answer-card p { color: var(--ink-soft); }
.answer-card a,
.answer-card button {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  padding: 16px 0 0;
  color: var(--brand-gold-light);
  background: none;
  border: 0;
  border-top: 1px solid rgba(185,154,93,.34);
  cursor: pointer;
  font: 750 10px/1.35 "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: .13em;
  text-align: left;
  text-transform: uppercase;
}
.answer-engine.light .answer-card a,
.answer-engine.light .answer-card button { color: #806533; }

.ai-decision {
  color: white;
  background:
    linear-gradient(rgba(11,12,12,.86), rgba(11,12,12,.92)),
    url("assets/clinic.jpg") center/cover;
}
.ai-decision-grid,
.authority-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}
.ai-decision-copy p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.signal-list,
.authority-list,
.local-intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.signal-list article,
.authority-list article,
.local-intent-grid article {
  min-height: 190px;
  padding: 28px;
  background: rgba(8,9,9,.82);
  border: 1px solid rgba(185,154,93,.34);
  backdrop-filter: blur(8px);
}
.signal-list strong,
.authority-list strong,
.local-intent-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-gold-light);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.signal-list span,
.authority-list p,
.local-intent-grid p {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.authority-section { background: var(--brand-ivory); }
.authority-section .section-lead { margin-top: 26px; }
.authority-list article,
.local-intent-grid article {
  background: white;
  border-color: rgba(22,24,24,.16);
}
.authority-list strong,
.local-intent-grid strong { color: #806533; }
.authority-list p,
.local-intent-grid p { color: var(--ink-soft); }
.local-intent-section { background: #f4f1ea; }

@media (max-width: 1040px) {
  .answer-grid,
  .answer-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ai-decision-grid,
  .authority-grid { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 760px) {
  .answer-grid,
  .answer-grid.compact,
  .signal-list,
  .authority-list,
  .local-intent-grid { grid-template-columns: 1fr; }
  .answer-card { min-height: 310px; padding: 26px; }
  .answer-card a,
  .answer-card button { right: 26px; left: 26px; }
}
