:root {
  --blue: #010080;
  --blue-bright: #1a1a99;
  --gold: #af893a;
  --gold-deep: #91702f;
  --ink: #121b24;
  --text: #6b6668;
  --muted: #b3aca6;
  --cream: #f6f2e9;
  --line: #eae6e7;
  --white: #fff;
  --shadow: 0 24px 70px rgba(18, 27, 36, .1);
  --font-sans: "Figtree Local", Arial, sans-serif;
  --font-serif: "Source Serif Pro", Georgia, serif;
  --font-display: "Cinzel", Georgia, serif;
  --shell: min(1280px, calc(100vw - 64px));
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--gold-deep); }
button, input, textarea, select { font: inherit; }
p { margin: 0 0 1.25em; }
h1, h2, h3, h4 { margin: 0 0 .52em; color: var(--ink); text-wrap: balance; }
h1, h2 { font-family: var(--font-sans); font-weight: 300; line-height: 1.08; text-transform: uppercase; }
h1 { font-size: clamp(2.65rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.22; }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
h4 { font-size: 1.5rem; }
address { font-style: normal; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--tight { padding-block: clamp(62px, 7vw, 96px); }
.center { margin-top: 48px; text-align: center; }
.eyebrow { margin-bottom: 18px; color: var(--gold-deep); font-size: .84rem; font-weight: 600; letter-spacing: .17em; line-height: 1.4; text-transform: uppercase; }
.lead-copy { font-size: 1.1rem; }
.prose-shell { max-width: 850px; }
.prose-shell > p { margin-bottom: 1.35em; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 8vw, 112px); }
.split--intro { align-items: start; }
.split--media { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }

.skip-link { position: fixed; z-index: 1000; left: 12px; top: -80px; padding: 10px 16px; color: var(--white); background: var(--blue); }
.skip-link:focus { top: 12px; }
.social-strip { position: relative; z-index: 90; min-height: 34px; padding: 5px 26px; color: var(--white); background: var(--gold); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.social-strip a { display: inline-grid; width: 16px; height: 16px; color: inherit; text-decoration: none; }
.social-strip svg { width: 100%; height: 100%; fill: currentColor; }

.site-header { position: relative; z-index: 80; display: flex; align-items: center; justify-content: space-between; min-height: 104px; padding: 14px max(28px, calc((100vw - 1280px) / 2)); border-bottom: 1px solid rgba(1, 0, 128, .09); background: rgba(255, 255, 255, .96); }
.site-header--overlay { position: absolute; top: 34px; left: 0; right: 0; min-height: 251px; padding: 30px 40px; border: 0; background: transparent; }
.brand { display: block; width: 250px; }
.site-header--overlay .brand { position: absolute; top: 30px; left: 26.5%; width: min(409px, 31vw); margin: 0; transform: translateX(-50%); animation: refine-fade-in .9s ease .05s both; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: var(--ink); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.desktop-nav a:hover { color: var(--gold); }
.site-header--overlay .desktop-nav { display: none; }
.site-header--overlay .menu-toggle { width: 74px; height: 74px; margin-left: auto; }
.menu-toggle { display: grid; gap: 7px; place-content: center; width: 64px; height: 64px; padding: 0; border: 0; color: var(--white); background: var(--gold); cursor: pointer; }
.menu-toggle span { display: block; width: 30px; height: 4px; background: currentColor; }
.menu-backdrop { position: fixed; z-index: 110; inset: 0; background: rgba(18, 27, 36, .56); }
.menu-drawer { position: fixed; z-index: 120; top: 0; right: 0; width: min(480px, 90vw); height: 100dvh; padding: 90px 50px 48px; overflow-y: auto; background: var(--cream); box-shadow: -30px 0 80px rgba(18, 27, 36, .15); transform: translateX(105%); transition: transform .3s ease; }
.menu-drawer.is-open { transform: translateX(0); }
.menu-close { position: absolute; top: 22px; right: 28px; border: 0; color: var(--blue); background: transparent; font-family: var(--font-sans); font-size: 2.4rem; cursor: pointer; }
.menu-drawer nav { display: grid; }
.menu-drawer nav > a:not(.button) { padding: 13px 0; border-bottom: 1px solid rgba(107, 102, 104, .18); color: var(--ink); font-family: var(--font-serif); font-size: 1.25rem; text-decoration: none; }
.menu-drawer nav > a.menu-drawer__sub { padding-left: 20px; color: var(--text); font-family: var(--font-sans); font-size: .95rem; }
.menu-drawer .button { margin-top: 28px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 13px 32px; border: 1px solid transparent; font-size: .82rem; font-weight: 600; letter-spacing: .14em; line-height: 1.3; text-align: center; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.button--gold { color: var(--white); background: var(--gold); }
.button--gold:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }
.button--outline { border-color: var(--gold); color: var(--ink); background: transparent; }
.button--outline:hover { border-color: var(--blue); color: var(--white); background: var(--blue); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.text-link { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.home-hero { position: relative; min-height: max(760px, calc(100vh - 34px)); max-height: 980px; color: var(--white); background: url('../media/2025/09/startbild-1.jpg') center / cover no-repeat; overflow: hidden; }
.home-hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(55, 56, 58, .58) 0%, rgba(67, 68, 70, .3) 28%, rgba(88, 89, 91, .15) 68%, rgba(72, 73, 75, .2) 100%); }
.home-hero__identity { position: absolute; z-index: 2; top: 26%; left: 26.5%; width: min(570px, 43vw); text-align: center; transform: translateX(-50%); }
.home-hero__motto { margin: 0 0 54px; color: var(--blue-bright); font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 500; line-height: 1.35; text-align: center; text-transform: uppercase; animation: refine-fly-up .8s cubic-bezier(.2,.7,.2,1) .12s both; }
.home-hero h1 { margin: 0; color: var(--white); font-size: clamp(1.15rem, 1.9vw, 1.56rem); font-weight: 300; line-height: 1.5; text-align: center; text-transform: none; animation: refine-fly-up .8s cubic-bezier(.2,.7,.2,1) .32s both; }
.home-hero__button { position: absolute; z-index: 3; bottom: 20%; animation: refine-fly-up .75s cubic-bezier(.2,.7,.2,1) .55s both; }
.home-hero__button--contact { position: relative; bottom: auto; left: auto; margin-top: clamp(72px, 10vh, 112px); }
.home-hero__button--booking { right: 3%; min-width: 250px; animation-name: refine-fade-in; animation-delay: .68s; }
.hero-categories { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; padding: 24px 30px 30px; background: linear-gradient(0deg, rgba(18, 27, 36, .44), transparent); animation: refine-fade-in .8s ease .85s both; }
.hero-categories a { color: var(--white); font-family: var(--font-serif); font-size: clamp(.85rem, 1.45vw, 1.18rem); font-weight: 600; line-height: 1.3; text-align: center; text-decoration: none; text-shadow: 0 2px 8px rgba(18, 27, 36, .7); }
.hero-categories a:hover { color: #ead29b; }

@media (min-width: 1101px) {
  .site-header--overlay { min-height: 330px; }
  .site-header--overlay .brand { left: 27.8%; width: min(580px, 43vw); }
  .home-hero__shade { background: linear-gradient(180deg, rgba(0, 0, 0, .46) 0%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .2) 100%); }
  .home-hero__identity { top: 32%; }
  .home-hero__button--contact { min-width: 174px; margin-top: clamp(104px, 14vh, 124px); }
  .home-hero__button--booking { bottom: 16.5%; }
}

.marble-section { background: var(--cream) url('../media/2024/09/background-light-1.webp') center / cover; }
.home-intro { min-height: 1450px; padding: 150px 0 130px; }
.home-intro__main { display: grid; grid-template-columns: 515px minmax(0, 523px); justify-content: space-between; min-height: 818px; }
.home-intro__media { position: relative; min-height: 723px; background: url('../media/2025/11/931.jpg') center / cover; }
.home-intro__media img { position: absolute; right: -21%; bottom: -24px; width: 44%; aspect-ratio: 1363 / 1817; object-fit: cover; object-position: center; }
.home-intro__copy { align-self: start; }
.home-intro__copy h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; line-height: 1.3; text-transform: none; }
.home-intro__copy > p:not(.eyebrow) { font-size: 1.36rem; }
.practice-carousel { position: relative; display: grid; place-items: center; min-height: 270px; margin-top: 80px; padding: 46px 70px 70px; border-radius: 10px; background: rgba(255,255,255,.72); box-shadow: 0 4px 22px rgba(100,90,70,.09); }
.practice-carousel .practice-slide { max-width: 1080px; margin: 0; padding: 0; color: #6d5343; font-family: Georgia, serif; font-size: clamp(1.4rem, 1.65vw, 1.62rem); line-height: 1.55; text-align: center; }
.practice-carousel .slider-dots { position: absolute; right: 0; bottom: 22px; left: 0; }
.category-showcase { background: var(--white); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.category-card { position: relative; display: flex; flex-direction: column; justify-content: center; aspect-ratio: .78; min-height: 0; padding: 34px; overflow: hidden; color: var(--white); background: linear-gradient(0deg, rgba(18, 27, 36, .3), rgba(18, 27, 36, .02) 70%), var(--card-image) center / cover; text-align: center; text-decoration: none; }
.category-card::after { content: ""; position: absolute; inset: 0; background: rgba(18,27,36,.2); opacity: 0; transition: .25s ease; }
.category-card:hover::after { opacity: 1; }
.category-card span { position: relative; z-index: 1; font-family: var(--font-serif); font-size: 1.68rem; line-height: 1.25; }
.category-card em { position: relative; z-index: 1; max-width: 90%; margin-top: 22px; padding: 12px 20px; border: 1px solid rgba(255,255,255,.85); font-family: var(--font-sans); font-size: .78rem; font-style: normal; font-weight: 600; letter-spacing: .12em; opacity: 0; text-transform: uppercase; transform: translateY(8px); transition: .25s ease; }
.category-card:hover em, .category-card:focus-visible em { opacity: 1; transform: translateY(0); }
.category-card:hover { color: var(--white); }

.original-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 900px; }
.original-feature__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 135px) clamp(40px, 6vw, 95px); background: url('../media/2024/09/background-light-2.webp') center / cover; }
.original-feature__copy h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; line-height: 1.3; text-transform: none; }
.original-feature__copy > p:not(.original-feature__label) { font-size: 1.25rem; }
.original-feature__label { align-self: flex-start; padding: 5px 15px; color: var(--white); background: var(--blue); font-family: var(--font-serif); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; }
.before-after { position: relative; min-width: 0; overflow: hidden; background: #ddd; }
.before-after > img, .before-after__before, .before-after__before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-after__before { clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.before-after input { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.before-after__line { position: absolute; z-index: 2; top: 0; bottom: 0; left: var(--position); width: 3px; background: var(--white); transform: translateX(-50%); }
.before-after__handle { position: absolute; z-index: 3; top: 50%; left: var(--position); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--blue); background: var(--white); font-weight: 600; transform: translate(-50%,-50%); box-shadow: 0 2px 12px rgba(18,27,36,.18); }
.body-hotspots { position: relative; min-width: 0; min-height: 900px; overflow: hidden; background: #dedbd1; }
.body-hotspots > img { width: 100%; height: 100%; min-height: 900px; object-fit: cover; object-position: center; }
.body-hotspot { position: absolute; z-index: 2; display: block; width: 22px; height: 22px; border: 3px solid rgba(255,255,255,.96); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(175,137,58,.28); text-decoration: none; transform: translate(-50%,-50%); }
.body-hotspot::before { content: ""; position: absolute; inset: -10px; border: 1px solid rgba(175,137,58,.72); border-radius: inherit; animation: hotspot-pulse 2.1s ease-out infinite; }
.body-hotspot span { position: absolute; left: 50%; bottom: calc(100% + 17px); min-width: max-content; padding: 7px 11px; border-radius: 2px; color: var(--white); background: var(--ink); font-size: .74rem; font-weight: 600; letter-spacing: .06em; line-height: 1.2; opacity: 0; pointer-events: none; transform: translate(-50%,6px); transition: opacity .2s ease, transform .2s ease; }
.body-hotspot span::after { content: ""; position: absolute; top: 100%; left: 50%; border: 5px solid transparent; border-top-color: var(--ink); transform: translateX(-50%); }
.body-hotspot:hover span, .body-hotspot:focus-visible span { opacity: 1; transform: translate(-50%,0); }
.body-hotspot:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.body-hotspot--hifu { top: 28.4%; left: 15.5%; }
.body-hotspot--co2-face { top: 4%; left: 47.6%; }
.body-hotspot--co2-face span { top: calc(100% + 17px); bottom: auto; }
.body-hotspot--co2-face span::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: var(--ink); }
.body-hotspot--laser { top: 55.8%; left: 56.3%; }
.body-hotspot--co2-body { top: 83.2%; left: 39.8%; }
.original-feature__copy--dark { color: var(--white); background: var(--ink); }
.original-feature__copy--dark h2 { color: var(--white); font-size: clamp(2.35rem, 3.4vw, 46px); font-weight: 500; text-transform: uppercase; }
.original-feature__label--gold { background: var(--gold); }
.button--light { border-color: rgba(255,255,255,.8); color: var(--white); }

.feature-section { background: #fafafa; }
.feature-section--reverse { background: var(--white); }
.feature-image { min-height: 650px; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.feature-image--face { background-image: url('../media/2025/11/931.jpg'); }
.feature-image--body { background-image: url('../media/2025/08/home-1-8-liposuction.webp'); }
.link-list { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.link-list a { font-family: var(--font-serif); font-size: 1.15rem; }

.popular-services { padding-bottom: 0; background: var(--white); }
.popular-services > .shell h2, .reviews h2 { font-size: clamp(2.5rem, 4vw, 54px); }
.popular-services > .shell h2 { margin-bottom: 70px; text-align: center; }
.treatment-panel { min-height: 720px; padding: 0 3%; }
.treatment-panel__layout { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; min-height: inherit; }
.treatment-panel__mobile-toggle { display: none; }
.treatment-panel__copy { position: relative; z-index: 1; margin-right: -110px; padding: clamp(55px, 7vw, 100px); background: rgba(255,255,255,.95) url('../media/2024/09/background-light-1.webp') center / cover; }
.treatment-panel__copy h3 { color: var(--ink); font-size: clamp(2rem, 3vw, 2.8rem); text-transform: uppercase; }
.treatment-panel__seo { margin: 26px 0 18px; color: var(--blue); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.treatment-panel__image { min-height: 660px; background: var(--treatment-image) center / cover; }
.treatment-tabs { display: grid; grid-template-columns: repeat(6, minmax(max-content,1fr)); overflow-x: auto; }
.treatment-tabs button { min-height: 70px; padding: 14px 26px; border: 0; border-right: 1px solid var(--white); color: var(--blue); background: var(--cream); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: color .22s ease, background-color .22s ease, box-shadow .22s ease; }
.treatment-tabs button:not([aria-selected="true"]):hover { color: var(--white); background: var(--gold); box-shadow: inset 0 -4px 0 rgba(1,0,128,.28); }
.treatment-tabs button:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--gold); outline-offset: -4px; }
.treatment-tabs button[aria-selected="true"] { color: var(--white); background: var(--blue); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.service-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { display: flex; flex-direction: column; min-height: 330px; padding: 36px; border: 1px solid var(--line); background: rgba(255,255,255,.86); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { border-color: rgba(175,137,58,.5); box-shadow: 0 18px 45px rgba(18,27,36,.08); transform: translateY(-4px); }
.service-card > p { color: var(--gold-deep); font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.service-card h2, .service-card h3 { font-size: 1.55rem; text-transform: none; }
.service-card h2 a, .service-card h3 a { color: var(--ink); text-decoration: none; }
.service-card > span { display: block; margin-bottom: 24px; font-size: .95rem; }
.service-card .text-link { margin-top: auto; }
.service-category-section + .service-category-section { margin-top: 100px; }
.category-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }

.doctor-teaser { background: var(--white); }
.doctor-teaser__image { min-height: 600px; background: url('../media/2024/09/doctors-page.webp') center / cover; }
.reviews-section { background: url('../media/2024/09/background-light-2.webp') center / cover; }
.reviews { text-align: center; }
.testimonial { max-width: 970px; margin: 35px auto 20px; color: #6d5343; font-family: Georgia, serif; font-size: clamp(1.08rem, 1.7vw, 1.32rem); line-height: 1.7; }
.testimonial p { margin: 0; }
.testimonial__rating { display: block; margin-bottom: 18px; color: var(--gold-deep); font-family: var(--font-sans); font-size: .82rem; font-weight: 700; letter-spacing: .08em; }
.testimonial footer { margin-top: 22px; color: var(--ink); font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .08em; }
.testimonial:not([hidden]) { animation: refine-fade-in .55s ease both; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.slider-dots button { width: 12px; height: 12px; padding: 0; border: 1px solid #8c6d55; border-radius: 50%; background: transparent; cursor: pointer; }
.slider-dots button[aria-current="true"] { background: var(--gold); }

.contact-cta { color: var(--white); background: var(--ink); }
.contact-cta h2, .contact-cta a:not(.button) { color: var(--white); }
.contact-cta .button--outline { border-color: var(--gold); color: var(--white); background: rgba(255,255,255,.04); }
.contact-cta .button--outline:hover { border-color: var(--gold); color: var(--ink); background: var(--gold); }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.contact-cta__inner > div { max-width: 780px; }
.contact-cta__inner > div > p:not(.eyebrow) { font-size: 1.08rem; }
.home-gallery { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); background: var(--ink); }
.home-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.page-hero { position: relative; padding: 130px 0; background: var(--cream) url('../media/2024/08/background-big.webp') center / cover; }
.page-hero--light { background-image: url('../media/2025/08/background-bright-big.webp'); }
.page-hero--contact { background-image: linear-gradient(90deg, rgba(246,242,233,.94), rgba(246,242,233,.68)), url('../media/2024/09/appointment-1.webp'); background-position: center, 78% 35%; }
.page-hero--cosmetics { background-image: linear-gradient(90deg, rgba(246,242,233,.94), rgba(246,242,233,.64)), url('../media/2025/11/WhatsApp-Image-2025-11-16-at-17.28.46.jpeg'); }
.page-hero--small { padding: 90px 0; }
.page-hero__inner { max-width: 900px; }
.page-hero__inner > p:not(.eyebrow) { max-width: 760px; font-size: 1.12rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; padding-block: 22px; font-size: .8rem; }
.breadcrumbs a { color: var(--text); }
.service-hero { padding: clamp(60px, 8vw, 118px) 0; }
.service-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .75fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.service-hero__lead { max-width: 750px; font-size: 1.15rem; }
.service-seo-line { margin: 24px 0 0; color: var(--blue); font-size: .86rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.service-hero__image { min-height: 560px; background: linear-gradient(0deg, rgba(18,27,36,.09), transparent), var(--service-image) center / cover; box-shadow: var(--shadow); }
.quick-facts h2 { max-width: 850px; }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.fact-card { padding: 28px; border: 1px solid rgba(175,137,58,.25); background: rgba(255,255,255,.74); }
.fact-card h3 { color: var(--gold-deep); font-family: var(--font-sans); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.fact-card p { margin: 0; color: var(--ink); font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.45; }
.price-note { max-width: 850px; margin-top: 30px; font-size: .82rem; }
.service-copy { background: var(--white); }
.service-copy__section + .service-copy__section { margin-top: 52px; }
.service-copy__section h2 { margin-bottom: .7em; font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 500; line-height: 1.2; text-transform: none; }
.service-copy__section ul { margin: 0 0 1.5em; padding-left: 1.3em; }
.service-copy__section li { margin-bottom: .5em; }
.faq-section { background: #fafafa; }
.faq-section details { border-top: 1px solid var(--line); }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { padding: 22px 42px 22px 0; color: var(--ink); font-family: var(--font-serif); font-size: 1.2rem; cursor: pointer; }
.faq-section details p { padding: 0 0 24px; }
.related-section { background: var(--cream); }

.category-hero { position: relative; min-height: 600px; display: flex; align-items: end; background: var(--category-image) center / cover; }
.category-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,27,36,.8), rgba(18,27,36,.08)); }
.category-hero__content { position: relative; z-index: 1; padding-bottom: 80px; color: var(--white); }
.category-hero h1 { max-width: 1000px; color: var(--white); }
.category-hero__content > p:not(.eyebrow) { max-width: 750px; }

.doctors-hero { position: relative; display: flex; align-items: end; min-height: 600px; background: url('../media/2024/09/doctors-page.webp') center / cover; }
.doctors-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,27,36,.72), rgba(18,27,36,.04)); }
.doctors-hero__content { position: relative; z-index: 1; padding-bottom: 70px; color: var(--white); }
.doctors-hero h1 { max-width: 900px; color: var(--white); }
.doctor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.doctor-card { display: grid; grid-template-columns: minmax(220px, .8fr) 1.2fr; gap: 34px; align-items: center; padding: 30px; background: var(--cream); }
.doctor-card img { aspect-ratio: 1; object-fit: cover; }
.doctor-profile__image { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--cream); }
.doctor-card h2,
.doctor-profile h1 {
    text-transform: none;
}

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { padding: 36px; border: 1px solid var(--line); background: var(--white); }
.contact-card h2 { font-size: 1.8rem; text-transform: none; }
.contact-feature { background: var(--cream) url('../media/2024/09/background-light-1.webp') center / cover; }
.contact-banner { min-height: 250px; background: url('../media/2024/09/doctors-page.webp') center 35% / cover; }
.contact-feature__grid { display: grid; grid-template-columns: 35% 17% 48%; align-items: stretch; min-height: 880px; }
.contact-feature__intro { display: flex; align-items: flex-start; justify-content: center; padding: 90px 50px; background: url('../media/2024/08/background-big.webp') center / cover; text-align: center; }
.contact-feature__intro h2 { max-width: 370px; margin-top: 0; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1.3; text-transform: none; }
.contact-feature__image { width: 100%; height: 100%; object-fit: cover; }
.contact-form-panel { padding: 88px clamp(45px, 6vw, 90px); color: var(--white); background: var(--blue); }
.contact-form-panel h1 { color: var(--white); font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 700; line-height: 1.1; text-transform: none; }
.contact-form-panel > p { color: rgba(255,255,255,.86); }
.contact-form { display: grid; gap: 24px; margin-top: 34px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--white); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.72); border-radius: 0; color: var(--white); background: transparent; outline: 0; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-bottom-color: var(--gold); box-shadow: 0 1px 0 var(--gold); }
.form-consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 11px; font-size: .75rem; line-height: 1.5; }
.form-consent input { margin-top: 5px; }
.form-consent a { color: var(--white); }
.form-notice { padding: 14px 18px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.1); }
.form-notice--error { border-left-color: #ffb6b6; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@keyframes refine-fly-up { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }
@keyframes refine-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes hotspot-pulse { 0% { opacity: .8; transform: scale(.65); } 75%, 100% { opacity: 0; transform: scale(1.45); } }
.price-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; align-items: start; }
.price-list { padding: 36px; border: 1px solid var(--line); background: var(--cream); }
.price-list h2 { font-size: 1.7rem; text-transform: none; }
.price-list ul { margin: 0 0 30px; padding: 0; list-style: none; }
.price-list li { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(107,102,104,.15); }
.price-list strong { white-space: nowrap; color: var(--gold-deep); }
.legal-copy h2 { margin-top: 1.6em; font-size: 1.7rem; text-transform: none; }
.credit-list { padding-left: 1.2em; overflow-wrap: anywhere; }
.credit-list li { margin-bottom: 12px; }
.error-page { min-height: 60vh; display: flex; align-items: center; }

.instagram-cta { padding: 26px; border-top: 1px solid var(--line); text-align: center; }
.instagram-cta a { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.site-footer { color: #706d69; background: var(--cream) url('../media/2025/08/background-footer.webp') center / cover; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-block: 80px 65px; }
.footer-brand img { width: 300px; margin-bottom: 20px; }
.site-footer h2 { color: var(--ink); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--gold-deep); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 22px; border-top: 1px solid rgba(107,102,104,.16); font-size: .78rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-copyright { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.it-ninja-credit { display: inline-flex; align-items: center; padding-left: 18px; border-left: 1px solid rgba(107,102,104,.24); }
.it-ninja-credit__brand { display: grid; color: var(--ink); font-family: Arial, sans-serif; font-style: normal; line-height: .95; text-transform: uppercase; }
.it-ninja-credit__brand small { font-size: .58rem; font-weight: 700; letter-spacing: .24em; }
.it-ninja-credit__brand strong { font-size: .9rem; font-weight: 800; letter-spacing: .04em; }
.back-to-top { position: fixed; z-index: 70; right: 24px; bottom: 24px; display: grid; place-items: center; width: 48px; height: 48px; color: var(--white); background: var(--blue); opacity: 0; pointer-events: none; text-decoration: none; transform: translateY(12px); transition: .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(920px, calc(100vw - 48px)); }
  body { font-size: 20px; }
  .desktop-nav { display: none; }
  .site-header--overlay { min-height: 210px; padding: 20px 30px; }
  .site-header--overlay .brand { left: 26.5%; width: min(320px, 43vw); margin: 0; }
  .site-header--overlay .menu-toggle { width: 64px; height: 64px; }
  .home-hero { min-height: 850px; background-position: 40% center; }
  .home-hero__identity { top: 29%; left: 26.5%; width: 45%; }
  .home-hero__button--contact { left: auto; }
  .home-hero__button--booking { right: 4%; min-width: 210px; }
  .hero-categories { display: none; }
  .home-intro { min-height: auto; padding-block: 110px; }
  .home-intro__main { grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); gap: 80px; min-height: 700px; }
  .home-intro__media { min-height: 620px; }
  .home-intro__media img { right: -10%; width: 44%; }
  .category-grid, .service-grid, .service-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .original-feature__copy { padding: 70px 48px; }
  .treatment-panel { min-height: 620px; }
  .treatment-panel__copy { margin-right: -70px; padding: 55px; }
  .treatment-panel__image { min-height: 560px; }
  .treatment-tabs { grid-template-columns: repeat(6, minmax(180px,1fr)); }
  .contact-feature__grid { grid-template-columns: 31% 20% 49%; }
  .contact-form-panel { padding: 70px 45px; }
  .service-hero__grid { grid-template-columns: 1fr .8fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); }
  html, body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }
  h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.45rem); }
  .section { padding-block: 72px; }
  .split, .split--media { grid-template-columns: 1fr; gap: 38px; }
  .feature-section--reverse .split > :first-child { order: 2; }
  .feature-section--reverse .split > :last-child { order: 1; }
  .social-strip { min-height: 16px; padding: 0; line-height: 0; text-align: center; }
  .social-strip a { display: none; }
  .site-header { min-height: 82px; padding-inline: 18px; }
  .site-header--overlay { top: 16px; align-items: flex-start; min-height: 200px; padding: 7px 16px; }
  .brand { width: 190px; }
  .site-header--overlay .brand { top: 64px; left: 26px; width: min(210px, 48vw); margin: 0; transform: none; }
  .site-header--overlay .menu-toggle { width: 54px; height: 54px; margin-top: 0; }
  .menu-toggle { width: 54px; height: 54px; }
  .menu-toggle span { width: 26px; height: 3px; }
  .menu-drawer { padding: 78px 26px 30px; }
  .home-hero { min-height: max(720px, calc(100svh - 16px)); max-height: none; background-position: 42% center; }
  .home-hero__identity { top: 245px; left: 18px; width: min(210px, 48vw); text-align: center; transform: none; }
  .home-hero__motto { margin: 0 0 38px; font-size: clamp(1.02rem, 5.6vw, 1.45rem); line-height: 1.35; text-align: center; }
  .home-hero h1 { margin: 0; font-size: clamp(.76rem, 3.6vw, .95rem); line-height: 1.5; text-align: center; text-shadow: 0 1px 6px rgba(18,27,36,.4); }
  .home-hero__button { bottom: 54px; }
  .home-hero__button--contact { bottom: auto; left: auto; margin-top: 52px; }
  .home-hero__button--booking, .hero-categories { display: none; }
  .home-intro { padding-block: 80px; }
  .home-intro__main { grid-template-columns: 1fr; gap: 52px; min-height: 0; }
  .home-intro__copy { order: 1; }
  .home-intro__media { order: 2; min-height: 380px; }
  .home-intro__media img { display: none; }
  .home-intro__copy > p:not(.eyebrow) { font-size: 1.36rem; }
  .practice-carousel { min-height: 310px; margin-top: 70px; padding: 36px 26px 62px; }
  .practice-carousel .practice-slide { font-size: 1.18rem; line-height: 1.55; }
  .category-grid, .service-grid, .service-grid--compact, .doctor-grid, .price-columns { grid-template-columns: 1fr; }
  .category-card {
    align-items: center;
    justify-content: flex-end;
    aspect-ratio: .78;
    min-height: 0;
    padding: 34px 24px clamp(44px, 12vw, 60px);
  }
  .category-card em { display: none; }
  .category-card:hover em,
  .category-card:focus-visible em,
  .category-card.is-revealed em { display: block; opacity: 1; transform: none; }
  .category-card.is-revealed::after { opacity: 1; }
  .original-feature { grid-template-columns: 1fr; min-height: 0; }
  .original-feature__copy { padding: 72px 24px; }
  .before-after { min-height: 430px; }
  .original-feature--body .original-feature__copy { order: 1; }
  .original-feature--body .body-hotspots { order: 2; }
  .body-hotspots, .body-hotspots > img { min-height: 620px; }
  .body-hotspot { width: 15px; height: 15px; border-width: 2px; }
  .original-feature__copy--dark h2 { font-size: 2.15rem; }
  .popular-services > .shell h2 { margin-bottom: 45px; }
  .treatment-panel { min-height: 0; padding: 0; border-top: 1px solid var(--white); }
  .treatment-panel__layout { grid-template-columns: 1fr; min-height: 0; }
  .treatment-panel__mobile-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 64px; padding: 15px 22px; border: 0; color: var(--blue); background: var(--cream); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-align: left; text-transform: uppercase; cursor: pointer; }
  .treatment-panel__mobile-toggle::after { content: "+"; font-size: 1.35rem; font-weight: 400; }
  .treatment-panel.is-open .treatment-panel__mobile-toggle { color: var(--white); background: var(--blue); }
  .treatment-panel.is-open .treatment-panel__mobile-toggle::after { content: "−"; }
  .treatment-panel__copy { margin: 0 18px -30px; padding: 38px 28px; }
  .treatment-panel__copy h3 { font-size: 2rem; }
  .treatment-panel__image { min-height: 430px; }
  .treatment-tabs { display: none; }
  .feature-image { min-height: 460px; }
  .service-card { min-height: 0; }
  .doctor-teaser__image { min-height: 360px; }
  .contact-cta__inner, .category-heading { align-items: flex-start; flex-direction: column; }
  .contact-cta .button-row { width: 100%; }
  .home-gallery { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .contact-banner { min-height: 190px; }
  .contact-feature__grid { grid-template-columns: 1fr; min-height: 0; }
  .contact-feature__intro { min-height: 320px; padding: 70px 28px; }
  .contact-feature__image { max-height: 520px; }
  .contact-form-panel { padding: 66px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding-block: 88px; }
  .service-hero__grid { grid-template-columns: 1fr; }
  .service-hero__image { min-height: 390px; }
  .facts-grid { grid-template-columns: 1fr; }
  .category-hero, .doctors-hero { min-height: 520px; }
  .doctor-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .it-ninja-credit { padding-left: 0; border-left: 0; }
}

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