:root {
  --ink: #282726;
  --muted: #6f6b67;
  --gold: #b88a47;
  --gold-light: #d3ad70;
  --gold-deep: #966b30;
  --cream: #f6f2ed;
  --line: rgba(98, 75, 43, 0.16);
  --paper: #fbfaf8;
  --shadow: 0 24px 70px rgba(57, 42, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(118deg, #fbfaf8 0%, #f5f1ec 58%, #eee9e2 100%);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

body.has-overlay {
  overflow: hidden;
}

svg {
  display: block;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 72px, 1440px);
  height: 116px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 16px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(20deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--paper);
}

.brand-mark::before {
  top: -5px;
  left: 22px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold);
  transform: rotate(25deg);
}

.brand-mark::after {
  right: -3px;
  bottom: 20px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.brand-letter {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  transform: rotate(-20deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-name {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  color: #67625d;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.55vw, 28px);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a,
.services-trigger {
  position: relative;
  padding: 9px 0;
}

.mobile-booking {
  display: none;
}

.services-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.main-nav a::after,
.services-trigger::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: right 280ms ease, left 280ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.services-trigger:hover::after,
.services-trigger:focus-visible::after,
.services-trigger[aria-expanded="true"]::after {
  right: 0;
  left: 0;
}

.services-trigger[aria-expanded="true"] {
  color: var(--gold-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.premium-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, var(--gold-light), var(--gold-deep));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(151, 106, 45, 0.18);
  transition: transform 380ms cubic-bezier(.2, .75, .22, 1), box-shadow 380ms ease;
}

.premium-button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(112deg, var(--gold-deep), #d3ac69 55%, #9b6f31);
  opacity: 0;
  transition: opacity 400ms ease;
}

.premium-button::after {
  position: absolute;
  top: -100%;
  left: -42%;
  width: 30%;
  height: 300%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(22deg);
  transition: left 750ms cubic-bezier(.22, .8, .2, 1);
}

.premium-button:hover,
.premium-button:focus-visible {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 22px 45px rgba(128, 87, 33, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.premium-button:hover::before,
.premium-button:focus-visible::before {
  opacity: 1;
}

.premium-button:hover::after,
.premium-button:focus-visible::after {
  left: 122%;
}

.premium-button:active {
  transform: translateY(-1px) scale(0.995);
}

.header-cta {
  min-width: 268px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
}

.phone-button {
  display: inline-flex;
  width: 126px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a260, #9c7135);
  box-shadow: 0 12px 30px rgba(125, 84, 33, 0.22);
  font-size: 13px;
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.phone-button svg {
  width: 21px;
  fill: currentColor;
}

.phone-button:hover,
.phone-button:focus-visible {
  box-shadow: 0 18px 36px rgba(89, 62, 27, 0.28);
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 260ms ease;
}

.mega-menu {
  position: fixed;
  z-index: 18;
  top: 105px;
  right: max(32px, calc((100vw - 1440px) / 2));
  left: max(32px, calc((100vw - 1440px) / 2));
  max-height: calc(100vh - 125px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(252, 250, 247, 0.98);
  box-shadow: 0 28px 80px rgba(48, 35, 22, 0.18);
  opacity: 0;
  transform: translateY(-12px) scale(0.99);
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.mega-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  min-height: 600px;
}

.mega-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 54px;
  padding: 54px 44px;
}

.mega-group {
  min-width: 0;
}

.mega-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--gold-deep);
  border-radius: 50%;
  background: #f4efe8;
  font-size: 31px;
}

.mega-group h2 {
  margin: 0 0 16px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.mega-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  transition: color 220ms ease, padding-left 220ms ease;
}

.mega-group a span {
  color: var(--gold);
  font-size: 24px;
  line-height: 0;
}

.mega-group a:hover,
.mega-group a:focus-visible {
  padding-left: 5px;
  color: var(--gold-deep);
}

.mega-bite {
  grid-column: 1;
}

.mega-guarantee {
  display: flex;
  align-self: end;
  gap: 18px;
  grid-column: 2 / 4;
  max-width: 390px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.mega-guarantee p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.mega-guarantee strong {
  color: var(--gold-deep);
  font-weight: 500;
}

.mega-aside {
  position: relative;
  overflow: hidden;
  padding: 54px 38px 260px;
  border-left: 1px solid var(--line);
}

.mega-aside .eyebrow {
  margin-bottom: 15px;
  font-size: 9px;
}

.mega-aside h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.06;
}

.mega-aside > p:not(.eyebrow) {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
}

.mega-cta {
  min-height: 58px;
  width: 100%;
  border-radius: 8px;
}

.mega-aside small {
  display: block;
  margin-top: 17px;
  color: var(--muted);
}

.mega-aside img {
  position: absolute;
  right: -35px;
  bottom: -115px;
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: 50% 16%;
  filter: saturate(0.88);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 24%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 24%, #000 78%, transparent 100%);
}

.booking-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30, 27, 24, 0.48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 460px);
  width: min(100%, 740px);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(21, 17, 13, 0.3);
  transform: translateY(15px);
  transition: transform 300ms ease;
}

.booking-modal.is-open .booking-dialog {
  transform: translateY(0);
}

.booking-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 25px;
}

.booking-cover {
  position: relative;
  min-height: 610px;
  background:
    linear-gradient(0deg, rgba(39, 35, 30, 0.42), transparent 50%),
    url("assets/hero-doctor-patient.png") center / cover;
}

.booking-emblem {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(42, 39, 35, 0.62);
  font-family: Georgia, serif;
  font-size: 32px;
}

.booking-form {
  display: flex;
  min-height: 610px;
  padding: 42px 38px 30px;
  flex-direction: column;
}

.booking-form header h2 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.booking-form header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-progress {
  height: 3px;
  margin: 26px 0 30px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8e3dd;
}

.booking-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  transition: width 300ms ease;
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

.booking-step h3,
.booking-success h3 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 500;
}

.booking-options {
  display: grid;
  gap: 9px;
}

.booking-options label {
  cursor: pointer;
}

.booking-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-options span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #e7e1da;
  border-radius: 13px;
  background: #fff;
  font-size: 14px;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.booking-options span::after {
  margin-left: auto;
  content: "›";
  color: #aaa39b;
  font-size: 22px;
}

.booking-options input:checked + span {
  border-color: var(--gold);
  background: #fbf5e9;
  transform: translateX(3px);
}

.booking-fields {
  display: grid;
  gap: 16px;
}

.booking-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.booking-fields input,
.booking-fields select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid #e2dcd4;
  border-radius: 11px;
  background: #fff;
  font: inherit;
}

.booking-consent {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.booking-controls {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.booking-next,
.booking-prev {
  min-height: 52px;
  border-radius: 9px;
}

.booking-next {
  flex: 1;
  border: 0;
  cursor: pointer;
}

.booking-prev {
  padding: 0 20px;
  border: 1px solid #ddd5cc;
  background: transparent;
  cursor: pointer;
}

.booking-success {
  margin: auto 0;
  text-align: center;
}

.booking-success > span {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--gold);
  font-size: 30px;
}

.home-section {
  padding: 105px 0;
}

.home-section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.34);
}

.home-section-inner {
  width: min(100% - 72px, 1400px);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 4.6vw, 70px);
  font-weight: 400;
  line-height: 1.05;
}

.home-section h2 em,
.wide-cta h3 em,
.faq-contact h3 em {
  color: var(--gold);
  font-family: "Snell Roundhand", "Apple Chancery", cursive;
  font-weight: 400;
}

.section-lead {
  max-width: 650px;
  margin: 22px 0 42px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.comfort-card {
  display: flex;
  min-height: 390px;
  padding: 25px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.comfort-card.is-accent {
  border-color: rgba(184, 138, 71, 0.42);
  box-shadow: 0 18px 45px rgba(99, 69, 31, 0.08);
}

.section-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold-deep);
  border-radius: 50%;
  background: #f4eee7;
  font-family: Georgia, serif;
  font-size: 28px;
}

.comfort-card > b {
  margin: 20px 0 7px;
  color: var(--gold);
  font-size: 18px;
}

.comfort-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.comfort-card > p {
  margin: 15px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.comfort-card footer {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.comfort-card footer strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.mini-shield {
  display: grid;
  flex: 0 0 46px;
  height: 46px;
  place-items: center;
  color: var(--gold);
  border-radius: 50%;
  background: #f4eee7;
  font-size: 22px;
}

.wide-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.9fr;
  gap: 30px;
  align-items: center;
  min-height: 210px;
  margin-top: 24px;
  padding: 28px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(105deg, #fff 0 58%, #ece2d7);
}

.wide-cta h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.wide-cta p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.wide-cta .premium-button {
  position: relative;
  z-index: 2;
  min-height: 58px;
  padding: 0 25px;
  text-align: center;
}

.wide-cta img {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  object-fit: cover;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr;
  gap: 75px;
  align-items: center;
  margin-bottom: 55px;
}

.split-heading > p {
  padding-left: 44px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.home-process-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.home-process-grid b {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
}

.home-process-grid b::after {
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line), var(--gold));
}

.home-process-grid h3 {
  min-height: 54px;
  margin: 18px 0 8px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.home-process-grid p {
  min-height: 110px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-process-grid img {
  width: 100%;
  height: 225px;
  border-radius: 12px;
  object-fit: cover;
}

.process-assurances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.process-assurances span {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 13px;
  align-items: center;
}

.process-assurances b {
  grid-row: 1 / 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold);
  border-radius: 50%;
  background: #f4eee7;
  font-size: 22px;
}

.process-assurances small {
  color: var(--muted);
  line-height: 1.4;
}

.section-main-cta {
  width: min(100%, 530px);
  min-height: 62px;
  margin: 28px auto 0;
  font-size: 17px;
}

.section-cta-note {
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
}

.digital-home-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}

.digital-video-frame {
  position: relative;
  min-height: 570px;
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  background: #242628;
  box-shadow: 0 28px 65px rgba(34, 31, 28, 0.16);
}

.digital-video-frame video {
  width: 100%;
  height: 100%;
  min-height: 534px;
  border-radius: 12px;
  background: #181a1c;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  right: 35px;
  bottom: 32px;
  padding: 9px 14px;
  color: #fff;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.72);
  font-size: 12px;
}

.digital-features {
  display: grid;
  gap: 0;
}

.digital-features article {
  display: grid;
  grid-template-columns: 56px 1fr 150px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.digital-features article:last-child {
  border-bottom: 0;
}

.digital-features > article > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 25px;
}

.digital-features h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.digital-features p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.digital-features img {
  width: 150px;
  height: 130px;
  border-radius: 12px;
  object-fit: cover;
}

.digital-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 70px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
}

.digital-cta strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.digital-cta p,
.digital-cta small {
  color: var(--muted);
}

.digital-cta > div:last-child {
  display: grid;
  gap: 12px;
  text-align: center;
}

.digital-cta .premium-button {
  min-height: 58px;
}

.faq-heading {
  margin-bottom: 45px;
  text-align: center;
}

.faq-heading .section-kicker {
  margin-bottom: 16px;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-grid details {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-grid details.faq-wide {
  grid-column: 1 / -1;
}

.faq-grid summary {
  display: grid;
  grid-template-columns: 210px 54px 1fr;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  justify-self: end;
  color: var(--gold);
  content: "⌃";
  font-size: 20px;
}

.faq-grid summary img {
  grid-row: 1 / 3;
  width: 210px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}

.faq-grid summary .section-icon {
  width: 54px;
  height: 54px;
  font-size: 22px;
}

.faq-grid summary strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.faq-grid details > p {
  margin: -70px 40px 10px 282px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-contact {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 45px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 70px;
  border-radius: 18px;
  background: linear-gradient(110deg, #f2ece5, #fff);
}

.faq-contact > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 22px;
  align-items: center;
}

.faq-contact .section-icon {
  grid-row: 1 / 3;
  width: 74px;
  height: 74px;
  font-size: 30px;
}

.faq-contact h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.faq-contact p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-contact .premium-button {
  min-height: 58px;
}

.home-reviews {
  padding: 110px 0;
  background: rgba(255, 255, 255, 0.58);
}

.home-reviews-inner {
  width: min(100% - 72px, 1320px);
  margin: 0 auto;
}

.home-reviews-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.home-reviews-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.08;
}

.home-reviews-heading > p {
  color: var(--muted);
  line-height: 1.65;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-reviews-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.home-reviews-grid span {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.home-reviews-grid p {
  min-height: 110px;
  line-height: 1.65;
}

.home-reviews-grid strong {
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.96fr) minmax(540px, 1.04fr);
  width: min(100% - 72px, 1440px);
  min-height: calc(100vh - 116px);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 42px 20px 58px 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 4.45vw, 74px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.script-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 5px 0 -8px;
  color: var(--gold);
  font-family: "Snell Roundhand", "Apple Chancery", cursive;
  font-size: 0.76em;
  font-style: italic;
  letter-spacing: -0.035em;
  transform: rotate(-4deg);
}

.script-word::after {
  position: absolute;
  z-index: -1;
  right: -12px;
  bottom: 3px;
  left: -4px;
  height: 8px;
  content: "";
  border-bottom: 1px solid rgba(184, 138, 71, 0.42);
  border-radius: 50%;
}

.hero-description {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.62;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  max-width: 700px;
  margin-top: 30px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 68px;
  padding-right: 15px;
  font-size: 14.5px;
  line-height: 1.38;
}

.benefit:first-child {
  margin: -10px 0;
  padding: 10px 13px;
  border: 1px solid rgba(184, 138, 71, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 30px rgba(91, 66, 33, 0.07);
}

.benefit:not(:first-child) .icon-ring {
  color: #837b72;
  border-color: #cfc7bd;
}

.benefit + .benefit {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.icon-ring {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-ring svg,
.soft-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.plan-button {
  justify-content: space-between;
  width: 420px;
  min-height: 66px;
  padding: 0 28px 0 34px;
  border-radius: 8px;
  font-size: 16.5px;
}

.plan-button svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  transition: transform 350ms ease;
}

.plan-button:hover svg,
.plan-button:focus-visible svg {
  transform: translateX(6px);
}

.hero-cta-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.cta-context {
  max-width: 210px;
}

.doctor-proof {
  margin-top: 7px !important;
  color: #45413c !important;
  font-size: 11.5px !important;
}

.finance-note {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 14px;
  color: #514d48;
  border: 1px solid rgba(91, 84, 75, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.finance-note svg {
  width: 20px;
  fill: none;
  stroke: #706960;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.finance-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr;
  align-items: center;
  gap: 0;
  max-width: 720px;
  margin-top: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.patients {
  gap: 25px;
  padding-left: 0;
  border-left: 0;
}

.patients p,
.rating p,
.experience p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.patients strong,
.experience strong {
  color: #3f3b37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.trust-item small {
  font-size: 11.5px;
}

.avatars {
  display: flex;
  padding-left: 8px;
}

.avatars span {
  display: grid;
  width: 47px;
  height: 47px;
  margin-left: -9px;
  place-items: center;
  color: #fff;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #e4c7b5 0 16%, transparent 17%),
    radial-gradient(ellipse at 50% 100%, #30302f 0 42%, #82796e 43% 50%, #d9d4ce 51%);
  font-size: 9px;
  font-weight: 600;
  text-shadow: 0 1px 2px #222;
}

.rating {
  gap: 12px;
}

.rating-score {
  color: #3f3b37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.stars {
  color: #756e66;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.experience {
  gap: 13px;
}

.soft-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #766f67;
  border-radius: 50%;
  background: rgba(92, 84, 74, 0.08);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.portrait-wrap {
  position: absolute;
  inset: 0 -6vw 410px -4vw;
  overflow: hidden;
}

.portrait-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 28%;
  content: "";
  background: linear-gradient(90deg, var(--cream), rgba(246, 242, 237, 0));
  pointer-events: none;
}

.portrait-wrap::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 17%;
  content: "";
  background: linear-gradient(0deg, rgba(245, 241, 236, 0.95), transparent);
  pointer-events: none;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 51%;
  transform: scale(1.01);
}

.portrait-glow {
  position: absolute;
  z-index: 3;
  top: 10%;
  left: 14%;
  width: 28%;
  height: 70%;
  background: linear-gradient(90deg, rgba(248, 245, 241, 0.66), transparent);
  filter: blur(16px);
  pointer-events: none;
}

.result-card {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 50px;
  width: min(550px, 86%);
  padding: 28px 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(250, 248, 245, 0.91);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.case-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 3px 12px;
  margin-bottom: 18px;
}

.case-heading span {
  padding: 5px 9px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #615b55, #34312e);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.case-heading small {
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
}

.result-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.result-grid figure {
  min-width: 0;
  margin: 0;
}

.result-grid figcaption {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.result-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.7;
  border-radius: 10px;
  object-fit: cover;
}

.result-arrow {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow: 0 8px 20px rgba(112, 76, 31, 0.2);
  transform: translate(-50%, -50%);
}

.result-arrow svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.result-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.icon-ring.small {
  width: 38px;
  height: 38px;
}

.icon-ring.small svg {
  width: 20px;
}

.result-meta strong {
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1320px) {
  .site-header,
  .hero {
    width: min(100% - 48px, 1240px);
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-cta {
    min-width: 225px;
    padding: 0 18px;
    font-size: 13px;
  }

  .phone-button {
    width: 56px;
  }

  .phone-button span {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(520px, 0.98fr) minmax(470px, 1.02fr);
  }

  h1 {
    font-size: clamp(50px, 4.5vw, 65px);
  }

  .benefit + .benefit {
    padding-left: 15px;
  }

  .icon-ring {
    width: 48px;
    height: 48px;
  }

  .hero-cta-row {
    gap: 25px;
  }

  .plan-button {
    width: 420px;
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    height: 96px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 0;
    display: grid;
    width: min(330px, calc(100vw - 32px));
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    background: rgba(250, 248, 245, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
  }

  .main-nav .services-trigger {
    width: 100%;
    text-align: left;
  }

  .main-nav .mobile-booking {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 0 16px;
    color: #fff;
    border-radius: 9px;
    background: linear-gradient(112deg, var(--gold-light), var(--gold-deep));
  }

  .mega-menu {
    top: 84px;
    right: 16px;
    left: 16px;
    max-height: calc(100vh - 100px);
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
  }

  .mega-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 36px;
  }

  .mega-bite {
    grid-column: auto;
  }

  .mega-guarantee {
    grid-column: 1 / -1;
  }

  .mega-aside {
    min-height: 320px;
    padding: 36px 320px 36px 36px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .mega-aside img {
    right: 10px;
    bottom: -145px;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .menu-toggle {
    display: block;
  }

  .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);
  }

  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    min-height: auto;
  }

  .hero-content {
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(48px, 6vw, 62px);
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit + .benefit {
    padding-left: 0;
    border-left: 0;
  }

  .hero-cta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .trust-item {
    min-height: 44px;
    padding: 0;
    border-left: 0;
  }

  .hero-visual {
    display: flex;
    min-height: 850px;
    padding-bottom: 36px;
    flex-direction: column;
    justify-content: flex-end;
  }

  .portrait-wrap {
    inset: 0 -10vw 390px -5vw;
    border-radius: 0 0 24px 24px;
  }

  .result-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero {
    width: min(100% - 32px, 740px);
  }

  .site-header {
    height: 84px;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-letter {
    font-size: 28px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 7.5px;
  }

  .header-cta {
    display: none;
  }

  .phone-button {
    width: 48px;
    height: 48px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    display: contents;
  }

  .eyebrow {
    order: 1;
    margin-top: 44px;
    margin-bottom: 16px;
    font-size: 11px;
  }

  h1 {
    order: 2;
    max-width: 700px;
    font-size: clamp(48px, 8.2vw, 66px);
  }

  .hero-description {
    order: 3;
    max-width: 700px;
  }

  .benefits {
    order: 7;
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .benefit {
    display: grid;
    padding-right: 8px;
  }

  .benefit + .benefit {
    padding-left: 15px;
    border-left: 1px solid var(--line);
  }

  .hero-cta-row {
    order: 4;
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-context {
    max-width: 480px;
  }

  .finance-note {
    order: 5;
  }

  .plan-button {
    width: min(480px, 100%);
  }

  .trust-row {
    order: 8;
    grid-template-columns: 1.35fr 1fr 0.9fr;
    gap: 0;
  }

  .trust-item {
    min-height: 52px;
    padding: 0 16px;
    border-left: 1px solid var(--line);
  }

  .patients {
    padding-left: 0;
    border-left: 0;
  }

  .hero-visual {
    order: 6;
    min-height: 810px;
    margin: 28px -16px 0;
  }

  .portrait-wrap {
    inset: 0 0 415px;
    border-radius: 24px;
  }

  .portrait-wrap::before {
    display: none;
  }

  .portrait-wrap img {
    object-position: 50% 51%;
  }

  .result-card {
    width: min(620px, calc(100% - 32px));
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero {
    width: min(100% - 24px, 520px);
  }

  .site-header {
    height: 76px;
  }

  .brand-mark {
    width: 45px;
    height: 45px;
  }

  .brand-mark::before {
    left: 14px;
  }

  .brand-copy {
    gap: 3px;
  }

  .brand-name {
    font-size: 13px;
    letter-spacing: 0.13em;
  }

  .brand-subtitle {
    font-size: 6px;
    letter-spacing: 0.14em;
  }

  .phone-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    top: 66px;
  }

  .mega-menu {
    top: 68px;
    right: 8px;
    left: 8px;
    border-radius: 18px;
  }

  .mega-groups {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 26px 22px;
  }

  .mega-guarantee {
    grid-column: auto;
    padding: 20px;
  }

  .mega-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    font-size: 24px;
  }

  .mega-aside {
    min-height: 380px;
    padding: 28px 22px 220px;
  }

  .mega-aside h2 {
    font-size: 31px;
  }

  .mega-aside img {
    right: -25px;
    bottom: -155px;
    width: 260px;
  }

  .booking-modal {
    padding: 8px;
  }

  .booking-dialog {
    display: block;
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }

  .booking-cover {
    min-height: 150px;
    background-position: 50% 32%;
  }

  .booking-emblem {
    top: 92px;
    width: 54px;
    height: 54px;
    font-size: 25px;
  }

  .booking-form {
    min-height: 545px;
    padding: 28px 20px 22px;
  }

  .booking-form header h2 {
    font-size: 28px;
  }

  .home-reviews {
    padding: 72px 0;
  }

  .home-reviews-inner {
    width: min(100% - 28px, 520px);
  }

  .home-reviews-heading,
  .home-reviews-grid {
    grid-template-columns: 1fr;
  }

  .home-reviews-heading {
    gap: 10px;
  }

  .home-reviews-grid p {
    min-height: 0;
  }

  .hero-content {
    display: contents;
  }

  .eyebrow {
    margin-top: 38px;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 9.5px;
    letter-spacing: 0.17em;
  }

  h1 {
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.06;
  }

  .script-word {
    margin-left: -6px;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.58;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 26px;
  }

  .benefit {
    display: flex;
    align-items: center;
    font-size: 13.5px;
  }

  .benefit + .benefit {
    padding-left: 0;
    border-left: 0;
  }

  .icon-ring {
    width: 46px;
    height: 46px;
  }

  .icon-ring svg {
    width: 23px;
  }

  .hero-cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 24px;
  }

  .plan-button {
    width: 100%;
    min-height: 62px;
    padding: 0 18px 0 22px;
    font-size: 15.5px;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    margin-top: 24px;
  }

  .trust-item {
    min-height: 48px;
    padding: 0 10px;
  }

  .patients {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .patients {
    gap: 18px;
  }

  .patients strong {
    font-size: 21px;
  }

  .rating {
    padding-left: 0;
    border-left: 0;
  }

  .hero-visual {
    min-height: 660px;
    margin: 26px 0 0;
    padding-bottom: 20px;
  }

  .portrait-wrap {
    inset: 0 0 310px;
    border-radius: 18px;
  }

  .portrait-wrap img {
    object-position: 50% 51%;
  }

  .result-card {
    width: calc(100% - 16px);
    padding: 19px 16px 17px;
    border-radius: 16px;
  }

  .case-heading {
    margin-bottom: 14px;
  }

  .case-heading strong {
    font-size: 17px;
  }

  .case-heading small {
    font-size: 10px;
  }

  .result-grid {
    gap: 14px;
  }

  .result-grid figcaption {
    font-size: 9px;
  }

  .result-grid img {
    aspect-ratio: 1.45;
    border-radius: 8px;
  }

  .result-arrow {
    top: 59%;
    width: 38px;
    height: 38px;
  }

  .result-meta {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 610px;
  }

}

@media (max-height: 540px) and (orientation: landscape) {
  .site-header {
    height: 66px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-subtitle {
    display: none;
  }

  .main-nav {
    top: 59px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    width: min(100% - 28px, 900px);
  }

  .hero-content {
    padding: 22px 0 30px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
  }

  h1 {
    font-size: clamp(34px, 5.2vw, 47px);
  }

  .hero-description {
    margin-top: 14px;
    font-size: 11.5px;
  }

  .benefits {
    display: none;
  }

  .hero-cta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  .plan-button {
    width: min(100%, 350px);
    min-height: 52px;
    font-size: 14px;
  }

  .hero-cta-row p {
    font-size: 11px;
  }

  .trust-row {
    display: none;
  }

  .hero-visual {
    min-height: 540px;
    margin: 0;
    padding-bottom: 14px;
  }

  .portrait-wrap {
    inset: 0 0 265px;
  }

  .result-card {
    width: calc(100% - 12px);
    padding: 12px;
    border-radius: 14px;
  }

  .result-grid {
    gap: 10px;
  }

  .result-grid figcaption {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .result-arrow {
    top: 60%;
    width: 32px;
    height: 32px;
  }

  .result-meta {
    gap: 8px;
    margin-top: 9px;
    padding-top: 9px;
    font-size: 10px;
  }

  .icon-ring.small {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1100px) {
  .home-section-inner {
    width: min(100% - 48px, 980px);
  }

  .comfort-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-cta {
    grid-template-columns: 1fr 0.8fr;
    padding-right: 28px;
  }

  .wide-cta img {
    display: none;
  }

  .home-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-assurances {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-home-layout {
    grid-template-columns: 1fr;
  }

  .digital-video-frame {
    min-height: 500px;
  }

  .digital-video-frame video {
    min-height: 464px;
  }
}

@media (max-width: 820px) {
  .home-section {
    padding: 78px 0;
  }

  .home-section-inner {
    width: min(100% - 32px, 740px);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading > p {
    padding: 0;
    border-left: 0;
  }

  .home-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-features article {
    grid-template-columns: 56px 1fr 125px;
  }

  .digital-features img {
    width: 125px;
  }

  .digital-cta,
  .faq-contact {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid details.faq-wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .home-section {
    padding: 62px 0;
  }

  .home-section-inner {
    width: min(100% - 24px, 520px);
  }

  .section-kicker {
    font-size: 9px;
    line-height: 1.6;
  }

  .home-section h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .home-section h2 br {
    display: none;
  }

  .comfort-grid,
  .home-process-grid,
  .process-assurances {
    grid-template-columns: 1fr;
  }

  .comfort-card {
    min-height: 0;
  }

  .wide-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .wide-cta .premium-button {
    min-height: 62px;
  }

  .home-process-grid h3,
  .home-process-grid p {
    min-height: 0;
  }

  .home-process-grid img {
    height: 230px;
  }

  .digital-video-frame {
    min-height: 370px;
    padding: 9px;
    border-radius: 15px;
  }

  .digital-video-frame video {
    min-height: 350px;
  }

  .digital-features article {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .digital-features > article > span {
    width: 48px;
    height: 48px;
  }

  .digital-features img {
    grid-column: 1 / -1;
    width: 100%;
    height: 180px;
  }

  .digital-cta {
    padding: 22px 18px;
  }

  .faq-grid details {
    padding: 15px;
  }

  .faq-grid summary {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .faq-grid summary img {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    height: 170px;
  }

  .faq-grid summary .section-icon {
    width: 50px;
    height: 50px;
  }

  .faq-grid summary strong {
    font-size: 19px;
  }

  .faq-grid details > p {
    margin: 14px 0 3px;
  }

  .faq-contact {
    padding: 22px 18px;
  }

  .faq-contact > div {
    grid-template-columns: 60px 1fr;
  }

  .faq-contact .section-icon {
    width: 60px;
    height: 60px;
  }
}

/* Unified premium motion system */
:root {
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
}

html.motion-ready [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .85s var(--motion-ease) var(--motion-delay, 0ms),
    transform .85s var(--motion-ease) var(--motion-delay, 0ms);
}

html.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.motion-ready .about-visual[data-animate],
html.motion-ready .service-photo[data-animate],
html.motion-ready .digital-video-frame[data-animate] {
  transform: translateY(16px) scale(.97);
}

html.motion-ready .about-visual[data-animate].is-visible,
html.motion-ready .service-photo[data-animate].is-visible,
html.motion-ready .digital-video-frame[data-animate].is-visible {
  transform: translateY(0) scale(1);
}

.site-header {
  position: sticky;
  top: 0;
  padding-inline: 18px;
  border-radius: 0 0 24px 24px;
  transition:
    height .3s var(--motion-ease),
    background-color .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  height: 88px;
  background: rgba(250, 248, 244, .9);
  box-shadow: 0 12px 34px rgba(58, 43, 24, .07);
  backdrop-filter: blur(16px);
}

body.has-home-hero:not(.hero-loaded) .site-header {
  opacity: 0;
  transform: translateY(-16px);
}

body.has-home-hero .site-header {
  transition:
    opacity .75s var(--motion-ease),
    transform .75s var(--motion-ease),
    height .3s var(--motion-ease),
    background-color .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--motion-ease), transform .9s var(--motion-ease);
}

.hero-line:nth-child(1) { transition-delay: .2s; }
.hero-line:nth-child(2) { transition-delay: .31s; }
.hero-line:nth-child(3) { transition-delay: .42s; }
.hero-line:nth-child(4) { transition-delay: .53s; }
.hero-line:nth-child(5) { transition-delay: .64s; }

body.hero-loaded .hero-line {
  opacity: 1;
  transform: translateY(0);
}

.hero .eyebrow,
.hero .hero-description,
.hero .benefit,
.hero .hero-actions,
.hero .trust-row,
.hero .hero-portrait,
.hero .result-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .85s var(--motion-ease), transform .85s var(--motion-ease);
}

.hero .eyebrow {
  letter-spacing: .31em;
  transition:
    opacity .85s var(--motion-ease) .12s,
    transform .85s var(--motion-ease) .12s,
    letter-spacing 1s var(--motion-ease) .12s;
}

.hero .hero-description { transition-delay: .66s; }
.hero .benefit:nth-child(1) { transition-delay: .72s; }
.hero .benefit:nth-child(2) { transition-delay: .81s; }
.hero .benefit:nth-child(3) { transition-delay: .9s; }
.hero .hero-actions { transition-delay: .96s; }
.hero .trust-row { transition-delay: 1.03s; }
.hero .hero-portrait {
  transform: scale(1.03);
  transition-delay: .35s;
}
.hero .result-card { transition-delay: .8s; }

body.hero-loaded .hero .eyebrow,
body.hero-loaded .hero .hero-description,
body.hero-loaded .hero .benefit,
body.hero-loaded .hero .hero-actions,
body.hero-loaded .hero .trust-row,
body.hero-loaded .hero .hero-portrait,
body.hero-loaded .hero .result-card {
  opacity: 1;
  transform: none;
}

body.hero-loaded .hero .eyebrow {
  letter-spacing: .22em;
}

.script-word {
  position: relative;
}

.script-word::after {
  position: absolute;
  right: 0;
  bottom: -.08em;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: .55;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--motion-ease) .85s;
}

body.hero-loaded .script-word::after {
  transform: scaleX(1);
}

.premium-button,
.header-cta,
.case-card button,
.doctor-card button,
.estimate-panel button,
.final-panel button {
  transition:
    transform .35s var(--motion-ease),
    box-shadow .35s ease,
    background-color .35s ease;
}

.premium-button:hover,
.header-cta:hover,
.case-card button:hover,
.doctor-card button:hover,
.estimate-panel button:hover,
.final-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(132, 87, 30, .22);
}

.comfort-card,
.case-card,
.doctor-card,
.price-card,
.technology-card,
.review,
.home-reviews-grid article,
.faq-grid details {
  transition:
    transform .38s var(--motion-ease),
    box-shadow .38s ease,
    border-color .38s ease;
}

.comfort-card:hover,
.case-card:hover,
.doctor-card:hover,
.price-card:hover,
.technology-card:hover,
.review:hover,
.home-reviews-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 139, 72, .56);
  box-shadow: 0 20px 42px rgba(74, 52, 28, .1);
}

.comfort-card .section-icon,
.digital-features article > span {
  transition: transform .35s var(--motion-ease);
}

.comfort-card:hover .section-icon {
  transform: translateY(-2px) scale(1.02);
}

.comfort-cta img {
  transition: transform .5s var(--motion-ease);
}

.home-process-grid b::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .85s var(--motion-ease) .15s;
}

.home-process-grid article.is-visible b::after {
  transform: scaleX(1);
}

.home-process-grid article,
.process-step {
  transition: box-shadow .4s ease, border-color .4s ease;
}

.home-process-grid article.is-active,
.process-step.is-active {
  border-color: rgba(190, 139, 72, .45);
  box-shadow: 0 18px 40px rgba(85, 59, 29, .09);
}

.home-process-grid article.is-active b,
.process-step.is-active .process-number {
  color: var(--gold-deep);
}

.home-process-grid img,
.process-step img,
.technology-card img,
.interior-grid img,
.doctor-card img,
.digital-features img,
.case-card img,
.review img {
  transition: transform .65s var(--motion-ease), filter .45s ease;
}

.home-process-grid article:hover img,
.process-step:hover img,
.technology-card:hover img,
.doctor-card:hover img,
.digital-features article:hover img,
.review:hover img {
  transform: scale(1.03);
}

.digital-video-frame {
  box-shadow: 0 24px 60px rgba(25, 27, 30, .15);
}

.digital-video-frame::after {
  position: absolute;
  top: 8%;
  left: 52%;
  width: 24%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .7s ease .4s, transform 1s var(--motion-ease) .4s;
}

.digital-video-frame.is-visible::after {
  opacity: .8;
  transform: scaleX(1);
}

.digital-features article:hover > span {
  transform: scale(1.05);
}

.case-card:hover .case-before img,
.result-card:hover .before-after img:first-child {
  filter: brightness(.94);
}

.case-card:hover .case-after img,
.result-card:hover .before-after img:last-child {
  filter: brightness(1.05);
}

.result-card {
  transition: transform .4s var(--motion-ease), box-shadow .4s ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(60, 42, 20, .16);
}

.result-arrow {
  transition: transform .35s var(--motion-ease);
}

.result-card:hover .result-arrow {
  transform: translate(calc(-50% + 4px), -50%);
}

.doctor-card {
  overflow: hidden;
}

.doctor-card:hover .doctor-link::after {
  transform: translateX(4px);
}

.doctor-link::after {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  content: "→";
  transition: transform .35s var(--motion-ease);
}

.stars {
  display: inline-flex;
}

.stars i {
  font-style: normal;
  opacity: 0;
  transform: translateY(5px) scale(.9);
  transition:
    opacity .45s ease var(--star-delay),
    transform .45s var(--motion-ease) var(--star-delay);
}

.is-visible .stars i,
.stars.is-visible i,
body.hero-loaded .stars i {
  opacity: 1;
  transform: none;
}

.price-card:hover .price-fixed {
  color: var(--ink);
}

input,
select,
textarea {
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(190, 139, 72, .1);
  outline: none;
}

.interior-grid > div {
  position: relative;
  overflow: hidden;
}

.interior-grid > div::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  content: "Кабинет диагностики";
  background: linear-gradient(90deg, rgba(25, 24, 22, .74), rgba(25, 24, 22, .25));
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s var(--motion-ease);
}

.interior-grid > div:nth-child(2)::after { content: "Лечебный кабинет"; }
.interior-grid > div:nth-child(3)::after { content: "Цифровая диагностика"; }
.interior-grid > div:nth-child(4)::after { content: "Зона ожидания"; }
.interior-grid > div:nth-child(5)::after { content: "Стерилизационная"; }

.interior-grid > div:hover img {
  transform: scale(1.025);
}

.interior-grid > div:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.faq-grid details:not([open]):hover {
  border-color: rgba(190, 139, 72, .45);
  transform: translateY(-2px);
}

.faq-grid summary::after {
  transition: transform .4s var(--motion-ease), color .3s ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(180deg);
}

.faq-grid details > p {
  animation: faq-copy .4s var(--motion-ease);
}

@keyframes faq-copy {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-menu {
  filter: blur(6px);
  transition:
    opacity .4s var(--motion-ease),
    transform .4s var(--motion-ease),
    filter .4s var(--motion-ease),
    visibility .4s;
}

.mega-menu.is-open {
  filter: blur(0);
}

body::before {
  position: fixed;
  z-index: 17;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(35, 29, 22, .1);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity .4s ease, backdrop-filter .4s ease;
}

body.has-mega-menu::before {
  opacity: 1;
  backdrop-filter: blur(4px);
}

.mega-menu .mega-group,
.mega-menu .mega-aside {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s var(--motion-ease);
}

.mega-menu.is-open .mega-group,
.mega-menu.is-open .mega-aside {
  opacity: 1;
  transform: none;
}

.mega-menu.is-open .mega-group:nth-child(2) { transition-delay: 70ms; }
.mega-menu.is-open .mega-group:nth-child(3) { transition-delay: 140ms; }
.mega-menu.is-open .mega-group:nth-child(4) { transition-delay: 210ms; }
.mega-menu.is-open .mega-aside { transition-delay: 150ms; }

.mega-group a {
  position: relative;
}

.mega-group a::before {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  content: "";
  background: var(--gold);
  opacity: 0;
  transform: scaleY(.3);
  transition: opacity .3s ease, transform .3s var(--motion-ease);
}

.mega-group a:hover {
  padding-left: 10px;
}

.mega-group a:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.booking-modal,
.video-modal {
  transition: opacity .35s ease, visibility .35s;
}

.booking-dialog,
.video-dialog {
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .35s ease, transform .35s var(--motion-ease);
}

.booking-modal.is-open .booking-dialog,
.video-modal.is-open .video-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Clinic footer */
.clinic-footer {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  color: #72706d;
  background: #fff;
  border-top: 1px solid rgba(176, 146, 105, .2);
}

.clinic-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 42px 70px;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 58px 0 52px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.footer-mark {
  display: grid;
  width: 72px;
  height: 72px;
  color: var(--gold-deep);
  font: 42px/1 var(--serif);
  place-items: center;
  border: 1px solid rgba(190, 139, 72, .58);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-brand small {
  margin-top: 5px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-demo-button,
.footer-policy {
  justify-self: end;
  color: var(--gold-deep);
  font: inherit;
  cursor: default;
  background: transparent;
}

.footer-demo-button {
  min-width: 360px;
  padding: 20px 28px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid rgba(190, 139, 72, .58);
  border-radius: 14px;
}

.footer-policy {
  padding: 4px 0;
  color: #77736f;
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid currentColor;
}

.footer-notice {
  display: grid;
  gap: 26px;
  padding-left: 72px;
  font-size: 18px;
}

.footer-notice strong {
  color: #77736f;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.back-to-top {
  position: absolute;
  bottom: 54px;
  left: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  background: var(--gold);
  border-radius: 12px;
  place-items: center;
  transition: transform .35s var(--motion-ease), box-shadow .35s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 25px rgba(132, 87, 30, .22);
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    height: auto;
    min-height: 78px;
    border-radius: 0 0 18px 18px;
  }

  .clinic-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100% - 36px, 680px);
    padding: 42px 0 105px;
  }

  .footer-demo-button,
  .footer-policy {
    justify-self: stretch;
  }

  .footer-notice {
    padding-left: 0;
  }

  .footer-demo-button {
    min-width: 0;
    width: 100%;
  }

  .footer-policy {
    justify-self: start;
  }

  .back-to-top {
    bottom: 28px;
    left: 18px;
  }
}

@media (max-width: 560px) {
  .clinic-footer {
    margin-top: 46px;
  }

  .footer-mark {
    width: 58px;
    height: 58px;
    font-size: 34px;
  }

  .footer-brand strong {
    font-size: 20px;
  }

  .footer-brand small {
    font-size: 10px;
  }

  .footer-notice,
  .footer-notice strong,
  .footer-policy {
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-demo-button {
    padding: 16px 18px;
    font-size: 16px;
  }
}

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