:root {
    --bg: #fffbfd;
    --surface: #ffffff;
    --text: #3a2a30;
    --muted: #8c6f78;
    --primary: #f59db6;
    --primary-dark: #e685a0;
    --accent: #f9c1d0;
    --border: #f1d7df;
    --radius: 20px;
    --shadow: 0 10px 30px rgba(245, 157, 182, 0.15);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

article {
    padding-top : 40px;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.page-wide .page-content .container {
    width: min(1440px, calc(100% - 32px));
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    margin-top: 0;
    color: var(--text);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 12px;
}

.lead {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 60ch;
    font-style: italic;
}

.eyebrow {
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 700;
}

.main-nav a,
.logo,
.site-footer a {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-body);
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(245, 157, 182, 0.18);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Loader */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: all;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px;
}

.site-loader__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: min(240px, 60vw);
    max-height: min(240px, 22vh);
    object-fit: contain;
    opacity: 0;
    transform: scale(0.98);
    animation: loaderLogoFadeIn 0.8s ease forwards;
}

.site-loader__text {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    opacity: 0;
    animation: loaderLogoFadeIn 0.8s ease forwards;
    color: var(--text);
}

@keyframes loaderLogoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.loading-site {
    overflow: hidden;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transform: translateY(0);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 251, 253, 0.92);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(58, 42, 48, 0.06);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

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

.main-nav-left {
    justify-self: end;
}

.header-right {
    display: flex;
    align-items: center;
    justify-self: end;
    justify-content: space-between;
    gap: 24px;
}

.logo--center {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.logo--center .custom-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo--center img,
.custom-logo {
    display: block;
    width: auto;
    max-height: 64px;
    border-radius: 0;
}

.header-actions,
.header-cta {
    white-space: nowrap;
    flex: 0 0 auto;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.main-nav .menu-item {
    margin: 0;
    flex: 0 0 auto;
}

.main-nav a {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.98rem;
    font-weight: 400;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
}

.home .main-nav a{
    color: white;
}

.home .site-header.is-scrolled .main-nav a{
    color: black;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .is-current > a {
    color: var(--primary-dark);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav .is-current > a::after {
    transform: scaleX(1);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

/* Layout blocks */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-card,
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.card:hover,
.hero-card:hover,
.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(245, 157, 182, 0.18);
}

.hero-placeholder {
    min-height: 320px;
    display: grid;
    place-items: center;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    color: var(--muted);
}

.hero-actions {
    margin-top: 24px;
}

.cards {
    display: grid;
    gap: 20px;
}

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

.section-heading {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Footer */
.site-footer {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Editor helpers */
.cc-editor-block {
    padding: 20px;
    border: 1px dashed var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.cc-editor-card {
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(249, 193, 208, 0.08);
}

/* Treatment cards */
.treatment-card {
    overflow: hidden;
    padding: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.treatment-card__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
}

.treatment-card__content {
    padding: 24px;
}

.treatment-card__link {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-dark);
}

/* FAQ */
.faq {
    background: rgba(249, 193, 208, 0.12);
}

.faq .container {
    display: grid;
    gap: 16px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

/* Hero cabinet */
.hero-cabinet {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    overflow: hidden;
    isolation: isolate;
    background: var(--accent);
}

.hero-cabinet__bg {
    position: absolute;
    inset: -10% 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.08);
    will-change: transform;
}

.hero-cabinet .hero-overlay {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(255,255,255,0) 60%),
            linear-gradient(to bottom, rgba(245,157,182,0.38), rgba(230,133,160,0.65));
    z-index: 1;
}

.hero-cabinet .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--bg);
}

.hero-cabinet .subtitle {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.95;
    color: var(--bg);
    text-shadow: 0 2px 12px rgba(58,42,48,0.22);
}

.hero-cabinet .hero-title {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--bg);
    /*text-shadow: 0 2px 12px rgba(58,42,48,0.22);*/
}

.hero-cabinet .lead {
    margin: 0 auto 2rem;
    max-width: 650px;
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.98;
    text-shadow: 0 2px 12px rgba(58,42,48,0.22);
    color: var(--bg);
}

.hero-cabinet .hero-actions {
    display: flex;
    justify-content: center;
}

.hero-fade {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 1s ease forwards;
}

.hero-fade-delay {
    animation-delay: 0.25s;
}

.hero-fade-delay-2 {
    animation-delay: 0.45s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 28px 0 34px;
}

.hero-divider-line {
    width: 2px;
    height: 0;
    background: rgba(255,255,255,0.85);
    animation: heroLineGrow 0.9s ease forwards;
    animation-delay: 0.35s;
}

.hero-divider-dot {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transform: scale(0.5);
    animation: heroDotAppear 0.4s ease forwards;
    animation-delay: 1.1s;
}

@keyframes heroLineGrow {
    to {
        height: 150px;
    }
}

@keyframes heroDotAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section heading with image */
.section-heading--with-image {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr);
    gap: 56px;
    align-items: center;
}

.section-heading--image-right .section-heading__content {
    order: 1;
}

.section-heading--image-right .section-image {
    order: 2;
}

.section-heading--image-left .section-heading__content {
    order: 2;
}

.section-heading--image-left .section-image {
    order: 1;
    justify-self: start;
}

.section-heading--image-right .section-image {
    justify-self: end;
}

.section-heading__content {
    min-width: 0;
}

.section-heading__content .lead {
    max-width: 58ch;
}

.section-image {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.section-image::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    background: linear-gradient(135deg, rgba(249, 193, 208, 0.95), rgba(245, 157, 182, 0.78));
    border-radius: var(--radius);
    z-index: 0;
}

.section-heading--image-left .section-image::before {
    inset: -18px -18px 18px 18px;
}

.section-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.section-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(245, 157, 182, 0.22);
}

.fade-in-section .fade-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible .fade-item {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-section.is-visible .fade-item-1 { transition-delay: 0.05s; }
.fade-in-section.is-visible .fade-item-2 { transition-delay: 0.18s; }
.fade-in-section.is-visible .fade-item-3 { transition-delay: 0.32s; }
.fade-in-section.is-visible .fade-item-4 { transition-delay: 0.46s; }

/* Image animated */
.section-image-animated {
    position: relative;
    width: 100%;
    height: 42vh;
    min-height: 280px;
    max-height: 520px;
    overflow: hidden;
    isolation: isolate;
}

.section-image-animated__bg {
    position: absolute;
    inset: -28% 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate3d(0, 0, 0) scale(1.12);
    will-change: transform;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-layout__infos,
.contact-layout__form {
    min-width: 0;
}

.contact-form-wrapper,
.contact-form-wrapper form {
    width: 100%;
}

.contact-hours p {
    margin-bottom: 0.5rem;
}

.contact-hours ul {
    margin: 0;
    padding-left: 1rem;
}

.contact-hours li {
    margin-bottom: 0.25rem;
}

/* Map */
.cabinet-map__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.cabinet-map__content {
    max-width: 640px;
}

.cabinet-map__address {
    margin: 0 0 20px;
}

.cabinet-map__directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
}

.cabinet-map__embed iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

/* Hub category premium */
.hub-category--premium {
    padding-top: 60px;
    padding-bottom: 40px;
}

.hub-category--premium .container {
    max-width: 1240px;
}

.hub-category--premium .hub-category__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(245, 157, 182, 0.14);
    box-shadow: 0 18px 50px rgba(58, 42, 48, 0.08);
}

.hub-category--premium .hub-category__item {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 260px;
    padding: 32px;
    text-decoration: none;
    color: #fff;
    background-color: rgba(245, 157, 182, 0.22);
    overflow: hidden;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
}

.hub-category--premium .hub-category__item--featured {
    grid-row: span 2;
    min-height: 100%;
    padding: 42px;
}

.hub-category--premium .hub-category__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--hub-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1) translateZ(0);
    -webkit-transform: scale(1) translateZ(0);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.9s ease;
}

@media (hover: hover) and (pointer: fine) {
    .hub-category--premium .hub-category__item:hover .hub-category__media,
    .hub-category--premium .hub-category__item:focus-visible .hub-category__media {
        transform: scale(1.06) translateZ(0);
        -webkit-transform: scale(1.06) translateZ(0);
    }

    .hub-category--premium .hub-category__item:hover .hub-category__button,
    .hub-category--premium .hub-category__item:focus-visible .hub-category__button {
        gap: 16px;
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.96);
    }
}


.hub-category--premium .hub-category__overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(58, 42, 48, 0.10) 0%,
                    rgba(58, 42, 48, 0.22) 38%,
                    rgba(58, 42, 48, 0.62) 100%
            );
    z-index: 1;
}

.hub-category--premium .hub-category__content {
    position: relative;
    z-index: 2;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hub-category--premium .hub-category__item:not(.hub-category__item--featured) .hub-category__content {
    max-width: 360px;
}

.hub-category--premium .hub-category__title {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 2vw, 2.8rem);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 18px rgba(58,42,48,0.22);
}

.hub-category--premium .hub-category__item--featured .hub-category__title {
    font-size: clamp(2.4rem, 3.2vw, 4rem);
}

.hub-category--premium .hub-category__text {
    display: block;
    margin-bottom: 24px;
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 14px rgba(58,42,48,0.16);
}

.hub-category--premium .hub-category__item--featured .hub-category__text {
    font-size: 1.08rem;
    margin-bottom: 28px;
}

.hub-category--premium .hub-category__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 18px 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.hub-category--premium .hub-category__button-label {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.hub-category--premium .hub-category__button-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.hub-category--premium .hub-category__button-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}


.hub-category--premium .hub-category__item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: -2px;
}

/* Premium gallery */
body.premium-gallery-modal-open {
    overflow: hidden;
}

.premium-gallery-block {
    position: relative;
    margin-top: 40px;
}

.premium-gallery-block__heading {
    max-width: 780px;
    margin: 0 0 32px;
}

.premium-gallery-block__title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.premium-gallery-block__intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.premium-gallery-slider {
    position: relative;
}

.premium-gallery-slider__viewport {
    overflow: hidden;
}

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

.premium-gallery-slide {
    flex: 0 0 calc(84% - 12px);
    min-width: calc(84% - 12px);
    position: relative;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.premium-gallery-slide.is-active {
    transform: translateY(0);
}

.premium-gallery-slide__button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
}

.premium-gallery-slide__image {
    position: relative;
    width: 100%;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-gallery-slide__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(58, 42, 48, 0.06) 0%,
                    rgba(58, 42, 48, 0.16) 42%,
                    rgba(58, 42, 48, 0.64) 100%
            );
    z-index: 1;
}

.premium-gallery-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 34px;
    pointer-events: none;
}

.premium-gallery-slide__overlay-inner {
    max-width: 800px;
    color: #fff;
}

.premium-gallery-slide__overlay-inner h3{
    color : var(--bg);
}

.premium-gallery-slide__eyebrow,
.premium-gallery-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.premium-gallery-slide__overlay h3 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.06;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-gallery-slide__overlay p {
    margin: 0;
    max-width: 460px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease 0.08s, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.premium-gallery-slide__eyebrow {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-gallery-slide__button:hover .premium-gallery-slide__image,
.premium-gallery-slide__button:focus-visible .premium-gallery-slide__image {
    transform: scale(1.045);
}

.premium-gallery-slide__button:hover .premium-gallery-slide__eyebrow,
.premium-gallery-slide__button:focus-visible .premium-gallery-slide__eyebrow,
.premium-gallery-slide__button:hover .premium-gallery-slide__overlay h3,
.premium-gallery-slide__button:focus-visible .premium-gallery-slide__overlay h3,
.premium-gallery-slide__button:hover .premium-gallery-slide__overlay p,
.premium-gallery-slide__button:focus-visible .premium-gallery-slide__overlay p,
.premium-gallery-slide.is-active .premium-gallery-slide__eyebrow,
.premium-gallery-slide.is-active .premium-gallery-slide__overlay h3,
.premium-gallery-slide.is-active .premium-gallery-slide__overlay p {
    opacity: 1;
    transform: translateY(0);
}

.premium-gallery-slider__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}

.premium-gallery-slider__nav {
    display: flex;
    gap: 10px;
}

.premium-gallery-slider__arrow {
    width: 54px;
    height: 54px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--primary);
    backdrop-filter: blur(12px);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.premium-gallery-slider__arrow:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 18px 44px rgba(245, 157, 182, 0.18);
}

.premium-gallery-slider__arrow span {
    font-size: 20px;
    line-height: 1;
    color: white;
}

.premium-gallery-slider__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-gallery-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(58,42,48,0.16);
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-gallery-slider__dot.is-active {
    width: 34px;
    background: var(--primary-dark);
}

/* Gallery modal */
.premium-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.premium-gallery-modal.is-open {
    display: block;
}

.premium-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(58, 42, 48, 0.72);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.premium-gallery-modal.is-open .premium-gallery-modal__backdrop {
    opacity: 1;
}

.premium-gallery-modal__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: var(--shadow);
    color: white;
    font-size: 26px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease;
}

.premium-gallery-modal__arrow:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.premium-gallery-modal__arrow--prev {
    left: 18px;
}

.premium-gallery-modal__arrow--next {
    right: 18px;
}

@media (max-width: 767px) {
    .premium-gallery-modal__arrow {
        bottom: 18px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .premium-gallery-modal__arrow--prev {
        left: 18px;
    }

    .premium-gallery-modal__arrow--next {
        right: 18px;
    }
	
	.premium-gallery-modal__title {
    	max-width: 100% !important;
	}
}
	.premium-gallery-modal__title {
    	max-width: 75%;
	}

.premium-gallery-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    min-height: min(84vh, 800px);
    margin: 4vh auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    background: var(--surface);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 90px rgba(58,42,48,0.24);
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.42s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-gallery-modal.is-open .premium-gallery-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.premium-gallery-modal__media {
    background: rgba(249, 193, 208, 0.12);
    min-height: 620px;
}

.premium-gallery-modal__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-gallery-modal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 44px;
}

.premium-gallery-modal__eyebrow {
    color: var(--text);
    background: rgba(245,157,182,0.08);
    border-color: var(--border);
}

.premium-gallery-modal__title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

.premium-gallery-modal__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

.premium-gallery-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow);
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

/* Gallery editor */
.premium-gallery-editor {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, rgba(249,193,208,0.08) 100%);
}

.premium-gallery-editor__top {
    margin-bottom: 20px;
}

.premium-gallery-editor__section-title {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.1;
}

.premium-gallery-editor__section-intro {
    margin: 0;
    color: var(--muted);
}

.premium-gallery-editor__list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.premium-gallery-editor__item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.premium-gallery-editor__thumb {
    min-height: 180px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-color: rgba(249, 193, 208, 0.14);
}

.premium-gallery-editor__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.premium-gallery-editor__preview {
    margin-top: 28px;
}

.premium-gallery-slider--editor .premium-gallery-slider__track {
    gap: 18px;
}

.premium-gallery-slider--editor .premium-gallery-slide {
    flex: 0 0 78%;
    min-width: 78%;
}

.premium-gallery-slider--editor .premium-gallery-slide__image {
    min-height: 360px;
}

.premium-gallery-slider--editor .premium-gallery-slide__overlay.is-visible .premium-gallery-slide__eyebrow,
.premium-gallery-slider--editor .premium-gallery-slide__overlay.is-visible h3,
.premium-gallery-slider--editor .premium-gallery-slide__overlay.is-visible p {
    opacity: 1;
    transform: translateY(0);
}

.premium-gallery-editor__empty {
    margin-top: 20px;
    padding: 28px;
    border-radius: 18px;
    border: 1px dashed var(--border);
    background: var(--surface);
    text-align: center;
}

/* Team */
.team-block {
    padding: 5rem 0;
}

.team-block__header {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.team-block__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.team-block__intro {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid rgba(58, 42, 48, 0.08);
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(58, 42, 48, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-grid .team-card {
    padding-top: 0;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(245, 157, 182, 0.14);
}

.team-card__media {
    position: relative;
    overflow: hidden;
    background: rgba(249, 193, 208, 0.14);
    aspect-ratio: 4 / 3.2;
}

.team-card__image,
.team-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.team-card__image {
    object-fit: cover;
}

.team-card__placeholder {
    background: linear-gradient(135deg, rgba(249,193,208,0.10) 0%, rgba(245,157,182,0.18) 100%);
}

.team-card__content {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.4rem 1.6rem;
    flex: 1 1 auto;
}

.team-card__name {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
    line-height: 1.12;
    color: var(--text);
    letter-spacing: -0.02em;
}

.team-card__role {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--primary-dark);
}

.team-card__bio {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .team-block {
        padding: 4rem 0;
    }

    .team-block__header {
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card__media {
        aspect-ratio: 4 / 3.2;
    }

    .team-card__content {
        padding: 1.2rem;
    }

    .team-card__name {
        font-size: 1.3rem;
    }

    .team-card__bio {
        font-size: 0.98rem;
    }
}

/* Treatments luxury */
.treatments-page-block--luxury {
    position: relative;
    padding: clamp(72px, 9vw, 130px) 0;
}

.treatments-page-block__heading {
    max-width: 760px;
    margin: 0 auto clamp(48px, 6vw, 84px);
    text-align: center;
}

.treatments-page-block__kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-dark);
}

.treatments-page-block__section-title {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
}

.treatments-page-block__section-intro {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--muted);
}

.treatments-page-block__section-intro p:last-child {
    margin-bottom: 0;
}

.treatments-page-block__list {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 54px);
}

.treatment-item {
    position: relative;
}

.treatment-item__content-inner {
    transition:
            opacity 0.8s ease,
            transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.5s ease;
}

.treatment-item {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(24px, 3vw, 48px);
    align-items: stretch;
    padding: clamp(16px, 2vw, 22px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(245, 157, 182, 0.18);
    box-shadow: 0 18px 60px rgba(245, 157, 182, 0.12), inset 0 1px 0 rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    overflow: hidden;
    position: relative;
}

.treatment-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}

.treatment-item.is-reversed {
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
}

.treatment-item.is-reversed .treatment-item__media {
    order: 2;
}

.treatment-item.is-reversed .treatment-item__content {
    order: 1;
}

.treatment-item__media {
    min-width: 0;
}

.treatment-item__image-wrap {
    position: relative;
    min-height: 420px;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(249, 193, 208, 0.18);
}

.treatment-item__image-wrap--placeholder {
    background: linear-gradient(135deg, rgba(249,193,208,0.18) 0%, rgba(245,157,182,0.12) 100%);
}

.treatment-item__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(58,42,48,0.06) 100%);
    pointer-events: none;
}

.treatment-item__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.treatment-item:hover .treatment-item__image {
    transform: scale(1.045);
}

.treatment-item__content {
    display: flex;
    align-items: center;
}

.treatment-item__content-inner {
    width: 100%;
    padding: clamp(8px, 1vw, 12px) clamp(4px, 1vw, 10px);
}

.treatment-item__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 36px;
    padding: 0 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(245, 157, 182, 0.12);
    border: 1px solid rgba(245, 157, 182, 0.18);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--primary-dark);
}

.treatment-item__title {
    margin: 0 0 18px;
    font-size: clamp(1.7rem, 2.4vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text);
}

.treatment-item__title::after {
    content: "";
    display: block;
    width: 78px;
    height: 2px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(245, 157, 182, 0.12) 100%);
}

.treatment-item__description {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.9;
    color: var(--muted);
}

.treatment-item__description p:last-child {
    margin-bottom: 0;
}

.treatments-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

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

.js .treatments-reveal {
    opacity: 0;
    transform: translate3d(0, 56px, 0);
    transition:
            opacity 0.9s ease,
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .treatments-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Animation plus raffinée à l’intérieur des blocs */
.js .treatment-item .treatment-item__media,
.js .treatment-item .treatment-item__content-inner,
.js .treatments-page-block__heading > * {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
            opacity 0.8s ease,
            transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js .treatment-item.is-visible .treatment-item__media {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.08s;
}

.js .treatment-item.is-visible .treatment-item__content-inner {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.2s;
}

.js .treatments-page-block__heading.is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.js .treatments-page-block__heading.is-visible > *:nth-child(1) {
    transition-delay: 0.04s;
}

.js .treatments-page-block__heading.is-visible > *:nth-child(2) {
    transition-delay: 0.12s;
}

.js .treatments-page-block__heading.is-visible > *:nth-child(3) {
    transition-delay: 0.2s;
}

/* Petit raffinement image */
.treatment-item__image-wrap {
    overflow: hidden;
    border-radius: 28px;
}

.treatment-item__image {
    transform: scale(1.06);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.treatment-item.is-visible .treatment-item__image {
    transform: scale(1);
}

/* Optionnel : légère respiration au hover desktop */
@media (hover: hover) and (pointer: fine) {
    .treatment-item:hover .treatment-item__image {
        transform: scale(1.03);
    }

    .treatment-item:hover .treatment-item__content-inner {
        transform: translate3d(0, -2px, 0);
    }
}

/* Sécurité sans JS */
.treatments-reveal {
    opacity: 1;
    transform: none;
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
    .js .treatments-reveal,
    .js .treatments-reveal.is-visible,
    .js .treatment-item .treatment-item__media,
    .js .treatment-item .treatment-item__content-inner,
    .js .treatments-page-block__heading > *,
    .treatment-item__image {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Patient journey premium */
.patient-journey-block--premium {
    position: relative;
    padding: clamp(80px, 10vw, 150px) 0;
    overflow: hidden;
}

.patient-journey-block--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.08) 100%);
    opacity: 0.9;
}

.patient-journey-block--premium .patient-journey-block__inner {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.patient-journey-block--premium .patient-journey-block__heading {
    max-width: 760px;
    margin: 0 auto clamp(50px, 7vw, 90px);
    text-align: center;
}

.patient-journey-block--premium .patient-journey-block__kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-dark);
}

.patient-journey-block--premium .patient-journey-block__section-title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: var(--text);
}

.patient-journey-block--premium .patient-journey-block__section-intro {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--muted);
}

.patient-journey-block--premium .patient-journey-block__section-intro p:last-child {
    margin-bottom: 0;
}

.patient-journey-block--premium .patient-journey-block__timeline {
    position: relative;
}

.patient-journey-block--premium .patient-journey-block__line,
.patient-journey-block--premium .patient-journey-block__line-progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
}

.patient-journey-block--premium .patient-journey-block__line {
    background: linear-gradient(180deg, rgba(245,157,182,0.08) 0%, rgba(245,157,182,0.24) 50%, rgba(245,157,182,0.08) 100%);
}

.patient-journey-block--premium .patient-journey-block__line-progress {
    height: 0;
    bottom: auto;
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 55%, var(--primary-dark) 100%);
    box-shadow: 0 0 22px rgba(245,157,182,0.22);
    z-index: 2;
    transition: height 0.12s linear;
}

.patient-journey-block--premium .patient-journey-block__list {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 44px);
    position: relative;
    z-index: 3;
}

.patient-journey-block--premium .patient-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: start;
    min-height: 0;
    padding-top: 0;
}

.patient-journey-block--premium .patient-journey-block__list {
    gap: clamp(80px, 10vw, 140px);
}

.patient-journey-block--premium .patient-step__rail {
    grid-column: 2;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 4;
    align-items: flex-start;
    padding-top: calc(clamp(24px, 2.6vw, 34px) + 11px);
}

.patient-journey-block--premium .patient-step__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--bg);
    box-shadow: 0 0 0 7px rgba(245,157,182,0.12), 0 12px 26px rgba(245,157,182,0.18);
}

.patient-journey-block--premium .patient-step__panel {
    min-width: 0;
}

.patient-journey-block--premium .patient-step:not(.is-reversed) .patient-step__panel {
    grid-column: 1;
    padding-right: clamp(12px, 2vw, 34px);
}

.patient-journey-block--premium .patient-step.is-reversed .patient-step__panel {
    grid-column: 3;
    padding-left: clamp(12px, 2vw, 34px);
}

.patient-journey-block--premium .patient-step__card {
    position: relative;
    min-width: 0;
    padding: clamp(24px, 2.6vw, 34px);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(245,157,182,0.18);
    box-shadow: 0 22px 65px rgba(245,157,182,0.12), inset 0 1px 0 rgba(255,255,255,0.78);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.patient-journey-block--premium .patient-step__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}

.patient-journey-block--premium .patient-step:not(.is-reversed) .patient-step__card::after,
.patient-journey-block--premium .patient-step.is-reversed .patient-step__card::after {
    content: "";
    position: absolute;
    top: 56px;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, rgba(245,157,182,0.2), rgba(245,157,182,0.75));
}

.patient-journey-block--premium .patient-step:not(.is-reversed) .patient-step__card::after {
    right: -26px;
}

.patient-journey-block--premium .patient-step.is-reversed .patient-step__card::after {
    left: -26px;
    transform: scaleX(-1);
}

.patient-journey-block--premium .patient-step__topline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.patient-journey-block--premium .patient-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(245, 157, 182, 0.12);
    border: 1px solid rgba(245, 157, 182, 0.18);
    box-shadow: 0 8px 20px rgba(245,157,182,0.10);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--primary-dark);
    line-height: 1;
}

.patient-journey-block--premium .patient-step__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.patient-journey-block--premium .patient-step__title {
    margin: 0 0 16px;
    font-size: clamp(1.7rem, 2.2vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text);
}

.patient-journey-block--premium .patient-step__title::after {
    content: "";
    display: block;
    width: 78px;
    height: 2px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(245,157,182,0.12) 100%);
}

.patient-journey-block--premium .patient-step__description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
    text-align: justify;
}

.patient-journey-block--premium .patient-step__description p:last-child {
    margin-bottom: 0;
}

.patient-journey-block--premium .patient-step__media {
    margin-top: 24px;
}

.patient-journey-block--premium .patient-step__image-wrap {
    position: relative;
    min-height: 240px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(249, 193, 208, 0.18);
}

.patient-journey-block--premium .patient-step__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(58,42,48,0.08) 100%);
    pointer-events: none;
}

.patient-journey-block--premium .patient-step__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.patient-journey-block--premium .patient-step:hover .patient-step__image {
    transform: scale(1.04);
}

.patient-journey-block--premium .patient-journey-reveal {
    opacity: 0;
    transform: translateY(54px) scale(0.985);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.patient-journey-block--premium .patient-journey-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Patient journey editor */
.patient-journey-editor {
    padding: 8px 0;
}

.patient-journey-editor__title {
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 1.15;
}

.patient-journey-editor__intro {
    margin: 0 0 28px;
    color: var(--muted);
}

.patient-journey-editor__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.patient-journey-editor__item {
    padding: 18px;
    border: 1px solid rgba(245,157,182,0.18);
    border-radius: 18px;
    background: rgba(249,193,208,0.08);
}

.patient-journey-editor__item-title {
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.patient-journey-editor__item-description {
    margin-bottom: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.patient-journey-editor__media {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.patient-journey-editor__image,
.patient-journey-editor__placeholder {
    width: 100%;
    max-width: 320px;
    height: 220px;
    border-radius: 14px;
    object-fit: cover;
    background: rgba(249,193,208,0.14);
}

.patient-journey-editor__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border: 1px dashed var(--border);
}

.patient-journey-editor__actions,
.patient-journey-editor__media-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.patient-journey-editor__add {
    margin-top: 22px;
}

/* Responsive */
@media (max-width: 1100px) {
    .main-nav .menu {
        gap: 16px;
    }

    .header-right {
        gap: 16px;
    }

    .main-nav a {
        font-size: 0.94rem;
    }

    .header-cta {
        padding: 12px 18px;
    }
}

@media (max-width: 1080px) {
    .hub-category--premium .hub-category__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .hub-category--premium .hub-category__item--featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 360px;
    }

    .hub-category--premium .hub-category__item {
        min-height: 240px;
    }
}

@media (max-width: 1024px) {
    .premium-gallery-slide {
        flex: 0 0 88%;
        min-width: 88%;
    }

    .premium-gallery-slide__image {
        min-height: 540px;
    }

    .premium-gallery-modal__dialog {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .premium-gallery-modal__media {
        min-height: 380px;
    }

    .premium-gallery-modal__content {
        padding: 32px 24px;
    }
}

@media (max-width: 980px) {
    .header-inner {
        min-height: 78px;
        gap: 12px;
    }

    .main-nav-left,
    .main-nav-right {
        display: none;
    }

    .logo--center {
        order: 2;
        justify-self: start;
    }

    .menu-toggle {
        order: 1;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-self: start;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .home .header-right {
        display: none;
    }


    .header-right {
        order: 3;
        justify-self: end;
        gap: 0;
    }

    .header-cta {
        padding: 10px 14px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .logo--center img,
    .custom-logo {
        max-height: 50px;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 251, 253, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(58, 42, 48, 0.06);
        padding: 16px 20px 20px;
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 12px;
    }

    .mobile-menu__item a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        border-bottom: 1px solid rgba(58,42,48,0.06);
    }

    .mobile-menu__item.is-current a,
    .mobile-menu__item.current-menu-item a,
    .mobile-menu__item.current_page_item a {
        color: var(--primary-dark);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .patient-journey-block--premium .patient-journey-block__line,
    .patient-journey-block--premium .patient-journey-block__line-progress {
        left: 22px;
        transform: none;
    }

    .patient-journey-block--premium .patient-step {
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 0;
    }

    .patient-journey-block--premium .patient-step__rail {
        grid-column: 1;
        align-items: flex-start;
        padding-top: 29px;
    }

    .patient-journey-block--premium .patient-step__panel,
    .patient-journey-block--premium .patient-step.is-reversed .patient-step__panel,
    .patient-journey-block--premium .patient-step:not(.is-reversed) .patient-step__panel {
        grid-column: 2;
        padding: 0;
    }

    .patient-journey-block--premium .patient-step__card::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .cards-3,
    .footer-grid,
    .section-heading--with-image,
    .treatment-item,
    .treatment-item.is-reversed,
    .team-layout {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .section-heading__content {
        order: 1 !important;
    }

    .section-image {
        order: 2 !important;
        max-width: 320px;
        justify-self: center !important;
    }

    .section-heading__content .lead {
        max-width: 100%;
    }

    .section-image::before,
    .section-heading--image-left .section-image::before {
        inset: -14px 14px 14px -14px;
    }

    .section-image-animated {
        height: 32vh;
        min-height: 220px;
    }

    .section-image-animated__bg {
        inset: -14% 0;
        transform: translate3d(0, 0, 0) scale(1.08);
    }

    .treatment-item.is-reversed .treatment-item__media,
    .treatment-item.is-reversed .treatment-item__content {
        order: initial;
    }

    .treatment-item__image-wrap,
    .treatment-item__image {
        min-height: 300px;
    }

    .treatment-item__content-inner {
        padding: 2px 2px 6px;
    }

    .team-layout__aside {
        grid-template-columns: 1fr;
    }

    .team-card--wide {
        grid-template-columns: 1fr;
    }

    .team-card--wide .team-card__media {
        aspect-ratio: 4 / 3;
        min-height: auto;
    }
}

@media (max-width: 782px) {
    .premium-gallery-editor__item {
        grid-template-columns: 1fr;
    }

    .premium-gallery-editor__thumb {
        min-height: 220px;
    }
}

@media screen and (max-width: 768px) {
    .contact .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .contact .contact-layout__infos,
    .contact .contact-layout__form {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .site-loader__logo {
        max-width: min(180px, 70vw);
        max-height: min(180px, 18vh);
    }

    .hub-category--premium {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    .hub-category--premium .container {
        max-width: 100%;
    }

    .hub-category--premium .hub-category__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        border-radius: 22px;
    }

    .hub-category--premium .hub-category__item,
    .hub-category--premium .hub-category__item--featured {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
        padding: 26px 20px;
    }

    .hub-category--premium .hub-category__title,
    .hub-category--premium .hub-category__item--featured .hub-category__title {
        font-size: 1.8rem;
    }

    .hub-category--premium .hub-category__text,
    .hub-category--premium .hub-category__item--featured .hub-category__text {
        margin-bottom: 18px;
        font-size: 0.95rem;
    }

    .hub-category--premium .hub-category__button {
        min-height: 44px;
        padding: 0 16px 0 18px;
        gap: 10px;
    }

    .hub-category--premium .hub-category__button-label {
        font-size: 0.9rem;
    }

    .premium-gallery-block__heading {
        margin-bottom: 24px;
    }

    .premium-gallery-slider__track {
        gap: 16px;
    }

    .premium-gallery-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .premium-gallery-slide__image {
        min-height: 400px;
    }

    .premium-gallery-slide__overlay {
        padding: 22px;
    }

    .premium-gallery-slide__eyebrow,
    .premium-gallery-slide__overlay h3,
    .premium-gallery-slide__overlay p {
        opacity: 1;
        transform: translateY(0);
    }

    .premium-gallery-slider__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-block {
        padding: 4rem 0;
    }

    .team-block__header {
        margin-bottom: 2rem;
    }

    .team-layout,
    .team-layout__aside {
        gap: 1.5rem;
    }

    .team-card--featured .team-card__media,
    .team-card--compact .team-card__media,
    .team-card--wide .team-card__media {
        aspect-ratio: 4 / 3.2;
    }

    .team-card__content,
    .team-card--featured .team-card__content,
    .team-card--wide .team-card__content {
        padding: 1.2rem;
    }

    .team-card__name,
    .team-card--compact .team-card__name,
    .team-card--wide .team-card__name,
    .team-card--featured .team-card__name {
        font-size: 1.3rem;
    }

    .team-card__bio,
    .team-card--featured .team-card__bio,
    .team-card--compact .team-card__bio {
        font-size: 0.98rem;
    }

    .wp-block-media-text > .wp-block-media-text__content {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .header-cta {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .logo--center img,
    .custom-logo {
        max-height: 44px;
    }

    .treatments-page-block--luxury .treatments-page-block__inner,
    .patient-journey-block--premium .patient-journey-block__inner {
        width: min(100%, calc(100% - 20px));
    }

    .treatment-item {
        padding: 14px;
        border-radius: 24px;
        gap: 18px;
    }

    .treatment-item__image-wrap {
        min-height: 240px;
        border-radius: 18px;
    }

    .treatment-item__image {
        min-height: 240px;
    }

    .treatment-item__number {
        margin-bottom: 14px;
    }

    .treatment-item__title,
    .patient-journey-block--premium .patient-step__title {
        font-size: 1.45rem;
    }

    .patient-journey-block--premium .patient-step__card {
        padding: 18px 16px;
        border-radius: 24px;
    }

    .patient-journey-block--premium .patient-step__image-wrap,
    .patient-journey-block--premium .patient-step__image {
        min-height: 210px;
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-fade,
    .hero-fade-delay,
    .hero-fade-delay-2 {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-cabinet__bg,
    .section-image-animated__bg {
        transform: scale(1.08);
    }

    .fade-in-section .fade-item,
    .fade-in-section.is-visible .fade-item,
    .treatments-reveal,
    .treatments-reveal.is-visible,
    .patient-journey-block--premium .patient-journey-reveal,
    .patient-journey-block--premium .patient-journey-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .section-image img,
    .treatment-item__image,
    .patient-journey-block--premium .patient-step__image,
    .premium-gallery-slide__image {
        transition: none;
    }

    .section-image:hover img,
    .treatment-item:hover .treatment-item__image,
    .patient-journey-block--premium .patient-step:hover .patient-step__image,
    .premium-gallery-slide__button:hover .premium-gallery-slide__image,
    .premium-gallery-slide__button:focus-visible .premium-gallery-slide__image {
        transform: none;
    }
}

.cky-revisit-bottom-right{
    background-color : var(--primary) !important;
}

.cky-prefrence-btn-wrapper .cky-btn:first-child{
    background-color : var(--primary) !important;
    border-color:  var(--primary) !important;
    color : var(--bg) !important;
}

.cky-prefrence-btn-wrapper .cky-btn{
    color : var(--primary) !important;
    border-color:  var(--primary) !important;
    background-color: transparent !important;
}

.cky-prefrence-btn-wrapper .cky-btn{
    color : var(--primary) !important;
    border-color:  var(--primary) !important;
}

.cky-switch input[type="checkbox"]:checked{
    background : var(--primary) !important;
}

.cky-btn-accept{
    background : var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.cky-btn-reject, .cky-btn-customize, .cky-btn-reject{
    color : var(--primary) !important;
    border-color:  var(--primary) !important;
    background-color: transparent !important;
}

.mapp-sidebar.mapp-sidebar-open {
    width: 0 !important;
}

.custom-map-image{
    width : 30%;
}

.custom-map-image img{
    border-radius : initial;
    width : 100% !important;
    height : 350px !important;
}


@media (max-width: 640px) {
    mappress-map.mapp-layout {
        width: 100% !important;
    }
}

.patient-journey-block--premium .patient-step {
    align-items: start;
    padding-top: 0;
}

.patient-journey-block--premium .patient-step__rail {
    align-items: flex-start;
    padding-top: calc(clamp(24px, 2.6vw, 34px) + 11px);
}

.patient-journey-block--premium .patient-step__card::after {
    top: calc(clamp(24px, 2.6vw, 34px) + 19px) !important;
}

@media (max-width: 980px) {
    .patient-journey-block--premium .patient-step__rail {
        padding-top: 29px;
    }
}

.patient-journey-block--premium .patient-step {
    position: relative;
    align-items: start;
    padding-top: 0 !important;
    min-height: 0 !important;
}

.patient-journey-block--premium .patient-step__rail {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start;
    justify-self: center;
    padding-top: calc(clamp(24px, 2.6vw, 34px) + 11px) !important;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
}

.patient-journey-block--premium .patient-step__dot {
    flex: 0 0 auto;
}

.patient-journey-block--premium .patient-step__card::after {
    top: calc(clamp(24px, 2.6vw, 34px) + 19px) !important;
}

@media (max-width: 980px) {
    .patient-journey-block--premium .patient-journey-block__line,
    .patient-journey-block--premium .patient-journey-block__line-progress {
        left: 22px !important;
        transform: none !important;
    }

    .patient-journey-block--premium .patient-step {
        grid-template-columns: 44px minmax(0, 1fr) !important;
    }

    .patient-journey-block--premium .patient-step__rail {
        grid-column: 1 !important;
        grid-row: 1 !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 44px !important;
        transform: none !important;
        justify-content: center !important;
        padding-top: 29px !important;
    }

    .patient-journey-block--premium .patient-step__panel,
    .patient-journey-block--premium .patient-step.is-reversed .patient-step__panel,
    .patient-journey-block--premium .patient-step:not(.is-reversed) .patient-step__panel {
        grid-column: 2 !important;
        padding: 0 !important;
    }
	.wp-container-core-group-is-layout-8435bee3 > :where(:not(.alignleft):not(.alignright):not(.alignfull)){
	max-width: 100% !important;
}
}

.page-id-220 p{
	text-align: justify;
}

.section-heading__content{
	text-align: justify;
}
