:root {
    --ink: #24151b;
    --muted: #745f66;
    --surface: #fffaf6;
    --surface-strong: #f4ebe3;
    --plum: #5b2437;
    --plum-dark: #371722;
    --sage: #6d8a7a;
    --copper: #b87957;
    --ivory: #fffdf9;
    --line: rgba(91, 36, 55, 0.16);
    --shadow: 0 24px 70px rgba(55, 23, 34, 0.13);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 24px;
}

.narrow {
    max-width: 820px;
}

.skip-link,
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.skip-link:focus {
    clip: auto;
    height: auto;
    left: 16px;
    padding: 10px 14px;
    top: 16px;
    width: auto;
    z-index: 50;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(255, 250, 246, 0.88);
    border-bottom: 1px solid transparent;
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    z-index: 20;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 12px 40px rgba(36, 21, 27, 0.08);
}

.header-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 86px;
}

.brand {
    align-items: center;
    display: flex;
    min-width: 250px;
}

.brand-logo {
    height: 52px;
    max-width: 285px;
    object-fit: contain;
    width: auto;
}

.primary-nav {
    align-items: center;
    display: flex;
    gap: 20px;
}

.site-menu {
    align-items: center;
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-menu a {
    border-radius: 999px;
    color: #4d3d43;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 12px;
}

.site-menu a:hover {
    background: rgba(91, 36, 55, 0.08);
    color: var(--plum);
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a {
    padding-right: 32px;
}

.submenu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
}

.submenu-toggle::before {
    border-color: var(--plum);
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    height: 7px;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
    width: 7px;
}

.menu-item-has-children.is-open > .submenu-toggle::before,
.menu-item-has-children:hover > .submenu-toggle::before,
.menu-item-has-children:focus-within > .submenu-toggle::before {
    transform: translateY(2px) rotate(225deg);
}

.sub-menu {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 50%;
    list-style: none;
    margin: 0;
    min-width: 310px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease;
    width: min(880px, calc(100vw - 48px));
    z-index: 40;
}

.sub-menu::before {
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    right: 0;
    top: -14px;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sub-menu a {
    border-radius: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
    padding: 10px 12px;
    white-space: normal;
}

.sub-menu a:hover {
    background: rgba(91, 36, 55, 0.08);
    color: var(--plum);
}

.treatment-mega-menu {
    align-items: stretch;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(980px, calc(100vw - 48px));
}

.treatment-mega-menu > li:first-child {
    grid-column: 1 / -1;
}

.treatment-mega-menu > li:first-child > a {
    background: rgba(91, 36, 55, 0.08);
    color: var(--plum);
    font-weight: 800;
}

.treatment-menu-group {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(91, 36, 55, 0.08);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    list-style: none;
    min-height: 124px;
    padding: 7px;
}

.treatment-menu-group ul {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
}

.sub-menu .treatment-menu-heading {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    padding: 8px 10px;
}

.treatment-menu-group ul a {
    font-size: 12px;
    line-height: 1.16;
    padding: 6px 10px;
}

.mobile-treatment-menu {
    display: none;
}

.mobile-treatment-accordion {
    display: none;
}

.header-treatment-strip {
    background: var(--plum);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(91, 36, 55, 0.18);
}

.header-treatment-strip-inner {
    display: flex;
    justify-content: center;
    min-height: 40px;
}

.treatment-category-nav {
    align-items: stretch;
    display: flex;
    gap: 0;
    justify-content: center;
    min-height: 40px;
    width: auto;
}

.treatment-category-nav a {
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    font-size: 10.5px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 40px;
    padding: 8px 28px;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.treatment-category-nav a:hover {
    color: #fff;
}

.treatment-category-all,
.treatment-category-nav-link {
    align-items: center;
    border-radius: 0;
    min-height: 40px;
}

.treatment-category-all,
.treatment-category-nav-item {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.treatment-category-nav-item:last-child {
    border-right: 0;
}

.treatment-category-nav-item {
    position: relative;
}

.treatment-category-toggle {
    display: none;
}

.treatment-category-dropdown {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 2px;
    left: 50%;
    min-width: 240px;
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 45;
}

.treatment-category-dropdown::before {
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    right: 0;
    top: -10px;
}

.treatment-category-nav-item:hover .treatment-category-dropdown,
.treatment-category-nav-item:focus-within .treatment-category-dropdown,
.treatment-category-nav-item.is-open .treatment-category-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.treatment-category-dropdown a {
    border-radius: 8px;
    color: var(--muted);
    display: block;
    font-size: 12px;
    justify-content: flex-start;
    line-height: 1.18;
    padding: 8px 10px;
    text-align: left;
}

.treatment-category-dropdown a:hover {
    background: rgba(91, 36, 55, 0.08);
    color: var(--plum);
}

.site-search-toggle {
    align-items: center;
    background: rgba(91, 36, 55, 0.06);
    border: 1px solid rgba(91, 36, 55, 0.12);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin-left: 6px;
    width: 42px;
}

.site-search-toggle span {
    border: 2px solid var(--plum);
    border-radius: 50%;
    height: 15px;
    position: relative;
    width: 15px;
}

.site-search-toggle span::after {
    background: var(--plum);
    content: "";
    height: 2px;
    position: absolute;
    right: -7px;
    top: 11px;
    transform: rotate(45deg);
    width: 8px;
}

.site-search-panel {
    background: rgba(255, 250, 246, 0.98);
    border-top: 1px solid rgba(91, 36, 55, 0.08);
    box-shadow: 0 18px 35px rgba(91, 36, 55, 0.08);
    padding: 16px 0;
}

.site-search-panel[hidden] {
    display: none;
}

.site-search-panel form {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.site-search-panel input {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font: inherit;
    min-height: 48px;
    padding: 0 18px;
}

.site-search-panel button {
    background: var(--plum);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 48px;
    padding: 0 22px;
}

.header-cta,
.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 46px;
    padding: 0 20px;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
    white-space: nowrap;
}

.header-cta,
.button.primary {
    background: var(--plum);
    color: #fff;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--line);
    color: var(--plum);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 44px;
    padding: 8px;
    width: 44px;
}

.nav-toggle span:not(.screen-reader-text) {
    background: var(--plum);
    display: block;
    height: 2px;
    margin: 6px 0;
    width: 24px;
}

.hero {
    background:
        linear-gradient(90deg, rgba(255,250,246,0.9), rgba(255,250,246,0.72)),
        url("../images/floral-pattern.svg");
    background-position: center, left 3% top 18px;
    background-repeat: no-repeat, repeat;
    background-size: auto, 250px 250px;
    overflow: hidden;
    padding: 82px 0 70px;
    position: relative;
}

.hero::before {
    background:
        radial-gradient(circle at 18% 10%, rgba(184, 121, 87, 0.15), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(109, 138, 122, 0.18), transparent 30%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 68px;
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 14px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.04;
    margin: 0;
}

h1 {
    font-size: clamp(42px, 4.7vw, 62px);
    max-width: 820px;
}

h1 span {
    display: block;
}

h1 span:nth-child(2) {
    white-space: nowrap;
}

h2 {
    font-size: clamp(32px, 3.6vw, 50px);
}

h3 {
    font-size: 24px;
}

.lead {
    color: var(--muted);
    font-size: 19px;
    margin: 24px 0 0;
    max-width: 690px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.trust-row {
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    padding-top: 20px;
}

.trust-row span {
    background: rgba(109, 138, 122, 0.12);
    border-radius: 999px;
    color: #455a50;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
}

.hero-visual {
    min-height: 610px;
    position: relative;
}

.portrait-frame {
    align-items: center;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: flex;
    height: 585px;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.portrait-frame::before {
    background: linear-gradient(180deg, transparent 42%, rgba(36, 21, 27, 0.22));
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.portrait-frame::after {
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    content: "";
    inset: 18px;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.portrait-frame img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.floating-note {
    background: var(--plum-dark);
    border-radius: var(--radius);
    bottom: 38px;
    box-shadow: var(--shadow);
    color: #fff;
    display: grid;
    gap: 4px;
    max-width: 270px;
    padding: 18px;
    position: absolute;
    right: -12px;
    z-index: 3;
}

.floating-note span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

.section {
    padding: 82px 0;
}

.intro-band {
    background:
        linear-gradient(90deg, rgba(55,23,34,0.98), rgba(55,23,34,0.9)),
        url("../images/floral-pattern.svg");
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    background-size: auto, 300px 300px;
    color: #fff;
}

.intro-band h2,
.intro-band p {
    color: #fff;
}

.intro-band .split > p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.split {
    align-items: start;
    display: grid;
    gap: 52px;
    grid-template-columns: 0.9fr 1.1fr;
}

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

.section-head h2 {
    max-width: 760px;
}

.section-head p {
    color: var(--muted);
    max-width: 710px;
}

.section-head-action {
    flex: 0 0 auto;
}

.treatment-head {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.treatment-title-block .eyebrow {
    margin-bottom: 8px;
}

.treatment-title-block h2 {
    max-width: 620px;
}

.treatment-head p:last-child {
    justify-self: end;
    margin: 0 0 4px;
    max-width: 430px;
}

.treatment-board {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.treatment-chip {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 10px;
    grid-template-columns: 82px 1fr;
    min-height: 118px;
    overflow: hidden;
    padding: 18px;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.treatment-chip::after {
    background: radial-gradient(circle, rgba(184, 121, 87, 0.16), transparent 62%);
    content: "";
    height: 120px;
    left: -46px;
    position: absolute;
    top: -46px;
    width: 120px;
}

.treatment-chip:hover {
    border-color: rgba(91, 36, 55, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.treatment-chip.is-extra[hidden] {
    display: none;
}

.treatment-index {
    align-self: center;
    color: rgba(91, 36, 55, 0.16);
    font-size: 42px;
    font-weight: 800;
    grid-column: 1;
    grid-row: 1 / span 2;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.treatment-icon {
    display: none;
}

.treatment-icon::before,
.treatment-icon::after {
    background: transparent;
    border: 2px solid var(--plum);
    border-radius: 999px;
    content: "";
    position: absolute;
}

.treatment-icon::before {
    height: 22px;
    opacity: 0.9;
    width: 22px;
}

.treatment-icon::after {
    height: 12px;
    opacity: 0.72;
    width: 12px;
}

.icon-petal::before { border-radius: 80% 20% 80% 20%; transform: rotate(35deg); }
.icon-petal::after { border-radius: 20% 80% 20% 80%; transform: translate(8px, 7px) rotate(35deg); }
.icon-lock::before { border-radius: 12px 12px 7px 7px; height: 18px; top: 25px; width: 22px; }
.icon-lock::after { border-bottom: 0; border-radius: 14px 14px 0 0; height: 14px; top: 12px; width: 18px; }
.icon-spark::before { border-left: 0; border-right: 0; border-radius: 0; height: 24px; transform: rotate(45deg); width: 24px; }
.icon-spark::after { border-left: 0; border-right: 0; border-radius: 0; height: 18px; transform: rotate(-45deg); width: 18px; }
.icon-flower::before { border-radius: 50% 50% 8px 50%; transform: rotate(45deg) translate(-3px, -3px); }
.icon-flower::after { border-radius: 50% 50% 50% 8px; transform: rotate(45deg) translate(6px, 6px); }
.icon-circle::before { height: 26px; width: 26px; }
.icon-circle::after { border-radius: 50%; height: 10px; width: 10px; }
.icon-heart::before { border-radius: 18px 18px 4px 18px; transform: rotate(45deg); }
.icon-heart::after { border-radius: 18px 18px 18px 4px; transform: rotate(45deg) translate(-5px, 5px); }
.icon-curve::before { border-left: 0; border-radius: 50%; height: 26px; transform: rotate(-25deg); width: 26px; }
.icon-curve::after { border-right: 0; border-radius: 50%; height: 18px; transform: translate(9px, 0) rotate(-25deg); width: 18px; }
.icon-drop::before,
.icon-water::before { border-radius: 70% 70% 70% 8px; transform: rotate(-45deg); }
.icon-drop::after,
.icon-water::after { border-width: 0 0 2px 2px; border-radius: 0; transform: translate(3px, 8px) rotate(-45deg); }
.icon-laser::before { border-radius: 0; height: 0; transform: rotate(-30deg); width: 28px; }
.icon-laser::after { border-radius: 50%; height: 8px; transform: translate(11px, -7px); width: 8px; }
.icon-sun::before { height: 22px; width: 22px; }
.icon-sun::after { border-left: 0; border-right: 0; border-radius: 0; height: 30px; transform: rotate(45deg); width: 30px; }
.icon-shield::before { border-radius: 16px 16px 20px 20px; height: 28px; width: 22px; }
.icon-shield::after { border-width: 0 2px 2px 0; border-radius: 0; height: 12px; transform: rotate(45deg) translate(-1px, -1px); width: 6px; }
.icon-wave::before { border-bottom: 0; border-left: 0; border-right: 0; height: 18px; transform: translate(-5px, -2px); width: 28px; }
.icon-wave::after { border-bottom: 0; border-left: 0; border-right: 0; height: 18px; transform: translate(5px, 8px); width: 28px; }
.icon-leaf::before { border-radius: 80% 0 80% 0; transform: rotate(45deg); }
.icon-leaf::after { border-radius: 0; border-top: 0; border-left: 0; height: 18px; transform: rotate(45deg); width: 18px; }
.icon-target::before { height: 28px; width: 28px; }
.icon-target::after { height: 8px; width: 8px; }
.icon-ring::before { height: 28px; width: 28px; }
.icon-ring::after { border-radius: 0; border-left: 0; border-right: 0; height: 20px; transform: rotate(90deg); width: 20px; }
.icon-pulse::before { border-radius: 0; border-left: 0; border-right: 0; height: 0; transform: translate(-7px, 0); width: 28px; }
.icon-pulse::after { border-width: 0 2px 2px 0; border-radius: 0; height: 15px; transform: rotate(-45deg) translate(5px, -4px); width: 15px; }

.treatment-chip strong {
    color: var(--ink);
    font-size: 18px;
    grid-column: 2;
    grid-row: 1 / span 2;
    place-self: center start;
    line-height: 1.16;
    position: relative;
    z-index: 1;
}

.load-more-treatments {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--plum);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 800;
    margin: 20px auto 0;
    min-height: 44px;
    justify-content: center;
    padding: 0 18px;
    transition: background-color 160ms ease, transform 160ms ease;
}

.load-more-treatments:hover {
    background: rgba(91, 36, 55, 0.08);
    transform: translateY(-1px);
}

.doctor-section {
    background: var(--surface-strong);
}

.doctor-grid {
    align-items: stretch;
    display: grid;
    gap: 28px;
    grid-template-columns: 0.82fr 1.18fr;
}

.doctor-photo-card {
    border-radius: 24px;
    box-shadow: var(--shadow);
    min-height: 380px;
    overflow: hidden;
}

.doctor-photo-card img {
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.doctor-panel {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    align-content: start;
    padding: 28px;
}

.doctor-panel h2 {
    font-size: clamp(28px, 2.7vw, 40px);
}

.doctor-panel p {
    color: var(--muted);
}

.values-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.values-list div {
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 6px;
    padding: 14px;
}

.value-icon {
    align-items: center;
    background: rgba(184, 121, 87, 0.13);
    border-radius: 50%;
    color: var(--copper);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.values-list strong {
    color: var(--plum);
    font-size: 18px;
}

.values-list span {
    color: var(--muted);
}

.post-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-layout {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    width: 100%;
}

.guide-layout::-webkit-scrollbar {
    display: none;
}

.guide-shell {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.rail-arrow {
    align-items: center;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--plum);
    cursor: pointer;
    display: inline-flex;
    font-size: 30px;
    font-weight: 800;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: relative;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
    width: 46px;
}

.rail-arrow::before {
    border-color: currentColor;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 10px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 10px;
}

.rail-arrow-prev::before {
    transform: translate(-42%, -50%) rotate(135deg);
}

.rail-arrow-next::before {
    transform: translate(-58%, -50%) rotate(-45deg);
}

.rail-arrow:hover {
    background: var(--plum);
    color: #fff;
    transform: translateY(-1px);
}

.guide-layout > * {
    flex: 0 0 min(360px, 82vw);
    scroll-snap-align: start;
}

.guide-card,
.post-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    align-content: start;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover,
.post-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.guide-card:first-child {
    background: var(--plum-dark);
    color: #fff;
    min-height: 320px;
}

.guide-card:first-child h3,
.guide-card:first-child p,
.guide-card:first-child .text-link,
.guide-card:first-child .guide-card-meta time,
.guide-card:first-child .guide-card-meta span {
    color: #fff;
}

.guide-card:first-child .guide-card-meta span {
    background: rgba(255, 255, 255, 0.14);
}

.guide-card h3,
.post-card h2 {
    font-size: 24px;
    line-height: 1.12;
    margin: 8px 0 12px;
}

.guide-card p,
.post-card p,
.page-content {
    color: var(--muted);
}

.post-meta {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.text-link {
    color: var(--plum);
    font-weight: 800;
}

.guide-link {
    align-self: end;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    justify-self: start;
    margin-top: 20px;
    min-height: 40px;
    padding: 9px 14px;
}

.contact-cta {
    padding-top: 0;
}

.cta-panel {
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(91, 36, 55, 0.96), rgba(55, 23, 34, 0.98)),
        url("../images/kadin-genital-saglik.png");
    background-position: center;
    background-size: cover;
    border-radius: var(--radius);
    color: #fff;
    display: grid;
    gap: 28px;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    padding: 44px;
    position: relative;
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 680px;
}

.cta-card-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-card-list a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    display: grid;
    gap: 3px;
    min-height: 118px;
    padding: 16px;
}

.cta-card-list span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-card-list strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.cta-actions {
    display: none;
}

.scroll-top {
    align-items: center;
    background: var(--plum);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    bottom: 24px;
    box-shadow: var(--shadow);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 24px;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
    width: 48px;
    z-index: 30;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cta-panel .button.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.page-hero {
    background: var(--surface-strong);
    padding: 82px 0;
}

.page-hero.compact h1 {
    font-size: clamp(40px, 5vw, 66px);
}

.page-content {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
}

.page-content a {
    color: var(--plum);
    font-weight: 800;
}

.treatment-detail {
    display: grid;
    gap: 32px;
}

.treatment-detail-hero {
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin: 0;
    max-height: 430px;
    overflow: hidden;
}

.treatment-detail-hero img {
    aspect-ratio: 16 / 8;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.treatment-detail-layout {
    align-items: start;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.treatment-detail-main {
    display: grid;
    gap: 14px;
}

.treatment-detail-main h2 {
    color: var(--plum);
    font-size: clamp(25px, 2.4vw, 36px);
    margin-top: 12px;
}

.treatment-detail-main p,
.treatment-detail-main li,
.treatment-detail-aside p {
    color: var(--muted);
}

.treatment-detail-main p,
.treatment-detail-main ul,
.treatment-detail-main ol {
    margin: 0;
}

.treatment-detail-main ul,
.treatment-detail-main ol {
    padding-left: 22px;
}

.treatment-detail-aside {
    background: rgba(244, 235, 227, 0.62);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 9px;
    padding: 20px;
    position: sticky;
    top: 112px;
}

.treatment-detail-aside span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.treatment-detail-aside strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.3;
}

.treatment-detail-aside p {
    margin: 0;
}

.treatment-detail-cta {
    align-items: center;
    background: var(--plum);
    border-radius: var(--radius);
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 28px;
}

.treatment-detail-cta h2 {
    color: #fff;
    font-size: clamp(26px, 2.6vw, 38px);
    max-width: 620px;
}

.treatment-detail-cta .button.primary {
    background: #fff;
    color: var(--plum);
}

.treatments-page {
    background:
        linear-gradient(180deg, var(--surface), rgba(244, 235, 227, 0.7)),
        url("../images/floral-pattern.svg");
    background-position: center, left 4% top 40px;
    background-repeat: no-repeat, repeat;
    background-size: auto, 280px 280px;
}

.treatments-page-head {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    margin-bottom: 30px;
}

.treatments-page-head h2 {
    max-width: 760px;
}

.treatments-page-head > p {
    color: var(--muted);
    margin: 0 0 6px;
}

.treatments-page-board {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.treatment-page-chip {
    background: rgba(255, 253, 249, 0.86);
    min-height: 122px;
}

.treatment-category-board {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.treatment-category-card {
    align-items: start;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 20px;
    grid-template-columns: 92px 1fr;
    min-height: 190px;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.treatment-category-card:hover {
    border-color: rgba(91, 36, 55, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.treatment-category-card strong {
    color: var(--ink);
    display: block;
    font-size: 24px;
    line-height: 1.08;
    margin: 4px 0 12px;
}

.treatment-category-card p {
    color: var(--muted);
    margin: 0;
}

.category-child-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.category-child-list span {
    background: rgba(91, 36, 55, 0.06);
    border: 1px solid rgba(91, 36, 55, 0.1);
    border-radius: 999px;
    color: var(--plum);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    padding: 7px 10px;
}

.treatment-category-page {
    background:
        linear-gradient(180deg, var(--surface), rgba(244, 235, 227, 0.7)),
        url("../images/floral-pattern.svg");
    background-position: center, right 4% top 34px;
    background-repeat: no-repeat, repeat;
    background-size: auto, 280px 280px;
}

.treatment-category-hero {
    align-items: center;
    background: rgba(255, 253, 249, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    margin-bottom: 34px;
    overflow: hidden;
    padding: 34px;
}

.treatment-category-hero h2 {
    max-width: 720px;
}

.treatment-category-hero p:last-child {
    color: var(--muted);
    font-size: 18px;
    margin: 18px 0 0;
    max-width: 680px;
}

.treatment-category-hero figure,
.treatment-service-card figure {
    margin: 0;
}

.treatment-category-hero img {
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--radius) - 4px);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.treatment-service-stack {
    display: grid;
    gap: 18px;
}

.treatment-service-card {
    align-items: stretch;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    overflow: hidden;
    padding: 18px;
}

.treatment-service-copy {
    align-self: center;
    padding: 14px 10px 14px 14px;
}

.treatment-service-copy span {
    color: rgba(91, 36, 55, 0.22);
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.treatment-service-copy h3 {
    font-size: clamp(24px, 2vw, 34px);
    margin-bottom: 12px;
}

.treatment-service-copy p {
    color: var(--muted);
    margin: 0 0 20px;
    max-width: 620px;
}

.treatment-service-card img {
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--radius) - 6px);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.category-guide-block {
    margin-top: 64px;
}

.category-guide-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-page {
    background:
        linear-gradient(180deg, var(--surface), rgba(244, 235, 227, 0.78)),
        url("../images/floral-pattern.svg");
    background-position: center, right 6% top 40px;
    background-repeat: no-repeat, repeat;
    background-size: auto, 280px 280px;
}

.contact-page-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.contact-page-panel,
.contact-card-grid,
.contact-map,
.contact-socials {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(55, 23, 34, 0.07);
}

.contact-page-panel {
    align-content: start;
    display: grid;
    padding: 34px;
}

.contact-page-panel h2 {
    font-size: clamp(32px, 3.3vw, 48px);
}

.contact-page-panel p {
    color: var(--muted);
    font-size: 18px;
    margin: 20px 0 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contact-card-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
}

.contact-card {
    background: rgba(244, 235, 227, 0.52);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 18px;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.contact-card:hover {
    background: #fff;
    border-color: rgba(91, 36, 55, 0.28);
    transform: translateY(-2px);
}

.contact-card span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-map {
    grid-column: 1 / -1;
    overflow: hidden;
}

.contact-map iframe {
    border: 0;
    display: block;
    height: 430px;
    width: 100%;
}

.contact-socials {
    align-items: center;
    display: flex;
    gap: 12px;
    grid-column: 1 / -1;
    justify-content: center;
    padding: 18px;
}

.contact-socials a {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--plum);
    font-weight: 800;
    min-width: 132px;
    padding: 10px 16px;
    text-align: center;
}

.guide-archive-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 720px;
}

.guide-archive {
    background: var(--surface);
}

.guide-filters {
    align-items: end;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 48px rgba(55, 23, 34, 0.07);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) auto auto;
    margin-bottom: 28px;
    padding: 18px;
}

.guide-filters label {
    display: grid;
    gap: 7px;
}

.guide-filters span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.guide-filters select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--plum) 50%) right 16px center / 7px 7px no-repeat,
        linear-gradient(135deg, var(--plum) 50%, transparent 50%) right 11px center / 7px 7px no-repeat,
        #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font: inherit;
    min-height: 46px;
    padding: 0 38px 0 14px;
}

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

.guide-archive-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-archive-card:hover {
    border-color: rgba(91, 36, 55, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.guide-archive-media {
    background: var(--surface-strong);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.guide-archive-media img {
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
    width: 100%;
}

.guide-archive-card:hover .guide-archive-media img {
    transform: scale(1.035);
}

.guide-archive-body {
    align-content: start;
    display: grid;
    gap: 12px;
    min-height: 245px;
    padding: 22px;
}

.guide-card-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.guide-card-meta time,
.guide-card-meta span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.guide-card-meta span {
    background: rgba(184, 121, 87, 0.12);
    border-radius: 999px;
    padding: 5px 9px;
}

.guide-archive-body h2 {
    font-size: clamp(23px, 2vw, 30px);
}

.guide-read-more {
    justify-self: start;
    margin-top: auto;
}

.guide-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.empty-state {
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 12px;
    justify-items: start;
    padding: 32px;
}

.empty-state h2 {
    font-size: 28px;
}

.empty-state p {
    color: var(--muted);
    margin: 0;
}

.about-page {
    background: linear-gradient(180deg, var(--surface), rgba(244, 235, 227, 0.72));
}

.about-content {
    display: grid;
    gap: 34px;
}

.about-intro {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.about-intro h2 {
    font-size: clamp(30px, 3vw, 44px);
    max-width: 780px;
}

.about-intro p,
.about-main p,
.about-note p,
.about-timeline p {
    color: var(--muted);
}

.about-portrait {
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 390px;
    overflow: hidden;
}

.about-portrait img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.about-grid {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.about-main {
    display: grid;
    gap: 10px;
}

.about-main h3,
.about-note h3 {
    color: var(--plum);
    font-size: 22px;
    margin-top: 12px;
}

.about-main p,
.about-note p {
    margin: 0 0 10px;
}

.about-side {
    align-self: start;
    border-left: 1px solid var(--line);
    display: grid;
    gap: 20px;
    padding-left: 24px;
}

.about-fact {
    display: grid;
    gap: 5px;
}

.about-fact span {
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-fact strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
}

.about-timeline {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 24px;
}

.about-timeline div {
    border-left: 1px solid var(--line);
    display: grid;
    gap: 8px;
    padding: 0 18px 20px;
}

.about-timeline span {
    color: var(--plum);
    font-size: 13px;
    font-weight: 800;
}

.about-timeline p {
    margin: 0;
}

.about-note {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 8px;
    padding-top: 24px;
}

.site-footer {
    background: #21141a;
    color: rgba(255, 255, 255, 0.72);
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.35fr 0.8fr 1fr;
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: auto;
    max-width: 260px;
}

.site-footer h2,
.site-footer h3 {
    color: #fff;
    font-family: Manrope, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    margin: 16px 0 12px;
}

.site-footer h3 a {
    color: #fff;
}

.footer-copyright {
    margin-top: 18px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.footer-meta-links {
    align-items: center;
    display: inline-flex;
    gap: 14px;
}

.mek-signature {
    align-items: center;
    display: inline-flex;
    line-height: 1;
    opacity: 0.82;
    transition: opacity 180ms ease, transform 180ms ease;
}

.mek-signature:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.mek-signature img {
    display: block;
    filter: brightness(0) invert(1);
    height: 18px;
    max-width: 58px;
    width: auto;
}

@media (max-width: 1040px) {
    .hero-grid,
    .split,
    .doctor-grid,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .treatment-board,
    .values-list,
    .cta-card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: 470px;
    }

    .portrait-frame {
        height: 455px;
    }

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

    .about-intro,
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-page-grid,
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .treatment-detail-layout {
        grid-template-columns: 1fr;
    }

    .treatment-detail-aside {
        position: static;
    }

    .treatments-page-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .treatments-page-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .treatment-category-board,
    .treatment-category-hero,
    .treatment-service-card,
    .category-guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-archive-grid {
        grid-template-columns: 1fr;
    }

    .about-side {
        border-left: 0;
        border-top: 1px solid var(--line);
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-left: 0;
        padding-top: 22px;
    }

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

    .doctor-photo-card,
    .doctor-photo-card img {
        min-height: 340px;
    }
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 74px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        background: var(--surface);
        border-top: 1px solid var(--line);
        box-sizing: border-box;
        box-shadow: var(--shadow);
        display: none;
        gap: 16px;
        left: 0;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 18px 24px 24px;
        position: absolute;
        right: 0;
        top: 74px;
    }

    .header-treatment-strip {
        display: none;
    }

    .primary-nav.is-open {
        display: grid;
    }

    .mobile-treatment-menu {
        display: block;
    }

    .mobile-treatment-accordion {
        border-top: 1px solid var(--line);
        display: grid;
        gap: 7px;
        margin-top: 6px;
        padding-top: 10px;
        width: 100%;
    }

    .mobile-treatment-all,
    .mobile-treatment-group {
        background: rgba(91, 36, 55, 0.04);
        border-radius: var(--radius);
        width: 100%;
    }

    .mobile-treatment-all {
        color: var(--muted);
        display: block;
        font-size: 13px;
        font-weight: 800;
        padding: 13px 14px;
    }

    .mobile-treatment-group {
        overflow: hidden;
    }

    .mobile-treatment-group summary {
        align-items: center;
        color: var(--muted);
        cursor: pointer;
        display: flex;
        font-size: 13px;
        font-weight: 800;
        justify-content: space-between;
        list-style: none;
        min-height: 44px;
        padding: 0 14px;
    }

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

    .mobile-treatment-group summary::after {
        border-color: var(--plum);
        border-style: solid;
        border-width: 0 2px 2px 0;
        content: "";
        height: 7px;
        margin-left: 12px;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 160ms ease;
        width: 7px;
    }

    .mobile-treatment-group[open] summary::after {
        transform: translateY(2px) rotate(225deg);
    }

    .mobile-treatment-links {
        border-left: 1px solid var(--line);
        display: grid;
        gap: 2px;
        margin: 0 14px 12px;
        padding: 4px 0 4px 12px;
    }

    .mobile-treatment-links a {
        color: var(--muted);
        display: block;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
        padding: 9px 8px;
        white-space: normal;
        width: auto;
    }

    .site-search-toggle {
        margin-left: auto;
        order: 2;
    }

    .nav-toggle {
        order: 3;
    }

    .site-menu {
        align-items: stretch;
        display: grid;
        gap: 4px;
    }

    .site-menu a {
        border-radius: var(--radius);
        padding: 12px;
    }

    .menu-item-has-children > a {
        padding-right: 44px;
    }

    .submenu-toggle {
        height: 42px;
        right: 4px;
        top: 2px;
        transform: none;
        width: 42px;
    }

    .sub-menu {
        background: rgba(91, 36, 55, 0.04);
        border: 0;
        border-left: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        display: none;
        left: auto;
        margin: 4px 0 8px 12px;
        max-height: 58vh;
        min-width: 0;
        opacity: 1;
        overflow-y: auto;
        padding: 6px;
        pointer-events: auto;
        position: static;
        right: auto;
        top: auto;
        transform: none;
        width: calc(100% - 12px);
        grid-template-columns: 1fr;
    }

    .sub-menu::before {
        display: none;
    }

    .menu-item-has-children:hover > .sub-menu,
    .menu-item-has-children:focus-within > .sub-menu {
        display: none;
    }

    .menu-item-has-children.is-open > .sub-menu {
        display: grid;
        transform: none;
    }

    .sub-menu a {
        font-size: 14px;
        padding: 10px 12px;
    }

    .primary-nav .treatment-category-nav {
        border-top: 1px solid var(--line);
        box-sizing: border-box;
        display: grid;
        gap: 6px;
        grid-template-columns: 1fr;
        margin-top: 4px;
        min-height: 0;
        overflow: hidden;
        padding-top: 8px;
        width: 100%;
    }

    .primary-nav .treatment-category-nav a {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
    }

    .primary-nav .treatment-category-nav-item {
        border-right: 0;
        box-sizing: border-box;
        min-width: 0;
        width: 100%;
    }

    .primary-nav .treatment-category-all,
    .primary-nav .treatment-category-nav-link {
        background: rgba(91, 36, 55, 0.04);
        border-radius: var(--radius);
        justify-content: flex-start;
        min-height: 42px;
        padding: 12px;
        text-align: left;
    }

    .primary-nav .treatment-category-nav-link {
        padding-right: 48px;
    }

    .primary-nav .treatment-category-toggle {
        align-items: center;
        background: transparent;
        border: 0;
        cursor: pointer;
        display: inline-flex;
        height: 42px;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        width: 42px;
    }

    .primary-nav .treatment-category-toggle::before {
        border-color: var(--plum);
        border-style: solid;
        border-width: 0 2px 2px 0;
        content: "";
        height: 7px;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 160ms ease;
        width: 7px;
    }

    .primary-nav .treatment-category-nav-item.is-open .treatment-category-toggle::before {
        transform: translateY(2px) rotate(225deg);
    }

    .primary-nav .treatment-category-dropdown {
        background: rgba(91, 36, 55, 0.035);
        border: 0;
        border-left: 1px solid var(--line);
        border-radius: 0;
        box-sizing: border-box;
        box-shadow: none;
        display: none;
        left: auto;
        margin: 4px 0 10px;
        min-width: 0;
        opacity: 1;
        overflow: hidden;
        padding: 4px 0 4px 12px;
        pointer-events: auto;
        position: static;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .primary-nav .treatment-category-dropdown::before {
        display: none;
    }

    .primary-nav .treatment-category-nav-item:hover .treatment-category-dropdown,
    .primary-nav .treatment-category-nav-item:focus-within .treatment-category-dropdown {
        display: none;
    }

    .primary-nav .treatment-category-nav-item.is-open .treatment-category-dropdown {
        display: grid;
    }

    .primary-nav .treatment-category-dropdown a {
        box-sizing: border-box;
        font-size: 13px;
        padding: 9px 10px;
        width: 100%;
        word-break: normal;
    }

    .mobile-treatment-menu,
    .mobile-treatment-menu * {
        box-sizing: border-box;
        max-width: 100%;
    }

    .mobile-treatment-menu .treatment-category-nav {
        display: block;
        overflow: visible;
        width: 100%;
    }

    .mobile-treatment-menu .treatment-category-nav-item {
        display: block;
        margin: 0 0 6px;
        min-width: 0;
        overflow: visible;
        position: relative;
        width: 100%;
    }

    .mobile-treatment-menu .treatment-category-dropdown {
        background: rgba(255, 255, 255, 0.62);
        border: 0;
        border-left: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        display: none;
        left: 0;
        margin: 6px 0 10px;
        min-width: 0;
        opacity: 1;
        overflow: visible;
        padding: 6px 0 6px 12px;
        pointer-events: auto;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .mobile-treatment-menu .treatment-category-nav-item:hover .treatment-category-dropdown,
    .mobile-treatment-menu .treatment-category-nav-item:focus-within .treatment-category-dropdown {
        display: none;
    }

    .mobile-treatment-menu .treatment-category-nav-item.is-open .treatment-category-dropdown {
        display: block;
    }

    .mobile-treatment-menu .treatment-category-dropdown a {
        color: var(--muted);
        display: block;
        font-size: 13px;
        line-height: 1.24;
        margin: 0;
        padding: 10px 12px;
        text-align: left;
        white-space: normal;
        width: 100%;
        word-break: normal;
    }

    .treatment-mega-menu {
        gap: 8px;
        max-height: 58vh;
        width: 100%;
    }

    .treatment-mega-menu > li:first-child {
        grid-column: auto;
    }

    .treatment-menu-group {
        background: rgba(255, 255, 255, 0.62);
        min-height: 0;
        padding: 6px;
    }

    .treatment-menu-group ul a {
        font-size: 13px;
    }
}

@media (max-width: 680px) {
    .container {
        padding: 0 18px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        height: 46px;
        max-width: 214px;
    }

    .hero {
        padding: 54px 0;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-visual {
        margin-left: -18px;
        margin-right: -18px;
        min-height: 430px;
        order: -1;
    }

    .hero-copy {
        order: 2;
    }

    h1 {
        font-size: 42px;
    }

    h1 span:nth-child(2) {
        white-space: normal;
    }

    h2 {
        font-size: 34px;
    }

    .lead {
        font-size: 17px;
    }

    .portrait-frame {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
        height: 430px;
    }

    .portrait-frame::after {
        border-radius: 0;
        inset: 14px;
    }

    .floating-note {
        bottom: 8px;
        left: 18px;
        max-width: none;
        right: 18px;
    }

    .section {
        padding: 58px 0;
    }

    .treatment-board,
    .values-list,
    .cta-card-list {
        grid-template-columns: 1fr;
    }

    .treatment-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .treatment-head p:last-child {
        justify-self: start;
    }

    .treatment-chip {
        grid-template-columns: 70px 1fr;
    }

    .treatment-category-card {
        grid-template-columns: 66px 1fr;
        min-height: 0;
        padding: 18px;
    }

    .treatment-category-card strong {
        font-size: 21px;
    }

    .treatment-category-hero {
        gap: 22px;
        padding: 18px;
    }

    .treatment-category-hero figure {
        order: -1;
    }

    .treatment-service-card {
        padding: 14px;
    }

    .treatment-service-copy {
        padding: 8px 4px 4px;
    }

    .guide-layout > * {
        flex-basis: 82vw;
    }

    .guide-shell {
        gap: 0;
        grid-template-columns: 1fr;
        position: relative;
    }

    .rail-arrow {
        position: absolute;
        top: calc(50% - 32px);
        z-index: 3;
    }

    .rail-arrow-prev {
        left: 8px;
    }

    .rail-arrow-next {
        right: 8px;
    }

    .post-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .guide-filters {
        grid-template-columns: 1fr;
    }

    .treatments-page-board {
        grid-template-columns: 1fr;
    }

    .guide-filters .button {
        width: 100%;
    }

    .guide-archive-media {
        aspect-ratio: 16 / 10;
        min-height: auto;
    }

    .guide-archive-body {
        padding: 20px;
    }

    .contact-page-panel {
        padding: 24px;
    }

    .contact-actions,
    .contact-socials {
        display: grid;
    }

    .contact-map iframe {
        height: 340px;
    }

    .treatment-detail-cta {
        align-items: start;
        display: grid;
    }

    .about-portrait {
        height: 360px;
    }

    .about-side,
    .about-timeline {
        grid-template-columns: 1fr;
    }

    .about-timeline div {
        padding-left: 14px;
    }

    .doctor-panel,
    .page-content,
    .cta-panel {
        padding: 24px;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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