/* =====================================================
   CLAU BEAUTY STUDIO — Light DA (greige · gold · white)
   Mobile-first
   ===================================================== */

:root {
    /* Palette */
    --c-bg: #f4f1ea;
    --c-bg-2: #ece6db;
    --c-surface: #ffffff;
    --c-surface-2: #faf7f1;

    --c-ink: #2c2723;
    --c-ink-2: #756c61;
    --c-ink-3: #a89f93;

    --c-gold: #b08a45;
    --c-gold-deep: #876731;
    --c-gold-soft: #e7d9bd;
    --c-gold-glow: rgba(176, 138, 69, 0.16);

    --c-line: rgba(44, 39, 35, 0.10);
    --c-line-2: rgba(44, 39, 35, 0.06);

    --c-wa: #25d366;
    --c-wa-deep: #1aa851;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --pad: clamp(1.1rem, 5vw, 2.5rem);
    --maxw: 1180px;

    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --hdr-h: 60px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-ink);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; }
::selection { background: var(--c-gold); color: #fff; }

/* ============ Shared ============ */
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.6rem;
}

.h-serif {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.9rem, 7vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--c-ink);
}
.h-serif em { color: var(--c-gold-deep); }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
}
.btn svg { width: 20px; height: 20px; }

.btn--wa {
    background: var(--c-wa);
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}
.btn--wa:active { transform: scale(0.98); }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1rem; width: 100%; max-width: 380px; }

.btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border: 1px solid var(--c-line);
}

@media (hover:hover) {
    .btn--wa:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42); }
    .btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold-deep); }
}

/* ============ HEADER ============ */
.hdr {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--hdr-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad);
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(244, 241, 234, 0);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.hdr.is-scrolled {
    background: rgba(244, 241, 234, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--c-line), 0 6px 24px rgba(44, 39, 35, 0.05);
}

.hdr__logo { display: inline-flex; align-items: center; }
.hdr__logo-img { height: 42px; width: 42px; object-fit: cover; border-radius: 10px; display: block; box-shadow: 0 2px 10px rgba(44, 39, 35, 0.14); }

.hdr__wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--c-wa);
    color: #fff;
    padding: 0.5rem 0.95rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.hdr__wa svg { width: 17px; height: 17px; }

/* ============ INTRO ============ */
.intro {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--hdr-h) + 2rem) var(--pad) 3rem;
    overflow: hidden;
}
.intro__halo {
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 130%; height: 80%;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(176, 138, 69, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 30%, rgba(231, 217, 189, 0.5) 0%, transparent 45%);
    pointer-events: none;
}
.intro__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 560px; }

.intro__logo { display: flex; justify-content: center; }
.intro__logo-img { width: clamp(180px, 56vw, 240px); aspect-ratio: 1; object-fit: cover; border-radius: 26px; box-shadow: 0 24px 60px rgba(44, 39, 35, 0.22), 0 4px 16px rgba(44, 39, 35, 0.12); }

.intro__tag {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.15rem, 4.6vw, 1.5rem);
    color: var(--c-ink-2);
    margin: 1.4rem 0 1.6rem;
}
.intro__tag em { color: var(--c-gold-deep); font-weight: 500; }

.intro__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 1.8rem; }
.qlink {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-ink);
    box-shadow: 0 3px 12px rgba(44, 39, 35, 0.04);
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.qlink svg { width: 17px; height: 17px; color: var(--c-gold); }
.qlink i { font-style: normal; font-size: 0.62rem; color: var(--c-ink-3); }
.qlink--soon { opacity: 0.6; }
@media (hover:hover) { .qlink:hover { transform: translateY(-2px); border-color: var(--c-gold); box-shadow: 0 8px 20px rgba(44, 39, 35, 0.08); } }

.intro__scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-ink-3);
}
.intro__scroll svg { width: 18px; height: 18px; color: var(--c-gold); animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============ MENU ============ */
.menu { padding: clamp(2.5rem, 8vw, 4.5rem) var(--pad) clamp(2rem, 6vw, 3.5rem); max-width: var(--maxw); margin: 0 auto; }
.menu__head { text-align: center; margin-bottom: 1.6rem; }
.menu__sub { color: var(--c-ink-2); font-size: 0.95rem; margin-top: 0.5rem; }

/* Category grid — todo visible de un vistazo */
.pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 0 0 1.6rem;
}
.pill {
    padding: 0.78rem 0.6rem;
    border-radius: 14px;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--c-ink);
    text-align: center;
    box-shadow: 0 3px 12px rgba(44, 39, 35, 0.04);
    transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.pill:active { transform: scale(0.96); }
.pill--star { color: var(--c-gold-deep); border-color: var(--c-gold-soft); }
.pill.is-active { background: var(--c-gold); border-color: var(--c-gold); color: #fff; box-shadow: 0 6px 18px var(--c-gold-glow); }

/* Panels */
.panel { display: none; }
.panel.is-active { display: block; animation: panelIn 0.5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.panel__note {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 0.95rem 1.15rem;
    font-size: 0.9rem;
    color: var(--c-ink-2);
    line-height: 1.55;
    margin-bottom: 1.1rem;
}
.panel__note strong { color: var(--c-ink); }
.panel__note--star { border-left: 3px solid var(--c-gold); background: linear-gradient(to right, rgba(176,138,69,0.06), var(--c-surface)); }
.panel__note--star strong { color: var(--c-gold-deep); }

/* Service grid + cards */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
.svc-grid--compact { gap: 0.6rem; }

.svc {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(44, 39, 35, 0.05);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
@media (hover:hover) { .svc:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(44, 39, 35, 0.1); border-color: var(--c-gold-soft); } }

.svc--hot { border-color: var(--c-gold-soft); background: linear-gradient(180deg, rgba(176,138,69,0.045), var(--c-surface)); }

.svc__top { display: grid; grid-template-columns: 86px 1fr; gap: 0.85rem; align-items: center; }
.svc__img { width: 86px; height: 86px; border-radius: var(--r-sm); }
.svc__head { min-width: 0; }
.svc__name { font-size: 1rem; font-weight: 600; color: var(--c-ink); line-height: 1.25; }
.svc__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin: 0.3rem 0; }
.svc__time {
    font-size: 0.78rem; color: var(--c-ink-2); display: inline-flex; align-items: center; gap: 0.32rem;
}
.svc__time::before {
    content: ''; width: 13px; height: 13px; flex-shrink: 0;
    background: var(--c-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7.5V12l3 1.8'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7.5V12l3 1.8'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc__price { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--c-gold-deep); }
.svc__info { font-size: 0.84rem; color: var(--c-ink-2); line-height: 1.45; }

.svc__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    background: var(--c-wa); color: #fff;
    border-radius: 100px; padding: 0.65rem 1rem;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
    transition: filter 0.3s, transform 0.2s;
}
.svc__cta::before {
    content: ''; width: 15px; height: 15px; flex-shrink: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.86 9.86 0 001.515 5.26l-.999 3.648 3.973-1.607z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc__cta:active { transform: scale(0.98); }
@media (hover:hover) { .svc__cta:hover { filter: brightness(1.05); } }

/* Feature cards (eventos) */
.svc-grid--feature { gap: 1rem; }
.svc--feat { padding: 0; overflow: hidden; }
.svc--feat .svc__img { width: 100%; height: 175px; border-radius: 0; }
.svc--feat .svc__body { display: flex; flex-direction: column; gap: 0.4rem; padding: 1rem 1.1rem 1.2rem; }
.svc--feat .svc__name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; }
.svc--feat .svc__cta { margin-top: 0.4rem; }

/* Compact rows (depilación) */
.svc--row { flex-direction: row; align-items: center; gap: 0.9rem; padding: 0.85rem 1rem; }
.svc--row .svc__head { flex: 1; display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.svc--row .svc__name { font-size: 0.95rem; }
.svc--row .svc__meta { margin: 0; gap: 0.75rem; flex-shrink: 0; }
.svc--row .svc__price { font-size: 1rem; }
.svc--row .svc__cta { flex-shrink: 0; padding: 0.55rem 0.95rem; }

.menu__legal { text-align: center; font-size: 0.78rem; color: var(--c-ink-3); margin-top: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ============ EVENTOS (sección dedicada) ============ */
.eventos {
    position: relative;
    padding: clamp(2.8rem, 9vw, 5rem) var(--pad);
    background: linear-gradient(180deg, var(--c-bg) 0%, #f0e7d5 52%, var(--c-bg) 100%);
    overflow: hidden;
}
.eventos__halo {
    position: absolute; top: -18%; left: 50%; transform: translateX(-50%);
    width: 120%; height: 70%;
    background: radial-gradient(ellipse at center, rgba(176, 138, 69, 0.16) 0%, transparent 62%);
    pointer-events: none;
}
.eventos__head { position: relative; z-index: 1; text-align: center; max-width: 620px; margin: 0 auto 2rem; }
.eventos__head .h-serif em { font-style: italic; color: var(--c-gold-deep); }
.eventos__sub { color: var(--c-ink-2); font-size: 0.95rem; line-height: 1.6; margin-top: 0.6rem; }
.eventos__grid { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }

/* ============ WELLA ============ */
.wella { background: var(--c-bg-2); padding: clamp(2.5rem, 8vw, 4.5rem) var(--pad); }
.wella__head { max-width: 620px; margin: 0 auto 2rem; text-align: center; }
.wella__badge { display: inline-flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.wella__brand { font-size: 1.7rem; font-weight: 700; letter-spacing: 0.2em; color: var(--c-ink); padding-left: 0.2em; }
.wella__line { width: 1px; height: 30px; background: var(--c-gold); opacity: 0.6; }
.wella__partner { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold-deep); text-align: left; line-height: 1.35; }
.wella__intro { color: var(--c-ink-2); font-size: 0.95rem; line-height: 1.6; }
.wella__intro strong { color: var(--c-gold-deep); font-weight: 600; }

.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; max-width: var(--maxw); margin: 0 auto; }
.prod {
    position: relative;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(44, 39, 35, 0.05);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
@media (hover:hover) { .prod:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(44, 39, 35, 0.12); } }
.prod__off {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: var(--c-gold); color: #fff;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem; border-radius: 100px;
    box-shadow: 0 4px 12px var(--c-gold-glow);
}
.prod__img { width: 100%; aspect-ratio: 1 / 1; }
.prod__body { padding: 0.8rem 0.85rem 0.95rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.prod__name { font-size: 0.92rem; font-weight: 600; color: var(--c-ink); line-height: 1.25; }
.prod__desc { font-size: 0.8rem; color: var(--c-ink-2); line-height: 1.45; flex: 1; }
.prod__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.3rem; }
.prod__price { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--c-gold-deep); }
.prod__price s { font-family: var(--font-sans); font-size: 0.8rem; color: var(--c-ink-3); margin-right: 0.3rem; }
.prod__cta { background: var(--c-wa); color: #fff; border-radius: 100px; padding: 0.5rem 0.9rem; font-size: 0.8rem; font-weight: 600; transition: filter 0.3s, transform 0.2s; }
.prod__cta:active { transform: scale(0.97); }
.prod__pickup { font-size: 0.72rem; color: var(--c-gold-deep); display: inline-flex; align-items: center; gap: 0.3rem; }
.prod__pickup::before { content: '✓'; font-weight: 700; }

/* ============ UBICACIÓN ============ */
.ubi { padding: clamp(2.5rem, 8vw, 4.5rem) var(--pad); max-width: var(--maxw); margin: 0 auto; display: grid; gap: 1.5rem; }
.ubi__hours { margin: 1.2rem 0 1.5rem; }
.ubi__hours li { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--c-line-2); font-size: 0.92rem; }
.ubi__hours li:last-child { border-bottom: none; }
.ubi__hours span:first-child { color: var(--c-ink); }
.ubi__hours span:last-child { color: var(--c-ink-2); }
.ubi__closed { color: var(--c-gold-deep) !important; font-style: italic; }
.ubi__btns { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.ubi__btns .btn { flex: 1; min-width: 130px; }
.ubi__map { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-line); height: 320px; box-shadow: 0 10px 30px rgba(44, 39, 35, 0.08); }
.ubi__map iframe { height: 100%; filter: grayscale(0.35) contrast(1.02); }

/* ============ SOCIAL ============ */
.social { padding: clamp(2.5rem, 8vw, 4rem) var(--pad); text-align: center; background: var(--c-bg-2); }
.social__inner { max-width: 540px; margin: 0 auto; }
.social__inner p { color: var(--c-ink-2); margin: 0.5rem 0 1.5rem; }
.social__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; }
.social__btn { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.8rem 1.3rem; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 100px; font-size: 0.9rem; font-weight: 500; box-shadow: 0 4px 14px rgba(44,39,35,0.05); transition: transform 0.3s var(--ease), border-color 0.3s; }
.social__btn svg { width: 22px; height: 22px; color: var(--c-gold); }
.social__btn--soon { opacity: 0.55; }
@media (hover:hover) { .social__btn:not(.social__btn--soon):hover { transform: translateY(-2px); border-color: var(--c-gold); } }

/* ============ FOOTER ============ */
.ft { text-align: center; padding: 2.5rem var(--pad) calc(2.5rem + env(safe-area-inset-bottom, 0)); background: var(--c-ink); color: #d9d2c8; }
.ft__logo { display: flex; justify-content: center; margin-bottom: 1rem; }
.ft__logo-img { width: 78px; height: 78px; object-fit: cover; border-radius: 16px; box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35); }
.ft__meta { font-size: 0.82rem; color: #b3aa9d; margin-bottom: 0.4rem; }
.ft__copy { font-size: 0.76rem; color: #847c70; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    z-index: 95;
    width: 58px; height: 58px;
    background: var(--c-wa);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
    transition: transform 0.4s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--c-wa); z-index: -1; animation: waPulse 2.6s var(--ease) infinite; }
@keyframes waPulse { 0%,100% { transform: scale(1); opacity: 0.5; } 55% { transform: scale(1.4); opacity: 0; } }
@media (hover:hover) { .wa-float:hover { transform: scale(1.08); } }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ PLACEHOLDERS ============ */
.ph {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #efe7d8 0%, #e2d6c0 100%);
    overflow: hidden;
}
.ph::after {
    content: ''; position: absolute; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
    top: -10%; left: -10%;
}
.ph span {
    position: relative; z-index: 1;
    font-family: var(--font-serif); font-style: italic; font-size: 0.8rem;
    color: var(--c-gold-deep);
    background: rgba(255, 255, 255, 0.6);
    padding: 0.22rem 0.7rem; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(2px);
    text-align: center;
}
.svc--feat .ph span, .prod__img span { font-size: 0.92rem; }

.ph--bridal { background: linear-gradient(135deg, #f3ece1 0%, #e8d8cb 100%); }
.ph--quince { background: linear-gradient(135deg, #f3e6ea 0%, #e6d3df 100%); }
.ph--folklore { background: linear-gradient(135deg, #efd9c4 0%, #d9b48f 100%); }
.ph--runway { background: linear-gradient(135deg, #e6e2ec 0%, #d4cedd 100%); }
.ph--hair { background: linear-gradient(135deg, #efe6d6 0%, #ddcdb2 100%); }
.ph--updo { background: linear-gradient(135deg, #f1e7d2 0%, #e2d0ad 100%); }
.ph--color { background: linear-gradient(135deg, #ece1d0 0%, #d8c4d0 100%); }
.ph--makeup { background: linear-gradient(135deg, #f5e3da 0%, #e8c9c2 100%); }
.ph--nails { background: linear-gradient(135deg, #f4e6e6 0%, #e7cfd2 100%); }
.ph--treat { background: linear-gradient(135deg, #e6ebdd 0%, #d3d8c0 100%); }
.ph--advice { background: linear-gradient(135deg, #e9e6df 0%, #d6cfc2 100%); }
.ph--prod1 { background: linear-gradient(135deg, #ede6da 0%, #d9cbb2 100%); }
.ph--prod2 { background: linear-gradient(135deg, #e7e2ea 0%, #cfc6d6 100%); }
.ph--prod3 { background: linear-gradient(135deg, #f0e7d3 0%, #ddc99f 100%); }
.ph--prod4 { background: linear-gradient(135deg, #e6ebe2 0%, #ccd4c4 100%); }

/* ============ Tarjeta clicable (hint) ============ */
.svc { cursor: pointer; }
.svc__img { position: relative; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc__img::after {
    content: '+';
    position: absolute; right: 8px; bottom: 8px;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.92); color: var(--c-gold-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 600; line-height: 1;
    box-shadow: 0 2px 8px rgba(44, 39, 35, 0.22);
    transition: transform 0.3s var(--ease);
    pointer-events: none;
}
@media (hover:hover) { .svc:hover .svc__img::after { transform: scale(1.12); } }

/* ============ WELLA banner ============ */
.wella__banner {
    position: relative; max-width: var(--maxw); margin: 0 auto 1.6rem;
    border-radius: var(--r-md); overflow: hidden;
    box-shadow: 0 12px 34px rgba(44, 39, 35, 0.12);
}
.wella__banner .ph { width: 100%; aspect-ratio: 16 / 7; }
.ph--wellabanner { background: linear-gradient(135deg, #dccaa4 0%, #b89a63 55%, #8d6f3c 100%); }
.wella__banner-tag {
    position: absolute; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; gap: 0.8rem;
    padding: 1.4rem 1.3rem 1.1rem;
    background: linear-gradient(to top, rgba(24, 19, 13, 0.78) 0%, transparent 100%);
    color: #fff;
}
.wella__banner-brand { font-size: 1.7rem; font-weight: 700; letter-spacing: 0.18em; }
.wella__banner-txt { font-size: 0.84rem; opacity: 0.92; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-end; justify-content: center; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(22, 18, 13, 0.5); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.4s var(--ease); }
.modal.is-open .modal__overlay { opacity: 1; }
.modal__box {
    position: relative; z-index: 1;
    width: 100%; max-width: 580px; max-height: 92vh; max-height: 92svh;
    background: var(--c-surface);
    border-radius: 24px 24px 0 0;
    overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.55s var(--ease);
    box-shadow: 0 -12px 44px rgba(0, 0, 0, 0.28);
}
.modal.is-open .modal__box { transform: translateY(0); }
.modal__close {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.92); color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
.modal__close svg { width: 20px; height: 20px; }

.modal__main { position: relative; background: #14110d; display: flex; align-items: center; justify-content: center; min-height: 200px; max-height: 50vh; }
.modal__main .ph { width: 100%; aspect-ratio: 4 / 3; }
.modal__main img, .modal__main video { width: auto; height: auto; max-width: 100%; max-height: 50vh; object-fit: contain; display: block; }
.modal__main--cover { aspect-ratio: 4 / 3; }
.modal__main--cover img, .modal__main--cover video { width: 100%; height: 100%; max-height: 100%; }
.modal__main .ph span { font-size: 0.95rem; }
.modal__thumbs { display: flex; gap: 8px; padding: 10px 12px; overflow-x: auto; scrollbar-width: none; }
.modal__thumbs::-webkit-scrollbar { display: none; }
.modal__thumb { flex-shrink: 0; width: 62px; height: 62px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; position: relative; background: var(--c-bg-2); }
.modal__thumb.is-active { border-color: var(--c-gold); }
.modal__thumb .ph, .modal__thumb img, .modal__thumb video { width: 100%; height: 100%; object-fit: cover; }
.modal__thumb .ph span { display: none; }

/* video play badge */
.media-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(176, 138, 69, 0.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.media-play::after { content: ''; width: 0; height: 0; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.modal__thumb .media-play { width: 26px; height: 26px; }
.modal__thumb .media-play::after { border-left-width: 9px; border-top-width: 6px; border-bottom-width: 6px; margin-left: 2px; }
.modal__main .media-lbl, .modal__thumb .media-lbl { position: absolute; bottom: 8px; left: 8px; background: rgba(22,18,13,0.7); color: #fff; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 100px; }
.modal__thumb .media-lbl { display: none; }

.modal--nogallery .modal__gallery { display: none; }
.modal--nogallery .modal__close { background: var(--c-bg-2); }

.modal__info { padding: 1.3rem 1.35rem calc(1.6rem + env(safe-area-inset-bottom, 0)); }
.modal__tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 0.5rem; }
.modal__title { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--c-ink); line-height: 1.15; }
.modal__meta { display: flex; align-items: center; gap: 0.8rem; margin: 0.55rem 0 1rem; }
.modal__meta .svc__time { font-size: 0.85rem; }
.modal__meta .svc__price { font-size: 1.15rem; }
.modal__cta { display: flex; align-items: center; justify-content: center; gap: 0.55rem; width: 100%; background: var(--c-wa); color: #fff; border-radius: 100px; padding: 1rem 1.5rem; font-size: 0.95rem; font-weight: 600; box-shadow: 0 8px 22px rgba(37,211,102,0.3); margin-bottom: 1.1rem; }
.modal__desc { color: var(--c-ink-2); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.modal__cta svg { width: 20px; height: 20px; }

body.modal-open { overflow: hidden; }

@media (min-width: 680px) {
    .modal { align-items: center; padding: 2rem; }
    .modal__box { border-radius: 24px; transform: translateY(24px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s; max-height: 88vh; }
    .modal.is-open .modal__box { transform: none; opacity: 1; }
    .modal__main { max-height: 62vh; }
    .modal__main img, .modal__main video { max-height: 62vh; }
}

/* ============ RESPONSIVE (enhancements) ============ */
@media (min-width: 680px) {
    .pills { grid-template-columns: repeat(4, 1fr); gap: 0.6rem; max-width: 720px; margin-left: auto; margin-right: auto; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .svc-grid--compact { grid-template-columns: 1fr 1fr; }
    .svc-grid--feature { grid-template-columns: 1fr 1fr; }
    .prod-grid { grid-template-columns: repeat(4, 1fr); }
    .ubi { grid-template-columns: 1fr 1.3fr; align-items: center; }
    .ubi__map { height: 100%; min-height: 360px; }

    /* Service cards → vertical (imagen arriba) en pantallas grandes */
    .svc-grid:not(.svc-grid--compact):not(.svc-grid--feature) .svc { padding: 0; gap: 0; }
    .svc-grid:not(.svc-grid--compact):not(.svc-grid--feature) .svc__top { grid-template-columns: 1fr; gap: 0; }
    .svc-grid:not(.svc-grid--compact):not(.svc-grid--feature) .svc__img { width: 100%; height: 168px; border-radius: 0; }
    .svc-grid:not(.svc-grid--compact):not(.svc-grid--feature) .svc__head { padding: 0.95rem 1.05rem 0.4rem; }
    .svc-grid:not(.svc-grid--compact):not(.svc-grid--feature) .svc__cta { margin: auto 1.05rem 1.05rem; }
}

@media (min-width: 1000px) {
    :root { --hdr-h: 72px; }
    .svc-grid { grid-template-columns: 1fr 1fr 1fr; }
    .svc-grid--feature { grid-template-columns: repeat(4, 1fr); }
    .svc-grid--compact { grid-template-columns: 1fr 1fr 1fr; }
    .menu__head, .wella__head { margin-bottom: 2.2rem; }

    /* Hero con más presencia en desktop */
    .intro__inner { max-width: 700px; }
    .intro__logo-img { width: 250px; }
    .intro__tag { font-size: 1.7rem; margin: 1.7rem 0 2rem; }
    .intro__links { gap: 0.8rem; }
    .qlink { padding: 0.7rem 1.2rem; font-size: 0.88rem; }
    .menu__head .h-serif, .wella__head .h-serif { font-size: 3.2rem; }
}

/* ============ A11Y ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; border-radius: 6px; }
