    /* ─────────────────────────────────────────
       TOKENS & VARIABLES
    ───────────────────────────────────────── */
    :root {
        --beige: #F5F0E8;
        --beige-dark: #EDE6D6;
        --terracota: #A0614A;
        --terracota-lt: #C4856E;
        --salvia: #7A8C72;
        --salvia-lt: #A3B49A;
        --pizarra: #3B3F3A;
        --pizarra-lt: #6B6F6A;
        --blanco: #FDFAF5;
        --font-serif: 'Cormorant Garamond', Georgia, serif;
        --font-sans: 'DM Sans', sans-serif;
        --max-w: 1100px;
        --radius: 4px;
        --whatsapp: #25D366;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
        background: var(--blanco);
        color: var(--pizarra);
        line-height: 1.7;
        overflow-x: hidden;
    }

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

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

    /* ─────────────────────────────────────────
       ANIMACIONES DE ENTRADA
    ───────────────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 2.5rem;
        background: rgba(253, 250, 245, 0.92);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--beige-dark);
        transition: padding 0.3s;
    }

    .nav-logo {
        font-family: var(--font-serif);
        font-size: 1.15rem;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: var(--pizarra);
    }

    .nav-logo span {
        color: var(--terracota);
    }

    .nav-cta {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.55rem 1.4rem;
        border: 1.5px solid var(--terracota);
        color: var(--terracota);
        border-radius: var(--radius);
        transition: background 0.25s, color 0.25s;
    }

    .nav-cta:hover {
        background: var(--terracota);
        color: var(--blanco);
    }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    #hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 5rem;
        background: var(--beige);
        position: relative;
        overflow: hidden;
    }

    /* Decorative texture */
    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 80% 20%, rgba(160, 97, 74, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 10% 80%, rgba(122, 140, 114, 0.10) 0%, transparent 45%);
        pointer-events: none;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 6rem 4rem 6rem 6rem;
        position: relative;
        z-index: 1;
    }

    .hero-eyebrow {
        font-family: var(--font-sans);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--terracota);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 32px;
        height: 1.5px;
        background: var(--terracota);
    }

    .hero-title {
        font-family: var(--font-serif);
        font-size: clamp(2.8rem, 5vw, 4.2rem);
        font-weight: 300;
        line-height: 1.15;
        color: var(--pizarra);
        margin-bottom: 1.5rem;
    }

    .hero-title em {
        font-style: italic;
        color: var(--terracota);
    }

    .hero-desc {
        font-size: 1rem;
        font-weight: 300;
        color: var(--pizarra-lt);
        max-width: 440px;
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--terracota);
        color: var(--blanco);
        padding: 0.85rem 2rem;
        border-radius: var(--radius);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover {
        background: #8a5040;
        transform: translateY(-2px);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--pizarra);
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
        font-weight: 400;
        text-decoration: underline;
        text-underline-offset: 3px;
        opacity: 0.7;
        transition: opacity 0.2s;
    }

    .btn-secondary:hover {
        opacity: 1;
    }

    /* Hero visual panel */
    .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem 4rem 4rem 2rem;
    }

    .hero-card {
        background: var(--blanco);
        border-radius: 2px;
        padding: 3rem 2.5rem;
        box-shadow: 0 20px 60px rgba(59, 63, 58, 0.12), 0 4px 16px rgba(59, 63, 58, 0.06);
        max-width: 360px;
        width: 100%;
        position: relative;
    }

    .hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 60px;
        background: var(--terracota);
        border-radius: 0 2px 2px 0;
    }

    .hero-card-quote {
        font-family: var(--font-serif);
        font-size: 1.45rem;
        font-weight: 300;
        font-style: italic;
        line-height: 1.5;
        color: var(--pizarra);
        margin-bottom: 2rem;
    }

    .hero-card-quote::before {
        content: '\201C';
        font-size: 3rem;
        color: var(--terracota);
        opacity: 0.3;
        line-height: 0;
        vertical-align: -0.4em;
        margin-right: 0.1em;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        border-top: 1px solid var(--beige-dark);
        padding-top: 1.5rem;
    }

    /* .stat-item {} */

    .stat-number {
        font-family: var(--font-serif);
        font-size: 2rem;
        font-weight: 600;
        color: var(--terracota);
        line-height: 1;
    }

    .stat-label {
        font-size: 0.72rem;
        font-weight: 400;
        color: var(--pizarra-lt);
        letter-spacing: 0.05em;
        margin-top: 0.25rem;
    }

    /* Decorative circle */
    .hero-deco {
        position: absolute;
        bottom: 3rem;
        right: 2rem;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 1.5px solid var(--salvia-lt);
        opacity: 0.4;
    }

    .hero-deco-2 {
        position: absolute;
        top: 4rem;
        left: 1rem;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--terracota);
        opacity: 0.06;
    }

    /* ─────────────────────────────────────────
       SECCIÓN GENÉRICA
    ───────────────────────────────────────── */
    section {
        padding: 6rem 2rem;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .section-label {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--terracota);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .section-label::before {
        content: '';
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--terracota);
    }

    .section-title {
        font-family: var(--font-serif);
        font-size: clamp(1.9rem, 3.5vw, 2.8rem);
        font-weight: 300;
        line-height: 1.2;
        color: var(--pizarra);
        margin-bottom: 1rem;
    }

    .section-title em {
        font-style: italic;
        color: var(--terracota);
    }

    /* ─────────────────────────────────────────
       SOBRE ADRIANA
    ───────────────────────────────────────── */
    #sobre {
        background: var(--blanco);
    }

    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 5rem;
        align-items: center;
    }

    /* .sobre-left {} */

    .sobre-body {
        font-size: 1rem;
        font-weight: 300;
        color: var(--pizarra-lt);
        line-height: 1.9;
        margin-bottom: 1.5rem;
    }

    .credenciales {
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .credencial-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        font-size: 0.88rem;
    }

    .credencial-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--beige);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .credencial-icon svg {
        width: 14px;
        height: 14px;
        fill: var(--terracota);
    }

    .credencial-text {
        color: var(--pizarra);
        font-weight: 400;
        line-height: 1.5;
    }

    .credencial-text small {
        display: block;
        color: var(--pizarra-lt);
        font-size: 0.78rem;
        font-weight: 300;
    }

    /* Right side: decorative abstract */
    .sobre-deco {
        position: relative;
        height: 420px;
    }

    .sobre-deco-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        height: 90%;
        background: var(--beige);
        border-radius: 2px;
    }

    .sobre-deco-accent {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 55%;
        height: 65%;
        background: var(--beige-dark);
        border-radius: 2px;
    }

    .sobre-deco-line {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        text-align: center;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-style: italic;
        font-weight: 300;
        color: var(--pizarra);
        line-height: 1.5;
        padding: 2rem;
        background: var(--blanco);
        box-shadow: 0 8px 40px rgba(59, 63, 58, 0.10);
        z-index: 2;
    }

    .sobre-deco-dot {
        position: absolute;
        top: 1.5rem;
        left: 2rem;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--terracota);
        z-index: 3;
    }

    /* ─────────────────────────────────────────
       SERVICIOS
       ⚙️  EDITAR SERVICIOS AQUÍ:
       Agregar o quitar objetos del array en el script.
    ───────────────────────────────────────── */
    #servicios {
        background: var(--beige);
        position: relative;
        overflow: hidden;
    }

    #servicios::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(122, 140, 114, 0.08), transparent 70%);
        pointer-events: none;
    }

    .servicios-header {
        max-width: 560px;
        margin-bottom: 3.5rem;
    }

    .servicios-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .servicio-card {
        background: var(--blanco);
        padding: 2.2rem 1.8rem;
        border-radius: var(--radius);
        border-top: 3px solid var(--terracota);
        transition: transform 0.25s, box-shadow 0.25s;
        cursor: default;
    }

    .servicio-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(59, 63, 58, 0.10);
    }

    .servicio-icon {
        width: 44px;
        height: 44px;
        background: var(--beige);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .servicio-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: var(--terracota);
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .servicio-nombre {
        font-family: var(--font-serif);
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--pizarra);
        margin-bottom: 0.6rem;
    }

    .servicio-desc {
        font-size: 0.875rem;
        font-weight: 300;
        color: var(--pizarra-lt);
        line-height: 1.75;
    }

    /* ─────────────────────────────────────────
       MODALIDAD
    ───────────────────────────────────────── */
    #modalidad {
        background: var(--blanco);
    }

    .modalidad-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .modalidad-card {
        padding: 2.5rem;
        border: 1.5px solid var(--beige-dark);
        border-radius: var(--radius);
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        transition: border-color 0.25s;
    }

    .modalidad-card:hover {
        border-color: var(--salvia-lt);
    }

    .modalidad-icon-wrap {
        width: 52px;
        height: 52px;
        background: var(--beige);
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modalidad-icon-wrap svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: var(--salvia);
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* .modalidad-info {} */

    .modalidad-titulo {
        font-family: var(--font-serif);
        font-size: 1.3rem;
        font-weight: 400;
        margin-bottom: 0.4rem;
        color: var(--pizarra);
    }

    .modalidad-texto {
        font-size: 0.875rem;
        font-weight: 300;
        color: var(--pizarra-lt);
        line-height: 1.75;
    }

    /* ─────────────────────────────────────────
       CTA FINAL
    ───────────────────────────────────────── */
    #contacto {
        background: var(--pizarra);
        text-align: center;
        padding: 7rem 2rem;
    }

    #contacto .section-label {
        color: var(--terracota-lt);
        justify-content: center;
    }

    #contacto .section-label::before {
        background: var(--terracota-lt);
    }

    #contacto .section-title {
        color: var(--beige);
    }

    .contacto-sub {
        color: rgba(245, 240, 232, 0.6);
        font-size: 1rem;
        font-weight: 300;
        max-width: 480px;
        margin: 0.75rem auto 2.5rem;
        line-height: 1.8;
    }

    .btn-wa {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--whatsapp);
        color: #fff;
        padding: 1rem 2.5rem;
        border-radius: var(--radius);
        font-size: 0.95rem;
        font-weight: 500;
        transition: background 0.25s, transform 0.2s;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    }

    .btn-wa:hover {
        background: #1ebe5d;
        transform: translateY(-3px);
    }

    .btn-wa svg {
        width: 22px;
        height: 22px;
        fill: #fff;
    }

    .contacto-nota {
        font-size: 0.78rem;
        color: rgba(245, 240, 232, 0.35);
        margin-top: 1.25rem;
        letter-spacing: 0.05em;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
        background: #2a2e29;
        color: rgba(245, 240, 232, 0.4);
        text-align: center;
        padding: 1.5rem 2rem;
        font-size: 0.78rem;
        font-weight: 300;
        letter-spacing: 0.04em;
    }

    footer span {
        color: var(--terracota-lt);
    }

    /* ─────────────────────────────────────────
       WHATSAPP FAB
    ───────────────────────────────────────── */
    .whatsapp-fab {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 999;
        width: 58px;
        height: 58px;
        background: var(--whatsapp);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
        transition: transform 0.25s, box-shadow 0.25s;
    }

    .whatsapp-fab:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    }

    .whatsapp-fab svg {
        width: 28px;
        height: 28px;
        fill: #fff;
    }

    .whatsapp-pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--whatsapp);
        opacity: 0.5;
        animation: pulse 2.2s ease-out infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        70% {
            transform: scale(1.55);
            opacity: 0;
        }

        100% {
            transform: scale(1.55);
            opacity: 0;
        }
    }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 900px) {
        #hero {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .hero-content {
            padding: 5rem 2rem 2rem;
        }

        .hero-visual {
            padding: 2rem 2rem 4rem;
        }

        .sobre-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .sobre-deco {
            height: 260px;
        }

        .sobre-deco-line {
            font-size: 1.1rem;
            width: 80%;
        }

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

        nav {
            padding: 1rem 1.5rem;
        }
    }

    @media (max-width: 600px) {
        .hero-title {
            font-size: 2.2rem;
        }

        section {
            padding: 4rem 1.25rem;
        }

        .hero-content {
            padding: 5rem 1.25rem 2rem;
        }

        .hero-visual {
            padding: 1.5rem 1.25rem 3rem;
        }
    }