@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #8b7355;
    --primary-light: #a89278;
    --primary-dark: #6d5a43;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --dark-menu: #2a2a2a;
    --text: #555555;
    --text-light: #888888;
    --border: #e0dbd4;
    --bg: #ffffff;
    --bg-alt: #f5f1eb;
    --bg-warm: #eae5dc;
    --bg-cream: #f0ebe3;
    --white: #ffffff;
    --gold: #c4a265;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader__inner {
    text-align: center;
}
.preloader__logo {
    height: 120px;
    filter: brightness(0) invert(1);
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderFadeIn 0.8s ease 0.2s forwards;
}
.preloader__bar {
    width: 180px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}
.preloader__progress {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
@keyframes preloaderFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    padding: 0 4vw;
    background: transparent;
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.header__logo img {
    height: 110px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) contrast(1.3);
}
.header.scrolled .header__logo img {
    filter: contrast(1.3);
}
.header__nav { display: none !important; }
.header__link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.92);
    padding: 0.5rem 0;
    white-space: nowrap;
}
.header.scrolled .header__link { color: var(--dark); }
.header__link:hover { color: var(--white); opacity: 0.75; }
.header.scrolled .header__link:hover { color: var(--primary); opacity: 1; }
.header__cta {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.header.scrolled .header__cta {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}
.header__cta:hover { background: rgba(255,255,255,0.3); }
.header.scrolled .header__cta:hover { background: var(--primary); border-color: var(--primary); }
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--dark); }

/* ===================== MOBILE MENU OVERLAY (rich) ===================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-menu);
    z-index: 1001;
    flex-direction: column;
    padding: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}
.mobile-menu.active { display: flex; opacity: 1; pointer-events: all; }

.mobile-menu__header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    padding: 0 4vw;
    position: relative;
    flex-shrink: 0;
}
.mobile-menu__logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
}
.mobile-menu__logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}
.mobile-menu__close {
    position: absolute;
    left: 4vw;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    z-index: 100010;
}

.mobile-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 6vw;
    gap: 0;
}
.mobile-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
}
.mobile-menu__link:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu__link:hover { color: var(--primary-light); }
.mobile-menu__link .arrow {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s;
}

.mobile-menu__group {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__group:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.mobile-menu__toggle .arrow {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s;
}
.mobile-menu__toggle.active .arrow i {
    transform: rotate(180deg);
}
.mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.mobile-menu__toggle.active + .mobile-menu__sub {
    max-height: 700px;
}
.mobile-menu__sublink {
    display: block;
    padding: 0.7rem 0 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.mobile-menu__sublink:hover {
    color: var(--white);
}

.mobile-menu__footer {
    padding: 1.5rem 6vw 2.5rem;
    flex-shrink: 0;
}
.mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 12px 24px;
    background: var(--bg-cream);
    color: var(--dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-menu__cta:hover { background: var(--white); }

/* Hide hamburger when menu is open */
body:has(.mobile-menu.active) .hamburger,
body.menu-open .hamburger {
    opacity: 0;
    pointer-events: none;
}
body:has(.mobile-menu.active) .header,
body.menu-open .header {
    pointer-events: none;
}
body:has(.mobile-menu.active) .header__logo,
body.menu-open .header__logo {
    pointer-events: auto;
}

.treat-hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    background: #1a1a1a;
    text-align: left;
    overflow: hidden;
}
.treat-hero__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
.treat-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.35) 55%,
        rgba(0,0,0,0.10) 100%
    );
    z-index: 1;
}
.treat-hero__inner {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 4vw 9rem;
    max-width: 750px;
    margin: 0;
}
.treat-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.treat-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    line-height: 1.7;
}

.treat-subnav {
    position: sticky;
    top: 100px;
    z-index: 100;
    background: #f8f5f0;
    border-bottom: 1px solid rgba(139,115,85,0.18);
}
.treat-subnav__inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 1.5rem;
}
.treat-subnav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b5a45;
    padding: 0.55rem 1.1rem;
    border-radius: 40px;
    border: 1.5px solid transparent;
    transition: all 0.22s ease;
    white-space: nowrap;
    text-decoration: none;
}
.treat-subnav__link i {
    font-size: 0.75rem;
    opacity: 0.8;
}
.treat-subnav__link:hover {
    background: rgba(139,115,85,0.09);
    border-color: rgba(139,115,85,0.25);
    color: #8b7355;
}
.treat-subnav__link.active {
    background: #8b7355;
    border-color: #8b7355;
    color: #fff;
}
.treat-subnav__link.active i {
    opacity: 1;
}

.breadcrumb {
    padding: 1.5rem 4vw;
    font-size: 0.78rem;
    color: var(--text-light);
    max-width: 1200px;
    margin: 0 auto;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

.treat-section {
    padding: 4rem 4vw;
    max-width: 1200px;
    margin: 0 auto;
}
.treat-desc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-cream);
    padding: 4rem 4vw;
    max-width: 100%;
}
.treat-desc-split__content {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 2vw;
}
.treat-desc-split__img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .treat-desc-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 4vw;
    }
    .treat-desc-split__content {
        padding-left: 0;
    }
    .treat-desc-split__img {
        min-height: 250px;
    }
}
.treat-section--bg {
    max-width: 100%;
    background: var(--bg-cream);
}
.treat-section--bg .treat-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4vw;
}
.treat-section--dark {
    max-width: 100%;
    background: var(--dark);
    color: var(--white);
}
.treat-section--dark .treat-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4vw;
}
.treat-section__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}
.treat-section--dark .treat-section__label {
    color: var(--gold);
}
.treat-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #8b7355 0%, #8b7355 var(--title-fill, 0%), #1a1a1a var(--title-fill, 0%), #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.treat-section--dark .treat-section__title {
    background: linear-gradient(90deg, #c4a87c 0%, #c4a87c var(--title-fill, 0%), #ffffff var(--title-fill, 0%), #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.treat-section__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
    max-width: 900px;
}
.treat-section--dark .treat-section__text {
    color: rgba(255,255,255,0.8);
}

.treat-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.treat-columns--3 {
    grid-template-columns: repeat(3, 1fr);
}
.treat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.treat-card--link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.treat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.treat-card--link:hover .treat-card__title {
    color: var(--primary);
}
.treat-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-size: 1.2rem;
}
.treat-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.8rem;
}
.treat-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
}

.treat-list {
    margin: 1.5rem 0;
    padding-left: 0;
}
.treat-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
}
.treat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.treat-section--dark .treat-list li {
    color: rgba(255,255,255,0.8);
}
.treat-section--dark .treat-list li::before {
    background: var(--gold);
}

.treat-list li strong {
    color: var(--dark);
    font-weight: 600;
}
.treat-section--dark .treat-list li strong {
    color: var(--white);
}

.treat-faq {
    max-width: 800px;
    margin: 0 auto;
}
.treat-faq__item {
    border-bottom: 1px solid var(--border);
}
.treat-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
}
.treat-faq__icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}
.treat-faq__item.active .treat-faq__icon {
    transform: rotate(45deg);
}
.treat-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.treat-faq__answer p {
    padding-bottom: 1.3rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
}

.treat-cta {
    text-align: center;
    padding: 5rem 4vw;
    background: var(--primary);
    color: var(--white);
}
.treat-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
}
.treat-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn--white {
    background: var(--white);
    color: var(--dark);
}
.btn--white:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
}
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
}
.btn--dark {
    background: var(--dark);
    color: var(--white);
}
.btn--dark:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 5rem 4vw 2rem;
}
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer__logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}
.footer__text {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer__social {
    display: flex;
    gap: 1rem;
}
.footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer__social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer__link {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding: 0.3rem 0;
}
.footer__link:hover { color: var(--primary-light); }
.footer__legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__legal-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer__legal-link:hover {
    color: rgba(255,255,255,0.7);
}
.footer__bottom {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    padding-top: 1.2rem;
}

.chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 900;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.chat-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.chat-btn.active {
    background: var(--primary);
}

.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 47, 44, 0.97);
    z-index: 100004;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}
.chat-overlay.active {
    opacity: 1;
    visibility: visible;
}
.chat-overlay__title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 2rem;
}
.chat-overlay__options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
}
.chat-overlay__link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.4rem 0;
}
.chat-overlay__link:hover {
    color: #fff;
}
.chat-overlay__link .arrow {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #c4a87c);
    z-index: 100000;
    transition: width 0.05s linear;
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {

    position: fixed;
    bottom: 5.5rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ===================== COOKIE CONSENT ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    color: rgba(255,255,255,0.85);
    padding: 1.5rem 4vw;
    z-index: 100001;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-family: var(--font-body);
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: cookieSlideUp 0.5s ease-out;
}
.cookie-banner.active {
    display: flex;
}
.cookie-banner__text {
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 700px;
}
.cookie-banner__text a {
    color: var(--primary-light);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}
.cookie-banner__btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}
.cookie-banner__btn--accept {
    background: var(--primary);
    color: var(--white);
}
.cookie-banner__btn--accept:hover {
    background: var(--primary-dark);
}
.cookie-banner__btn--reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-banner__btn--reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ===================== IMAGE LAZY LOAD ===================== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.55); }
}

@media (max-width: 768px) {
    .header__nav { display: none; }
    .hamburger { display: flex; }
    .header { padding: 0 4vw; }
    .header__inner { height: 64px; }
    .header__logo img { height: 56px; }
    .treat-hero { min-height: 480px; }
    .treat-hero__inner { padding: 0 5vw 6rem; }
    .treat-hero__title { font-size: 2rem; }
    .treat-subnav { top: 64px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); background: #fff; }
    .treat-subnav__inner {
        overflow-x: auto;
        gap: 0.4rem;
        justify-content: flex-start;
        padding: 0.55rem 1rem;
        scrollbar-width: none;
        scroll-padding-inline: 1rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }
    .treat-subnav__inner::-webkit-scrollbar { display: none; }
    .treat-subnav__link {
        font-size: 0.7rem;
        padding: 0.5rem 0.95rem;
        letter-spacing: 0.04em;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .treat-subnav__link i { display: none; }
    .treat-columns { grid-template-columns: 1fr; gap: 1.5rem; }
    .treat-columns--3 { grid-template-columns: 1fr; }
    .treat-section { padding: 3rem 4vw; }
    .treat-section--bg .treat-section__inner,
    .treat-section--dark .treat-section__inner { padding: 3rem 4vw; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .treat-cta { padding: 3rem 4vw; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; }
    .back-to-top {
 bottom: 5rem; left: 1rem; width: 40px; height: 40px; }
    .whatsapp-float { bottom: 1.5rem; left: 1.5rem; width: 46px; height: 46px; font-size: 1.3rem; }
}

/* ===== HERO CTA BUTTONS ===== */
.treat-hero__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.treat-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}
.treat-hero__btn--wa {
    background: rgba(37,211,102,0.18);
    border: 1.5px solid rgba(37,211,102,0.7);
    color: #fff;
    backdrop-filter: blur(6px);
}
.treat-hero__btn--wa:hover {
    background: rgba(37,211,102,0.35);
    border-color: #25d366;
    color: #fff;
    transform: translateY(-2px);
}
.treat-hero__btn--outline {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    backdrop-filter: blur(6px);
}
.treat-hero__btn--outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== MID-PAGE CTA BAND ===== */
.treat-cta-band {
    background: #8b7355;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.treat-cta-band__text {
    color: #f0ebe3;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.02em;
}
.treat-cta-band__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 40px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.treat-cta-band__btn:hover {
    background: rgba(255,255,255,0.28);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== DUAL CTA BUTTONS ===== */
.treat-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
.btn--outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 40px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .treat-hero__actions { gap: 0.75rem; }
    .treat-hero__btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .treat-cta-band { flex-direction: column; gap: 1rem; text-align: center; padding: 1.25rem 1.5rem; }
    .treat-cta__actions { flex-direction: column; align-items: center; }
    .btn--outline-white { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================
   LANGUAGE SWITCHER (ginecologia-principal treatment pages)
============================================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
}
.lang-switcher__btn {
    background: none;
    border: 1px solid transparent;
    color: inherit;
    font-size: 0.72rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 5px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s, border-color 0.2s;
    text-transform: uppercase;
    line-height: 1;
}
.lang-switcher__btn:hover { opacity: 0.9; border-color: currentColor; }
.lang-switcher__btn.active { opacity: 1; border-color: currentColor; font-weight: 700; }
.mobile-menu .lang-switcher {
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu .lang-switcher__btn { color: #fff; font-size: 0.8rem; padding: 4px 7px; }
@media (max-width: 768px) {
    .lang-switcher { gap: 1px; }
    .lang-switcher__btn { font-size: 0.68rem; padding: 2px 4px; }
}
.header__inner .lang-switcher {
    position: relative;
    margin-left: 0.8rem;
    z-index: 10;
}
@media (max-width: 768px) {
    .header__inner .lang-switcher {
        display: none;
    }
}
