:root {
    --deep-purple: #744D83;
    --light-purple: #E3DBE6;
    --light-blue: #D3EDEF;
    --turquoise: #23BBB7;
    --deep-blue: #23627C;
    --cream: #F0EADF;

    --teal: var(--turquoise);
    --teal-dark: var(--deep-blue);
    --gold: var(--turquoise);
    --gold-hover: #1aaea9;
    --gold-soft: var(--light-blue);
    --blush: var(--light-purple);
    --ink: #243644;
    --muted: #5a6b78;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 18px 40px -18px rgba(35, 98, 124, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 .5rem;
    color: var(--ink);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section { padding: 6rem 0; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .72rem;
    font-weight: 600;
    color: var(--deep-purple);
    margin: 0 0 1rem;
}
.eyebrow.light { color: var(--light-purple); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.section-sub { color: var(--muted); font-size: 1.02rem; }
.section-sub.light { color: rgba(255,255,255,.8); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: .95rem;
    font-family: inherit;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}
button.btn { border: 1.5px solid transparent; }
.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(35, 187, 183, 0.55);
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.7);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.navbar.scrolled {
    background: rgba(240, 234, 223, 0.96);
    padding: .65rem 0;
    box-shadow: 0 8px 30px -20px rgba(0,0,0,.4);
    backdrop-filter: blur(8px);
}
.navbar.menu-open {
    background: rgba(240, 234, 223, 0.98);
    backdrop-filter: none;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; line-height: 1; }
.brand-logo {
    height: 52px;
    width: auto;
    transition: height .35s ease, filter .35s ease;
    /* Blanco mientras el navbar es transparente sobre el hero */
    filter: brightness(0) invert(1);
}
.navbar.scrolled .brand-logo { height: 42px; filter: none; }
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}
.brand-sub {
    font-size: .62rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-top: 2px;
}
.navbar.scrolled .brand-name { color: var(--teal-dark); }
.navbar.scrolled .brand-sub { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    font-size: .92rem;
    font-weight: 400;
    color: rgba(255,255,255,.92);
    position: relative;
    transition: color .25s ease;
}
.nav-links a:not(.btn-reserva)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}
.nav-links a:not(.btn-reserva):hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--ink); }

.btn-reserva {
    background: var(--gold);
    color: #fff !important;
    padding: .55rem 1.35rem;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: .92rem;
}
.btn-reserva:hover { background: var(--gold-hover); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #fff;
    cursor: pointer;
}
.navbar.scrolled .nav-toggle { color: var(--teal-dark); }
.nav-overlay { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}
/* Comparador antes / después */
.compare {
    position: absolute;
    inset: 0;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}
.layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.img-back {
    background-image: url('../img/despeinada.jpg');
}
.img-front {
    background-image: url('../img/peinada.jpg');
    clip-path: inset(0 50% 0 0);
}
.compare-label {
    position: absolute;
    top: 1.4rem;
    z-index: 6;
    background: rgba(28,25,22,.55);
    color: #fff;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.label-before { left: 1.4rem; }
.label-after { right: 1.4rem; }
.slider {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: 7;
    cursor: ew-resize;
    box-shadow: 0 0 12px rgba(0,0,0,.35);
}
.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: var(--gold);
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 8;
    cursor: ew-resize;
    padding: 8px;
    box-shadow: 0 10px 24px -8px rgba(0,0,0,.55);
    transition: transform .15s ease;
}
.handle:hover { transform: translate(-50%, -50%) scale(1.08); }
.handle img { width: 100%; height: 100%; pointer-events: none; }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(35, 98, 124, 0.9) 0%, rgba(35, 98, 124, 0.55) 40%, rgba(116, 77, 131, 0.12) 62%, rgba(0, 0, 0, 0) 100%);
}
.hero-content {
    position: relative;
    z-index: 6;
    width: min(1180px, 92%);
    margin: 0 auto;
    color: #fff;
    max-width: 640px;
}
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: .78rem;
    color: var(--light-blue);
    margin-bottom: 1.1rem;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.3rem);
    color: #fff;
    margin-bottom: 1.2rem;
}
.hero-title em { font-style: italic; color: var(--turquoise); }
.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,.9);
    max-width: 500px;
    margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn {
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.scroll-cue {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 44px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 20px;
    z-index: 2;
}
.scroll-cue span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    background: #fff;
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollMove 1.6s ease-in-out infinite;
}
@keyframes scrollMove { 0%{opacity:0;top:8px} 50%{opacity:1} 100%{opacity:0;top:24px} }

/* ---------- About ---------- */
.about {
    background: var(--white);
    overflow: hidden;
    padding: 5rem 0;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    min-height: 600px;
}
.about-mirror {
    position: relative;
}
.about-mirror img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 28px 40px rgba(35, 98, 124, 0.22));
}
.about-mirror--left {
    justify-self: start;
    margin-left: -6%;
}
.about-mirror--left img {
    margin-left: auto;
}
.about-mirror--right {
    justify-self: end;
    margin-right: -6%;
}
.about-mirror--right img {
    margin-right: auto;
}

/* Slide-in animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-center {
    text-align: center;
    padding: 2rem 2rem;
    max-width: 500px;
    justify-self: center;
}
.about-center h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    margin-bottom: 1.2rem;
}
.about-center p { color: var(--muted); margin-bottom: 1rem; }
.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: .7rem;
    justify-items: center;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 500;
    color: var(--ink);
}
.about-list i { color: var(--deep-purple); font-size: 1.15rem; }

/* ---------- Services ---------- */
.services {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 36px -24px rgba(0,0,0,.4);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -26px rgba(35, 98, 124, 0.45); }
.service-img {
    height: 190px;
    background-size: cover;
    background-position: top center;
    position: relative;
}
.service-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(35, 98, 124, 0.35));
}
.service-body { padding: 1.6rem 1.6rem 1.8rem; position: relative; }
.service-icon {
    position: absolute;
    top: -26px; left: 1.6rem;
    width: 52px; height: 52px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px -8px rgba(35, 187, 183, 0.55);
}
.service-body h3 { font-size: 1.6rem; margin: .6rem 0 .3rem; }
.service-body > p { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.service-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.service-body ul li {
    font-size: .9rem;
    color: var(--ink);
    padding-left: 1.3rem;
    position: relative;
}
.service-body ul li::before {
    content: "\F270";
    font-family: "bootstrap-icons";
    position: absolute; left: 0; top: 0;
    color: var(--gold);
    font-size: .8rem;
}
.services-cta { text-align: center; margin-top: 3.5rem; }
.services-cta p { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 1.2rem; color: var(--teal-dark); }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-wrap {
    position: relative;
    overflow: hidden;
    max-height: calc(280px * 3 + 1rem * 2);
    transition: max-height 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(to top, #fff 15%, rgba(255,255,255,.85) 45%, transparent);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.45s ease;
    z-index: 2;
}
.gallery-wrap.is-expanded {
    max-height: 4500px;
}
.gallery-wrap.is-expanded::after {
    opacity: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-expand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    margin: 1.25rem auto 0;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: var(--teal-dark);
}
.gallery-expand-text {
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
}
.gallery-expand-hint {
    font-size: .78rem;
    color: var(--muted);
    transition: opacity 0.3s ease;
}
.gallery-expand-arrow {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 10px 28px -10px rgba(35, 187, 183, 0.55);
    animation: galleryArrowBounce 1.5s ease-in-out infinite;
    transition: transform 0.4s ease, background 0.25s ease;
}
.gallery-expand:hover .gallery-expand-arrow {
    background: var(--gold-hover);
    animation-play-state: paused;
}
.gallery-wrap.is-expanded + .gallery-expand .gallery-expand-arrow {
    transform: rotate(180deg);
    animation: galleryArrowBounceUp 1.5s ease-in-out infinite;
}
.gallery-wrap.is-expanded + .gallery-expand .gallery-expand-hint {
    opacity: 0;
    height: 0;
    overflow: hidden;
}
@keyframes galleryArrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}
@keyframes galleryArrowBounceUp {
    0%, 100% { transform: rotate(180deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-7px); }
}
.gallery-item {
    position: relative;
    border: none;
    padding: 0;
    background: none;
    cursor: zoom-in;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    width: 100%;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .4s ease, filter .4s ease;
    filter: saturate(.95);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.08); }
.gallery-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(35, 98, 124, 0.35);
    opacity: 0;
    transition: opacity .3s ease;
    color: #fff;
    font-size: 2rem;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-note { text-align: center; margin-top: 2rem; color: var(--muted); }
.gallery-note a { color: var(--teal); font-weight: 600; }

/* Lightbox galería */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12,11,10,.92);
    backdrop-filter: blur(6px);
}
.gallery-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: min(1100px, 96vw);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}
.gallery-lightbox-content img {
    max-width: 100%;
    max-height: calc(90vh - 2rem);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: top center;
    border-radius: 8px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
    animation: galleryFadeIn .3s ease;
}
@keyframes galleryFadeIn {
    from { opacity: 0; transform: scale(.97); }
    to { opacity: 1; transform: scale(1); }
}
.gallery-lightbox-counter {
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    font-weight: 500;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    z-index: 3;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}
.gallery-lightbox-close {
    top: 18px; right: 18px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    font-size: 1.2rem;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,.22); }
.gallery-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    font-size: 1.4rem;
}
.gallery-lightbox-nav:hover { background: rgba(255,255,255,.25); }
.gallery-lightbox-prev { left: 18px; }
.gallery-lightbox-next { right: 18px; }
.gallery-lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.gallery-lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

/* ---------- Info (locations + hours) ---------- */
.info { background: var(--blush); }
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.location-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem 1.4rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.location-header h3 { font-size: 1.35rem; margin: 0; }
.location-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.2rem;
}
.location-header i { color: var(--deep-purple); font-size: 1.5rem; }
.location-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}
.location-hours li {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 1px solid var(--blush);
    font-size: .95rem;
}
.location-hours li span:last-child {
    color: var(--teal-dark);
    font-weight: 600;
}
.location-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    background: var(--blush);
    flex: 1;
    min-height: 200px;
}
.location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.location-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--teal);
    transition: color .2s ease;
}
.location-link:hover { color: var(--gold); }
.locations-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(35, 98, 124, 0.12);
}
.locations-contact a,
.locations-wa-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    color: var(--teal-dark);
    font-size: 1.05rem;
}
.locations-contact i { color: var(--gold); font-size: 1.2rem; }
.locations-wa-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}
.locations-wa-btn:hover { color: var(--gold); }

/* ---------- Contact ---------- */
.contact {
    background: linear-gradient(150deg, var(--deep-blue) 0%, var(--deep-purple) 100%);
    color: #fff;
}
.contact h2 { color: #fff; }
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.4rem;
}
.contact-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    padding: 2.2rem 1.4rem;
    text-align: center;
    transition: transform .3s ease, background .3s ease;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}
a.contact-card { display: block; }
button.contact-card {
    border: 1px solid rgba(255,255,255,.14);
}
.contact-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }
.contact-card i { font-size: 2rem; color: var(--gold-soft); }
.contact-card h3 { color: #fff; font-size: 1.4rem; margin: .8rem 0 .3rem; }
.contact-card span { font-size: .88rem; color: rgba(255,255,255,.8); word-break: break-word; }

/* ---------- Footer ---------- */
.footer { background: var(--deep-blue); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-logo { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { margin-top: 1rem; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.footer-col h4 { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.7); padding: .25rem 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col p { font-size: .9rem; margin: 0 0 .8rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.1rem;
    transition: background .25s ease, color .25s ease;
}
.footer-social a:hover,
.footer-social-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.footer-social-btn {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.1rem;
    background: none;
    color: rgba(255,255,255,.75);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.4rem 0;
    text-align: center;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-credit {
    margin-top: .55rem;
    font-size: .72rem;
    color: rgba(255,255,255,.35);
}
.footer-credit a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .25s ease;
}
.footer-credit a:hover { color: var(--gold-soft); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: var(--turquoise);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.7rem;
    z-index: 90;
    box-shadow: 0 10px 28px -8px rgba(35, 187, 183, 0.65);
    animation: pulse 2.4s infinite;
    transition: transform .25s ease;
    cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- WhatsApp modal ---------- */
.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.wa-modal[hidden] { display: none; }
.wa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28,25,22,.65);
    backdrop-filter: blur(4px);
}
.wa-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem 2rem 2rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
    text-align: center;
}
.wa-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border: none;
    background: var(--blush);
    border-radius: 50%;
    cursor: pointer;
    display: grid; place-items: center;
    color: var(--ink);
    transition: background .2s ease;
}
.wa-modal-close:hover { background: var(--gold-soft); }
.wa-modal-dialog h3 {
    font-size: 2rem;
    margin-bottom: .4rem;
}
.wa-modal-sub {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 1.8rem;
}
.wa-modal-options {
    display: grid;
    gap: .9rem;
}
.wa-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    border: 2px solid var(--blush);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.wa-option:hover {
    border-color: var(--gold);
    background: var(--cream);
    transform: translateY(-2px);
}
.wa-option i {
    font-size: 1.6rem;
    color: #25d366;
    flex-shrink: 0;
}
.wa-option-name {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
}
.wa-option-sub {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    margin-top: 2px;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(35, 187, 183, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(35, 187, 183, 0); }
    100% { box-shadow: 0 0 0 0 rgba(35, 187, 183, 0); }
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
    .about-mirror--left {
        justify-self: start;
        width: 100%;
        margin-left: -10%;
        margin-right: 0;
    }
    .about-mirror--left img {
        margin-left: 0;
        margin-right: auto;
        max-width: min(75vw, 380px);
    }
    .about-mirror--right {
        justify-self: end;
        width: 100%;
        margin-right: -10%;
        margin-left: 0;
    }
    .about-mirror--right img {
        margin-right: 0;
        margin-left: auto;
        max-width: min(75vw, 380px);
    }
    .about-center { padding: 1rem 1.5rem; }
    .about { padding: 4rem 0; }
    .locations-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .location-header h3 { font-size: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .navbar.scrolled { backdrop-filter: none; }
    .nav-inner { position: relative; z-index: 104; }
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 105;
    }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 102;
        background: rgba(12,11,10,.55);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s ease;
    }
    .nav-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }
    .nav-overlay[hidden] { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(78%, 320px);
        height: 100vh;
        height: 100dvh;
        z-index: 103;
        background: var(--teal-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 5rem 2.5rem 2.5rem;
        gap: 1.6rem;
        transform: translateX(100%);
        transition: transform .35s ease;
        box-shadow: -20px 0 50px -20px rgba(0,0,0,.6);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { color: #fff !important; font-size: 1.1rem; }
    .navbar.scrolled .nav-links a,
    .navbar.menu-open .nav-links a { color: #fff !important; }
    .navbar.menu-open .brand-logo { filter: none; height: 42px; }
    .navbar.menu-open .nav-toggle {
        color: #fff;
        background: var(--teal-dark);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
    }
    .btn-reserva { width: 100%; text-align: center; justify-content: center; }
    body.nav-open { overflow: hidden; }

    .compare-label { display: none; }

    .about-mirror--left { margin-left: -14%; }
    .about-mirror--right { margin-right: -14%; }
    .about-mirror img { max-width: min(70vw, 300px); }
    .services-grid, .gallery-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .gallery-wrap { max-height: calc(240px * 3 + 1rem * 2); }
    .gallery-item img { height: 240px; }
    .gallery-lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .about-mirror--left { margin-left: -4%; }
    .about-mirror--right { margin-right: -4%; }
    .about-mirror img { max-width: min(78vw, 280px); }
    .footer-inner { grid-template-columns: 1fr; }
    .location-card { padding: 1.6rem 1.4rem 1.2rem; }
    .hero-actions .btn { flex: 1; justify-content: center; }
}
