/* ═══════════════════════════════════════════
           DESIGN TOKENS
           ═══════════════════════════════════════════ */
        :root {
            --cream: #F5F0EB;
            --cream-light: #FAF8F5;
            --gold: #C9A96E;
            --gold-light: #D4BC8B;
            --gold-dark: #A8894F;
            --charcoal: #2A2A2A;
            --charcoal-soft: #3D3D3D;
            --sage: #8B9D83;
            --sage-light: #A8B8A0;
            --white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-body: #4A4A4A;
            --text-muted: #7A7A7A;

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* ═══════════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════════ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            color: var(--text-body);
            background: var(--cream-light);
            overflow-x: hidden;
            line-height: 1.7;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        button { border: none; background: none; cursor: pointer; font-family: inherit; }

        /* ═══════════════════════════════════════════
           UTILITY
           ═══════════════════════════════════════════ */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 4rem);
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .section-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: var(--charcoal);
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .gold-line {
            width: 60px;
            height: 1.5px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            margin: 1.5rem 0;
        }

        /* ═══════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.5s var(--ease-out-expo);
        }
        .nav-logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.4s ease;
        }
        .nav.scrolled .nav-logo-img {
            filter: none;
        }
        .nav.scrolled {
            background: rgba(250, 248, 245, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 0;
            box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 4rem);
        }
        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: 0.15em;
            color: var(--charcoal);
            text-transform: uppercase;
        }
        .nav-logo span {
            color: var(--gold);
            font-weight: 300;
        }
        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--charcoal-soft);
            position: relative;
            transition: color 0.3s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s var(--ease-out-expo);
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 28px;
            padding: 4px 0;
        }
        .nav-hamburger span {
            height: 1.5px;
            background: var(--charcoal);
            transition: all 0.4s var(--ease-out-expo);
            transform-origin: center;
        }
        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 5px);
        }
        .nav-hamburger.active span:nth-child(2) { opacity: 0; }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -5px);
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--cream-light);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s var(--ease-out-expo);
        }
        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--charcoal);
            letter-spacing: 0.05em;
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--gold); }

        /* ═══════════════════════════════════════════
           HERO CAROUSEL
           ═══════════════════════════════════════════ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            background: #0a0a0a;
        }

        /* Slides */
        .hero-slides {
            position: absolute;
            inset: 0;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.4s ease;
            will-change: opacity;
        }
        .hero-slide.active { opacity: 1; }
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            filter: brightness(0.38) contrast(1.1) saturate(0.85);
            transform: scale(1.05);
            animation: kenBurns 8s ease-out forwards;
        }
        .hero-slide.active img {
            animation: kenBurns 8s ease-out forwards;
        }
        .hero-slide:nth-child(4) img {
            object-position: center 60%;
        }
        @keyframes kenBurns {
            0% { transform: scale(1.12); }
            100% { transform: scale(1.0); }
        }

        /* Overlay grain texture */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 2;
            opacity: 0.5;
        }

        /* Gradient overlays for text readability */
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.65) 100%),
                linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 60%);
        }

        /* Content */
        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 3;
            padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(5rem, 10vh, 8rem);
            max-width: 1400px;
            margin: 0 auto;
        }
        .hero-eyebrow {
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeUp 1s var(--ease-out-expo) 0.3s forwards;
        }
        .hero-eyebrow::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 6vw, 5.5rem);
            font-weight: 300;
            line-height: 1.05;
            color: #fff;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            max-width: 750px;
            text-shadow: 0 2px 40px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateY(30px);
            animation: heroFadeUp 1.2s var(--ease-out-expo) 0.5s forwards;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--gold-light);
            font-weight: 300;
        }
        .hero-desc {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.65);
            max-width: 480px;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeUp 1s var(--ease-out-expo) 0.8s forwards;
        }
        .hero-actions {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeUp 1s var(--ease-out-expo) 1s forwards;
        }
        @keyframes heroFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2.2rem;
            background: var(--gold);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold-dark);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s var(--ease-out-expo);
        }
        .btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
        .btn-primary span { position: relative; z-index: 1; }
        .btn-primary svg { position: relative; z-index: 1; transition: transform 0.3s; }
        .btn-primary:hover svg { transform: translateX(4px); }

        .btn-secondary {
            font-size: 0.72rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            padding: 1rem 0.5rem;
            position: relative;
            transition: color 0.3s;
        }
        .btn-secondary::after {
            content: '';
            position: absolute;
            bottom: 0.7rem; left: 0.5rem;
            width: calc(100% - 1rem);
            height: 1px;
            background: var(--gold-light);
            transform: scaleX(0.4);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out-expo);
        }
        .btn-secondary:hover { color: var(--gold-light); }
        .btn-secondary:hover::after { transform: scaleX(1); }

        /* Carousel navigation */
        .hero-nav {
            position: absolute;
            bottom: clamp(2rem, 5vh, 3.5rem);
            right: clamp(2rem, 5vw, 6rem);
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .hero-nav-dots {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        .hero-nav-dot {
            width: 32px;
            height: 10px;
            background: rgba(255,255,255,0.25);
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }
        .hero-nav-dot::after {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 0;
            background: var(--gold);
            transition: width 0.3s;
        }
        .hero-nav-dot.active {
            background: rgba(255,255,255,0.15);
        }
        .hero-nav-dot.active::after {
            animation: dotProgress 7s linear forwards;
        }
        @keyframes dotProgress {
            from { width: 0; }
            to { width: 100%; }
        }
        .hero-nav-counter {
            font-family: var(--font-display);
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.1em;
            min-width: 3.5em;
            text-align: right;
        }
        .hero-nav-counter .current {
            color: var(--gold-light);
            font-size: 1.1rem;
        }

        /* Scroll indicator */
        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            z-index: 5;
        }
        .hero-scroll span {
            font-size: 0.55rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            writing-mode: vertical-lr;
        }
        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.12);
            position: relative;
            overflow: hidden;
        }
        .hero-scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            animation: scrollLine 2.5s var(--ease-out-expo) infinite;
        }
        @keyframes scrollLine {
            0% { top: -100%; }
            50% { top: 100%; }
            100% { top: 100%; }
        }

        /* Nav override for dark hero */
        .nav:not(.scrolled) .nav-logo { color: var(--cream); }
        .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.75); }
        .nav:not(.scrolled) .nav-links a:hover { color: var(--gold-light); }
        .nav:not(.scrolled) .nav-hamburger span { background: rgba(255,255,255,0.8); }

        /* ═══════════════════════════════════════════
           ABOUT / DOCTOR
           ═══════════════════════════════════════════ */
        .about {
            padding: clamp(3rem, 6vw, 5.5rem) 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .about-inner {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(3rem, 6vw, 6rem);
            align-items: center;
        }
        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            position: relative;
        }
        .about-img-1 {
            grid-row: 1 / 3;
            aspect-ratio: 3/4;
            overflow: hidden;
        }
        .about-img-1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-out-expo);
        }
        .about-img-1:hover img { transform: scale(1.04); }
        .about-images-accent {
            position: absolute;
            bottom: -1.5rem; left: -1.5rem;
            width: 100px;
            height: 100px;
            border-left: 1px solid var(--gold-light);
            border-bottom: 1px solid var(--gold-light);
            opacity: 0.5;
        }
        .about-content {
            max-width: 500px;
        }
        .about-content p {
            font-size: 0.95rem;
            color: var(--text-body);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            padding: 1.6rem 0;
            border-top: 1px solid rgba(201, 169, 110, 0.2);
            border-bottom: 1px solid rgba(201, 169, 110, 0.2);
            margin-top: 2.5rem;
            margin-bottom: 2rem;
        }
        .about-stat {
            display: flex;
            flex-direction: column;
        }
        .about-stat-num {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            letter-spacing: -0.01em;
            margin-bottom: 0.4rem;
        }
        .about-stat-label {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
            line-height: 1.4;
        }
        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1.05rem 1.6rem;
            background: transparent;
            color: var(--gold);
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid rgba(201, 169, 110, 0.4);
            transition: border-color 0.3s, color 0.3s, background 0.3s;
        }
        .about-cta::after { display: none; }
        .about-cta svg {
            transition: transform 0.3s;
        }
        .about-cta:hover {
            border-color: var(--gold-light);
            color: var(--gold-light);
            background: rgba(201, 169, 110, 0.04);
        }
        .about-cta:hover svg {
            transform: translateX(4px);
        }

        /* ═══════════════════════════════════════════
           PROCEDURES
           ═══════════════════════════════════════════ */
        .procedures {
            padding: clamp(3rem, 6vw, 5.5rem) 0;
            background: var(--cream);
            position: relative;
        }
        .procedures-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .procedures-header .section-label {
            justify-content: center;
        }
        .procedures-header .section-label::before { display: none; }
        .procedures-header .section-label::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }
        .procedures-header .section-title {
            max-width: 600px;
            margin: 0 auto;
        }
        .procedures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .procedure-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
            cursor: default;
            group: true;
        }
        .procedure-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s var(--ease-out-expo);
        }
        .procedure-card:hover::before { transform: scaleX(1); }
        .procedure-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.06);
        }
        .procedure-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        .procedure-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
            letter-spacing: 0.02em;
        }
        .procedure-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }
        .procedure-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.2rem;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.4s var(--ease-out-expo);
        }
        .procedure-card:hover .procedure-card-link {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════════
           CLINIC GALLERY
           ═══════════════════════════════════════════ */
        .clinic {
            padding: clamp(3rem, 6vw, 5.5rem) 0;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }
        .clinic::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
            opacity: 0.3;
        }
        .clinic .section-label { color: var(--gold-light); }
        .clinic .section-title { color: var(--cream); }
        .clinic-desc {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.5);
            max-width: 480px;
            font-weight: 300;
            margin-bottom: 3.5rem;
        }
        .clinic-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto;
            gap: 1rem;
        }
        .clinic-gallery-item {
            overflow: hidden;
            position: relative;
        }
        .clinic-gallery-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
        }
        .clinic-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
            transition: transform 0.8s var(--ease-out-expo);
            filter: brightness(0.9);
        }
        .clinic-gallery-item:nth-child(1) img {
            aspect-ratio: auto;
            min-height: 100%;
        }
        .clinic-gallery-item:hover img {
            transform: scale(1.05);
            filter: brightness(1);
        }
        /* ═══════════════════════════════════════════
           TECHNOLOGIES
           ═══════════════════════════════════════════ */
        .technologies {
            padding: clamp(3rem, 6vw, 5.5rem) 0;
            background: var(--white);
            overflow: hidden;
        }
        .technologies-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: end;
            margin-bottom: 4rem;
        }
        .technologies-header-right {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 300;
            max-width: 420px;
            justify-self: end;
        }
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: rgba(201, 169, 110, 0.15);
            border: 1px solid rgba(201, 169, 110, 0.15);
        }
        .tech-item {
            background: var(--white);
            padding: 2.5rem 2rem;
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
        }
        .tech-item:hover {
            background: var(--cream-light);
        }
        .tech-item-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 300;
            color: rgba(201, 169, 110, 0.8);
            line-height: 1;
            margin-bottom: 1rem;
        }
        .tech-item h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.7rem;
        }
        .tech-item p {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════
           TESTIMONIAL / DIFFERENTIALS
           ═══════════════════════════════════════════ */
        .differentials {
            padding: clamp(3rem, 6vw, 5rem) 0;
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }
        .differentials::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            border-radius: 50%;
            border: 1px solid rgba(201, 169, 110, 0.08);
        }
        .differentials::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 1px solid rgba(201, 169, 110, 0.06);
        }
        .differentials-inner {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .differentials .section-label {
            justify-content: center;
        }
        .differentials .section-label::before { display: none; }
        .differentials-quote {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 300;
            font-style: italic;
            color: var(--charcoal);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.5;
        }
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .diff-item {
            text-align: center;
        }
        .diff-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 1rem;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: all 0.4s var(--ease-out-expo);
        }
        .diff-item:hover .diff-icon {
            background: var(--gold);
            color: var(--white);
            border-color: var(--gold);
        }
        .diff-item h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.3rem;
        }
        .diff-item p {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* ═══════════════════════════════════════════
           MÍDIA / ENTREVISTAS
           ═══════════════════════════════════════════ */
        .media {
            padding: clamp(3rem, 6vw, 5rem) 0;
            background: var(--off-white, #f8f7f4);
        }
        .media-years {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .media-year-btn {
            padding: 0.6rem 1.4rem;
            border: 1px solid rgba(184, 151, 106, 0.25);
            border-radius: 8px;
            background: transparent;
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--text-muted, #888);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 80px;
        }
        .media-year-btn:hover {
            border-color: var(--gold, #b8976a);
            color: var(--gold, #b8976a);
        }
        .media-year-btn.active {
            background: var(--gold, #b8976a);
            border-color: var(--gold, #b8976a);
            color: #fff;
            font-weight: 500;
        }
        .media-panels {
            margin-top: 2rem;
        }
        .media-year-panel {
            display: none;
        }
        .media-year-panel.active { display: block; }
        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .media-card {
            background: var(--white, #fff);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .media-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        .media-card-thumb {
            position: relative;
            cursor: pointer;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #1a1a1a;
        }
        .media-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .media-card:hover .media-card-thumb img {
            transform: scale(1.05);
        }
        .media-card-thumb .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.45);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        .media-card-thumb:hover .play-icon {
            background: rgba(0, 0, 0, 0.65);
        }
        .media-card-thumb .play-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
            margin-left: 3px;
        }
        .media-card video {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1a1a1a;
            display: block;
        }
        button.media-card-thumb {
            display: block;
            width: 100%;
            padding: 0;
            border: 0;
            background: #1a1a1a;
            color: inherit;
            font: inherit;
            text-align: left;
        }

        /* ── YouTube lightbox ────────────────────────── */
        html.yt-lightbox-open { overflow: hidden; }
        .yt-lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(1rem, 4vw, 3rem);
        }
        .yt-lightbox[hidden] { display: none; }
        .yt-lightbox-backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            padding: 0;
            margin: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            cursor: pointer;
            animation: yt-fade 0.18s ease both;
        }
        .yt-lightbox-frame {
            position: relative;
            width: min(1100px, 100%);
            max-height: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            animation: yt-rise 0.22s ease both;
        }
        .yt-lightbox-close {
            position: absolute;
            top: -2.6rem;
            right: 0;
            width: 2.25rem;
            height: 2.25rem;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        .yt-lightbox-close:hover,
        .yt-lightbox-close:focus-visible { background: rgba(255, 255, 255, 0.25); }
        .yt-lightbox-close svg { width: 1.1rem; height: 1.1rem; }
        .yt-lightbox-player {
            position: relative;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
        }
        .yt-lightbox-player iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .yt-lightbox-title {
            color: #fff;
            font-family: var(--font-display);
            font-size: clamp(0.9rem, 1.4vw, 1.05rem);
            font-weight: 400;
            letter-spacing: 0.02em;
            margin: 0;
            text-align: center;
            opacity: 0.85;
        }
        @keyframes yt-fade { from { opacity: 0; } to { opacity: 1; } }
        @keyframes yt-rise {
            from { opacity: 0; transform: translateY(10px) scale(0.985); }
            to   { opacity: 1; transform: none; }
        }
        @media (max-width: 640px) {
            .yt-lightbox-close { top: -2.4rem; right: 0.25rem; }
            .yt-lightbox-title { display: none; }
        }
        .media-card-info {
            padding: 1rem 1.25rem;
        }
        .media-card-info h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            color: var(--text, #1a1a1a);
            margin-bottom: 0.35rem;
            line-height: 1.4;
        }
        .media-card-info .media-source {
            font-size: 0.75rem;
            color: var(--text-muted, #888);
            font-weight: 300;
        }
        .media-card-info .media-date {
            font-size: 0.72rem;
            color: var(--gold, #b8976a);
            font-weight: 400;
            margin-top: 0.25rem;
        }
        @media (max-width: 768px) {
            .media-years { gap: 0.5rem; }
            .media-year-btn { min-width: auto; padding: 0.5rem 1rem; font-size: 0.8rem; }
            .media-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════
           CONTACT / CTA
           ═══════════════════════════════════════════ */
        .contact {
            position: relative;
            padding: 0;
            background: var(--white);
            overflow: hidden;
        }
        .contact-map-bg {
            width: 100%;
            height: 620px;
        }
        .contact-glass {
            position: absolute;
            top: 50%;
            left: clamp(2rem, 6vw, 6rem);
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(24px) saturate(1.2);
            -webkit-backdrop-filter: blur(24px) saturate(1.2);
            border-radius: 16px;
            padding: 2.5rem 2.5rem 2rem;
            max-width: 480px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5);
        }
        .contact-glass h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
            margin-top: 1.5rem;
        }
        .contact-glass h3:first-of-type { margin-top: 1.2rem; }
        .contact-glass p, .contact-glass a {
            font-size: 0.88rem;
            color: var(--text-muted);
            font-weight: 300;
        }
        .contact-glass a:hover { color: var(--gold); }
        @media (max-width: 768px) {
            .contact-map-bg { height: 700px; }
            .contact-glass {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: -6rem auto 2rem;
                max-width: calc(100% - 2rem);
            }
        }

        /* ═══════════════════════════════════════════
           WHATSAPP FLOAT
           ═══════════════════════════════════════════ */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            align-items: center;
            gap: 0.65rem;
            z-index: 900;
            text-decoration: none;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .whatsapp-float.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .whatsapp-float:hover { transform: translateY(-2px); }
        .whatsapp-float-label {
            color: #111;
            font-family: var(--font-display);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
            order: -1;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .whatsapp-float-icon {
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
            flex-shrink: 0;
            transition: box-shadow 0.3s var(--ease-out-expo);
        }
        .whatsapp-float:hover .whatsapp-float-icon {
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
        }
        .whatsapp-float-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }
        @media (max-width: 480px) {
            .whatsapp-float-label { display: none; }
        }

        /* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */
        .footer {
            background: var(--charcoal);
            padding: 4rem 0 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-brand .nav-logo {
            color: var(--cream);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: block;
        }
        .footer-brand p {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.4);
            font-weight: 300;
            line-height: 1.7;
            max-width: 300px;
        }
        .footer h4 {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 1.2rem;
            font-weight: 500;
        }
        .footer ul { list-style: none; }
        .footer ul li { margin-bottom: 0.6rem; }
        .footer ul a {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.4);
            font-weight: 300;
            transition: color 0.3s;
        }
        .footer ul a:hover { color: var(--gold-light); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
        }
        .footer-bottom p {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.25);
            font-weight: 300;
        }
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.4);
            transition: all 0.3s;
        }
        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .about-inner { grid-template-columns: 1fr; }
            .about-images { max-width: 500px; }
            .technologies-header { grid-template-columns: 1fr; gap: 1rem; }
            .technologies-header-right { justify-self: start; }
            .tech-grid { grid-template-columns: repeat(2, 1fr); }
            .clinic-gallery { grid-template-columns: repeat(2, 1fr); }
            .clinic-gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
            .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .diff-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .mobile-menu { display: flex; }

            .hero { min-height: 100vh; }
            .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
            .hero-desc { display: none; }
            .hero-eyebrow { display: none; }
            .hero-scroll { display: none; }
            .hero-nav { right: 1.5rem; bottom: 1.5rem; }

            .procedures-grid { grid-template-columns: 1fr; }
            .tech-grid { grid-template-columns: 1fr; }
            .clinic-gallery { grid-template-columns: 1fr 1fr; }
            .clinic-gallery-item:nth-child(1) { grid-column: 1 / 3; }
            .footer-inner { grid-template-columns: auto 1fr; }
            .footer-brand { grid-column: 1 / -1; }
            .footer-inner > div:last-child { grid-column: 1 / -1; }
            .diff-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-wrap: wrap; gap: 1rem; }
        }

        @media (max-width: 480px) {
            .about-images { grid-template-columns: 1fr; }
            .clinic-gallery { grid-template-columns: 1fr; }
            .clinic-gallery-item:nth-child(1) { grid-column: auto; }
            .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
        }

        /* ═══════════════════════════════════════════
           SOBRE DRAWER PANEL
           ═══════════════════════════════════════════ */
        .sobre-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s var(--ease-out-expo);
        }
        .sobre-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .sobre-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 65%;
            height: 100vh;
            background: rgba(250, 248, 245, 0.98);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 2600;
            transform: translateX(100%);
            transition: transform 0.7s var(--ease-out-expo);
            border-left: 1px solid var(--gold);
            box-shadow: -30px 0 80px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            overflow-x: hidden;
        }
        .sobre-drawer.active {
            transform: translateX(0);
        }

        /* Custom scrollbar */
        .sobre-drawer::-webkit-scrollbar {
            width: 4px;
        }
        .sobre-drawer::-webkit-scrollbar-track {
            background: transparent;
        }
        .sobre-drawer::-webkit-scrollbar-thumb {
            background: var(--gold-light);
            border-radius: 4px;
        }

        .sobre-drawer-inner {
            padding: clamp(2rem, 5vw, 4rem);
        }

        /* Close button */
        .sobre-close {
            position: sticky;
            top: 0;
            display: flex;
            justify-content: flex-end;
            padding: 1.5rem 2rem;
            background: rgba(250, 248, 245, 0.9);
            backdrop-filter: blur(10px);
            z-index: 10;
        }
        .sobre-close button {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 50%;
            font-size: 1.1rem;
            color: var(--charcoal);
            transition: all 0.3s ease;
            background: transparent;
            cursor: pointer;
        }
        .sobre-close button:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: rotate(90deg);
        }

        /* Header */
        .sobre-header {
            margin-bottom: 2.5rem;
        }
        .sobre-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            color: var(--charcoal);
            line-height: 1.15;
            letter-spacing: -0.01em;
        }
        .sobre-header p {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        .sobre-header .gold-line {
            margin: 1.2rem 0 0 0;
        }

        /* Bio + Portrait Grid */
        .sobre-bio-portrait-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
            align-items: start;
        }

        /* Portrait */
        .sobre-portrait {
            position: relative;
        }
        .sobre-portrait img {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            object-position: top center;
            border-radius: 2px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        .sobre-portrait::after {
            content: '';
            position: absolute;
            top: 10px;
            right: -8px;
            bottom: -8px;
            left: 10px;
            border: 1px solid var(--gold-light);
            border-radius: 2px;
            z-index: -1;
            opacity: 0.4;
        }

        /* Bio */
        .sobre-bio {
            margin-bottom: 0;
        }
        .sobre-bio p {
            font-family: var(--font-body);
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-body);
            margin-bottom: 1.2rem;
        }

        /* Timeline */
        .sobre-timeline {
            margin-bottom: 2.5rem;
        }
        .sobre-timeline h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }
        .timeline-list {
            position: relative;
            padding-left: 2rem;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 5px;
            top: 8px;
            bottom: 8px;
            width: 1px;
            background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
        }
        .timeline-item {
            position: relative;
            padding-bottom: 1.5rem;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 8px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            background: var(--cream-light);
            z-index: 1;
        }
        .timeline-item .timeline-year {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--gold);
            text-transform: uppercase;
        }
        .timeline-item .timeline-desc {
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-top: 0.2rem;
        }

        /* Publications */
        .sobre-publications {
            margin-bottom: 2.5rem;
        }
        .sobre-publications h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }
        .pub-card {
            border-left: 3px solid var(--gold);
            padding: 1rem 1.2rem;
            margin-bottom: 1rem;
            background: rgba(201, 169, 110, 0.04);
            border-radius: 0 4px 4px 0;
            transition: background 0.3s ease;
        }
        .pub-card:hover {
            background: rgba(201, 169, 110, 0.08);
        }
        .pub-card .pub-title {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--charcoal);
            line-height: 1.5;
        }
        .pub-card .pub-journal {
            font-family: var(--font-body);
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
            font-style: italic;
        }

        /* Credentials */
        .sobre-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.5rem;
        }
        .credential-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 1rem;
            border: 1px solid rgba(201, 169, 110, 0.35);
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            color: var(--gold-dark);
            background: rgba(201, 169, 110, 0.06);
            white-space: nowrap;
        }

        /* Staggered content reveal */
        .sobre-section {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
        }
        .sobre-drawer.active .sobre-section {
            opacity: 1;
            transform: translateY(0);
        }
        .sobre-drawer.active .sobre-section:nth-child(1) { transition-delay: 0.15s; }
        .sobre-drawer.active .sobre-section:nth-child(2) { transition-delay: 0.25s; }
        .sobre-drawer.active .sobre-section:nth-child(3) { transition-delay: 0.35s; }
        .sobre-drawer.active .sobre-section:nth-child(4) { transition-delay: 0.45s; }
        .sobre-drawer.active .sobre-section:nth-child(5) { transition-delay: 0.55s; }
        .sobre-drawer.active .sobre-section:nth-child(6) { transition-delay: 0.65s; }
        .sobre-drawer.active .sobre-section:nth-child(7) { transition-delay: 0.75s; }

        /* Responsive drawer */
        @media (max-width: 1024px) {
            .sobre-drawer { width: 80%; }
        }
        @media (max-width: 768px) {
            .sobre-drawer { width: 100%; }
            .sobre-drawer-inner { padding: 1.5rem; }
            .sobre-close { padding: 1rem 1.5rem; }
            .sobre-portrait::after { display: none; }
            .sobre-bio-portrait-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .sobre-bio-portrait-grid .sobre-portrait {
                order: 1;
            }
            .sobre-bio-portrait-grid .sobre-bio {
                order: 2;
            }
        }

        /* ═══════════ REVIEWS — ribbon marquee ═══════════ */
        .reviews {
            padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4.5rem);
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }
        .reviews::before,
        .reviews::after {
            content: '';
            position: absolute;
            width: 520px; height: 520px;
            pointer-events: none;
            background: radial-gradient(closest-side, rgba(201,169,110,.16), transparent 70%);
        }
        .reviews::before { top: -180px; left: -220px; }
        .reviews::after  { bottom: -180px; right: -220px; }

        .reviews-spotlight {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 3.5rem;
            position: relative;
            z-index: 1;
            padding: 0 1.5rem;
        }
        .reviews-spotlight .section-label {
            justify-content: center;
            display: inline-flex;
        }
        .reviews-spotlight .section-title { margin-bottom: 2.2rem; }

        .reviews-stage {
            display: inline-flex;
            align-items: center;
            gap: 1.4rem;
            padding: 1.25rem 2rem;
            background: var(--white);
            border: 1px solid rgba(201,169,110,.24);
            border-radius: 999px;
            box-shadow: 0 22px 52px -32px rgba(42,42,42,.32);
        }
        .reviews-stage-num {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-weight: 300;
            color: var(--charcoal);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .reviews-stage-meta {
            display: flex; flex-direction: column; gap: 0.2rem;
            text-align: left;
        }
        .reviews-stage-stars {
            color: var(--gold);
            letter-spacing: 4px;
            font-size: 1rem;
        }
        .reviews-stage-source {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            letter-spacing: 0.04em;
        }
        .reviews-stage-source svg { width: 13px; height: 13px; }

        .reviews-ribbon {
            position: relative;
            padding: 0.85rem 0;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
                    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
        }
        .reviews-ribbon + .reviews-ribbon { margin-top: 0.5rem; }

        .marquee-track {
            display: flex;
            gap: 1.25rem;
            width: max-content;
            animation: marquee-left 62s linear infinite;
        }
        .reviews-ribbon:hover .marquee-track { animation-play-state: paused; }

        @keyframes marquee-left {
            from { transform: translate3d(0, 0, 0); }
            to   { transform: translate3d(-50%, 0, 0); }
        }
        .review-chip {
            flex: 0 0 auto;
            width: 360px;
            padding: 1.35rem 1.5rem;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid rgba(201,169,110,.16);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            transition: transform 0.45s var(--ease-out-expo),
                        border-color 0.4s ease,
                        box-shadow 0.5s ease;
        }
        .review-chip:hover {
            transform: translateY(-4px);
            border-color: rgba(201,169,110,.42);
            box-shadow: 0 20px 42px -28px rgba(42,42,42,.26);
        }
        .review-chip-head { display: flex; align-items: center; gap: 0.8rem; }
        .review-chip .review-avatar {
            width: 38px; height: 38px;
            font-size: 1rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--white);
            font-family: var(--font-display);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .review-chip-name {
            font-size: 0.92rem;
            color: var(--charcoal);
            font-weight: 500;
        }
        .review-chip-date { font-size: 0.76rem; color: var(--text-muted); }
        .review-chip-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; }
        .review-chip-text {
            font-size: 0.92rem;
            color: var(--text-body);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .review-chip-source {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .review-chip-source svg { width: 13px; height: 13px; }

        @media (prefers-reduced-motion: reduce) {
            .marquee-track, .marquee-track.reverse { animation: none; }
            .reviews-ribbon { overflow-x: auto; }
        }

        /* ═══════════════════════════════════════════
           INSTAGRAM
           ═══════════════════════════════════════════ */
        .instagram-section {
            padding: clamp(3rem, 6vw, 5rem) 0;
            background: var(--cream);
        }
        .instagram-header {
            text-align: center;
            margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
        }
        .instagram-header .section-label {
            justify-content: center;
        }
        .instagram-header .section-title {
            margin-top: 0.5rem;
        }
        .instagram-header .gold-line {
            margin: 1.25rem auto;
        }
        .instagram-subtitle {
            max-width: 560px;
            margin: 1rem auto 0;
            color: var(--text-body);
        }
        .instagram-handle {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.25rem;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            transition: color 0.3s ease, gap 0.3s var(--ease-out-expo);
        }
        .instagram-handle:hover {
            color: var(--gold-dark);
            gap: 0.75rem;
        }
        /* Let the plugin's own widget styles render; just constrain width */
        .instagram-feed {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Re-skin the plugin's "load more" button as a .btn-primary twin.
           Plugin selector is .ti-widget[data-wkey] .ti-nav-loadmore .ti-btn
           (spec 0,4,0) — match its chain to win the cascade without !important. */
        .instagram-feed .ti-widget[data-wkey] .ti-nav-loadmore {
            display: flex;
            justify-content: center;
            margin-top: 2.5rem;
        }
        .instagram-feed .ti-widget[data-wkey] .ti-nav-loadmore > .ti-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 2.2rem;
            background-color: var(--gold);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            border: none;
            border-radius: 0;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            box-shadow: none;
            outline: none;
            text-decoration: none;
            transition: background-color 0.4s var(--ease-out-expo), color 0.3s ease;
        }
        .instagram-feed .ti-widget[data-wkey] .ti-nav-loadmore > .ti-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: var(--gold-dark);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s var(--ease-out-expo);
            z-index: -1;
        }
        .instagram-feed .ti-widget[data-wkey] .ti-nav-loadmore > .ti-btn:hover {
            background-color: var(--gold);
            color: var(--cream-light);
            outline: none;
        }
        .instagram-feed .ti-widget[data-wkey] .ti-nav-loadmore > .ti-btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* ═══════════════════════════════════════════
           Sections with centered headers
           ═══════════════════════════════════════════ */
        .clinic > .container > .section-label,
        .media > .container > .section-label,
        .blog-latest > .container > .section-label {
            justify-content: center;
        }
        .clinic > .container > .section-title,
        .media > .container > .section-title,
        .blog-latest > .container > .section-title {
            text-align: center;
        }
        .clinic > .container > .clinic-desc,
        .media > .container > .gold-line,
        .blog-latest > .container > .gold-line {
            margin-left: auto;
            margin-right: auto;
        }
        .clinic > .container > .clinic-desc {
            text-align: center;
            max-width: 680px;
        }
        .blog-latest > .container > .blog-latest-cta {
            display: flex;
            justify-content: center;
        }

        /* ═══════════════════════════════════════════
           BLOG — shared utilities
           ═══════════════════════════════════════════ */
        .container-narrow {
            max-width: 720px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 4rem);
        }

        /* Shared card used by blog-latest, blog-index, blog-related */
        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }
        .blog-card-link {
            display: block;
            color: inherit;
        }
        .blog-card-thumb {
            aspect-ratio: 16/10;
            background: var(--cream);
            overflow: hidden;
        }
        .blog-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s var(--ease-out-quart);
        }
        .blog-card:hover .blog-card-thumb img {
            transform: scale(1.04);
        }
        .blog-card-info {
            padding: 1.25rem 1.4rem 1.5rem;
        }
        .blog-card-category {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.65rem;
        }
        .blog-card-title {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: 1.35rem;
            line-height: 1.3;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-card-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.04em;
        }

        .blog-latest-grid,
        .blog-index-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.75rem;
            margin-top: 2.5rem;
        }

        /* ═══════════════════════════════════════════
           BLOG — homepage teaser section
           ═══════════════════════════════════════════ */
        .blog-latest {
            padding: clamp(3rem, 6vw, 5rem) 0;
            background: var(--cream-light);
        }
        .blog-latest-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            margin-top: 2.5rem;
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--gold);
            transition: gap 0.3s var(--ease-out-expo), color 0.3s ease;
        }
        .blog-latest-cta:hover {
            gap: 0.9rem;
            color: var(--gold-dark);
        }
        .blog-latest-cta svg {
            transition: transform 0.3s var(--ease-out-expo);
        }
        .blog-latest-cta:hover svg {
            transform: translateX(3px);
        }

        /* ═══════════════════════════════════════════
           BLOG — index & archive
           ═══════════════════════════════════════════ */
        .blog-index {
            background: var(--cream-light);
            min-height: 60vh;
        }
        .blog-index-hero {
            padding: clamp(7rem, 14vw, 11rem) 0 clamp(2rem, 5vw, 4rem);
            background: var(--cream);
        }
        .blog-index-hero .section-title {
            margin-bottom: 1rem;
        }
        .blog-index-hero-desc {
            margin-top: 1.25rem;
            max-width: 640px;
            color: var(--text-body);
        }
        .blog-index-body {
            padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 8rem);
        }
        .blog-index-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .blog-index-filters::-webkit-scrollbar { display: none; }
        .blog-filter {
            display: inline-flex;
            align-items: center;
            padding: 0.55rem 1.2rem;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .blog-filter:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .blog-filter.is-active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
        }
        .blog-index-empty {
            text-align: center;
            padding: 4rem 0;
            color: var(--text-muted);
            font-style: italic;
        }

        /* Pagination */
        .blog-pagination {
            margin-top: 3.5rem;
        }
        .blog-pagination .nav-links,
        .blog-pagination .page-numbers {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .blog-pagination .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 2.4rem;
            height: 2.4rem;
            padding: 0 0.85rem;
            font-family: var(--font-display);
            font-size: 1.05rem;
            color: var(--charcoal);
            border: 1px solid transparent;
            border-radius: 8px;
            transition: all 0.25s ease;
        }
        .blog-pagination .page-numbers:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .blog-pagination .page-numbers.current {
            color: var(--gold);
            border-bottom: 1px solid var(--gold);
            border-radius: 0;
        }
        .blog-pagination .page-numbers.dots {
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════════
           BLOG — single post (one-column editorial)
           ═══════════════════════════════════════════ */
        .blog-single {
            background: var(--cream-light);
        }

        /* Featured-image hero */
        .blog-post-hero {
            position: relative;
            min-height: clamp(320px, 45vh, 460px);
            padding: clamp(6rem, 11vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
            background-color: var(--charcoal);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: flex-end;
            color: var(--cream-light);
            overflow: hidden;
            isolation: isolate;
        }
        .blog-post-hero.is-bare {
            background-image: linear-gradient(160deg, var(--charcoal-soft) 0%, var(--charcoal) 100%);
        }
        .blog-post-hero-scrim {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.8) 100%);
            pointer-events: none;
            z-index: 0;
        }
        .blog-post-hero > .container-narrow {
            position: relative;
            z-index: 1;
            width: 100%;
        }
        .blog-post-header {
            text-align: center;
        }
        .blog-post-header .section-label {
            justify-content: center;
        }
        .blog-post-header .section-label::before {
            display: none;
        }
        .blog-post-title {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(2.1rem, 5vw, 3.6rem);
            line-height: 1.15;
            letter-spacing: -0.01em;
            margin-bottom: 1.25rem;
        }
        .blog-post-header .gold-line {
            margin: 1.25rem auto;
        }
        .blog-post-meta {
            font-size: 0.82rem;
            letter-spacing: 0.06em;
        }

        /* Hero color treatment */
        .blog-post-hero .blog-post-title {
            color: var(--cream-light);
            text-shadow: 0 2px 20px rgba(0,0,0,0.35);
        }
        .blog-post-hero .blog-post-meta {
            color: rgba(245, 240, 235, 0.88);
        }
        .blog-post-hero .blog-post-category {
            color: var(--gold-light);
        }
        .blog-post-hero .blog-post-category:hover {
            color: var(--gold);
        }

        /* Article body under the hero */
        .blog-post {
            padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
        }

        /* Prose */
        .blog-post-content {
            font-family: var(--font-body);
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-body);
        }
        .blog-post-content > * + * { margin-top: 1.25rem; }
        .blog-post-content p { margin-top: 1.25rem; }
        .blog-post-content h2 {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            color: var(--charcoal);
            line-height: 1.25;
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
        }
        .blog-post-content h3 {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(1.3rem, 2.4vw, 1.6rem);
            color: var(--charcoal);
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        .blog-post-content a {
            color: var(--gold-dark);
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 3px;
        }
        .blog-post-content a:hover {
            color: var(--gold);
        }
        .blog-post-content ul,
        .blog-post-content ol {
            padding-left: 1.5rem;
        }
        .blog-post-content li + li {
            margin-top: 0.4rem;
        }
        .blog-post-content blockquote {
            margin: 2rem 0;
            padding: 0.5rem 0 0.5rem 1.5rem;
            border-left: 2px solid var(--gold);
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.2rem;
            color: var(--charcoal-soft);
        }
        .blog-post-content img,
        .blog-post-content figure {
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
        }
        .blog-post-content figcaption {
            font-size: 0.82rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 0.6rem;
            font-style: italic;
        }
        .blog-post-content hr {
            border: none;
            height: 1px;
            background: rgba(0,0,0,0.08);
            margin: 2.5rem 0;
        }
        .blog-post-content code {
            font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
            font-size: 0.9em;
            background: var(--cream);
            padding: 0.1em 0.35em;
            border-radius: 4px;
        }
        .blog-post-content pre {
            background: var(--charcoal);
            color: var(--cream-light);
            padding: 1.25rem;
            border-radius: 8px;
            overflow-x: auto;
            font-size: 0.88rem;
            line-height: 1.55;
        }
        .blog-post-content pre code {
            background: transparent;
            padding: 0;
            color: inherit;
        }

        /* Post footer */
        .blog-post-footer {
            margin-top: clamp(3rem, 6vw, 4.5rem);
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        .blog-post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .blog-tag {
            display: inline-block;
            padding: 0.35rem 0.9rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 999px;
            transition: all 0.25s ease;
        }
        .blog-tag:hover {
            color: var(--gold);
            border-color: var(--gold);
        }
        .blog-back {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            transition: gap 0.3s var(--ease-out-expo), color 0.3s ease;
        }
        .blog-back:hover {
            gap: 0.85rem;
            color: var(--gold-dark);
        }
        .blog-back svg {
            transition: transform 0.3s var(--ease-out-expo);
        }
        .blog-back:hover svg {
            transform: translateX(-3px);
        }

        /* Related posts band */
        .blog-related {
            background: var(--cream);
            padding: clamp(4rem, 8vw, 6rem) 0;
            margin-top: clamp(4rem, 8vw, 6rem);
        }
        .blog-related .section-label {
            margin-bottom: 0.75rem;
        }

        @media (max-width: 640px) {
            .blog-latest-grid,
            .blog-index-grid {
                grid-template-columns: 1fr;
            }
            .blog-post-footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* ═══════════════════════════════════════════
           FLIP-TAB — magazine page-flip ribbon
           Renders on both audience landings; toggles between
           / (feminine) and /masculino/ (masculine).
           ═══════════════════════════════════════════ */
        .flip-tab {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            z-index: 1100;
            display: flex;
            align-items: center;
            min-height: 96px;
            padding: 1rem 1.4rem 1rem 1.6rem;
            color: var(--cream);
            background: linear-gradient(135deg, #2A2A2A 0%, #1F2730 100%);
            box-shadow:
                -8px 12px 28px -10px rgba(0,0,0,0.45),
                inset 1px 0 0 rgba(255,255,255,0.06);
            transition: transform 0.5s var(--ease-out-expo), padding-right 0.5s var(--ease-out-expo);
            text-decoration: none;
            cursor: pointer;
            /* The "folded corner" silhouette */
            clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 calc(50% + 14px), 0 calc(50% - 14px));
        }
        .flip-tab:hover {
            padding-right: 2rem;
            transform: translateY(-50%) translateX(-4px);
        }
        .flip-tab--to-masculine {
            background: linear-gradient(135deg, #000000 0%, #1C1C1C 55%, #404040 100%);
            color: #FAFAFA;
            box-shadow:
                -8px 12px 28px -10px rgba(0, 0, 0, 0.6),
                inset 1px 0 0 rgba(255,255,255,0.08);
        }
        .flip-tab--to-feminine {
            background: linear-gradient(135deg, #FAF8F5 0%, #F5F0EB 60%, #D4BC8B 100%);
            color: #2A2A2A;
            box-shadow:
                -8px 12px 28px -10px rgba(168,137,79,0.35),
                inset 1px 0 0 rgba(255,255,255,0.7);
        }
        .flip-tab-fold {
            position: absolute;
            top: calc(50% - 14px);
            left: 0;
            width: 14px;
            height: 28px;
            background: linear-gradient(90deg, rgba(0,0,0,0.25), transparent);
            pointer-events: none;
        }
        .flip-tab-corner {
            display: none;
        }
        .flip-tab-content {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            align-items: flex-start;
            line-height: 1;
            position: relative;
            padding-left: 0.4rem;
        }
        .flip-tab-eyebrow {
            font-family: var(--font-body);
            font-size: 0.55rem;
            font-weight: 500;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            opacity: 0.7;
        }
        .flip-tab-label {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }
        .flip-tab-arrow {
            display: inline-block;
            transition: transform 0.4s var(--ease-out-expo);
            flex-shrink: 0;
        }
        .flip-tab:hover .flip-tab-arrow { transform: translateX(4px); }

        @media (max-width: 768px) {
            .flip-tab {
                top: auto;
                bottom: 96px;
                transform: none;
                min-height: auto;
                padding: 0.65rem 1rem 0.65rem 1.2rem;
                clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(50% + 10px), 0 calc(50% - 10px));
            }
            .flip-tab:hover { transform: translateX(-4px); }
            .flip-tab-eyebrow { display: none; }
            .flip-tab-label { font-size: 0.8rem; }
        }

        /* ═══════════════════════════════════════════
           AUDIENCE: MASCULINE — token overrides
           Black + grey palette. Pure black backgrounds, light grey accents
           and titles. Charcoal token is repurposed as TEXT color (light)
           so existing m-* selectors that use var(--charcoal) for titles
           remain readable. Dark backgrounds (clinic, footer, hero) use
           explicit hex values instead of the charcoal token.
           ═══════════════════════════════════════════ */
        body.audience-masculine {
            --cream:           #141414;   /* section alt bg */
            --cream-light:     #0A0A0A;   /* page bg */
            --gold:            #BFBFBF;   /* mid-light grey accent */
            --gold-light:      #E5E5E5;   /* light grey */
            --gold-dark:       #6B6B6B;   /* mid grey */
            --sage:            #8C8C8C;
            --sage-light:      #A6A6A6;
            --charcoal:        #FAFAFA;   /* TEXT color (titles) — light in dark mode */
            --charcoal-soft:   #C8C8C8;
            --text-body:       #A8A8A8;
            --text-muted:      #6E6E6E;
            --text-dark:       #FAFAFA;
            background: #0A0A0A;
            color: var(--text-body);
        }

        /* Inherited section overrides — masculine */
        body.audience-masculine .nav.scrolled {
            background: rgba(10, 10, 10, 0.50);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
        }
        body.audience-masculine .nav.scrolled .nav-logo-img { filter: brightness(0) invert(1); }
        body.audience-masculine .nav-links a { color: rgba(250, 250, 250, 0.78); }
        body.audience-masculine .nav-links a:hover { color: var(--gold-light); }
        body.audience-masculine .nav-links a::after { background: var(--gold-light); }
        body.audience-masculine .nav.scrolled .nav-hamburger span { background: var(--gold-light); }

        body.audience-masculine .section-title { color: var(--text-dark); }
        body.audience-masculine .section-label { color: var(--gold); }
        body.audience-masculine .section-label::before { background: var(--gold); }
        body.audience-masculine .gold-line {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
        }

        /* Clinic — pure black moment, separated from the off-black sections. */
        body.audience-masculine .clinic { background: #000000; }
        body.audience-masculine .clinic .section-label { color: var(--gold-light); }
        body.audience-masculine .clinic .section-title { color: #fff; }
        body.audience-masculine .clinic-desc { color: rgba(255,255,255,0.6); }

        body.audience-masculine .reviews { background: var(--cream); }
        body.audience-masculine .reviews::before,
        body.audience-masculine .reviews::after {
            background: radial-gradient(closest-side, rgba(255,255,255,0.05), transparent 70%);
        }
        body.audience-masculine .reviews-stage {
            background: #1C1C1C;
            border-color: rgba(255,255,255,0.12);
            box-shadow: 0 22px 52px -32px rgba(0,0,0,0.6);
        }
        body.audience-masculine .reviews-stage-num { color: var(--text-dark); }
        body.audience-masculine .review-chip {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }
        body.audience-masculine .review-chip:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.15);
        }
        body.audience-masculine .review-chip-name { color: var(--text-dark); }
        body.audience-masculine .review-chip-date { color: var(--text-muted); }
        body.audience-masculine .review-chip-text { color: var(--text-body); }

        body.audience-masculine .contact-glass {
            background: rgba(0, 0, 0, 0.55);
            box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
        }
        body.audience-masculine .contact-glass h3 { color: var(--text-dark); }
        body.audience-masculine .contact-glass p,
        body.audience-masculine .contact-glass a { color: var(--text-body); }
        body.audience-masculine .contact-glass a:hover { color: var(--gold-light); }

        body.audience-masculine .footer { background: #000000; }

        body.audience-masculine .whatsapp-float-label {
            background: rgba(20,20,20,0.88);
            color: var(--text-dark);
        }

        /* ─── Sobre drawer — masculine black/grey override ─── */
        body.audience-masculine .sobre-overlay {
            background: rgba(0, 0, 0, 0.65);
        }
        body.audience-masculine .sobre-drawer {
            background: rgba(10, 10, 10, 0.98);
            border-left: 1px solid rgba(255,255,255,0.12);
            box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
        }
        body.audience-masculine .sobre-drawer::-webkit-scrollbar-thumb {
            background: var(--gold-light);
        }
        body.audience-masculine .sobre-close {
            background: rgba(10, 10, 10, 0.92);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        body.audience-masculine .sobre-close button {
            color: var(--text-dark);
            border-color: rgba(255,255,255,0.18);
        }
        body.audience-masculine .sobre-close button:hover {
            background: rgba(255,255,255,0.06);
            color: var(--gold-light);
            border-color: var(--gold-light);
        }
        body.audience-masculine .sobre-header h2 { color: var(--text-dark); }
        body.audience-masculine .sobre-header p { color: var(--text-body); }
        body.audience-masculine .sobre-header .gold-line {
            background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
        }
        body.audience-masculine .sobre-portrait img {
            filter: brightness(0.9) contrast(1.05) saturate(0.92);
        }
        body.audience-masculine .sobre-portrait::after {
            border-color: var(--gold-light);
        }
        body.audience-masculine .sobre-bio {
            margin-top: 1.5rem;
        }
        body.audience-masculine .sobre-bio,
        body.audience-masculine .sobre-bio p { color: var(--text-body); }
        body.audience-masculine .sobre-bio strong { color: var(--text-dark); }
        body.audience-masculine .sobre-timeline h3,
        body.audience-masculine .sobre-publications h3 {
            color: var(--text-dark);
            border-bottom-color: rgba(255,255,255,0.08);
        }
        body.audience-masculine .timeline-list::before {
            background: linear-gradient(180deg, var(--gold-dark), transparent);
        }
        body.audience-masculine .timeline-item::before {
            background: var(--gold-light);
            box-shadow: 0 0 0 3px rgba(10,10,10,1);
        }
        body.audience-masculine .timeline-item .timeline-year { color: var(--gold-light); }
        body.audience-masculine .timeline-item .timeline-desc { color: var(--text-body); }
        body.audience-masculine .pub-card {
            background: #1C1C1C;
            border-color: rgba(255,255,255,0.08);
        }
        body.audience-masculine .pub-card:hover {
            background: #242424;
            border-color: rgba(255,255,255,0.18);
        }
        body.audience-masculine .pub-card .pub-title { color: var(--text-dark); }
        body.audience-masculine .pub-card .pub-journal { color: var(--text-muted); }
        body.audience-masculine .credential-badge {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.12);
            color: var(--text-body);
        }

        /* ─── Media/Entrevistas — masculine black/grey override ─── */
        body.audience-masculine .media {
            background: var(--cream);
            padding: clamp(4rem, 8vw, 7rem) 0;
        }
        body.audience-masculine .media .section-label,
        body.audience-masculine .media .section-title {
            color: var(--text-dark);
        }
        body.audience-masculine .media .section-head {
            text-align: center;
        }
        body.audience-masculine .media-panels {
            margin-top: 2.5rem;
        }
        body.audience-masculine .media-years {
            margin-bottom: 0;
        }
        body.audience-masculine .media-year-btn {
            border-color: rgba(255,255,255,0.15);
            color: var(--text-muted);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            min-width: auto;
            padding: 0.6rem 1.4rem;
            text-transform: uppercase;
        }
        body.audience-masculine .media-year-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        body.audience-masculine .media-year-btn.active {
            background: var(--gold);
            border-color: var(--gold);
            color: #000;
        }
        body.audience-masculine .media-card {
            background: #1C1C1C;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: none;
            border-radius: 8px;
        }
        body.audience-masculine .media-card:hover {
            border-color: rgba(255,255,255,0.18);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        body.audience-masculine .media-card-info h4 {
            color: var(--text-dark);
            font-family: var(--font-body);
            font-size: 0.82rem;
        }
        body.audience-masculine .media-card-info .media-source {
            color: var(--text-muted);
        }
        body.audience-masculine .media-card-info .media-date {
            color: var(--gold);
        }
        body.audience-masculine .media-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            justify-items: center;
        }

        /* Instagram — third-party plugin text color fix for masculine page */
        body.audience-masculine .instagram-section .ti-header,
        body.audience-masculine .instagram-section .ti-header * {
            color: var(--text-dark) !important;
        }

        /* ═══════════════════════════════════════════
           MASCULINE — section primitives
           ═══════════════════════════════════════════ */
        .m-eyebrow {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--gold);
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 1.4rem;
        }
        .m-eyebrow::before {
            content: '';
            width: 36px;
            height: 1px;
            background: var(--gold);
        }
        .m-section-title {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(1.9rem, 3.6vw, 2.9rem);
            color: var(--text-dark);
            line-height: 1.18;
            letter-spacing: -0.01em;
        }
        .m-section-title em {
            font-style: italic;
            font-weight: 300;
            color: var(--gold);
        }
        .m-section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 760px; }
        .m-section-head--split {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: clamp(2rem, 5vw, 5rem);
            align-items: end;
            max-width: 100%;
        }
        .m-section-head--split .m-section-aside {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--text-body);
            font-weight: 300;
        }
        .m-section-lead {
            margin-top: 1.2rem;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-body);
            font-weight: 300;
            max-width: 620px;
        }
        @media (max-width: 768px) {
            .m-section-head--split { grid-template-columns: 1fr; align-items: start; }
        }

        /* Buttons */
        .m-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.05rem 2.2rem;
            background: var(--gold-light);
            color: #000000;
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.4s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
            border: 1px solid var(--gold-light);
        }
        .m-btn-primary:hover {
            background: #FFFFFF;
            border-color: #FFFFFF;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px -10px rgba(229,229,229,0.4);
        }
        .m-btn-primary svg { transition: transform 0.3s; }
        .m-btn-primary:hover svg { transform: translateX(4px); }

        .m-btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1.05rem 1.6rem;
            background: transparent;
            color: var(--text-dark);
            font-family: var(--font-body);
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.28);
            transition: border-color 0.3s, color 0.3s, background 0.3s;
        }
        .m-btn-ghost:hover {
            border-color: var(--gold-light);
            color: var(--gold-light);
            background: rgba(255,255,255,0.04);
        }

        /* Hero/CTA buttons over dark imagery — keep light text */
        .m-hero .m-btn-ghost,
        .m-cta-final .m-btn-ghost {
            color: #fff;
            border-color: rgba(255,255,255,0.32);
        }
        .m-hero .m-btn-ghost:hover,
        .m-cta-final .m-btn-ghost:hover {
            color: #fff;
            border-color: #fff;
            background: rgba(255,255,255,0.06);
        }

        /* ═══════════ M-HERO ═══════════ */
        .m-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            background: #000000;
        }
        .m-hero-bg { position: absolute; inset: 0; z-index: 0; }
        /* When no JS slideshow is mounted (single placeholder), still cover. */
        .m-hero-bg > img {
            width: 100%; height: 100%; object-fit: cover;
            filter: brightness(0.6) contrast(1.05);
        }
        /* Slideshow imagery — slight desaturation suits the cool palette
           without going monochrome. */
        .m-hero .hero-slide img {
            filter: brightness(0.55) contrast(1.05) saturate(0.9);
        }
        /* Third masculine-hero slide: nudge the framing down so the subject
           sits a bit lower in the viewport (default cover anchors at 50%). */
        .m-hero .hero-slide:nth-child(3) img {
            object-position: center 30%;
        }
        .m-hero .hero-slide:nth-child(4) img {
            object-position: center 30%;
        }
        .m-hero .hero-nav { z-index: 4; }
        .m-hero .hero-nav-dot { background: rgba(255,255,255,0.28); }
        .m-hero .hero-nav-dot.active { background: var(--gold-light); }
        .m-hero .hero-nav-counter { color: rgba(255,255,255,0.6); }
        .m-hero-overlay {
            position: absolute; inset: 0; z-index: 1;
            background:
                linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.95) 100%),
                linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 65%);
        }
        .m-hero-grain {
            position: absolute; inset: 0; z-index: 2; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            opacity: 0.5;
        }
        .m-hero-content {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 4rem) clamp(5rem, 10vh, 8rem);
        }
        .m-hero-eyebrow {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.42em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 1.6rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
        }
        .m-hero-eyebrow::before {
            content: '';
            width: 48px;
            height: 1px;
            background: var(--gold-light);
        }
        .m-hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.2vw, 3.6rem);
            font-weight: 300;
            line-height: 1.1;
            color: #fff;
            letter-spacing: -0.015em;
            margin-bottom: 1.6rem;
            max-width: 760px;
            text-shadow: 0 2px 40px rgba(0,0,0,0.35);
        }
        .m-hero-title em {
            font-style: italic;
            color: var(--gold-light);
            font-weight: 300;
        }
        .m-hero-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.78);
            max-width: 540px;
            line-height: 1.8;
            margin-bottom: 2.6rem;
            font-weight: 300;
        }
        .m-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

        /* ═══════════ M-ABOUT ═══════════ */
        .m-about {
            padding: clamp(4rem, 8vw, 7rem) 0;
            background: #0A0A0A;
            position: relative;
        }
        .m-about::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(229,229,229,0.18), transparent);
        }
        .m-about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
            gap: clamp(2rem, 5vw, 4.5rem);
            align-items: center;
        }
        .m-about-portrait {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            background: #1C1C1C;
        }
        .m-about-portrait img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            filter: brightness(0.85) contrast(1.05) saturate(0.9);
            transition: filter 0.6s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
        }
        .m-about-portrait:hover img {
            filter: brightness(0.95) contrast(1.05) saturate(0.95);
            transform: scale(1.02);
        }
        .m-about-portrait-frame {
            position: absolute;
            inset: 0;
            pointer-events: none;
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
        }
        .m-about-portrait::after {
            content: '';
            position: absolute;
            top: 12px; left: 12px;
            width: 40px; height: 40px;
            border-top: 1px solid var(--gold-light);
            border-left: 1px solid var(--gold-light);
            opacity: 0.55;
            pointer-events: none;
        }
        .m-about-content { max-width: 580px; }
        .m-about-content .m-section-title { margin-bottom: 1.4rem; }
        .m-about-body {
            color: var(--text-body);
            font-weight: 300;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 2.4rem;
        }
        .m-about-body p + p { margin-top: 1rem; }

        .m-about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            padding: 1.6rem 0;
            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 2rem;
        }
        .m-about-stat-num {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--text-dark);
            line-height: 1;
            letter-spacing: -0.01em;
            margin-bottom: 0.4rem;
        }
        .m-about-stat-label {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .m-about-cta {
            margin-top: 0;
        }

        @media (max-width: 880px) {
            .m-about-grid { grid-template-columns: 1fr; }
            .m-about-portrait { max-width: 460px; margin: 0 auto; }
        }

        /* ═══════════ M-PROBLEMS ═══════════ */
        .m-problems {
            padding: clamp(4rem, 8vw, 7rem) 0;
            background: #0A0A0A;
        }
        .m-problems-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.08);
            border-top: 1px solid rgba(255,255,255,0.08);
            border-left: 1px solid rgba(255,255,255,0.08);
        }
        .m-problem-card {
            background: #0A0A0A;
            padding: clamp(1.8rem, 3vw, 2.8rem);
            border-right: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            transition: background 0.3s ease;
        }
        .m-problem-card:hover { background: #141414; }
        .m-problem-kicker {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            color: var(--gold);
            margin-bottom: 1.2rem;
        }
        .m-problem-title {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(1.25rem, 2vw, 1.55rem);
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            line-height: 1.25;
        }
        .m-problem-desc {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-body);
            font-weight: 300;
        }
        @media (max-width: 768px) {
            .m-problems-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════ M-PROTOCOLS ═══════════ */
        .m-protocols {
            padding: clamp(4rem, 8vw, 7rem) 0;
            background: var(--cream);
        }
        .m-protocols-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.4rem;
        }
        .m-protocol-card {
            background: #1C1C1C;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 2rem 1.8rem 1.8rem;
            display: flex;
            flex-direction: column;
            transition: border-color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
            position: relative;
        }
        .m-protocol-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transition: width 0.5s var(--ease-out-expo);
        }
        .m-protocol-card:hover {
            border-color: rgba(255,255,255,0.22);
            transform: translateY(-3px);
            box-shadow: 0 18px 32px -22px rgba(0,0,0,0.7);
        }
        .m-protocol-card:hover::after { width: 100%; }
        .m-protocol-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.4rem;
        }
        .m-protocol-code {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            color: var(--gold);
            padding: 0.3rem 0.65rem;
            border: 1px solid rgba(255,255,255,0.18);
        }
        .m-protocol-name {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: 1.45rem;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 0.3rem;
        }
        .m-protocol-tag {
            font-size: 0.78rem;
            letter-spacing: 0.04em;
            color: var(--gold);
            font-style: italic;
            margin-bottom: 1rem;
        }
        .m-protocol-desc {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--text-body);
            font-weight: 300;
            margin-bottom: 1.4rem;
            flex: 1;
        }

        /* ═══════════ M-WHO-FOR ═══════════ */
        .m-who-for {
            padding: clamp(4rem, 8vw, 7rem) 0;
            background: var(--cream);
        }
        .m-who-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.08);
        }
        .m-who-col {
            background: #1C1C1C;
            padding: clamp(2rem, 4vw, 3rem);
        }
        .m-who-col-title {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            color: var(--text-dark);
            margin-bottom: 1.6rem;
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }
        .m-who-col-mark {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1;
            border: 1px solid;
        }
        .m-who-col-mark--plus {
            color: #000;
            background: var(--gold-light);
            border-color: var(--gold-light);
        }
        .m-who-col-mark--minus {
            color: var(--text-muted);
            border-color: rgba(255,255,255,0.25);
        }
        .m-who-list { list-style: none; padding: 0; margin: 0; }
        .m-who-list li {
            position: relative;
            padding: 1rem 0 1rem 1.6rem;
            border-top: 1px solid rgba(255,255,255,0.06);
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-body);
            font-weight: 300;
        }
        .m-who-list li:first-child { border-top: 0; }
        .m-who-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 1.55rem;
            width: 8px;
            height: 1px;
            background: var(--gold);
        }
        .m-who-col--against .m-who-list li::before { background: var(--text-muted); }
        @media (max-width: 768px) {
            .m-who-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════ M-CTA-FINAL — pure black with thin chrome shimmer ═══════════ */
        .m-cta-final {
            position: relative;
            padding: clamp(5rem, 10vw, 8rem) 0;
            background: linear-gradient(180deg, #0A0A0A 0%, #161616 50%, #0A0A0A 100%);
            overflow: hidden;
        }
        .m-cta-final::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(229,229,229,0.55), transparent);
        }
        .m-cta-final-grain {
            position: absolute; inset: 0; pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
            opacity: 0.4;
        }
        .m-cta-final-inner {
            position: relative;
            text-align: center;
            max-width: 820px;
            margin: 0 auto;
        }
        .m-cta-final-quote {
            font-family: var(--font-display);
            font-weight: 300;
            font-style: italic;
            font-size: clamp(1.8rem, 3.6vw, 2.8rem);
            line-height: 1.3;
            color: #FFFFFF;
            margin-bottom: 2.6rem;
            letter-spacing: -0.005em;
            text-shadow: 0 2px 24px rgba(0,0,0,0.18);
        }
        .m-cta-final-quote em {
            font-weight: 400;
            color: var(--gold-light);
            font-style: italic;
            border-bottom: 1px solid rgba(229,229,229,0.4);
            padding-bottom: 0.05em;
        }
        .m-cta-final-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        /* Final CTA primary button: white-on-black inversion for impact */
        .m-cta-final .m-btn-primary {
            background: #FFFFFF;
            color: #000000;
            border-color: #FFFFFF;
        }
        .m-cta-final .m-btn-primary:hover {
            background: var(--gold-light);
            color: #000000;
            border-color: var(--gold-light);
            box-shadow: 0 10px 24px -10px rgba(229,229,229,0.4);
        }

        /* ═══════════════════════════════════════════
           ABOUT — single-portrait variant
           Used when the editor only sets `about_portrait` (no secondary image).
           Collapses the 2-col grid to a single centered column.
           ═══════════════════════════════════════════ */
        .about-images.about-images--single {
            grid-template-columns: 1fr;
            max-width: 480px;
        }
        .about-images.about-images--single .about-img-1 {
            grid-row: auto;
            aspect-ratio: 4/5;
        }

        /* ═══════════════════════════════════════════
           RESULTS — feminine
           ═══════════════════════════════════════════ */
        .results {
            padding: clamp(3rem, 6vw, 5.5rem) 0;
            background: var(--white);
        }
        .results-header {
            max-width: 720px;
            margin: 0 auto clamp(2rem, 4vw, 3.5rem);
            text-align: center;
        }
        .results-header .gold-line { margin: 1rem auto 1.6rem; }
        .results-header .section-label { justify-content: center; }
        .results-lead {
            font-size: 0.95rem;
            color: var(--text-body);
            font-weight: 300;
            line-height: 1.6;
        }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(0.5rem, 1.2vw, 1rem);
        }
        @media (max-width: 768px) {
            .results-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .ba-item {
            aspect-ratio: 4/5;
            overflow: hidden;
            background: var(--cream);
        }
        .ba-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s var(--ease-out-expo);
        }
        .ba-item:hover img { transform: scale(1.04); }
        .results-disclaimer {
            margin-top: clamp(1.5rem, 3vw, 2.5rem);
            font-size: 0.78rem;
            color: var(--text-muted);
            font-style: italic;
            text-align: center;
        }

        /* ═══════════════════════════════════════════
           CLINIC — MAIS FOTOS (inline, shares the clinic section)
           Inherits the dark charcoal background from `.clinic`, so eyebrow +
           title use the same gold/cream pairing as the clinic header above.
           ═══════════════════════════════════════════ */
        .clinic-more-photos {
            margin-top: clamp(3rem, 6vw, 4.5rem);
            padding-top: clamp(2rem, 4vw, 3rem);
            border-top: 1px solid rgba(201,169,110,0.18);
        }
        .clinic-more-photos-head {
            text-align: center;
            margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
        }
        .clinic-more-photos-head .section-label {
            color: var(--gold-light);
            justify-content: center;
        }

        .clinic-more-photos-head .gold-line { margin: 1rem auto 0; }
        .clinic-more-photos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: clamp(0.9rem, 1.6vw, 1.4rem);
        }
        .clinic-more-photo {
            margin: 0;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: rgba(255,255,255,0.04);
        }
        .clinic-more-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s var(--ease-out-expo);
        }
        .clinic-more-photo:hover img { transform: scale(1.04); }

        /* ═══════════════════════════════════════════
           ANTES E DEPOIS
           ═══════════════════════════════════════════ */
        .antes-depois {
            padding: clamp(3rem, 6vw, 5.5rem) 0;
            background: var(--cream, #f3efe7);
        }
        .antes-depois-head {
            text-align: center;
            margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
        }
        .antes-depois-head .section-label {
            justify-content: center;
        }
        .antes-depois-head .gold-line {
            margin: 1rem auto 1.2rem;
        }
        .antes-depois-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted, #888);
            font-weight: 300;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .antes-depois-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(0.9rem, 1.6vw, 1.4rem);
            margin-top: clamp(1.6rem, 3vw, 2.4rem);
        }
        .antes-depois-item {
            margin: 0;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: rgba(0,0,0,0.04);
            cursor: zoom-in;
            border: 1px solid rgba(201,169,110,0.18);
        }
        .antes-depois-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s var(--ease-out-expo);
        }
        .antes-depois-item:hover img,
        .antes-depois-item:focus-visible img {
            transform: scale(1.04);
        }
        .antes-depois-item:focus-visible {
            outline: 2px solid var(--gold, #b8976a);
            outline-offset: 3px;
        }
        body.audience-masculine .antes-depois {
            background: #0F0F0F;
        }
        body.audience-masculine .antes-depois .section-label,
        body.audience-masculine .antes-depois .section-title {
            color: #f5f5f5;
        }
        body.audience-masculine .antes-depois-subtitle {
            color: rgba(255,255,255,0.65);
        }
        body.audience-masculine .antes-depois-item {
            border-color: rgba(255,255,255,0.08);
            background: #1A1A1A;
        }
        @media (max-width: 1024px) {
            .antes-depois-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .antes-depois-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ═══════════════════════════════════════════
           NOSSAS COLABORADORAS — masculine variant
           ═══════════════════════════════════════════ */
        .m-collaborators {
            padding: clamp(4rem, 8vw, 7rem) 0;
            background: #0F0F0F;
        }
        .m-collaborators .m-section-head {
            text-align: center;
        }
        .m-collaborators .m-section-head .m-eyebrow {
            justify-content: center;
        }
        .m-collaborators .m-section-head .m-section-title {
            justify-content: center;
        }
        .m-collaborators .m-section-head .m-section-lead {
            margin-left: auto;
            margin-right: auto;
            max-width: 700px;
        }
        .m-collaborators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.4rem;
            margin-top: clamp(2rem, 4vw, 3rem);
        }
        .m-collaborator-card { margin: 0; }
        .m-collaborator-photo {
            aspect-ratio: 3/4;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
            background: #1A1A1A;
        }
        .m-collaborator-photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(0.15) contrast(1.04);
            transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
        }
        .m-collaborator-card:hover .m-collaborator-photo img {
            transform: scale(1.04);
            filter: grayscale(0) contrast(1);
        }
