:root {
    --ink: #1d1d1d;
    --ink-soft: #47423d;
    --paper: #ffffff;
    --ivory: #f5f2ed;
    --ivory-deep: #ebe5dc;
    --gold: #b79a70;
    --gold-dark: #8e7553;
    --line: rgba(29, 29, 29, 0.18);
    --white-line: rgba(255, 255, 255, 0.24);
    --shadow: 0 24px 70px rgba(27, 23, 18, 0.12);
    --header-height: 84px;
    --font-main: "Avenir Next", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
    --font-display: "Avenir Next", "Century Gothic", Arial, sans-serif;
    --font-script: "Segoe Script", "Brush Script MT", cursive;
}

/* WordPress form status messages. */
.medaxon-site-notice {
    position: relative;
    z-index: 120;
    padding: 14px 0;
    color: #fff;
    background: #7c2f2f;
    font-size: 14px;
    line-height: 1.5;
}

.medaxon-site-notice .container {
    text-align: center;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.16;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    letter-spacing: 0.12em;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.8vw, 3.55rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

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

.section {
    padding: 112px 0;
}

.section--tight {
    padding: 88px 0;
}

.section--ivory {
    background: var(--ivory);
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--gold-dark);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.82);
}

.lead {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.small-note,
.section-note {
    color: #716a63;
    font-size: 0.88rem;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.section-head h2 {
    margin-bottom: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: right;
}

.text-link span {
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--gold {
    color: #fff;
    background: var(--gold);
}

.button--gold:hover {
    background: var(--gold-dark);
}

.button--dark {
    color: #fff;
    background: var(--ink);
}

.button--dark:hover {
    background: #35302c;
}

.button--soft {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
}

.button--light-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
}

.button--light-outline:hover {
    color: var(--ink);
    background: #fff;
}

.button--ghost-dark {
    color: var(--ink);
    border-color: rgba(29, 29, 29, 0.32);
    background: transparent;
}

.button--full {
    width: 100%;
}

.text-button {
    border: 0;
    padding: 0;
    color: var(--ink);
    background: none;
    cursor: pointer;
    font-weight: 700;
}

/* Header */
.site-header {
    position: relative;
    z-index: 80;
    background: #fff;
}

.topbar {
    border-bottom: 1px solid var(--line);
    color: #5d5751;
    background: #faf9f7;
    font-size: 0.72rem;
}

.topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 36px;
    align-items: center;
    gap: 24px;
}

.topbar__inner > :last-child {
    justify-self: end;
}

.mainbar {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    transition: box-shadow 0.25s ease;
}

.site-header.is-sticky .mainbar {
    position: fixed;
    inset: 0 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mainbar__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: 14px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 13px;
}

.brand__mark {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    line-height: 1;
}

.brand__mark--large {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    font-size: 2.4rem;
}

.brand__name {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
}

.desktop-nav {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 0.8vw, 14px);
}

.desktop-nav > a,
.nav-dropdown__button {
    position: relative;
    border: 0;
    padding: 30px 0;
    background: none;
    cursor: pointer;
    font-size: 0.71rem;
    font-weight: 600;
    white-space: nowrap;
}

.desktop-nav > a::after,
.nav-dropdown__button::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-dropdown__button:hover::after,
.nav-dropdown__button.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
}

.language-switch a {
    color: #8e8881;
}

.language-switch a.is-active {
    color: var(--ink);
    font-weight: 700;
}

.icon-button,
.mobile-menu-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
}

.icon-button {
    font-size: 1.4rem;
}

.mobile-menu-button {
    display: none;
    gap: 4px;
    padding: 10px;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
}

.nav-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    visibility: hidden;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

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

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 44px;
}

.mega-menu h3 {
    margin-bottom: 18px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mega-menu a {
    display: block;
    padding: 7px 0;
    color: #544e48;
    font-size: 0.83rem;
    line-height: 1.35;
}

.mega-menu a:hover {
    color: var(--gold-dark);
}

/* Home hero */
.home-hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    color: #fff;
    background: url('../images/clinic-hero.webp') center / cover no-repeat;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.53));
}

.home-hero__content {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 48px));
    text-align: center;
}

.hero-kicker {
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.home-hero h1 {
    margin: 0;
    font-weight: 300;
}

.hero-script {
    margin: -8px 0 22px;
    color: #e4d4bd;
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    transform: rotate(-3deg);
}

.home-hero__lead {
    width: min(680px, 100%);
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.home-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    width: 22px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    transform: translateX(-50%);
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: #fff;
    animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Service tiles */
.service-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.service-mosaic--catalog {
    gap: 18px;
}

.service-tile {
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--tile-image) var(--tile-position, center) / cover no-repeat;
    isolation: isolate;
}

.service-tile::before {
    position: absolute;
    inset: -2px;
    z-index: -2;
    background: inherit;
    content: "";
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tile:hover::before {
    transform: scale(1.06);
}

.service-tile__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.76));
    transition: background 0.35s ease;
}

.service-tile:hover .service-tile__overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.03), rgba(10, 10, 10, 0.62));
}

.service-tile__content {
    width: 100%;
    padding: 40px;
}

.service-tile small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-tile h3 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-tile p {
    max-width: 580px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.9rem;
}

.service-tile__more {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: normal;
    text-align: right;
}

.service-tile__more b {
    transition: transform 0.25s ease;
}

.service-tile:hover .service-tile__more b {
    transform: translateX(6px);
}

/* Intro and consultation */
.clinic-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.clinic-intro__image {
    position: relative;
}

.clinic-intro__image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    right: -20px;
    bottom: 34px;
    padding: 12px 18px;
    color: #fff;
    background: var(--ink);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.clinic-intro__content p:not(.eyebrow) {
    color: #5e5750;
}

.consultation-band {
    display: grid;
    min-height: 720px;
    grid-template-columns: 1.05fr 0.95fr;
    color: #fff;
    background: var(--ink);
}

.consultation-band__photo {
    background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), url('../images/clinic-room.webp') center / cover no-repeat;
}

.consultation-band__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
}

.consultation-band__content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

/* Forms */
.appointment-form {
    display: grid;
    gap: 18px;
}

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

.appointment-form label {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(29, 29, 29, 0.24);
    border-radius: 0;
    padding: 13px 14px;
    color: var(--ink);
    outline: none;
    background: #fff;
    font-size: 0.95rem;
}

.appointment-form textarea {
    resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(183, 154, 112, 0.12);
}

.appointment-form--dark label {
    color: rgba(255, 255, 255, 0.84);
}

.appointment-form--dark input,
.appointment-form--dark select,
.appointment-form--dark textarea {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.appointment-form--dark option {
    color: var(--ink);
}

.consent {
    grid-template-columns: 18px 1fr;
    align-items: start;
    font-weight: 400 !important;
}

.consent input {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    padding: 0;
}

/* Slider */
.slider {
    overflow: hidden;
}

.slider__track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.slider-controls {
    display: inline-flex;
    gap: 8px;
}

.slider-controls button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
}

.case-slide {
    min-width: calc(50% - 12px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
    overflow: hidden;
    background: var(--ivory);
}

.case-slide img {
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.case-slide > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
}

.case-slide small {
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.case-slide p {
    color: #6b645c;
    font-size: 0.85rem;
}

.case-slide a {
    font-size: 0.78rem;
    font-weight: 700;
}

.patients-section .section-note {
    margin: 24px 0 0;
}

/* Clinic story */
.clinic-story {
    background: #fff;
}

.clinic-story__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 72px;
}

.clinic-collage {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 10px;
}

.clinic-collage figure {
    margin: 0;
    overflow: hidden;
}

.clinic-collage img {
    height: 100%;
    object-fit: cover;
}

.clinic-collage__main {
    grid-row: span 2;
    min-height: 560px;
}

.clinic-collage figure:not(.clinic-collage__main) {
    min-height: 275px;
}

/* Specialist */
.specialist-section {
    background: var(--ivory);
}

.specialist-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.specialist-section__photo {
    position: relative;
}

.specialist-section__photo img {
    width: 100%;
    max-height: 780px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center 18%;
    background: #e8e8e8;
}

.specialist-section__photo > span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(29, 29, 29, 0.78);
    font-size: 0.7rem;
}

.specialist-name {
    margin-bottom: 18px;
    font-size: 1.25rem;
    font-weight: 700;
}

.specialist-section__content > p:not(.eyebrow, .specialist-name) {
    color: #625b54;
}

.specialist-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.specialist-badges span {
    border: 1px solid var(--line);
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.52);
    font-size: 0.75rem;
}

/* Compact services */
.compact-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.compact-service-card {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.compact-service-card:nth-child(even) {
    border-right: 0;
}

.compact-service-card:hover {
    background: #fff;
}

.compact-service-card > span {
    min-width: 0;
}

.compact-service-card small,
.compact-service-card strong,
.compact-service-card em {
    display: block;
}

.compact-service-card small {
    margin-bottom: 7px;
    color: var(--gold-dark);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.compact-service-card strong {
    overflow-wrap: anywhere;
    font-size: 1.05rem;
    line-height: 1.35;
}

.compact-service-card em {
    margin-top: 6px;
    color: #6f6860;
    font-size: 0.78rem;
    font-style: normal;
    white-space: normal;
}

.compact-service-card > b {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    flex: 0 0 auto;
    font-size: 1rem;
}

/* Reviews */
.review-card {
    min-width: calc(33.333% - 16px);
    border: 1px solid var(--line);
    padding: 36px;
    background: #fff;
}

.stars {
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.review-card blockquote {
    min-height: 118px;
    margin: 0 0 28px;
    color: #514b45;
    font-size: 1rem;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-card footer span {
    color: #7d756e;
    font-size: 0.76rem;
}

.section-link {
    margin-top: 32px;
    text-align: right;
}

/* FAQ */
.faq-section__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.faq-item summary span {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 42px 24px 0;
    color: #675f58;
}

/* Page hero */
.page-hero,
.service-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--page-image) center / cover no-repeat;
}

.service-hero {
    min-height: 610px;
    background-image: var(--service-image);
}

.page-hero__overlay,
.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 17, 15, 0.74), rgba(18, 17, 15, 0.3));
}

.page-hero__content,
.service-hero__content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.page-hero h1,
.service-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    letter-spacing: 0.02em;
}

.page-hero p:not(.eyebrow),
.service-hero p:not(.eyebrow) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 56px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
}

.breadcrumbs a:hover {
    color: #fff;
}

.service-hero__price {
    margin-bottom: 28px;
    color: #fff !important;
    font-size: 1.45rem !important;
}

/* Service detail */
.service-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 72px;
}

.service-intro {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.service-intro p:not(.lead) {
    color: #605951;
}

.medical-section {
    margin-bottom: 62px;
}

.medical-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.medical-section p {
    color: #5d5750;
}

.medical-list {
    display: grid;
    gap: 13px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.medical-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.medical-list li > span:first-child {
    color: var(--gold-dark);
    font-weight: 800;
}

.service-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    border: 1px solid var(--line);
    padding: 30px;
    background: var(--ivory);
}

.sidebar-card p:not(.eyebrow) {
    color: #655e57;
    font-size: 0.88rem;
}

.sidebar-phone {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-weight: 700;
}

.sidebar-card--image {
    padding: 0;
    overflow: hidden;
}

.sidebar-card--image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.price-list {
    border-top: 1px solid var(--line);
}

.price-row {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(30px, 1fr) max-content;
    align-items: baseline;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.price-row span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.price-row i {
    border-bottom: 1px dotted rgba(29, 29, 29, 0.35);
}

.price-row strong {
    text-align: right;
    white-space: normal;
    text-align: right;
}

/* Price page */
.price-page {
    display: grid;
    gap: 64px;
}

.notice-card {
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    background: var(--ivory);
}

.notice-card p {
    margin: 7px 0 0;
    color: #665f58;
}

.price-group h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.price-catalog-row {
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(20px, 1fr) max-content;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.price-catalog-row > span {
    min-width: 0;
}

.price-catalog-row strong,
.price-catalog-row small {
    display: block;
}

.price-catalog-row strong {
    overflow-wrap: anywhere;
}

.price-catalog-row small {
    max-width: 680px;
    margin-top: 4px;
    color: #777068;
    font-size: 0.75rem;
}

.price-catalog-row i {
    border-bottom: 1px dotted rgba(29, 29, 29, 0.35);
}

.price-catalog-row b {
    text-align: right;
    white-space: normal;
    text-align: right;
}

/* Cards and content pages */
.category-grid,
.process-grid,
.qualification-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.category-card,
.process-card,
.qualification-card,
.contact-card,
.guide-card {
    border: 1px solid var(--line);
    padding: 32px;
    background: #fff;
}

.category-card > span,
.process-card > span,
.qualification-card > span,
.contact-card > span,
.guide-card > span {
    display: block;
    margin-bottom: 50px;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.category-card h2,
.process-card h2,
.contact-card h2,
.guide-card h2 {
    font-size: 1.45rem;
}

.category-card p,
.process-card p,
.qualification-card p,
.contact-card p,
.guide-card p {
    margin-bottom: 0;
    color: #6a635c;
    font-size: 0.86rem;
}

.patient-guide__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.certificate-strip,
.contact-form-layout,
.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 70px;
}

.certificate-strip img {
    max-height: 420px;
    object-fit: contain;
}

.license-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.license-card {
    border: 1px solid var(--line);
    padding: 18px;
}

.license-card img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: var(--ivory);
}

.license-card h3 {
    margin: 20px 0 8px;
}

.license-card p {
    color: #716961;
    font-size: 0.82rem;
}

.review-policy {
    background: var(--ivory);
}

.contact-card a,
.contact-card button {
    color: var(--gold-dark);
}

.contact-form-layout > div p:not(.eyebrow) {
    color: #675f58;
}

.legal-content {
    max-width: 850px;
}

.legal-content p {
    margin-bottom: 24px;
    color: #5c5650;
}

/* Search page */
.search-page__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 12px;
    margin-bottom: 64px;
}

.search-page__form input {
    min-width: 0;
    border: 1px solid var(--line);
    padding: 16px 18px;
    font-size: 1rem;
}

.empty-state {
    padding: 40px;
    background: var(--ivory);
    text-align: center;
}

/* Map and footer */
.map-section {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: #ddd8d0;
}

.map-placeholder,
.map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    z-index: 2;
    display: grid;
    place-items: center;
    background: linear-gradient(rgba(246, 243, 238, 0.86), rgba(246, 243, 238, 0.9)),
        repeating-linear-gradient(45deg, #dad4cb 0 1px, transparent 1px 26px);
    text-align: center;
}

.map-placeholder.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s;
}

.map-frame {
    display: block;
}

.site-footer {
    color: #fff;
    background: #1b1b1b;
}

.footer-top {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding-top: 54px;
    padding-bottom: 46px;
}

.brand--footer {
    color: #fff;
}

.footer-brand p,
.footer-contact p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}

.footer-contact h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.15fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding-top: 38px;
    padding-bottom: 38px;
}

.footer-links h4 {
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social > div {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-social > div a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    padding: 0;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-top: 22px;
    padding-bottom: 26px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.7rem;
}

/* Modals */
.search-modal,
.appointment-modal,
.mobile-drawer,
.mobile-drawer-backdrop {
    position: fixed;
    z-index: 150;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s;
}

.search-modal.is-open,
.appointment-modal.is-open,
.mobile-drawer.is-open,
.mobile-drawer-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

.search-modal {
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #fff;
    background: rgba(21, 20, 18, 0.96);
}

.search-modal__panel {
    width: min(820px, 100%);
}

.search-modal h2 {
    margin-bottom: 30px;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font-size: 1.8rem;
}

.live-search-field {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.live-search-field span {
    font-size: 1.5rem;
}

.live-search-field input {
    min-width: 0;
    border: 0;
    padding: 18px 0;
    color: #fff;
    outline: none;
    background: transparent;
    font-size: clamp(1.3rem, 4vw, 2rem);
}

.live-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.live-search-results {
    max-height: 48vh;
    overflow-y: auto;
    margin-top: 28px;
}

.live-search-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding: 14px 0;
}

.live-search-item span,
.live-search-item strong,
.live-search-item small {
    display: block;
}

.live-search-item small {
    color: rgba(255, 255, 255, 0.55);
}

.live-search-item[hidden] {
    display: none;
}

.live-search-empty {
    color: rgba(255, 255, 255, 0.7);
}

.appointment-modal {
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.appointment-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 14, 13, 0.76);
}

.appointment-modal__panel {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: clamp(36px, 6vw, 70px);
    background: #fff;
    box-shadow: var(--shadow);
}

.appointment-modal__panel .modal-close {
    color: var(--ink);
}

/* Mobile drawer */
.mobile-drawer {
    inset: 0 0 0 auto;
    width: min(430px, 90vw);
    display: flex;
    flex-direction: column;
    padding: 34px;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer-backdrop {
    inset: 0;
    z-index: 140;
    background: rgba(0, 0, 0, 0.58);
}

.mobile-drawer__close {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    font-size: 1.7rem;
}

.brand--drawer {
    margin: 18px 0 34px;
}

.mobile-nav {
    display: grid;
    border-top: 1px solid var(--line);
}

.mobile-nav > a,
.mobile-nav summary {
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav details div {
    display: grid;
    padding: 10px 0 15px 16px;
}

.mobile-nav details div a {
    padding: 7px 0;
    color: #675f58;
    font-size: 0.82rem;
}

.mobile-drawer__bottom {
    display: grid;
    gap: 18px;
    margin-top: auto;
    padding-top: 28px;
}

.language-switch--drawer {
    justify-content: center;
}

.mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
    background: var(--ink);
}

.mobile-dock a,
.mobile-dock button {
    display: grid;
    min-height: 62px;
    place-items: center;
    gap: 2px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    background: transparent;
    font-size: 0.67rem;
}

.mobile-dock span {
    font-size: 1rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 200;
    display: flex;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    border: 1px solid var(--line);
    padding: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    max-width: 720px;
    margin: 5px 0;
    color: #675f58;
    font-size: 0.82rem;
}

.cookie-banner a {
    font-size: 0.75rem;
    text-decoration: underline;
}

.cookie-banner > div:last-child {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

/* Message */
.message-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 80px 24px;
    background: var(--ivory);
}

.message-card {
    width: min(680px, 100%);
    padding: 64px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

.message-card h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: 0;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1360px) {
    .brand__logo-wrap {
        width: 188px;
        height: 50px;
    }

    .desktop-nav {
        gap: 10px;
    }

    .desktop-nav > a,
    .nav-dropdown__button {
        font-size: 0.68rem;
    }

    .header-actions .icon-button {
        display: none;
    }
}

@media (max-width: 1220px) {
    .brand__logo-wrap {
        width: 172px;
        height: 46px;
    }

    .desktop-nav {
        gap: 8px;
    }

    .desktop-nav > a,
    .nav-dropdown__button,
    .language-switch {
        font-size: 0.64rem;
    }
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 14px;
    }

    .desktop-nav > a,
    .nav-dropdown__button {
        font-size: 0.72rem;
    }

    .header-book {
        display: none;
    }

    .case-slide {
        grid-template-columns: 1fr;
    }

    .case-slide img {
        min-height: 300px;
    }

    .category-grid,
    .process-grid,
    .qualification-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 40px, 900px);
    }

    .section {
        padding: 82px 0;
    }

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

    .topbar__inner span {
        display: none;
    }

    .desktop-nav,
    .header-actions .language-switch,
    .header-actions .icon-button {
        display: none;
    }

    .mainbar__inner {
        justify-content: space-between;
    }

    .mobile-menu-button {
        display: inline-grid;
    }

    .home-hero {
        min-height: calc(100svh - 108px);
    }

    .service-mosaic {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-tile {
        min-height: 430px;
    }

    .clinic-intro__grid,
    .clinic-story__layout,
    .specialist-section__grid,
    .faq-section__grid,
    .service-detail__grid,
    .certificate-strip,
    .contact-form-layout,
    .split-panel,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .consultation-band {
        grid-template-columns: 1fr;
    }

    .consultation-band__photo {
        min-height: 420px;
    }

    .case-slide {
        min-width: calc(80% - 18px);
    }

    .clinic-collage__main {
        min-height: 430px;
    }

    .service-sidebar {
        position: static;
    }

    .review-card {
        min-width: calc(50% - 12px);
    }

    .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .license-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 62px;
        font-size: 15px;
    }

    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 68px 0;
    }

    .topbar {
        display: none;
    }

    .mainbar__inner {
        min-height: 74px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }

    .brand__name {
        font-size: 1.05rem;
    }

    .home-hero {
        min-height: calc(100svh - 68px);
    }

    .hero-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 16vw, 4.6rem);
        letter-spacing: 0.08em;
    }

    .hero-script {
        font-size: 2.25rem;
    }

    .home-hero__lead {
        font-size: 0.92rem;
    }

    .home-hero__actions {
        flex-direction: column;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 34px;
    }

    .service-tile {
        min-height: 390px;
    }

    .service-tile__content {
        padding: 28px 24px;
    }

    .service-tile p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .image-caption {
        right: 0;
    }

    .consultation-band__photo {
        min-height: 310px;
    }

    .consultation-band__content {
        padding: 52px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .case-slide,
    .review-card {
        min-width: 100%;
    }

    .case-slide > div {
        padding: 26px;
    }

    .clinic-collage {
        grid-template-columns: 1fr 1fr;
    }

    .clinic-collage__main {
        grid-column: span 2;
        grid-row: auto;
        min-height: 350px;
    }

    .clinic-collage figure:not(.clinic-collage__main) {
        min-height: 190px;
    }

    .compact-services {
        grid-template-columns: 1fr;
    }

    .compact-service-card,
    .compact-service-card:nth-child(even) {
        border-right: 0;
    }

    .faq-item summary {
        font-size: 0.9rem;
    }

    .page-hero,
    .service-hero {
        min-height: 470px;
    }

    .breadcrumbs {
        margin-bottom: 34px;
    }

    .price-row,
    .price-catalog-row {
        grid-template-columns: minmax(0, 1fr) max-content;
    }

    .price-row i,
    .price-catalog-row i {
        display: none;
    }

    .price-row strong,
    .price-catalog-row b {
        font-size: 0.88rem;
    }

    .category-grid,
    .process-grid,
    .qualification-grid,
    .contact-grid,
    .patient-guide__grid,
    .license-grid,
    .reviews-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .contact-card > span,
    .guide-card > span,
    .category-card > span,
    .process-card > span,
    .qualification-card > span {
        margin-bottom: 28px;
    }

    .search-page__form {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-links {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .mobile-dock {
        display: grid;
    }

    .cookie-banner {
        right: 10px;
        bottom: 72px;
        left: 10px;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        padding: 18px;
    }

    .cookie-banner > div:last-child {
        flex-direction: column;
    }

    .appointment-modal {
        padding: 0;
    }

    .appointment-modal__panel {
        width: 100%;
        max-height: 100svh;
        min-height: 100svh;
        padding: 72px 22px 34px;
    }

    .search-modal {
        padding: 22px;
    }

    .message-card {
        padding: 40px 24px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Verified specialist documents */
.certificate-strip--documents {
    align-items: stretch;
}

.mini-document-list {
    display: grid;
    gap: 14px;
}

.mini-document-list a {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--ivory);
    transition: transform .2s ease, background .2s ease;
}

.mini-document-list a:hover {
    transform: translateY(-2px);
    background: #fff;
}

.mini-document-list span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    font-size: .72rem;
    letter-spacing: .08em;
}

.mini-document-list strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.mini-document-list small {
    white-space: nowrap;
    color: #766e67;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.document-card {
    min-width: 0;
    border: 1px solid var(--line);
    background: #fff;
}

.document-card__preview {
    position: relative;
    height: min(68vh, 720px);
    min-height: 480px;
    overflow: hidden;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
}

.document-card__preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.document-card__content {
    padding: 28px;
}

.document-card__content h2 {
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.document-card__content > p:not(.eyebrow) {
    color: #6c645d;
}

.document-integrity-note {
    margin-top: 22px;
    color: #746c65;
    font-size: .84rem;
}

.empty-state {
    max-width: 780px;
    text-align: center;
}

.empty-state .button {
    margin-top: 12px;
}

.consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 920px) {
    .document-grid {
        grid-template-columns: 1fr;
    }

    .document-card__preview {
        height: 700px;
    }
}

@media (max-width: 680px) {
    .mini-document-list a {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
    }

    .mini-document-list small {
        grid-column: 2;
    }

    .document-card__preview {
        height: 520px;
        min-height: 420px;
    }

    .document-card__content {
        padding: 22px;
    }
}


/* MEDAXON updated logo */
.brand__logo-wrap {
    display: inline-flex;
    width: 212px;
    height: 56px;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.brand__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.brand--drawer .brand__logo-wrap {
    width: 248px;
    height: 66px;
}

.brand--footer .brand__logo-wrap {
    width: 262px;
    height: 70px;
}

.message-logo {
    width: min(240px, 75vw);
    margin: 0 auto 28px;
}

.message-logo img {
    width: 100%;
    height: auto;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.reviews-preview {
    background: #fff;
}

.reviews-preview__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 54px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reviews-preview__inner h2 {
    margin-bottom: 12px;
}

.reviews-preview__inner p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: #6d665f;
}

@media (max-width: 680px) {
    .brand__logo-wrap {
        width: 168px;
        height: 44px;
    }

    .brand--drawer .brand__logo-wrap {
        width: 208px;
        height: 54px;
    }

    .brand--footer .brand__logo-wrap {
        width: 220px;
        height: 58px;
    }

    .reviews-preview__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
        padding: 36px 0;
    }
}

/* Packages and partners */
.section-intro {
    max-width: 880px;
    margin: 18px 0 38px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.section-head__text {
    max-width: 440px;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.packages-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 8%, rgba(183, 154, 112, 0.18), transparent 30%),
        linear-gradient(180deg, #f7f4ef 0%, #efe9e0 100%);
}

.packages-section::before {
    position: absolute;
    top: 0;
    right: 4%;
    width: 1px;
    height: 100%;
    background: rgba(142, 117, 83, 0.2);
    content: "";
}

.package-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.package-card {
    grid-column: span 2;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(29, 29, 29, 0.11);
    border-radius: 3px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(27, 23, 18, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:nth-child(4),
.package-card:nth-child(5) {
    grid-column: span 3;
}

.package-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent 88%);
    content: "";
}

.package-card:hover {
    border-color: rgba(142, 117, 83, 0.36);
    box-shadow: 0 26px 64px rgba(27, 23, 18, 0.14);
    transform: translateY(-5px);
}

.package-card--featured {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(20, 20, 20, 0.97), rgba(45, 39, 32, 0.96)),
        url('../images/clinic-room.webp') center / cover;
    border-color: rgba(255, 255, 255, 0.16);
}

.package-card--featured::before {
    height: 5px;
    background: linear-gradient(90deg, #d5bd94, #fff1d3, #8e7553);
}

.package-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.package-card__head h3 {
    margin: 10px 0 0;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    letter-spacing: 0.04em;
}

.package-card__head strong {
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 500;
    white-space: normal;
    text-align: right;
}

.package-card--featured .package-card__head strong {
    color: #f1dcb9;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(142, 117, 83, 0.28);
    border-radius: 999px;
    background: rgba(183, 154, 112, 0.09);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.package-card--featured .package-badge {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #f1dcb9;
}

.package-card__plan {
    margin: 8px 0 0;
    color: #ead7b5;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.package-list li {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--ink-soft);
    line-height: 1.55;
}

.package-list li span:first-child {
    color: var(--gold-dark);
    font-size: 1.05rem;
    line-height: 1.3;
}

.package-card--featured .package-list li,
.package-card--featured .package-card__description {
    color: rgba(255, 255, 255, 0.82);
}

.package-card--featured .package-list li span:first-child {
    color: #f1dcb9;
}

.package-card__description {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.package-card .button {
    margin-top: auto;
}

.package-card--featured .button--dark {
    border-color: #f1dcb9;
    background: #f1dcb9;
    color: #1b1814;
}

.partners-section {
    position: relative;
    background: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.partner-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 570px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 20px 54px rgba(27, 23, 18, 0.09);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.partner-card:hover {
    box-shadow: 0 30px 70px rgba(27, 23, 18, 0.14);
    transform: translateY(-5px);
}

.partner-card__image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.partner-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 62%, rgba(0, 0, 0, 0.12));
    content: "";
    pointer-events: none;
}

.partner-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.partner-card:hover .partner-card__image img {
    transform: scale(1.025);
}

.partner-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.partner-tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    margin-bottom: 22px;
    padding: 7px 13px;
    border: 1px solid rgba(142, 117, 83, 0.25);
    border-radius: 999px;
    background: rgba(183, 154, 112, 0.08);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.partner-card__content h3 {
    margin: 0 0 14px;
    font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.partner-card__content p {
    margin: 0 0 24px;
    color: var(--ink-soft);
    line-height: 1.75;
}

.partner-card__content .text-link {
    margin-top: auto;
}

@media (max-width: 1180px) {
    .package-card {
        grid-column: span 3;
    }

    .package-card:nth-child(5) {
        grid-column: 2 / span 4;
    }

    .partner-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .partner-card__image {
        height: 460px;
    }
}

@media (max-width: 820px) {
    .package-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .package-card,
    .package-card:nth-child(4),
    .package-card:nth-child(5) {
        grid-column: auto;
    }

    .section-head__text {
        max-width: none;
    }

    .partner-card__image {
        height: min(118vw, 620px);
    }
}

@media (max-width: 640px) {
    .package-card {
        padding: 24px;
    }

    .package-card__head {
        flex-direction: column;
    }

    .package-card__head strong {
        white-space: normal;
    }

    .partner-card__content {
        padding: 28px 24px 32px;
    }

    .partner-card__image {
        height: 116vw;
        max-height: 560px;
    }
}


/* Robust text wrapping for German content */
.desktop-nav > a,
.nav-dropdown__button,
.mega-menu a,
.footer-links a,
.package-card h3,
.package-card strong,
.package-card__description,
.package-list li,
.partner-card__content h3,
.partner-card__content p,
.price-row span,
.price-catalog-row span,
.faq-item summary,
.review-card p,
.service-detail__content h2,
.service-detail__content h3,
.section-head h2,
.footer-contact p,
.footer-brand p {
    overflow-wrap: anywhere;
    word-break: normal;
}

.mainbar__inner > *,
.footer-top > *,
.footer-links > *,
.package-card > *,
.partner-card__content > * {
    min-width: 0;
}

@media (max-width: 1180px) {
    .desktop-nav > a,
    .nav-dropdown__button {
        font-size: 0.7rem;
    }
}


/* ===== Header/logo layout fix v3 ===== */
.mainbar__inner.container {
    width: min(1480px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.site-header .brand {
    min-width: 0;
    overflow: visible;
}

.site-header .brand__logo-wrap {
    width: 220px;
    height: 60px;
    overflow: visible;
    background: transparent !important;
}

.brand__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    background: transparent !important;
}

.desktop-nav {
    min-width: 0;
    justify-content: center;
    gap: clamp(10px, 1vw, 20px);
}

.desktop-nav > a,
.nav-dropdown__button {
    min-width: 0;
    padding: 30px 0;
    font-size: 0.72rem;
    white-space: nowrap;
}

.header-actions {
    min-width: 0;
    gap: 8px;
}

.header-book {
    padding-inline: 16px;
    font-size: 0.72rem;
    white-space: nowrap;
}

.brand--footer .brand__logo-wrap {
    width: 300px;
    height: 82px;
    overflow: visible;
    background: transparent !important;
}

.brand--drawer .brand__logo-wrap {
    width: 250px;
    height: 68px;
    overflow: visible;
    background: transparent !important;
}

/* Prevent long German text from colliding */
.section-head > *,
.package-card > *,
.package-card__head > *,
.partner-card__content > *,
.footer-top > *,
.footer-links > *,
.contact-grid > *,
.category-grid > *,
.price-row > *,
.price-catalog-row > * {
    min-width: 0;
}

.package-card__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: start;
    gap: 18px;
}

.package-card__head h3,
.package-card__description,
.package-list li,
.partner-card__content h3,
.partner-card__content p,
.footer-links a,
.footer-brand p,
.footer-contact p,
.price-row span,
.price-catalog-row span,
.service-detail__content h2,
.service-detail__content h3,
.faq-item summary,
.section-head h2 {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.package-card__head strong {
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 1320px) {
    .mainbar__inner.container {
        width: calc(100% - 32px);
        grid-template-columns: 188px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .site-header .brand__logo-wrap {
        width: 188px;
        height: 52px;
    }

    .desktop-nav {
        gap: 9px;
    }

    .desktop-nav > a,
    .nav-dropdown__button,
    .language-switch {
        font-size: 0.66rem;
    }

    .header-book {
        display: none;
    }
}

@media (max-width: 1120px) {
    .mainbar__inner.container {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .desktop-nav,
    .header-actions .language-switch,
    .header-actions .icon-button,
    .header-book {
        display: none;
    }

    .mobile-menu-button {
        display: inline-grid;
    }

    .site-header .brand__logo-wrap {
        width: 206px;
        height: 56px;
    }
}

@media (max-width: 680px) {
    .mainbar__inner.container {
        width: calc(100% - 24px);
        gap: 12px;
    }

    .site-header .brand__logo-wrap {
        width: min(190px, 68vw);
        height: 50px;
    }

    .brand--drawer .brand__logo-wrap {
        width: min(230px, 75vw);
        height: 62px;
    }

    .brand--footer .brand__logo-wrap {
        width: min(260px, 82vw);
        height: 72px;
    }

    .package-card__head {
        grid-template-columns: 1fr;
    }

    .package-card__head strong {
        text-align: left;
        white-space: normal;
    }
}

/* ===== Mobile stability pass v4 ===== */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

img,
picture,
video,
canvas,
svg,
iframe {
    max-width: 100%;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1120px) {
    .site-header.is-sticky .mainbar {
        position: fixed;
        width: 100%;
    }

    .mainbar__inner.container {
        width: calc(100% - 28px);
        grid-template-columns: minmax(0, 1fr) 48px;
        gap: 12px;
    }

    .site-header .brand {
        min-width: 0;
        max-width: 100%;
    }

    .site-header .brand__logo-wrap {
        width: min(206px, calc(100vw - 92px));
        height: 56px;
    }

    .mobile-menu-button {
        width: 46px;
        height: 46px;
        justify-self: end;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 74px;
    }

    html {
        scroll-padding-top: 82px;
    }

    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
        font-size: 15px;
    }

    .container,
    .mainbar__inner.container {
        width: calc(100% - 24px);
    }

    .section {
        padding: 56px 0;
    }

    .topbar {
        display: none;
    }

    .mainbar__inner.container {
        min-height: 74px;
        grid-template-columns: minmax(0, 1fr) 46px;
    }

    .site-header .brand__logo-wrap {
        width: min(184px, calc(100vw - 86px));
        height: 50px;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    h1 {
        font-size: clamp(2.15rem, 11vw, 4rem);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(1.75rem, 8.5vw, 2.65rem);
        line-height: 1.12;
    }

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        line-height: 1.2;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 30px;
    }

    .section-head > *,
    .section-head__text,
    .section-intro {
        width: 100%;
        max-width: none;
    }

    .home-hero {
        min-height: calc(100svh - 74px);
        background-position: 56% center;
    }

    .home-hero__content {
        width: min(100% - 24px, 620px);
        padding: 48px 0 42px;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(2.6rem, 15vw, 4.7rem);
        letter-spacing: 0.06em;
        overflow-wrap: anywhere;
    }

    .hero-kicker {
        max-width: 100%;
        font-size: 0.64rem;
        letter-spacing: 0.17em;
        line-height: 1.55;
    }

    .hero-script {
        font-size: clamp(1.9rem, 10vw, 2.8rem);
    }

    .home-hero__lead {
        width: 100%;
        max-width: 34rem;
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .home-hero__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .home-hero__actions .button,
    .appointment-form .button,
    .package-card .button,
    .cookie-banner .button {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .service-mosaic,
    .service-mosaic--catalog,
    .clinic-intro__grid,
    .clinic-story__layout,
    .specialist-section__grid,
    .faq-section__grid,
    .service-detail__grid,
    .certificate-strip,
    .contact-form-layout,
    .split-panel,
    .category-grid,
    .process-grid,
    .qualification-grid,
    .contact-grid,
    .patient-guide__grid,
    .license-grid,
    .reviews-grid,
    .document-grid,
    .package-grid,
    .partners-grid,
    .footer-top,
    .footer-links {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .service-tile {
        min-height: 420px;
    }

    .service-tile__content {
        width: 100%;
        padding: 28px 22px;
    }

    .service-tile h3,
    .service-tile p {
        max-width: 100%;
    }

    .service-tile p {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .clinic-intro__grid,
    .clinic-story__layout,
    .specialist-section__grid,
    .faq-section__grid,
    .service-detail__grid,
    .contact-form-layout,
    .split-panel,
    .footer-top {
        gap: 34px;
    }

    .clinic-intro__image img,
    .specialist-section__photo img,
    .clinic-collage img,
    .service-detail__image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .clinic-intro__image img,
    .specialist-section__photo img {
        aspect-ratio: 4 / 5;
    }

    .consultation-band {
        grid-template-columns: 1fr;
    }

    .consultation-band__photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .consultation-band__content {
        padding: 44px 20px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .appointment-form input,
    .appointment-form select,
    .appointment-form textarea {
        min-height: 48px;
        font-size: 16px;
    }

    .consent {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .slider__track {
        gap: 16px;
    }

    .case-slide,
    .review-card {
        min-width: 100%;
    }

    .case-slide {
        grid-template-columns: 1fr;
    }

    .case-slide img {
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .case-slide > div,
    .review-card {
        padding: 24px 20px;
    }

    .clinic-collage {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .clinic-collage__main {
        grid-column: auto;
        min-height: 0;
    }

    .clinic-collage figure,
    .clinic-collage figure:not(.clinic-collage__main) {
        min-height: 0;
    }

    .clinic-collage img {
        aspect-ratio: 4 / 3;
    }

    .compact-services {
        grid-template-columns: 1fr;
    }

    .compact-service-card,
    .compact-service-card:nth-child(even) {
        min-width: 0;
        border-right: 0;
    }

    .package-card,
    .package-card:nth-child(4),
    .package-card:nth-child(5) {
        grid-column: auto;
        padding: 24px 20px;
    }

    .package-card__head {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .package-card__head strong {
        text-align: left;
        white-space: normal;
    }

    .package-list li {
        grid-template-columns: 14px minmax(0, 1fr);
        gap: 8px;
    }

    .partner-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .partner-card__image {
        height: auto;
        min-height: 0;
    }

    .partner-card__image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .partner-card__content {
        padding: 26px 20px 30px;
    }

    .page-hero,
    .service-hero {
        min-height: 420px;
    }

    .page-hero__content,
    .service-hero__content {
        width: min(100% - 24px, 720px);
        padding: 84px 0 46px;
    }

    .page-hero h1,
    .service-hero h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 11vw, 3.6rem);
        overflow-wrap: anywhere;
    }

    .page-hero p:not(.eyebrow),
    .service-hero p:not(.eyebrow) {
        max-width: 100%;
    }

    .service-hero__price {
        font-size: 1rem;
        white-space: normal;
    }

    .service-sidebar {
        position: static;
        width: 100%;
    }

    .price-row,
    .price-catalog-row {
        grid-template-columns: minmax(0, 1fr) max-content;
        gap: 12px;
        align-items: start;
    }

    .price-row i,
    .price-catalog-row i {
        display: none;
    }

    .price-row span,
    .price-catalog-row span {
        min-width: 0;
    }

    .price-row strong,
    .price-catalog-row b {
        white-space: nowrap;
        font-size: 0.86rem;
    }

    .contact-card,
    .guide-card,
    .category-card,
    .process-card,
    .qualification-card,
    .license-card,
    .review-card {
        padding: 24px 20px;
    }

    .document-card__preview {
        height: 68svh;
        min-height: 420px;
    }

    .location-map,
    .location-map iframe {
        min-height: 300px;
        height: 300px;
    }

    .footer-top,
    .footer-links {
        gap: 28px;
    }

    .footer-top {
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .footer-links {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .brand--footer .brand__logo-wrap {
        width: min(248px, 82vw);
        height: 66px;
    }

    .mobile-drawer {
        width: 100%;
        max-width: 100%;
        padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
        overflow-y: auto;
    }

    .brand--drawer {
        margin: 10px 0 24px;
    }

    .brand--drawer .brand__logo-wrap {
        width: min(218px, 72vw);
        height: 58px;
    }

    .mobile-nav > a,
    .mobile-nav summary {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px 0;
        overflow-wrap: anywhere;
    }

    .mobile-nav details div {
        padding-left: 10px;
    }

    .mobile-nav details div a {
        min-height: 42px;
        display: flex;
        align-items: center;
        overflow-wrap: anywhere;
    }

    .mobile-drawer__bottom {
        gap: 14px;
        padding-top: 22px;
    }

    .mobile-drawer__bottom a {
        overflow-wrap: anywhere;
    }

    .mobile-dock {
        min-height: calc(64px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-dock a,
    .mobile-dock button {
        min-width: 0;
        min-height: 64px;
        padding: 6px 4px;
        font-size: 0.62rem;
        line-height: 1.25;
        text-align: center;
    }

    .appointment-modal,
    .search-modal {
        padding: 0;
    }

    .appointment-modal__panel {
        width: 100%;
        max-width: 100%;
        min-height: 100svh;
        max-height: 100svh;
        padding: 72px 18px 28px;
    }

    .search-modal__panel {
        width: 100%;
        padding: 68px 18px 24px;
    }

    .modal-close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .live-search-field {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .live-search-field input {
        font-size: 1.15rem;
    }

    .live-search-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 6px;
    }

    .cookie-banner {
        right: 10px;
        bottom: calc(74px + env(safe-area-inset-bottom));
        left: 10px;
        max-height: calc(100svh - 96px);
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .cookie-banner > div:last-child {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .container,
    .mainbar__inner.container {
        width: calc(100% - 18px);
    }

    .site-header .brand__logo-wrap {
        width: min(160px, calc(100vw - 78px));
        height: 46px;
    }

    .home-hero__content,
    .page-hero__content,
    .service-hero__content {
        width: calc(100% - 18px);
    }

    .home-hero h1 {
        font-size: clamp(2.4rem, 14vw, 3.8rem);
    }

    .service-tile {
        min-height: 390px;
    }

    .service-tile__content,
    .package-card,
    .partner-card__content,
    .contact-card,
    .guide-card,
    .category-card,
    .process-card,
    .qualification-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mobile-dock a,
    .mobile-dock button {
        font-size: 0.58rem;
    }
}

@media (max-width: 340px) {
    .site-header .brand__logo-wrap {
        width: 148px;
        height: 42px;
    }

    .mainbar__inner.container {
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 8px;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

    .home-hero h1,
    .page-hero h1,
    .service-hero h1 {
        font-size: 2.25rem;
    }
}

/* ===== MEDAXON neo redesign ===== */
:root {
    --ink: #e9f6fb;
    --ink-soft: rgba(233, 246, 251, 0.76);
    --paper: #04131c;
    --ivory: #071a24;
    --ivory-deep: #0c2431;
    --gold: #12b8e8;
    --gold-dark: #0e8fb4;
    --line: rgba(106, 212, 255, 0.18);
    --white-line: rgba(255, 255, 255, 0.18);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --header-height: 92px;
    --font-main: "Avenir Next", "Century Gothic", Arial, sans-serif;
    --font-display: "Georgia", "Times New Roman", serif;
    --font-script: "Segoe Script", "Brush Script MT", cursive;
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(18, 184, 232, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(18, 184, 232, 0.12), transparent 28%),
        linear-gradient(180deg, #031019 0%, #061823 28%, #05131b 100%);
}

main {
    position: relative;
    z-index: 1;
}

.section,
.section--ivory,
.services-showcase,
.patients-section,
.specialist-section,
.packages-section,
.partners-section,
.reviews-section,
.faq-section,
.popular-services,
.treatment-categories,
.service-detail,
.legal-content,
.message-page {
    background: transparent;
}

.container {
    width: min(1280px, calc(100% - 48px));
}

h1,
h2,
h3,
h4 {
    color: #ffffff;
}

h2 {
    font-weight: 500;
    letter-spacing: -0.02em;
}

p,
li,
label,
input,
select,
textarea,
.small-note,
.section-note,
.section-head__text,
.footer-bottom,
.footer-contact p,
.partner-card__content p,
.review-card p,
.process-card p,
.category-card p,
.package-card__description,
.message-card p {
    color: var(--ink-soft);
}

.eyebrow,
.text-link,
.hero-kicker,
.partner-tag,
.package-badge,
.specialist-badges span,
.process-card span,
.category-card span,
.hero-principle span {
    color: #6ddaff;
}

.text-link {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.button {
    min-height: 52px;
    border-radius: 0;
    box-shadow: none;
}

.button--gold {
    color: #fff;
    background: linear-gradient(135deg, #10b3e0 0%, #178cb0 100%);
    border-color: rgba(109, 218, 255, 0.65);
}

.button--gold:hover {
    background: linear-gradient(135deg, #1cc4f3 0%, #178cb0 100%);
}

.button--light-outline,
.button--soft,
.button--dark,
.button--ghost-dark {
    color: #eaf8ff;
    background: transparent;
    border-color: rgba(109, 218, 255, 0.42);
}

.button--light-outline:hover,
.button--soft:hover,
.button--dark:hover,
.button--ghost-dark:hover {
    background: rgba(18, 184, 232, 0.12);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
}

.topbar {
    background: rgba(2, 11, 18, 0.94);
    border-bottom: 1px solid rgba(109, 218, 255, 0.15);
}

.topbar__inner {
    min-height: 42px;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(233, 246, 251, 0.88);
}

.topbar a,
.topbar span {
    opacity: 0.9;
}

.mainbar {
    background: rgba(3, 16, 25, 0.92);
    border-bottom: 1px solid rgba(109, 218, 255, 0.15);
}

.mainbar__inner {
    min-height: 92px;
    gap: 24px;
}

.brand {
    flex: 0 0 auto;
    max-width: 270px;
}

.brand__logo-wrap {
    display: block;
    width: 100%;
}

.brand__logo {
    width: 100%;
    max-width: 270px;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    gap: 28px;
    flex-wrap: wrap;
}

.desktop-nav > a,
.nav-dropdown__button {
    position: relative;
    color: #ecf8ff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-nav > a::after,
.nav-dropdown__button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100%;
    height: 2px;
    background: #13bff0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-dropdown__button:hover::after,
.nav-dropdown__button.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    margin-left: auto;
    gap: 14px;
}

.language-switch {
    color: rgba(233, 246, 251, 0.72);
    font-size: 0.84rem;
}

.language-switch .is-active {
    color: #ffffff;
}

.icon-button,
.mobile-menu-button {
    border: 1px solid rgba(109, 218, 255, 0.24);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.header-book {
    padding-inline: 22px;
}

.mega-menu,
.mobile-drawer,
.search-modal__panel,
.appointment-modal__panel,
.cookie-banner,
.map-placeholder,
.sidebar-card,
.faq-item,
.review-card,
.process-card,
.category-card,
.partner-card,
.package-card,
.compact-service-card,
.appointment-form,
.service-intro,
.medical-section,
.message-card {
    background: linear-gradient(180deg, rgba(8, 27, 38, 0.96) 0%, rgba(5, 19, 27, 0.98) 100%);
    border: 1px solid rgba(109, 218, 255, 0.14);
    box-shadow: var(--shadow);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 42px;
    background:
        linear-gradient(90deg, rgba(2, 11, 18, 0.96) 0%, rgba(2, 11, 18, 0.86) 44%, rgba(2, 11, 18, 0.62) 100%),
        url('../images/neo-corridor-reception.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(109, 218, 255, 0.14);
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(18, 184, 232, 0.15), transparent 24%),
        radial-gradient(circle at 12% 72%, rgba(18, 184, 232, 0.13), transparent 22%);
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    gap: 44px;
    align-items: end;
    min-height: 560px;
}

.home-hero__content {
    max-width: 700px;
    padding-top: 26px;
}

.home-hero__content h1 {
    margin-bottom: 12px;
    font-family: var(--font-main);
    font-size: clamp(3rem, 5.6vw, 5.4rem);
    font-weight: 300;
    letter-spacing: 0.13em;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-script {
    margin-bottom: 26px;
    color: #53d9ff;
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 2vw, 2.45rem);
    line-height: 1.1;
}

.home-hero__lead {
    max-width: 580px;
    margin-bottom: 32px;
    color: rgba(240, 250, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.8;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 560px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 540px;
}

.home-hero__visual-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 0 0 0 56px;
    overflow: hidden;
    border: 1px solid rgba(109, 218, 255, 0.15);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.home-hero__visual-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-principles {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.hero-principle {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 22px 20px;
    background: rgba(4, 22, 31, 0.72);
    border-top: 1px solid rgba(109, 218, 255, 0.28);
    border-bottom: 1px solid rgba(109, 218, 255, 0.1);
}

.hero-principle span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-principle h3 {
    margin-bottom: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hero-principle p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-quote-band {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    gap: 24px;
    align-items: center;
    margin-top: 26px;
    padding: 18px 22px;
    border: 1px solid rgba(109, 218, 255, 0.16);
    background: rgba(4, 18, 27, 0.76);
}

.hero-quote-band__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-quote-band__thumbs figure,
.clinic-collage figure,
.clinic-intro__image,
.service-tile,
.partner-card__image,
.specialist-section__photo,
.case-slide img {
    overflow: hidden;
}

.hero-quote-band__thumbs img {
    aspect-ratio: 1.18;
    object-fit: cover;
}

.hero-quote-band__quote p {
    margin-bottom: 10px;
    color: #95e5ff;
    font-family: var(--font-script);
    font-size: clamp(1.45rem, 1.9vw, 2.1rem);
    line-height: 1.45;
}

.hero-quote-band__quote footer {
    color: #6ddaff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-quote-band__contact {
    padding-left: 10px;
    border-left: 1px solid rgba(109, 218, 255, 0.16);
}

.hero-quote-band__contact a {
    display: inline-block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
}

.section-head {
    align-items: end;
}

.services-showcase,
.clinic-intro,
.consultation-band,
.clinic-story,
.patients-section,
.specialist-section,
.popular-services,
.packages-section,
.partners-section,
.reviews-section,
.faq-section,
.map-section,
.page-hero,
.service-hero,
.message-card {
    position: relative;
}

.services-showcase::before,
.clinic-intro::before,
.clinic-story::before,
.patients-section::before,
.specialist-section::before,
.packages-section::before,
.partners-section::before,
.reviews-section::before,
.faq-section::before,
.popular-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent 45%);
    pointer-events: none;
}

.service-mosaic,
.compact-services,
.package-grid,
.partners-grid,
.reviews-grid,
.faq-grid,
.category-grid,
.process-grid {
    position: relative;
    z-index: 1;
}

.service-tile {
    min-height: 320px;
    border: 1px solid rgba(109, 218, 255, 0.16);
    border-radius: 0;
    box-shadow: var(--shadow);
}

.service-tile__overlay {
    background: linear-gradient(180deg, rgba(2, 11, 18, 0.08) 0%, rgba(2, 11, 18, 0.86) 100%);
}

.service-tile__content,
.compact-service-card,
.package-card,
.partner-card__content,
.review-card,
.faq-item,
.process-card,
.category-card,
.sidebar-card,
.message-card,
.cookie-banner {
    border-radius: 0;
}

.service-tile__content small,
.compact-service-card small,
.price-row strong,
.service-hero__price,
.specialist-name,
.package-card strong,
.review-stars,
.partner-tag,
.footer-social a {
    color: #75dfff;
}

.compact-service-card {
    min-height: 114px;
    border-color: rgba(109, 218, 255, 0.16);
}

.compact-service-card strong,
.package-card h3,
.partner-card h3,
.review-card h3,
.specialist-section__content h2,
.service-intro .lead,
.message-card h1 {
    color: #fff;
}

.clinic-intro__grid,
.clinic-story__layout,
.specialist-section__grid,
.service-detail__grid {
    gap: 42px;
}

.clinic-intro__image,
.specialist-section__photo {
    border: 1px solid rgba(109, 218, 255, 0.16);
    box-shadow: var(--shadow);
}

.clinic-intro__image img,
.specialist-section__photo img,
.clinic-collage img {
    height: 100%;
    object-fit: cover;
}

.image-caption,
.specialist-section__photo span {
    background: rgba(4, 17, 26, 0.86);
    color: #dff8ff;
}

.consultation-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    background: linear-gradient(90deg, rgba(2,11,18,0.88), rgba(2,11,18,0.94));
    border-top: 1px solid rgba(109, 218, 255, 0.14);
    border-bottom: 1px solid rgba(109, 218, 255, 0.14);
}

.consultation-band__photo {
    min-height: 620px;
    background:
        linear-gradient(90deg, rgba(2,11,18,0.08), rgba(2,11,18,0.74)),
        url('../images/neo-treatment-tray.jpg') center/cover no-repeat;
}

.consultation-band__content {
    padding: 72px min(4vw, 44px);
}

.consultation-band__content h2,
.page-hero__content h1,
.service-hero__content h1 {
    max-width: 16ch;
}

.appointment-form,
.appointment-form--dark {
    padding: 24px;
}

input,
select,
textarea {
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(109, 218, 255, 0.16);
}

input::placeholder,
textarea::placeholder {
    color: rgba(233, 246, 251, 0.48);
}

.clinic-collage {
    gap: 18px;
}

.clinic-collage__main {
    border: 1px solid rgba(109, 218, 255, 0.16);
}

.case-slide,
.partner-card,
.review-card,
.package-card,
.faq-item,
.process-card,
.category-card {
    border-radius: 0;
}

.case-slide {
    border: 1px solid rgba(109, 218, 255, 0.16);
    background: linear-gradient(180deg, rgba(8, 27, 38, 0.96) 0%, rgba(5, 19, 27, 0.98) 100%);
    box-shadow: var(--shadow);
}

.case-slide h3,
.package-card h3,
.partner-card h3,
.review-card h3,
.faq-item summary {
    color: #fff;
}

.specialist-badges span {
    background: rgba(14, 56, 73, 0.9);
    border: 1px solid rgba(109, 218, 255, 0.16);
}

.package-card--featured {
    border-color: rgba(109, 218, 255, 0.46);
    background: linear-gradient(180deg, rgba(12, 40, 54, 0.98), rgba(6, 22, 31, 0.98));
}

.package-card__head,
.partner-card__content,
.review-card,
.faq-item,
.process-card,
.category-card {
    padding: 28px;
}

.partner-card {
    overflow: hidden;
}

.partner-card__image {
    background: #081723;
}

.reviews-grid,
.faq-grid {
    gap: 20px;
}

.page-hero,
.service-hero {
    min-height: 360px;
    display: grid;
    align-items: end;
    background-position: center;
    background-size: cover;
}

.page-hero__overlay,
.service-hero__overlay {
    background: linear-gradient(180deg, rgba(2,11,18,0.55) 0%, rgba(2,11,18,0.9) 100%);
}

.page-hero__content,
.service-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 52px;
}

.medical-list li,
.price-row,
.breadcrumbs,
.footer-links a,
.footer-contact a,
.live-search-item {
    color: var(--ink-soft);
}

.price-row,
.medical-list li {
    border-color: rgba(109, 218, 255, 0.12);
}

.map-section {
    margin-top: 40px;
    border-top: 1px solid rgba(109, 218, 255, 0.12);
}

.map-placeholder {
    min-height: 320px;
    background: linear-gradient(180deg, rgba(8, 27, 38, 0.96) 0%, rgba(5, 19, 27, 0.98) 100%);
}

.site-footer {
    background: rgba(2, 9, 15, 0.98);
    border-top: 1px solid rgba(109, 218, 255, 0.14);
}

.footer-top,
.footer-links,
.footer-bottom {
    border-color: rgba(109, 218, 255, 0.12);
}

.footer-brand .brand {
    max-width: 320px;
}

.footer-social div a {
    border: 1px solid rgba(109, 218, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-drawer,
.mobile-dock {
    background: rgba(2, 11, 18, 0.98);
}

.mobile-nav a,
.mobile-nav summary,
.mobile-drawer__bottom a {
    color: #eaf8ff;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 18px;
    }

    .home-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.88fr);
        gap: 28px;
    }

    .hero-principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-quote-band {
        grid-template-columns: 220px 1fr;
    }

    .hero-quote-band__contact {
        grid-column: 1 / -1;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(109, 218, 255, 0.16);
        padding-top: 14px;
    }
}

@media (max-width: 980px) {
    .topbar__inner {
        justify-content: center;
        flex-wrap: wrap;
        padding-block: 8px;
    }

    .home-hero {
        padding-top: 38px;
    }

    .home-hero__grid,
    .consultation-band,
    .clinic-intro__grid,
    .clinic-story__layout,
    .specialist-section__grid,
    .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        justify-self: stretch;
        min-height: auto;
        width: 100%;
        order: -1;
    }

    .home-hero__visual-card {
        max-width: none;
        border-radius: 0 0 0 36px;
    }

    .hero-principles,
    .hero-quote-band,
    .partners-grid,
    .package-grid,
    .reviews-grid,
    .faq-grid,
    .compact-services {
        grid-template-columns: 1fr;
    }

    .consultation-band__photo {
        min-height: 380px;
    }

    .consultation-band__content {
        padding: 40px 24px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 100%);
    }

    .mainbar__inner {
        min-height: 78px;
    }

    .brand {
        max-width: 210px;
    }

    .brand__logo {
        max-height: 48px;
    }

    .home-hero__content h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
        letter-spacing: 0.08em;
    }

    .hero-script {
        font-size: 1.4rem;
    }

    .home-hero__lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .home-hero__actions,
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-principle,
    .hero-quote-band,
    .appointment-form,
    .package-card__head {
        padding-inline: 16px;
    }

    .hero-quote-band__thumbs {
        grid-template-columns: 1fr 1fr;
    }

    .hero-quote-band__quote p {
        font-size: 1.2rem;
    }

    .package-card__head,
    .section-head {
        gap: 16px;
    }
}

/* ===== MEDAXON reference-led refinement v6 ===== */
:root {
    --v6-night: #020a11;
    --v6-navy: #041620;
    --v6-teal: #063443;
    --v6-cyan: #19c7f4;
    --v6-cyan-soft: #78ddf8;
    --v6-text: #edf8fc;
    --v6-muted: rgba(222, 240, 247, 0.72);
    --v6-line: rgba(82, 207, 243, 0.2);
    --font-main: "Avenir Next", "Century Gothic", "Segoe UI", Arial, sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
}

html { scroll-padding-top: 136px; }

body {
    color: var(--v6-text);
    background: radial-gradient(circle at 8% 7%, rgba(25,199,244,.1), transparent 25rem), linear-gradient(180deg, var(--v6-night), #04141e 45%, #020c13);
    font-family: var(--font-main);
}

::selection { color: #001019; background: var(--v6-cyan-soft); }

.container { width: min(1320px, calc(100% - 64px)); }
.section { padding: 104px 0; }
.section--tight { padding: 84px 0; }

h1, h2, h3, h4 { color: #fff; }
h2 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4vw, 4.25rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.035em;
}

p, li, label, .small-note, .section-note, .section-head__text,
.footer-bottom, .footer-contact p, .partner-card__content p,
.review-card p, .process-card p, .category-card p,
.package-card__description, .message-card p { color: var(--v6-muted); }

.eyebrow, .hero-kicker, .text-link, .partner-tag, .package-badge,
.specialist-name, .specialist-badges span { color: var(--v6-cyan); }
.eyebrow, .hero-kicker { font-size: .72rem; letter-spacing: .22em; }
.text-link { gap: 10px; font-size: .79rem; letter-spacing: .12em; text-transform: uppercase; }

.button { min-height: 50px; border-radius: 0; padding-inline: 26px; letter-spacing: .08em; }
.button--gold {
    color: #fff;
    background: linear-gradient(135deg, #13bce9, #087ea0);
    border-color: rgba(83,220,255,.7);
    box-shadow: 0 12px 38px rgba(0,178,226,.2);
}
.button--gold:hover { background: linear-gradient(135deg, #28cff8, #0a91b8); }
.button--outline-cyan {
    color: var(--v6-cyan-soft);
    background: rgba(6,34,45,.36);
    border-color: rgba(71,207,243,.46);
}
.button--outline-cyan:hover { color: #fff; background: rgba(25,199,244,.13); border-color: rgba(96,226,255,.76); }

/* Compact two-level header like the approved reference. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(1,9,15,.95);
    box-shadow: 0 10px 35px rgba(0,0,0,.18);
    backdrop-filter: blur(16px);
}
.topbar { background: rgba(1,8,14,.98); border-bottom: 1px solid rgba(95,203,234,.14); }
.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 0;
    color: rgba(230,246,251,.78);
    font-size: .72rem;
}
.topbar__contact {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 6vw, 90px);
}
.topbar__item { min-width: 0; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.topbar__icon { flex: 0 0 auto; color: var(--v6-cyan-soft); font-size: 1rem; line-height: 1; }
.language-switch--top {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    color: rgba(226,243,249,.52);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
}
.language-switch--top a { position: relative; padding: 4px 1px; }
.language-switch--top a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--v6-cyan);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.language-switch--top a.is-active { color: #fff; }
.language-switch--top a.is-active::after, .language-switch--top a:hover::after { transform: scaleX(1); }

.mainbar { background: rgba(2,14,22,.93); border-bottom: 1px solid rgba(83,203,239,.16); }
.mainbar__inner.container {
    width: min(1500px, calc(100% - 48px));
    min-height: 86px;
    display: grid;
    grid-template-columns: clamp(228px, 18vw, 292px) minmax(0,1fr) auto;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}
.site-header .brand { width: 100%; max-width: 292px; }
.site-header .brand__logo-wrap { width: 100%; height: 68px; display: flex; align-items: center; }
.brand__logo {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 4px 12px rgba(0,187,237,.12));
}
.desktop-nav { min-width: 0; display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(11px,1.18vw,24px); }
.desktop-nav > a, .nav-dropdown__button {
    padding: 33px 0;
    color: rgba(240,249,252,.88);
    font-size: clamp(.61rem,.64vw,.71rem);
    font-weight: 700;
    letter-spacing: .12em;
    white-space: nowrap;
}
.desktop-nav > a::after, .nav-dropdown__button::after { bottom: 23px; height: 1px; background: var(--v6-cyan); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 0; }
.icon-button { width: 44px; height: 44px; border-color: rgba(83,205,240,.24); color: var(--v6-cyan-soft); background: rgba(255,255,255,.015); }
.header-book { min-width: 190px; min-height: 44px; display: inline-flex; gap: 9px; padding-inline: 18px; font-size: .65rem; white-space: nowrap; }
.mega-menu { top: 100%; background: rgba(3,21,30,.985); border-top: 1px solid var(--v6-line); border-bottom: 1px solid var(--v6-line); }
.mega-menu h3 { color: var(--v6-cyan-soft); }

/* Hero uses the supplied portrait as an integrated right-hand composition. */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 0 0 26px;
    background: linear-gradient(90deg, rgba(1,9,15,.99), rgba(2,15,23,.96) 30%, rgba(2,17,25,.68) 53%, rgba(1,9,15,.12) 78%), url('../images/v6-hero-portrait.jpg') 64% 44% / cover no-repeat;
    border-bottom: 1px solid var(--v6-line);
}
.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    z-index: 0;
    background: linear-gradient(180deg, transparent, rgba(1,10,16,.74));
    pointer-events: none;
}
.home-hero__overlay { z-index: 0; background: radial-gradient(circle at 18% 27%, rgba(26,196,241,.13), transparent 22rem); }
.home-hero__grid { min-height: 460px; display: block; position: relative; z-index: 2; }
.home-hero__content { width: min(650px,57%); max-width: none; padding: 72px 0 54px; }
.home-hero__content h1 {
    margin-bottom: 10px;
    font-family: var(--font-main);
    font-size: clamp(3.35rem,5vw,5.45rem);
    font-weight: 300;
    line-height: .96;
    letter-spacing: .14em;
    text-shadow: 0 4px 28px rgba(0,0,0,.35);
}
.hero-kicker { margin-bottom: 14px; }
.hero-script { margin-bottom: 22px; color: var(--v6-cyan-soft); font-size: clamp(1.55rem,2.15vw,2.55rem); text-shadow: 0 3px 24px rgba(0,0,0,.5); }
.home-hero__lead { max-width: 570px; margin-bottom: 28px; color: rgba(238,248,251,.82); font-size: 1rem; line-height: 1.75; }
.home-hero__actions { gap: 14px; }
.home-hero__visual { display: none; }

.hero-principles {
    position: relative;
    z-index: 2;
    gap: 0;
    margin-top: 0;
    padding: 9px 0;
    border-top: 1px solid rgba(96,216,247,.16);
    border-bottom: 1px solid rgba(96,216,247,.12);
}
.hero-principle { min-height: 105px; grid-template-columns: 30px 1fr; gap: 12px; padding: 17px 20px; background: rgba(2,15,23,.43); border: 0; border-left: 1px solid rgba(96,216,247,.15); }
.hero-principle:first-child { border-left: 0; }
.hero-principle span { color: var(--v6-cyan); font-size: .71rem; }
.hero-principle h3 { margin-bottom: 6px; color: var(--v6-cyan-soft); font-size: .77rem; letter-spacing: .1em; }
.hero-principle p { color: rgba(230,243,248,.72); font-size: .79rem; line-height: 1.55; }

.hero-quote-band {
    position: relative;
    z-index: 2;
    grid-template-columns: 240px minmax(0,1fr) 270px;
    gap: 28px;
    margin-top: 18px;
    padding: 16px 0 2px;
    border: 0;
    border-top: 1px solid rgba(96,216,247,.17);
    background: transparent;
}
.hero-quote-band__thumbs { gap: 9px; }
.hero-quote-band__thumbs figure { border: 1px solid rgba(103,217,247,.16); }
.hero-quote-band__thumbs img { aspect-ratio: 1.35; }
.hero-quote-band__quote p { color: rgba(151,226,247,.9); font-family: var(--font-display); font-size: clamp(1.25rem,1.7vw,1.9rem); font-style: italic; line-height: 1.35; }
.hero-quote-band__quote footer { color: var(--v6-cyan); font-size: .68rem; }
.hero-quote-band__contact { padding-left: 24px; border-left-color: rgba(102,218,249,.18); }
.hero-quote-band__contact a { color: #fff; font-size: 1rem; }

/* Unified card system and strong image/copy sections. */
.services-showcase, .popular-services, .packages-section, .reviews-section,
.faq-section, .treatment-categories, .service-detail, .legal-content {
    background: linear-gradient(180deg, rgba(255,255,255,.012), transparent 20rem), var(--v6-navy);
}
.services-showcase .section-head, .popular-services .section-head,
.packages-section .section-head, .partners-section .section-head,
.reviews-section .section-head, .faq-section .section-head {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(85,208,241,.14);
}
.service-tile, .compact-service-card, .package-card, .partner-card,
.review-card, .faq-item, .process-card, .category-card, .sidebar-card,
.message-card, .appointment-form, .medical-section {
    background: linear-gradient(155deg, rgba(8,40,52,.96), rgba(3,19,27,.98));
    border-color: rgba(89,212,245,.17);
    box-shadow: 0 20px 52px rgba(0,0,0,.25);
}
.service-tile { min-height: 350px; }
.service-tile__overlay { background: linear-gradient(180deg, rgba(0,8,13,.05), rgba(1,11,18,.92)); }
.service-tile__content { padding: 30px; }
.compact-service-card, .package-card, .partner-card, .review-card, .faq-item { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.compact-service-card:hover, .package-card:hover, .partner-card:hover, .review-card:hover, .faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(90,218,251,.38);
    box-shadow: 0 24px 58px rgba(0,0,0,.34);
}

.clinic-intro {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(110deg, #073845, #07404d 56%, #052a35);
    border-block: 1px solid rgba(99,219,249,.15);
}
.clinic-intro .container { width: min(1600px,100%); }
.clinic-intro__grid { grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); gap: 0; align-items: stretch; }
.clinic-intro__image { min-height: 640px; border: 0; border-right: 1px solid rgba(91,215,247,.14); box-shadow: none; }
.clinic-intro__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 68%, rgba(5,51,63,.74)); pointer-events: none; }
.clinic-intro__image img { width: 100%; height: 100%; object-position: center; }
.clinic-intro__content { align-self: center; padding: 74px clamp(42px,6vw,100px); }
.clinic-intro__content h2 { max-width: 12ch; margin-bottom: 32px; font-size: clamp(2.6rem,4.25vw,4.65rem); }
.clinic-intro__content p:not(.eyebrow) { max-width: 630px; color: rgba(236,248,251,.82); font-size: 1.03rem; line-height: 1.78; }
.clinic-intro .image-caption { z-index: 2; color: #fff; background: rgba(1,14,21,.7); }

.consultation-band { grid-template-columns: minmax(0,1.28fr) minmax(430px,.72fr); background: #03121b; }
.consultation-band__photo { min-height: 660px; background: linear-gradient(90deg, rgba(2,10,16,.04), rgba(2,12,19,.74)), url('../images/v6-treatment-tray.jpg') center/cover no-repeat; }
.consultation-band__content { padding: 76px clamp(34px,4vw,66px); background: linear-gradient(160deg, rgba(7,44,56,.98), rgba(3,20,28,.99)); }
.consultation-band__content h2 { font-size: clamp(2.25rem,3.6vw,3.75rem); }
.clinic-story { background: radial-gradient(circle at 16% 55%, rgba(29,191,234,.08), transparent 28rem), #031019; }
.clinic-collage figure { border: 1px solid rgba(88,207,240,.17); }
.clinic-collage img { transition: transform .7s ease; }
.clinic-collage figure:hover img { transform: scale(1.025); }

/* The owner portrait now sits at the right edge, echoing the reference hero. */
.specialist-section {
    overflow: hidden;
    padding: 0;
    background: radial-gradient(circle at 82% 24%, rgba(33,195,235,.14), transparent 26rem), linear-gradient(120deg, #03121b, #07313d);
    border-block: 1px solid rgba(91,211,243,.15);
}
.specialist-section__grid { min-height: 660px; grid-template-columns: minmax(0,1fr) minmax(430px,.82fr); gap: clamp(46px,7vw,108px); align-items: center; }
.specialist-section__content { padding-block: 84px; }
.specialist-section__content h2 { max-width: 13ch; font-family: var(--font-display); font-size: clamp(2.55rem,4vw,4.25rem); }
.specialist-section__content > p:not(.eyebrow,.specialist-name) { max-width: 660px; color: rgba(231,245,249,.76); font-size: 1.03rem; line-height: 1.8; }
.specialist-section__photo { align-self: stretch; min-height: 660px; border: 0; border-left: 1px solid rgba(95,214,245,.14); box-shadow: none; }
.specialist-section__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(4,29,38,.68), transparent 26%), linear-gradient(180deg, transparent 70%, rgba(2,12,18,.55));
    pointer-events: none;
}
.specialist-section__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; filter: contrast(1.04) brightness(.9) sepia(.05) hue-rotate(145deg); }
.specialist-section__photo span { z-index: 2; background: rgba(2,17,24,.72); border: 1px solid rgba(96,219,248,.16); }
.specialist-badges span { color: var(--v6-cyan-soft); background: rgba(10,58,72,.7); border-color: rgba(87,211,243,.2); }

.page-hero, .service-hero { min-height: 420px; background-position: center; }
.page-hero__overlay, .service-hero__overlay {
    background: linear-gradient(90deg, rgba(2,10,16,.93), rgba(2,12,19,.5) 64%, rgba(2,10,16,.28)), linear-gradient(180deg, rgba(2,10,16,.18), rgba(2,10,16,.8));
}
.page-hero__content, .service-hero__content { padding-bottom: 62px; }
.page-hero__content h1, .service-hero__content h1 { max-width: 14ch; font-family: var(--font-display); font-size: clamp(3rem,6vw,6rem); font-weight: 400; letter-spacing: -.035em; text-transform: none; }
.page-hero__content p, .service-hero__content p { max-width: 720px; color: rgba(237,248,251,.78); }

.appointment-form input, .appointment-form select, .appointment-form textarea, .search-modal input {
    color: #fff;
    background: rgba(255,255,255,.035);
    border-color: rgba(92,212,244,.18);
}
.appointment-form input:focus, .appointment-form select:focus,
.appointment-form textarea:focus, .search-modal input:focus {
    border-color: rgba(71,215,251,.68);
    box-shadow: 0 0 0 3px rgba(25,199,244,.08);
}

.site-footer { background: radial-gradient(circle at 12% 18%, rgba(23,186,229,.09), transparent 22rem), #01080d; }
.footer-brand .brand, .brand--footer { max-width: 340px; }
.brand--footer .brand__logo-wrap { width: 330px; height: 100px; }
.brand--drawer .brand__logo-wrap { width: min(280px,76vw); height: 86px; }
.message-logo img { max-width: 400px; margin-inline: auto; }

@media (max-width: 1320px) {
    .mainbar__inner.container { grid-template-columns: 220px minmax(0,1fr) auto; gap: 16px; }
    .site-header .brand__logo-wrap { width: 220px; height: 66px; }
    .desktop-nav { gap: 11px; }
    .desktop-nav > a, .nav-dropdown__button { font-size: .61rem; }
    .header-book { display: inline-flex; min-width: 166px; padding-inline: 12px; font-size: .58rem; }
}

@media (max-width: 1210px) {
    .mainbar__inner.container { grid-template-columns: 210px minmax(0,1fr) 44px; }
    .site-header .brand__logo-wrap { width: 210px; }
    .header-book { display: none; }
    .header-actions { width: 44px; }
    .desktop-nav { gap: 10px; }
}

@media (max-width: 1120px) {
    html { scroll-padding-top: 112px; }
    .mainbar__inner.container { width: calc(100% - 36px); grid-template-columns: minmax(0,1fr) auto; }
    .site-header.is-sticky .mainbar { position: static; width: auto; }
    .desktop-nav, .header-actions .icon-button, .header-book { display: none; }
    .header-actions { width: auto; }
    .mobile-menu-button { display: inline-grid; border-color: rgba(83,209,242,.3); }
    .site-header .brand, .site-header .brand__logo-wrap { width: 230px; max-width: calc(100vw - 112px); height: 65px; }
    .hero-principles { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .hero-principle:nth-child(3) { border-left: 0; border-top: 1px solid rgba(96,216,247,.14); }
    .hero-principle:nth-child(4) { border-top: 1px solid rgba(96,216,247,.14); }
    .hero-quote-band { grid-template-columns: 220px minmax(0,1fr); }
    .hero-quote-band__contact { grid-column: 1/-1; padding: 16px 0 0; border-top: 1px solid rgba(96,216,247,.14); border-left: 0; }
    .clinic-intro__grid, .specialist-section__grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .clinic-intro__content, .specialist-section__content { padding: 58px 40px; }
    .consultation-band { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
    .home-hero { padding-top: 0; background: radial-gradient(circle at 50% 12%, rgba(23,193,236,.11), transparent 24rem), #020d15; }
    .home-hero::after { display: none; }
    .home-hero__grid { min-height: 0; display: flex; flex-direction: column; padding-top: 28px; }
    .home-hero__visual { position: relative; inset: auto; order: -1; width: 100%; min-height: 0; display: block; }
    .home-hero__visual-card { width: 100%; max-width: none; border: 1px solid rgba(91,213,245,.16); border-radius: 0; box-shadow: 0 24px 56px rgba(0,0,0,.3); }
    .home-hero__visual-card img { aspect-ratio: 16/9; object-fit: cover; object-position: 68% center; }
    .home-hero__content { width: 100%; padding: 38px 0 34px; }
    .clinic-intro__grid, .specialist-section__grid, .consultation-band { grid-template-columns: 1fr; }
    .clinic-intro__image, .specialist-section__photo, .consultation-band__photo { min-height: 460px; }
    .clinic-intro__image { border-right: 0; border-bottom: 1px solid rgba(91,215,247,.14); }
    .clinic-intro__image::after { background: linear-gradient(180deg, transparent 70%, rgba(5,51,63,.7)); }
    .specialist-section__content { order: 1; }
    .specialist-section__photo { order: 2; border-left: 0; border-top: 1px solid rgba(95,214,245,.14); }
    .consultation-band__content { padding: 54px 34px; }
}

@media (max-width: 760px) {
    html { scroll-padding-top: 104px; }
    .container { width: min(100% - 28px,100%); }
    .section, .section--tight { padding: 70px 0; }
    .topbar__inner { width: calc(100% - 28px); min-height: 34px; flex-wrap: nowrap; gap: 12px; }
    .topbar__contact { justify-content: flex-start; gap: 0; }
    .topbar__contact .topbar__item:nth-child(1), .topbar__contact .topbar__item:nth-child(2) { display: none; }
    .topbar__item { font-size: .65rem; }
    .language-switch--top { display: inline-flex; margin-left: auto; }
    .mainbar__inner.container { width: calc(100% - 28px); min-height: 72px; }
    .site-header .brand, .site-header .brand__logo-wrap { width: min(226px,calc(100vw - 92px)); height: 58px; }
    .home-hero__grid { padding-top: 18px; }
    .home-hero__visual-card img { aspect-ratio: 4/3; object-position: 67% center; }
    .home-hero__content { padding-top: 32px; }
    .home-hero__content h1 { font-size: clamp(2.45rem,12vw,3.55rem); letter-spacing: .09em; }
    .hero-script { font-size: 1.35rem; }
    .home-hero__lead { font-size: .95rem; }
    .home-hero__actions { width: 100%; }
    .home-hero__actions .button { width: 100%; }
    .hero-principle { min-height: 0; padding: 16px 12px; }
    .hero-principle p { font-size: .73rem; }
    .hero-quote-band { grid-template-columns: 1fr; gap: 20px; padding-top: 18px; }
    .hero-quote-band__thumbs { grid-template-columns: 1fr 1fr; }
    .hero-quote-band__contact { grid-column: auto; }
    .clinic-intro__image, .specialist-section__photo, .consultation-band__photo { min-height: 380px; }
    .clinic-intro__content, .specialist-section__content, .consultation-band__content { padding: 48px 22px; }
    .clinic-intro__content h2, .specialist-section__content h2 { font-size: clamp(2.3rem,11vw,3.4rem); }
    .clinic-intro__content p:not(.eyebrow), .specialist-section__content > p:not(.eyebrow,.specialist-name) { font-size: .95rem; }
    .service-tile__content, .package-card__head, .partner-card__content, .review-card, .faq-item, .process-card, .category-card { padding: 22px; }
    .page-hero, .service-hero { min-height: 330px; }
    .page-hero__content, .service-hero__content { padding-bottom: 40px; }
    .page-hero__content h1, .service-hero__content h1 { font-size: clamp(2.65rem,13vw,4.2rem); }
    .brand--drawer .brand__logo-wrap { width: min(260px,76vw); height: 80px; }
    .brand--footer .brand__logo-wrap { width: min(300px,84vw); height: 92px; }
}

@media (max-width: 460px) {
    .topbar__item span:last-child { font-size: .6rem; }
    .hero-principles { grid-template-columns: 1fr; }
    .hero-principle, .hero-principle:nth-child(2), .hero-principle:nth-child(3), .hero-principle:nth-child(4) { border-left: 0; border-top: 1px solid rgba(96,216,247,.12); }
    .hero-principle:first-child { border-top: 0; }
    .home-hero__visual-card img { aspect-ratio: 1/1; object-position: 65% center; }
}

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

/* ===== Screenshot corrections v7 ===== */
.hero-quote-band__thumbs {
    min-width: 0;
    align-items: stretch;
}

.hero-quote-band__thumbs figure {
    min-width: 0;
    margin: 0;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: rgba(7, 40, 52, 0.72);
}

.hero-quote-band__thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
}

.sidebar-card--image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 58% center;
}

.guide-card,
.qualification-card,
.contact-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(25, 199, 244, 0.11), transparent 13rem),
        linear-gradient(155deg, rgba(8, 40, 52, 0.97), rgba(3, 19, 27, 0.99));
    border-color: rgba(89, 212, 245, 0.19);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.25);
}

.guide-card::before,
.qualification-card::before,
.contact-card::before {
    position: absolute;
    inset: 0 auto auto 0;
    width: 54px;
    height: 2px;
    background: linear-gradient(90deg, var(--v6-cyan), transparent);
    content: "";
}

.guide-card > span,
.qualification-card > span,
.contact-card > span {
    color: var(--v6-cyan);
}

.guide-card h2,
.qualification-card h3,
.contact-card h2 {
    max-width: 100%;
    margin-bottom: 18px;
    color: #fff;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    line-height: 1.22;
}

.qualification-card h3 {
    font-size: clamp(1.12rem, 1.45vw, 1.48rem);
}

.guide-card p,
.qualification-card p,
.contact-card p {
    color: rgba(226, 242, 248, 0.76);
}

.contact-card a,
.contact-card button {
    color: var(--v6-cyan-soft);
}

.guide-card:hover,
.qualification-card:hover,
.contact-card:hover {
    border-color: rgba(90, 218, 251, 0.38);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

@media (max-width: 760px) {
    .hero-quote-band__thumbs figure {
        aspect-ratio: 4 / 3;
    }

    .sidebar-card--image img {
        min-height: 0;
    }
}

/* ===== Patient results gallery v8 ===== */
.case-slide__media {
    display: grid;
    place-items: center;
    min-width: 0;
    height: clamp(420px, 43vw, 560px);
    overflow: hidden;
    border-right: 1px solid rgba(109, 218, 255, 0.14);
    background:
        radial-gradient(circle at 50% 25%, rgba(28, 154, 191, 0.14), transparent 58%),
        #020c12;
}

.case-slide__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-width: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1180px) {
    .case-slide__media {
        height: clamp(380px, 52vw, 520px);
        border-right: 0;
        border-bottom: 1px solid rgba(109, 218, 255, 0.14);
    }
}

@media (max-width: 760px) {
    .case-slide__media {
        height: min(132vw, 540px);
    }

    .case-slide__media img {
        min-height: 0;
        aspect-ratio: auto;
    }
}

/* ===== Service header photography v9 ===== */
.service-hero {
    --service-position: 62% center;
    --service-position-mobile: var(--service-position);
    background-color: #03141d;
    background-position: var(--service-position);
}

.service-hero__overlay {
    background:
        linear-gradient(90deg, rgba(1, 9, 15, 0.97) 0%, rgba(2, 19, 27, 0.82) 45%, rgba(2, 15, 22, 0.42) 100%),
        linear-gradient(180deg, rgba(2, 10, 16, 0.12) 0%, rgba(2, 11, 17, 0.86) 100%),
        linear-gradient(135deg, rgba(18, 154, 190, 0.16), transparent 58%);
}

.service-hero--rf-microneedling,
.service-hero--stylage-hydro {
    --service-position: 66% 64%;
    --service-position-mobile: 64% 58%;
}

.service-hero--radiesse,
.service-hero--belotero-hydro,
.service-hero--plinest {
    --service-position: 68% 63%;
    --service-position-mobile: 66% 58%;
}

.service-hero--sculptra {
    --service-position: 43% 48%;
    --service-position-mobile: 48% 52%;
}

.service-hero--nithya,
.service-hero--kieferwinkel-jawline {
    --service-position: 63% center;
}

.service-hero--profhilo,
.service-hero--jalupro,
.service-hero--kinnkorrektur {
    --service-position: 64% center;
}

.service-hero--revi-eye,
.service-hero--full-face,
.service-hero--lippenkontur {
    --service-position: 57% 38%;
    --service-position-mobile: 54% 36%;
}

.service-tile--rf-microneedling,
.service-tile--stylage-hydro {
    --tile-position: 65% 62%;
}

.service-tile--radiesse,
.service-tile--belotero-hydro,
.service-tile--plinest {
    --tile-position: 67% 60%;
}

.service-tile--sculptra {
    --tile-position: 45% 50%;
}

.service-tile--nithya,
.service-tile--profhilo,
.service-tile--jalupro,
.service-tile--kieferwinkel-jawline,
.service-tile--kinnkorrektur {
    --tile-position: 62% center;
}

.service-tile--revi-eye,
.service-tile--full-face,
.service-tile--lippenkontur {
    --tile-position: 54% 35%;
}

@media (max-width: 760px) {
    .service-hero {
        background-position: var(--service-position-mobile);
    }
}

/* ===== Main section header photography v10 ===== */
.page-hero--section {
    --page-position: center;
    --page-position-mobile: var(--page-position);
    background-color: #03141d;
    background-position: var(--page-position);
}

.page-hero--section .page-hero__overlay {
    background:
        linear-gradient(90deg, rgba(1, 9, 15, 0.97) 0%, rgba(2, 18, 27, 0.82) 44%, rgba(2, 15, 22, 0.38) 100%),
        linear-gradient(180deg, rgba(2, 10, 16, 0.12) 0%, rgba(2, 11, 17, 0.88) 100%),
        linear-gradient(135deg, rgba(18, 154, 190, 0.14), transparent 58%);
}

.page-hero--prices {
    --page-position: 62% 60%;
    --page-position-mobile: 66% 58%;
}

.page-hero--patients {
    --page-position: 64% center;
    --page-position-mobile: 61% center;
}

.page-hero--specialists {
    --page-position: 70% 38%;
    --page-position-mobile: 69% 34%;
}

.page-hero--reviews {
    --page-position: 68% 54%;
    --page-position-mobile: 70% center;
}

.page-hero--contact {
    --page-position: 66% center;
    --page-position-mobile: 70% center;
}

@media (max-width: 760px) {
    .page-hero--section {
        background-position: var(--page-position-mobile);
    }
}

/* ===== Single quote-band image v11 ===== */
.hero-quote-band {
    grid-template-columns: 280px minmax(0, 1fr) 270px;
}

.hero-quote-band__thumbs {
    grid-template-columns: minmax(0, 1fr);
}

.hero-quote-band__thumbs figure {
    aspect-ratio: 3 / 2;
}

@media (max-width: 1120px) {
    .hero-quote-band {
        grid-template-columns: 250px minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .hero-quote-band {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-quote-band__thumbs {
        width: min(100%, 380px);
    }

    .hero-quote-band__thumbs figure {
        aspect-ratio: 3 / 2;
    }
}

/* ===== Readable appointment selectors v13 ===== */
.appointment-package-choice {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.appointment-package-choice .form-field {
    gap: 8px;
}

.form-help {
    margin: 0;
    color: rgba(225, 242, 248, 0.62);
    font-size: 0.76rem;
    line-height: 1.5;
}

.form-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.form-field__label {
    color: rgba(235, 247, 251, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
}

.custom-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

.custom-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 54px;
    padding: 13px 17px;
    color: #f4fbfd;
    background: linear-gradient(180deg, rgba(14, 48, 61, 0.98), rgba(8, 34, 45, 0.98));
    border: 1px solid rgba(93, 215, 247, 0.28);
    border-radius: 0;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.custom-select__trigger:hover,
.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
    background: linear-gradient(180deg, rgba(16, 57, 72, 1), rgba(8, 38, 50, 1));
    border-color: rgba(96, 219, 248, 0.72);
    box-shadow: 0 0 0 3px rgba(25, 199, 244, 0.09);
}

.custom-select__value {
    min-width: 0;
    overflow: hidden;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select__chevron {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-right: 2px;
    border-right: 2px solid #8fe8ff;
    border-bottom: 2px solid #8fe8ff;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.custom-select.is-open .custom-select__chevron {
    transform: translateY(3px) rotate(225deg);
}

.custom-select__menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    max-height: min(360px, 45vh);
    overflow-y: auto;
    padding: 7px;
    background: rgba(4, 24, 33, 0.995);
    border: 1px solid rgba(96, 219, 248, 0.38);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
    scrollbar-color: rgba(72, 200, 235, 0.62) rgba(255, 255, 255, 0.04);
    scrollbar-width: thin;
}

.custom-select__menu[hidden] {
    display: none;
}

.custom-select__menu--above {
    top: auto;
    bottom: calc(100% + 7px);
}

.custom-select__option {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    color: rgba(239, 250, 253, 0.86);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(96, 219, 248, 0.08);
    outline: none;
    text-align: left;
    line-height: 1.35;
    cursor: pointer;
}

.custom-select__option:last-child {
    border-bottom: 0;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
    color: #ffffff;
    background: rgba(30, 169, 207, 0.18);
}

.custom-select__option[aria-selected="true"] {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(12, 142, 179, 0.92), rgba(12, 101, 130, 0.82));
}

/* Native fallback remains readable if JavaScript is unavailable. */
.appointment-form select {
    color-scheme: dark;
}

.appointment-form select option {
    color: #eefaff;
    background-color: #071c26;
}

.appointment-form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.84;
    filter: invert(88%) sepia(18%) saturate(637%) hue-rotate(156deg) brightness(105%);
}

@media (max-width: 760px) {
    .custom-select__trigger {
        min-height: 52px;
        padding-inline: 14px;
    }

    .custom-select__menu {
        max-height: min(310px, 42vh);
    }

    .custom-select__option {
        min-height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-select__trigger,
    .custom-select__chevron {
        transition: none;
    }
}

/* Neo v14 — moderated reviews and protected administration */
.reviews-public-section,
.review-submit-section {
    background:
        radial-gradient(circle at 88% 14%, rgba(29, 173, 209, 0.12), transparent 34%),
        linear-gradient(180deg, #071e28 0%, #061922 100%);
}

.reviews-public-section .section-head__text,
.review-submit-copy > p,
.review-submit-copy li,
.reviews-empty p {
    color: rgba(225, 242, 248, 0.72);
}

.reviews-empty {
    max-width: 760px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(109, 218, 255, 0.18);
    background: linear-gradient(145deg, rgba(13, 49, 62, 0.72), rgba(5, 25, 34, 0.88));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.reviews-empty h2,
.review-submit-copy h2 {
    color: #fff;
}

.reviews-grid--public,
.reviews-grid--preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card--published {
    display: flex;
    min-width: 0;
    min-height: 280px;
    flex-direction: column;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(109, 218, 255, 0.18);
    background: linear-gradient(145deg, rgba(14, 52, 66, 0.9), rgba(6, 28, 38, 0.96));
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.review-card--published .review-stars {
    margin-bottom: 22px;
    color: #75dfff;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
}

.review-card--published blockquote {
    min-height: 0;
    margin: 0 0 30px;
    color: rgba(240, 250, 253, 0.9);
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.review-card--published footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(109, 218, 255, 0.13);
}

.review-card--published footer strong {
    color: #fff;
}

.review-card--published footer span {
    color: rgba(204, 229, 237, 0.58);
}

.review-submit-section {
    padding-top: clamp(56px, 7vw, 104px);
    border-top: 1px solid rgba(109, 218, 255, 0.11);
}

.review-submit-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(40px, 7vw, 92px);
}

.review-submit-copy {
    position: sticky;
    top: 150px;
}

.review-submit-copy ul {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.review-submit-copy li {
    position: relative;
    padding-left: 24px;
}

.review-submit-copy li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #75dfff;
}

.review-form {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 46px);
    border: 1px solid rgba(109, 218, 255, 0.2);
    background: rgba(4, 24, 33, 0.78);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.review-form > label:not(.form-honeypot),
.admin-form label,
.admin-review-edit label {
    display: grid;
    gap: 8px;
    color: rgba(235, 247, 251, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
}

.review-form input,
.review-form select,
.review-form textarea,
.admin-form input,
.admin-review-edit input,
.admin-review-edit select,
.admin-review-edit textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    color: #f4fbfd;
    background: linear-gradient(180deg, rgba(14, 48, 61, 0.98), rgba(8, 34, 45, 0.98));
    border: 1px solid rgba(93, 215, 247, 0.28);
    border-radius: 0;
    outline: none;
    color-scheme: dark;
}

/* Keep native fallbacks readable, while the public rating field uses the
   same custom dark selector as the appointment form when JavaScript is active. */
.review-form select option,
.admin-review-edit select option {
    color: #eefaff;
    background-color: #071c26;
}

.review-form .custom-select__trigger[aria-invalid="true"] {
    border-color: rgba(255, 126, 126, 0.82);
    box-shadow: 0 0 0 3px rgba(255, 91, 91, 0.1);
}

.review-form textarea,
.admin-review-edit textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.65;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus,
.admin-form input:focus,
.admin-review-edit input:focus,
.admin-review-edit select:focus,
.admin-review-edit textarea:focus {
    border-color: rgba(96, 219, 248, 0.76);
    box-shadow: 0 0 0 3px rgba(25, 199, 244, 0.09);
}

.review-form .form-help {
    margin: -6px 0 0;
    color: rgba(203, 227, 235, 0.62);
    font-size: 0.76rem;
    line-height: 1.55;
}

.review-form .consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    font-weight: 400;
    line-height: 1.55;
}

.review-form .consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
    padding: 0;
    accent-color: #42c9ef;
}

.review-form .consent a {
    color: #75dfff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Review administration */
.admin-body {
    min-height: 100vh;
    margin: 0;
    color: #eef9fc;
    background:
        radial-gradient(circle at 85% 0%, rgba(37, 180, 216, 0.14), transparent 32%),
        #041720;
}

.admin-shell {
    min-height: 100vh;
}

.admin-shell--login {
    display: grid;
    place-items: center;
    padding: 34px 18px;
}

.admin-login-card {
    width: min(100%, 520px);
    min-width: 0;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid rgba(109, 218, 255, 0.2);
    background: rgba(5, 28, 38, 0.92);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.admin-login-card h1,
.admin-main h1 {
    color: #fff;
}

.admin-login-card h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
}

.admin-login-card > p:not(.eyebrow),
.admin-title-row > div > p:not(.eyebrow) {
    color: rgba(218, 238, 244, 0.68);
}

.admin-brand {
    display: inline-flex;
    width: min(280px, 70vw);
    margin-bottom: 34px;
}

.admin-brand img {
    width: 100%;
    height: auto;
}

.admin-form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.admin-back-link,
.admin-site-link {
    color: #75dfff;
}

.admin-back-link {
    display: inline-flex;
    margin-top: 28px;
}

.admin-alert {
    margin: 22px 0;
    padding: 14px 16px;
    border: 1px solid rgba(117, 223, 255, 0.25);
    color: #eaf9fd;
    background: rgba(117, 223, 255, 0.08);
}

.admin-alert--success {
    border-color: rgba(98, 227, 168, 0.32);
    background: rgba(98, 227, 168, 0.1);
}

.admin-alert--error {
    border-color: rgba(255, 126, 126, 0.38);
    background: rgba(255, 91, 91, 0.1);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px clamp(20px, 4vw, 64px);
    border-bottom: 1px solid rgba(109, 218, 255, 0.13);
    background: rgba(3, 18, 25, 0.92);
}

.admin-header .admin-brand {
    width: min(230px, 42vw);
    margin: 0;
}

.admin-header > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-header form {
    margin: 0;
}

.admin-main {
    width: min(1380px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(42px, 6vw, 84px) 0;
}

.admin-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 38px;
    margin-bottom: 38px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 10px;
}

.admin-stats article {
    display: grid;
    min-height: 105px;
    place-content: center;
    padding: 15px;
    border: 1px solid rgba(109, 218, 255, 0.15);
    background: rgba(9, 38, 49, 0.72);
    text-align: center;
}

.admin-stats strong {
    color: #75dfff;
    font-size: 1.7rem;
}

.admin-stats span {
    color: rgba(218, 238, 244, 0.62);
    font-size: 0.72rem;
}

.admin-review-list {
    display: grid;
    gap: 22px;
}

.admin-review-card {
    position: relative;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(109, 218, 255, 0.17);
    background: linear-gradient(145deg, rgba(11, 43, 56, 0.92), rgba(5, 25, 34, 0.96));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.admin-review-card--pending {
    border-left: 4px solid #f2c66d;
}

.admin-review-card--published {
    border-left: 4px solid #62dca5;
}

.admin-review-card--hidden {
    border-left: 4px solid #768892;
}

.admin-review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 24px;
    color: rgba(205, 229, 236, 0.58);
    font-size: 0.72rem;
}

.admin-status {
    color: #fff;
    font-weight: 800;
}

.admin-review-edit {
    display: grid;
    gap: 18px;
}

.admin-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.55fr) minmax(190px, 0.7fr);
    gap: 14px;
}

.admin-review-card__actions {
    display: flex;
    justify-content: flex-start;
}

.admin-delete-form {
    position: absolute;
    right: clamp(22px, 3vw, 34px);
    bottom: clamp(22px, 3vw, 34px);
}

.admin-delete-button {
    padding: 10px 0;
    color: #ff9e9e;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 126, 126, 0.36);
    cursor: pointer;
}

.admin-delete-button:hover,
.admin-delete-button:focus-visible {
    color: #fff;
    border-color: #ff9e9e;
}

.admin-empty {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(109, 218, 255, 0.16);
    background: rgba(8, 35, 46, 0.7);
}

.admin-empty h2 {
    color: #fff;
}

.admin-empty p {
    color: rgba(218, 238, 244, 0.66);
}

@media (max-width: 980px) {
    .reviews-grid--public,
    .reviews-grid--preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-submit-layout,
    .admin-title-row {
        grid-template-columns: 1fr;
    }

    .review-submit-copy {
        position: static;
    }

    .admin-form-row {
        grid-template-columns: 1fr 1fr;
    }

    .admin-form-row label:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .reviews-grid--public,
    .reviews-grid--preview,
    .admin-stats,
    .admin-form-row {
        grid-template-columns: 1fr;
    }

    .review-card--published {
        min-height: 0;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-header > div {
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
    }

    .admin-site-link {
        max-width: 150px;
    }

    .admin-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-stats article {
        min-height: 88px;
        padding: 10px 5px;
    }

    .admin-stats span {
        font-size: 0.65rem;
    }

    .admin-form-row label:first-child {
        grid-column: auto;
    }

    .admin-delete-form {
        position: static;
        margin-top: 14px;
    }

    .admin-login-card h1 {
        font-size: clamp(2.15rem, 10.5vw, 3.2rem);
    }
}
