:root {
    /* ══════════════════════════════════════════
        FONDO PERLA — Toda la web usa crema/perla
        Texto oscuro sobre fondo claro y elegante
    ══════════════════════════════════════════ */

    /* BASE PEARL PALETTE */
    --pearl-lightest: #FDFCFA;   /* blanco perlado casi puro */
    --pearl-light:    #F8F4EE;   /* crema suave — fondo principal */
    --pearl:          #F0EBE1;   /* perla cálida — secciones alternas */
    --pearl-mid:      #E8E0D4;   /* perla media — bordes, divisores */
    --pearl-deep:     #D8CEBF;   /* perla profunda — acentos sutiles */
    --linen:          #EDE6D8;   /* lino — tarjetas, cards */

    /* TEXTO */
    --ink:            #1A1714;   /* texto principal oscuro */
    --ink-mid:        #2E2A26;   /* texto secundario */
    --ash:            #5A5450;   /* texto terciario */
    --mist:           #8A857E;   /* texto muy suave */
    --silver:         #6E6860;   /* texto descriptivo */

    /* DORADO — alma de la paleta */
    --gold:           #C9A84C;
    --gold-bright:    #E2C070;
    --gold-deep:      #A8863A;
    --gold-pale:      #F0DFA8;
    --gold-mist:      rgba(201,168,76,0.10);
    --gold-border:    rgba(201,168,76,0.30);
    --gold-border-s:  rgba(201,168,76,0.15);

    /* GRADIENTS */
    --grad-gold:      linear-gradient(135deg, #A8863A 0%, #E2C070 40%, #C9A84C 70%, #A8863A 100%);
    --grad-dark:      linear-gradient(160deg, #1A1714 0%, #0D0B09 100%);

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Jost', sans-serif;
}

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══ RESPONSIVE IMAGES — Mobile safe ══ */
img {
    max-width: 100% !important;
    display: block;
}
/* Object-fit images inside fixed containers keep their cover behavior */
.hero-img-main img,
.hero-strip-left img,
.hero-strip-right img,
.about-img-main img,
.gallery-item img,
.lanza-hero-img img,
.lanza-product-img img {
    width: 100%; height: 100%; object-fit: cover;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--pearl-light);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

/* GRAIN SUTIL */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.18;
}

/* CURSOR */
body {
    cursor: none !important;
}

.cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s, height 0.3s, background-color 0.2s;
}

.cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid;
    border-color: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
    opacity: 0.45;
}

a, button {
    cursor: none;
}

/* ══ NAV ══ */
nav {
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0 5rem;
    height: 112px;
    background: rgba(248, 244, 238, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 0.5px solid var(--gold-border-s);
    transition: all 0.4s ease;
    min-height: 80px;
    column-gap: 2.5rem;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 360px;
}

.nav-logo-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.05vw, 3.15rem);
    font-weight: 700;
    color: #000 !important;
    letter-spacing: 5.5px;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(201,168,76,0.18);
}

.nav-logo-word-hair {
    color: #000 !important;
    font-weight: 700;
    font-style: normal;
    -webkit-text-fill-color: #000 !important;
}

.nav-logo-word-affairs {
    color: #000 !important;
    font-style: normal;
    font-weight: 700;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000 !important;
    background-clip: unset;
    animation: none;
}

.nav-logo-sub {
    font-family: var(--sans);
    font-size: 0.56rem;
    font-weight: 400;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    color: var(--mist);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-left: 2px;
    white-space: nowrap;
}

.nav-logo-sub::before {
    content: '';
    display: block;
    width: 1.8rem;
    height: 0.5px;
    background: var(--grad-gold);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 100%;
    height: 0.5px;
    background: var(--grad-gold);
    transition: right 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-deep);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-cta {
    font-family: var(--sans);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--grad-gold);
    background-size: 200%;
    padding: 0.85rem 2.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 2px 24px rgba(201,168,76,0.35);
}

.nav-cta:hover {
    background-position: 100% 50%;
    box-shadow: 0 6px 40px rgba(201,168,76,0.55);
    transform: translateY(-1px);
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ══ HERO ══ */
.hero {
    display: grid;
    min-height: calc(100vh - 112px);
    grid-template-columns: 1fr 1fr;
    padding: 0;
    position: relative;
    background: var(--pearl-light);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
    overflow-y: auto;
}

.hero-eyebrow {
    font-family: var(--sans); font-size: 0.6rem; font-weight: 400;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-deep);
    margin-bottom: 1.8rem; display: flex; align-items: center; gap: 1rem;
    animation: fadeUp 0.9s ease both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 0.5px;
    background: var(--grad-gold);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 300;
    line-height: 1.06;
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease 0.15s both;
}

.hero-title em {
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: shimmer 4s ease infinite;
}

.hero-sub {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--silver);
    line-height: 2;
    max-width: 440px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease 0.3s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    animation: fadeUp 0.9s ease 0.45s both;
}

.btn-primary {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--grad-gold);
    background-size: 200%;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}

.btn-primary:hover {
    background-position: 100%;
    box-shadow: 0 8px 40px rgba(201,168,76,0.55);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    border-bottom: 0.5px solid var(--pearl-deep);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    color: var(--gold-deep);
    border-color: var(--gold);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 0.5px solid var(--gold-border);
    animation: fadeUp 0.9s ease 0.6s both;
}

.badge-val {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-deep);
    line-height: 1;
}

.badge-val.date {
    font-size: 1.6rem;
}

.badge-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    margin-top: 0.4rem;
}

/* HERO-RIGHT — imagen cubre sin deformar */
.hero-right {
    position: relative;
    min-height: calc(100vh - 112px);
    background: #0d0b09;
}

.hero-img-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 62% 38%;
}

/* ══ FOTO-1 — HERO PRINCIPAL ══ */
.hero-img-main {
    background: #0d0b09;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--gold-border-s);
}

.hero-img-main img {
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ══ OCULTAR labels FOTO-X — imágenes ya cargadas ══ */
.photo-label {
    position: relative;
    display: none !important;
}

.photo-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-img-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ══════════════════════════════════════════
    📸 FOTO-2 — HERO STRIP IZQUIERDA
    Tamaño ideal: 500×400px (landscape)
    Contenido: Close-up de color / textura /
                detalle de mechones o raíces
══════════════════════════════════════════ */
.hero-strip-left {
    overflow: hidden;
    border-top: 0.5px solid var(--gold-border-s);
    border-right: 0.5px solid var(--gold-border-s);
    background: #1a1714;
    position: relative;
}

.hero-strip-right {
    overflow: hidden;
    border-top: 0.5px solid var(--gold-border-s);
    background: #1a1714;
    position: relative;
}

.hero-strip-left img,
.hero-strip-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-floating-card {
    margin-top: 3rem;
    width: 100%;
    max-width: 550px;
    background: var(--pearl-lightest);
    border: 0.5px solid var(--gold-border);
    padding: 1.4rem 1.6rem; z-index: 10;
    min-width: 240px;
    box-shadow: 0 12px 50px rgba(201, 168, 76, 0.12);
    animation: fadeUp 0.9s ease 0.7s both;
}

.floating-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.floating-text {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.45;
}

.floating-author {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ══ MARQUEE ══ */
.marquee-wrap {
    background: var(--ink);
    overflow: hidden;
    padding: 1.2rem 0;
    border-top: 0.5px solid rgba(201, 168, 76, 0.2);
    border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--pearl-mid);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee-item::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.4rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ══ SECTION BASE ══ */
section {
    padding: 7rem 5rem;
}

.section-eyebrow {
    font-size: 0.59rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 1.8rem;
    height: 0.5px;
    background: var(--grad-gold);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold-deep);
}

.section-title.light {
    color: var(--ink);
}

.section-title.light em {
    color: var(--gold-deep);
}

/* ══ ABOUT ══ */
/* ══════════════════════════════════════════
    📸 FOTO-4 — ABOUT / NUESTRO EQUIPO
    Tamaño ideal: 700×950px (portrait 3:4)
    Contenido: Stylist o equipo del salón,
                retrato profesional, o
                interior del salón con estilo
══════════════════════════════════════════ */
.about { background: var(--pearl); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about-visual { position: relative; }

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--linen);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-border-s);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-accent-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--pearl-lightest);
    padding: 2rem 2.2rem;
    width: 215px;
    border: 0.5px solid var(--gold-border);
    box-shadow: 0 20px 60px rgba(168,134,58,0.15);
}

.about-accent-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold-deep);
    line-height: 1; }

.about-accent-text {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 0.5rem;
    line-height: 1.5; }

.about-body {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 2.05;
    margin-bottom: 1.5rem;
}

.about-science-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-mist);
    border: 0.5px solid var(--gold-border);
    padding: 0.5rem 1rem;
    margin: 0.3rem 0.3rem 0.3rem 0;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.about-science-tag::before {
    content: '◈';
    font-size: 0.5rem;
}

.about-products {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.product-badge {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 0.5px solid var(--gold-border);
    padding: 0.45rem 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    background: transparent;
}

.product-badge:hover {
    background: var(--gold-mist);
}

/* ══ SERVICES ══ */
.services {
    background: var(--pearl-light);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--pearl-mid);
}

.service-card {
    background: var(--pearl-lightest);
    padding: 2.5rem 2rem;
    transition: background 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    background: var(--linen);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--gold-deep);
    opacity: 0.5;
    margin-bottom: 1.2rem;
}

.service-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.8rem;
    color: var(--silver);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.service-science {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border-left: 2px solid var(--gold);
    padding-left: 0.6rem;
    margin-bottom: 1.5rem;
    opacity: 0.75;
}

.btn-service {
    font-family: var(--sans);
    font-size: 0.59rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--grad-gold);
    background-size: 200%;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(201,168,76,0.25);
}

.btn-service:hover {
    background-position: 100%;
    box-shadow: 0 4px 28px rgba(201,168,76,0.45);
    transform: translateY(-1px);
}

/* ══ GALLERY ══ */
.gallery {
    background: var(--pearl);
    padding: 7rem 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 6px; margin-top: 3rem;
}

.gallery-item {
    overflow: hidden; position: relative;
    background: var(--pearl-deep);
}

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.gallery-ig {
    font-size: 0.75rem;
    color: var(--ash);
    letter-spacing: 0.1em;
}

.gallery-ig a {
    color: var(--gold-deep);
    text-decoration: none;
    transition: color 0.2s;
}

.gallery-ig a:hover {
    color: var(--gold);
}

.btn-rose {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--grad-gold);
    background-size: 200%;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}

.btn-rose:hover {
    background-position: 100%;
    box-shadow: 0 8px 40px rgba(201,168,76,0.55);
    transform: translateY(-2px);
}

/* ══ PROCESS ══ */
.process {
    background: var(--pearl-lightest);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem; }

.step {
    position: relative;
    padding-top: 1rem; }

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-border); }

.step-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink); margin-bottom: 0.75rem;
}

.step-title.science {
    color: var(--gold-deep);
}

.step-desc {
    font-size: 0.8rem;
    color: var(--ash);
    line-height: 1.85;
}

.step-science-label {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gold-mist);
    color: var(--gold-deep);
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.5rem;
}

/* ══ BRAND STANDARD ══ */
.brand-standard {
    background: var(--pearl);
    padding: 7rem 5rem;
}

.brand-standard-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.brand-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px; background: var(--pearl-deep);
}

.brand-pillar {
    background: var(--pearl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.brand-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.brand-pillar:hover {
    background: var(--linen);
}

.brand-pillar:hover::after {
    height: 100%;
}

.pillar-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.pillar-desc {
    font-size: 0.77rem;
    color: var(--silver);
    line-height: 1.8;
}

/* ══ TESTIMONIALS ══ */
.testimonials {
    background: var(--pearl-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    border: 0.5px solid var(--pearl-deep);
    padding: 2.8rem 2.4rem;
    position: relative;
    background: var(--pearl-lightest);
    transition: all 0.3s;
}

.testimonial-card:hover { background: var(--linen); box-shadow: 0 8px 40px rgba(168,134,58,0.08); }

.testimonial-card::before {
    content: '"'; position: absolute; top: 1rem; left: 2rem;
    font-family: var(--serif); font-size: 7rem; color: var(--gold);
    opacity: 0.1; line-height: 1;
}

.t-stars {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.t-text {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.t-author {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
}

.t-platform {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* ══ LANZA SHOP ══ */
/* ══════════════════════════════════════════
    LANZA SHOP — FOTO-10 + PROD 1-6
    Instrucciones individuales en cada zona
══════════════════════════════════════════ */
.lanza-shop {
    background: var(--pearl);
    padding: 7rem 5rem;
}

.lanza-shop-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 5rem;
}

/* ══════════════════════════════════════════
    📸 FOTO-10 — LANZA SHOP AMBIENTE
    Tamaño ideal: 800×600px (landscape)
    Contenido: Display de productos Lanza en
                el salón, estantes con productos,
                o flat lay de botellas Lanza
══════════════════════════════════════════ */
.lanza-hero-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--linen);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--gold-border);
}

.lanza-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.lanza-intro-text {
    color: var(--silver);
}

.lanza-intro-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.lanza-intro-text h2 em {
    font-style: italic;
    color: var(--gold-deep);
}

.lanza-intro-text p {
    font-size: 0.9rem;
    line-height: 2.05;
    margin-bottom: 1.5rem;
    color: var(--silver);
}

.lanza-intro-text p strong {
    color:var(--gold-deep);
}

.lanza-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.lanza-badge {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 0.5px solid var(--gold-border);
    padding: 0.4rem 1rem; transition: all 0.3s;
}

.lanza-badge:hover {
    background: var(--gold-mist);
}

.lanza-products-label {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lanza-products-label::after {
    content: '';
    flex: 1;
    height: 0.5px;
    background: var(--gold-border-s);
}

.lanza-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--pearl-deep);
}

.lanza-product-card {
    background: var(--pearl-lightest);
    overflow: hidden;
    transition: all 0.3s;
}

.lanza-product-card:hover {
    background: var(--linen);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168,134,58,0.1);
}

.lanza-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pearl-lightest);
}

.prod-1 {
    background: #f5f0e8;
}

.prod-2 {
    background: #f0ebe1;
}

.prod-3 {
    background: #eee8de;
}

.prod-4 {
    background: #f5f0e8;
}

.prod-5 {
    background: #f0ebe1;
}

.prod-6 {
    background: #eee8de;
}

.lanza-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    display: block;
}

.lanza-product-info {
    padding: 1.5rem 1.6rem 2rem;
}

.prod-line {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
}

.prod-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.prod-desc {
    font-size: 0.75rem;
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.prod-cta {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    text-decoration: none;
    border-bottom: 0.5px solid var(--gold-border);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.prod-cta:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.lanza-shop-cta {
    margin-top: 4rem;
    text-align: center;
}

.lanza-shop-cta p {
    font-size: 0.85rem;
    color: var(--ash);
    margin-bottom: 2rem;
    font-style: italic;
    font-family: var(--serif);
}

/* ══ FAQ ══ */
.faq {
    background: var(--pearl-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--pearl-mid);
    margin-top: 4rem;
}

.faq-item {
    background: var(--pearl-lightest);
    padding: 2.2rem 2.6rem;
    transition: background 0.2s;
}

.faq-item:hover {
    background: var(--linen);
}

.faq-q {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.faq-q span {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--gold-deep);
    font-weight: 300;
    flex-shrink: 0;
    opacity: 0.7;
}

.faq-a {
    font-size: 0.8rem;
    color: var(--silver);
    line-height: 1.85;
}

/* ══ BOOKING CTA ══ */
.booking-cta {
    background: var(--ink);
    padding: 9rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: 'HAIR AFFAIRS';
    position: absolute;
    font-family: var(--serif);
    font-size: 11rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.15em;
}

.booking-cta .section-eyebrow {
    justify-content: center;
    color: var(--gold);
}

.booking-cta .section-eyebrow::before {
    background: var(--grad-gold);
}

.booking-cta .section-title {
    color: var(--pearl-light);
}

.booking-cta .section-title em {
    color: var(--gold-bright);
}

.booking-sub {
    font-size: 0.92rem;
    color: rgba(224,216,204,0.65);
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.booking-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.booking-phone {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(224,216,204,0.6);
}

.booking-phone a {
    color: var(--gold-pale);
    text-decoration: none;
}

/* ══ LOCATION ══ */
section.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    min-height: 500px;
}

.location-info {
    background: var(--pearl-lightest);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2.section-title {
    font-size: 2.2rem;
}

.location-info a.btn-primary {
    align-self: flex-start;
    margin-top: 1rem;
}

.location-detail {
    margin-bottom: 2rem;
}

.location-detail-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
}

.location-detail-val {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.6;
}

.location-detail-val a {
    color: var(--gold-deep);
    text-decoration: none;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: grayscale(40%) brightness(0.95) sepia(5%);
}

/* ══ FOOTER ══ */
footer {
    background: var(--ink-mid);
    padding: 4rem 5rem;
    border-top: 0.5px solid var(--gold-border-s);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.5px solid rgba(201,168,76,0.12);
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--pearl-light);
    font-weight: 300;
}

.footer-logo span {
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mist);
    display: block;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid rgba(201,168,76,0.2);
    color: var(--mist);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-mist);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links a {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: rgba(160,149,144,0.4);
    text-transform: uppercase;
    text-align: center;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-standard-inner > .reveal:first-child p {
    font-size:0.9rem;
    color:var(--silver);
    line-height:2;
    margin-bottom:2rem;
}

/* ══ THE EXPERIENCE INTRO SECTION ══ */
.experience-intro {
    background: var(--pearl-lightest);
    padding: 5.5rem 5rem;
    text-align: center;
    border-bottom: 0.5px solid var(--gold-border-s);
    position: relative;
}

.experience-intro::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 3.5rem;
    background: var(--grad-gold);
}

.experience-eyebrow {
    font-family: var(--sans); font-size: 0.58rem; font-weight: 500;
    letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold-deep);
    margin-bottom: 1.6rem; display: flex; align-items: center;
    justify-content: center; gap: 1rem;
}

.experience-eyebrow::before, .experience-eyebrow::after {
    content: ''; display: block; width: 2rem; height: 0.5px; background: var(--grad-gold);
}

.experience-quote {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-style: italic; font-weight: 300;
    color: var(--ink-mid);
    max-width: 820px; margin: 0 auto;
    line-height: 1.85;
}

.experience-quote strong {
    font-style: normal;
    font-weight: 500;
    color: var(--gold-deep);
}

.sticky-book-btn {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 997;
    background: var(--grad-gold);
    background-size: 200%;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 -6px 30px rgba(168,134,58,0.35);
    animation: shimmer 4s ease infinite;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-book-btn.hidden {
    opacity: 0; pointer-events: none; transform: translateY(100%);
}

.sticky-book-btn a {
    font-family: var(--sans);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #fff; text-decoration: none;
}

/* ══ MOBILE ══ */
@media (max-width: 1620px) {
    .footer-top {
        grid-template-columns: 1fr auto auto;
    }
}

@media (max-width: 1350px) {
    nav {
        padding: 0 2rem;
    }

    .nav-logo {
        min-width: 310px;
    }

    .nav-logo-main {
        font-size: 2.15rem;
        letter-spacing: 4px;
    }

    footer {
        padding: 4rem 2rem;
    }
}

@media (max-width: 1120px) {
    .nav-links {
        display: none;
    }

    .nav-logo {
        min-width: 0;
    }

    .nav-logo-main {
        font-size: clamp(1.7rem, 4vw, 2.4rem);
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lanza-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-standard {
        padding: 7rem 3rem;
    }

    .brand-standard-inner {
        gap: 4rem;
    }
}

@media (max-width: 900px) {

    nav {
        padding: 1.2rem 1.4rem;
        min-height: 112px;
        height: 112px;
        gap: 1rem;
    }

    /* Logo más compacto en móvil */
    .nav-logo-main {
        font-size: clamp(1.55rem, 5.4vw, 2.05rem);
        letter-spacing: 3.2px;
    }

    .nav-logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.38em;
        gap: 0.65rem;
    }

    .nav-logo-sub::before {
        width: 1.4rem;
    }

    section {
        padding: 4rem 1.2rem;
    }

    .experience-intro::before {
        height: 2rem;
    }

    /* Hero en móvil: columna única */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto; max-height: none;
        padding-top: 30px;
    }

    .hero-left {
        padding: 2.5rem 1.2rem;
    }

    .hero-right {
        min-height: 65vw;
        max-height: 85vw;
    }

    .hero-img-main img {
        object-fit: contain !important;
        object-position: center center;
        background: #000000;
        padding: 0;
    }

    .hero-img-main {
        background: #0d0b09;
    }

    /* About */
    .about {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-accent-card {
        right: 0.5rem;
    }

    .about-img-main {
        aspect-ratio: 3 / 4;
        max-height: 640px;
    }

    .about-img-main img {
        object-fit: cover;
        object-position: center top;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Gallery — cuadrados uniformes en móvil */
    .gallery {
        padding: 4rem 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 4px;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
    }

    .gallery-item:first-child {
        grid-row: auto;
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Brand */
    .brand-standard-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-pillars {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Lanza shop */
    .lanza-shop-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lanza-products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lanza-shop {
        padding: 4rem 1.2rem;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Booking */
    .booking-cta {
        padding: 5rem 1.2rem;
    }

    .booking-actions {
        flex-direction: column;
    }

    .booking-cta::before {
        font-size: 3rem;
    }

    /* Location & Footer */
    .location {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 3rem 1.2rem;
    }

    footer {
        padding: 3rem 1.2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .gallery-cta {
        flex-direction: column;
        gap: 1rem; text-align: center;
    }

    /* Experience intro */
    .experience-intro {
        padding: 3rem 1.2rem;
    }

    /* Sticky button & body padding */
    .sticky-book-btn {
        display: block;
    }

    body {
        padding-bottom: 58px;
    }
}

@media (max-width: 480px) {
    .nav-logo-main {
        font-size: clamp(1.18rem, 5.8vw, 1.55rem);
        letter-spacing: 2px;
    }

    .nav-logo-sub {
        font-size: 0.43rem;
        letter-spacing: 0.28em;
    }

    .lanza-products-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    section.location {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 3rem 2rem;
    }
}