/* ═══════════════════════════════════════════════════════
   MOCANU · Galería Estética — styles.css  (LIMPIO)
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
    --rose: #e8a0b4;
    --rose-light: #f5d5e2;
    --rose-deep: #c4637e;
    --blue: #7fb3d3;
    --blue-light: #d0e8f5;
    --blue-deep: #4a85aa;
    --blush: #fdf0f4;
    --bg: #faf8f9;
    --text: #2c2c2c;
    --text-soft: #6b6b6b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--rose-light) 0%, var(--blue-light) 100%);
    --grad-accent: linear-gradient(135deg, var(--rose) 0%, var(--blue) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--rose-deep);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .1s ease;
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--rose);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .18s ease, border-color .3s;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 4rem;
    background: rgba(250, 248, 249, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(232, 160, 180, 0.15);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 2px 40px rgba(196, 99, 126, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo svg {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--grad-accent);
    transition: width .35s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: .55rem 1.5rem !important;
    background: var(--grad-accent) !important;
    color: var(--white) !important;
    border-radius: 50px;
    transition: opacity .3s, transform .2s !important;
}

.nav-cta:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: .9rem 2.4rem;
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    letter-spacing: .08em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(196, 99, 126, .25);
    transition: transform .2s, box-shadow .3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(196, 99, 126, .35);
}

.btn-ghost {
    display: inline-block;
    padding: .9rem 2.4rem;
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(196, 99, 126, .4);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    letter-spacing: .08em;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .3s, color .3s;
}

.btn-ghost:hover {
    border-color: var(--rose-deep);
    color: var(--rose-deep);
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
section {
    padding: 6rem 4rem;
}

.section-tag {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-sub {
    font-size: .97rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 520px;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

/* ── HERO BRANDING ───────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-brand {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(232, 160, 180, 0.2);
    animation: fadeInUp .9s ease forwards;
}

.hero-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    background: linear-gradient(135deg, #c4637e 0%, #e8a0b4 40%, #7fb3d3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.hero-brand-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5em;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 400;
}

/* ── HERO ────────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    right: -8rem;
    top: -6rem;
    width: 55vw;
    height: 85vh;
    background: var(--gradient);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    opacity: .55;
    animation: morphBlob 12s ease-in-out infinite;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }

    33% {
        border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
    }

    66% {
        border-radius: 45% 55% 40% 60% / 60% 50% 50% 40%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fadeUp .9s .2s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp .9s .4s forwards;
}

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

.hero-desc {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp .9s .6s forwards;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp .9s .8s forwards;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img-wrap {
    width: min(420px, 40vw);
    aspect-ratio: 3/4;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(74, 133, 170, .2), 0 0 0 1px rgba(232, 160, 180, .3);
    opacity: 0;
    animation: fadeIn 1.2s .5s forwards;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(196, 99, 126, .18) 100%);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .6s ease;
}

.hero-img-wrap:hover img {
    transform: scale(1.03);
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .82rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-accent);
    box-shadow: 0 0 0 4px var(--rose-light);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── SERVICIOS ───────────────────────────────────────────── */
#servicios {
    background: var(--white);
}

.servicios-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.servicios-header .section-sub {
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio-card {
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid rgba(232, 160, 180, .15);
    overflow: hidden;
    position: relative;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(196, 99, 126, .12);
    border-color: rgba(232, 160, 180, .4);
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

.servicio-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.servicio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.servicio-card:hover .servicio-img-wrap img {
    transform: scale(1.07);
}

.servicio-body {
    padding: 1.5rem 1.8rem 1.8rem;
}

.servicio-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: .6rem;
}

.servicio-desc {
    font-size: .87rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.servicio-price {
    font-size: 1.1rem;
    font-weight: 500;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── TRATAMIENTOS EN DETALLE ────────────────────────────── */
#tratamientos-detalle {
    background: var(--bg);
}

.tratamientos-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.tratamientos-header .section-sub {
    margin: 0 auto;
}

.tratamientos-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trat-categoria {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(232, 160, 180, .15);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(196, 99, 126, .05);
}

.trat-cat-title {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.3rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(232, 160, 180, .15);
    background: var(--blush);
    color: var(--rose-deep);
}

.trat-cat-icon {
    font-size: .75rem;
    opacity: .7;
}

.trat-list {
    padding: .4rem 0;
}

.trat-item {
    border-bottom: 1px solid rgba(232, 160, 180, .1);
}

.trat-item:last-child {
    border-bottom: none;
}

.trat-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: .93rem;
    color: var(--text);
    transition: background .2s, color .2s;
}

.trat-toggle:hover {
    background: rgba(232, 160, 180, .07);
    color: var(--rose-deep);
}

.trat-toggle[aria-expanded="true"] {
    color: var(--rose-deep);
    background: rgba(232, 160, 180, .07);
}

.trat-name {
    flex: 1;
    font-weight: 400;
}

.trat-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(196, 99, 126, .4);
    flex-shrink: 0;
    position: relative;
    transition: background .25s, border-color .25s;
}

.trat-icon::before,
.trat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--rose-deep);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.trat-icon::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.trat-icon::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.trat-toggle[aria-expanded="true"] .trat-icon {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
}

.trat-toggle[aria-expanded="true"] .trat-icon::before,
.trat-toggle[aria-expanded="true"] .trat-icon::after {
    background: var(--white);
}

.trat-toggle[aria-expanded="true"] .trat-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.trat-body {
    padding: .2rem 2rem 1.5rem 2rem;
    animation: fadeUp .28s ease;
}

.trat-desc {
    font-size: .9rem;
    color: var(--text-soft);
    line-height: 1.78;
    margin-bottom: 1rem;
}

.trat-beneficios {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.trat-beneficios li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .87rem;
    color: var(--text);
}

.trat-beneficios li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grad-accent);
    flex-shrink: 0;
}

.trat-postcuidado {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(232, 160, 180, .3);
}

.trat-postcuidado-title {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: .65rem;
}

.trat-postcuidado ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.trat-postcuidado li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .85rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.trat-postcuidado li::before {
    content: '–';
    color: var(--rose-deep);
    flex-shrink: 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .trat-toggle {
        padding: 1rem 1.4rem;
        font-size: .88rem;
    }

    .trat-body {
        padding: .2rem 1.4rem 1.2rem;
    }

    .trat-cat-title {
        padding: 1.1rem 1.4rem;
        font-size: 1.2rem;
    }
}

/* ── NOSOTROS ────────────────────────────────────────────── */
#nosotros {
    background: var(--gradient);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.nosotros-visual {
    position: relative;
}

.nosotros-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, .4);
    border: 1px solid rgba(255, 255, 255, .6);
}

.nosotros-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.nosotros-img:hover img {
    transform: scale(1.03);
}

.nosotros-stat {
    position: absolute;
    right: -2rem;
    bottom: 3rem;
    background: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    font-size: .75rem;
    color: var(--text-soft);
    letter-spacing: .1em;
}

.nosotros-content .section-sub {
    max-width: 480px;
    margin-bottom: 2rem;
}

.nosotros-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nosotros-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .92rem;
    color: var(--text);
}

.nosotros-list li::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad-accent);
    flex-shrink: 0;
}

/* ── GALERÍA ─────────────────────────────────────────────── */
#galeria {
    background: var(--bg);
    padding: 5rem 4rem;
}

.galeria-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.galeria-item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.galeria-item.tall {
    grid-row: 1 / 3;
}

.galeria-item.wide {
    grid-column: 2 / 4;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease, filter .4s ease;
    filter: brightness(.97);
}

.galeria-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.02);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(196, 99, 126, .12) 100%);
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
}

.galeria-item:hover::after {
    opacity: 1;
}

/* ── VÍDEOS ──────────────────────────────────────────────── */
#videos-tratamientos {
    background: var(--white);
    padding: 6rem 4rem;
}

.videos-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.videos-header .section-sub {
    margin: 0 auto;
}

.videos-header .section-title em {
    color: var(--rose-deep);
    font-style: italic;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--text);
    box-shadow: 0 8px 32px rgba(196, 99, 126, .12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(196, 99, 126, .2);
}

.video-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(196, 99, 126, .08) 0%,
        rgba(44, 44, 44, .45) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, opacity .3s ease;
}

.video-card.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-card.playing:hover .video-overlay {
    opacity: 1;
    pointer-events: auto;
    background: rgba(44, 44, 44, .25);
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-deep);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    backdrop-filter: blur(4px);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 8px 32px rgba(196, 99, 126, .35);
}

.video-play-btn svg {
    margin-left: 3px;
}

/* pausa icon cuando está reproduciendo */
.video-card.playing .video-play-btn svg path {
    d: path("M6 19h4V5H6v14zm8-14v14h4V5h-4z");
}

@media (max-width: 900px) {
    #videos-tratamientos {
        padding: 3.5rem 1.5rem;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 580px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }
}

/* ── EQUIPO ──────────────────────────────────────────────── */
#equipo {
    background: var(--blush);
}

.equipo-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--gradient);
    border: 3px solid rgba(255, 255, 255, .8);
    box-shadow: 0 8px 30px rgba(196, 99, 126, .2);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.team-card:hover .team-avatar {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(196, 99, 126, .28);
}

/* SVG avatars */
.team-avatar-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: visible;
    background: linear-gradient(135deg, #fdf0f4 0%, #eef5fb 100%) !important;
    border: 2px solid rgba(232, 160, 180, 0.3) !important;
}

.team-avatar-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Nav & Footer logo img */
.nav-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.footer-brand img {
    height: 50px;
    width: auto;
    display: block;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: .3rem;
}

.team-role {
    font-size: .78rem;
    color: var(--text-soft);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ── RESERVAS ────────────────────────────────────────────── */
#reservas {
    background: var(--white);
}

.reservas-inner {
    max-width: 700px;
    margin: 0 auto;
}

.reservas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-card {
    background: var(--bg);
    border: 1px solid rgba(232, 160, 180, .2);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 70px rgba(196, 99, 126, .08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.form-control {
    padding: .85rem 1.2rem;
    background: var(--white);
    border: 1.5px solid rgba(232, 160, 180, .25);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    color: var(--text);
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}

.form-control:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(232, 160, 180, .12);
}

.form-control::placeholder {
    color: #bbb;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4637e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    font-size: .78rem;
    color: var(--text-soft);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-note span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .08em;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(196, 99, 126, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    transition: transform .2s, box-shadow .3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(196, 99, 126, .4);
}

.btn-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.whatsapp-icon {
    font-size: 1.1rem;
}

.success-msg {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-msg.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: .8rem;
}

.success-text {
    font-size: .9rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ── CONFLICTO BANNER ────────────────────────────────────── */
.conflicto-banner {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    background: #fff5f7;
    border: 1.5px solid var(--rose-deep);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.4rem;
    animation: shakeX .45s ease;
}

.conflicto-banner.show {
    display: flex;
}

.conflicto-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.conflicto-texto {
    font-size: .86rem;
    color: var(--text);
    line-height: 1.65;
}

.conflicto-texto strong {
    display: block;
    font-size: .92rem;
    color: var(--rose-deep);
    margin-bottom: .3rem;
}

.conflicto-texto em {
    font-style: normal;
    font-weight: 600;
    color: var(--rose-deep);
}

@keyframes shakeX {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* ── FIELD ERRORS ────────────────────────────────────────── */
.form-control.input-error {
    border-color: var(--rose-deep);
    box-shadow: 0 0 0 4px rgba(196, 99, 126, .12);
}

.field-error-msg {
    font-size: .73rem;
    color: var(--rose-deep);
    margin-top: .25rem;
}

/* ── ESTADO BADGES ───────────────────────────────────────── */
.estado-badge {
    display: inline-block;
    font-size: .67rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .18rem .6rem;
    border-radius: 50px;
    vertical-align: middle;
    margin-left: .3rem;
}

.estado-badge.pendiente {
    background: #fff8e1;
    color: #b8860b;
    border: 1px solid #f5d87a;
}

.estado-badge.confirmada {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.estado-badge.cancelada {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f48fb1;
}

.reserva-cancelada {
    opacity: .5;
    text-decoration: line-through;
}

.gcal-link {
    font-size: .9rem;
    text-decoration: none;
    vertical-align: middle;
    margin-left: .2rem;
    opacity: .7;
    transition: opacity .2s;
}

.gcal-link:hover {
    opacity: 1;
}

/* ── SPINNER ─────────────────────────────────────────────── */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── PANEL DE RESERVAS ───────────────────────────────────── */
.reservas-panel-wrap {
    margin-top: 2.5rem;
    background: var(--bg);
    border: 1px solid rgba(232, 160, 180, .2);
    border-radius: 20px;
    overflow: hidden;
}

.reservas-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(232, 160, 180, .15);
    background: var(--white);
}

.clear-all-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: .73rem;
    color: var(--text-soft);
    background: none;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50px;
    padding: .3rem .9rem;
    cursor: pointer;
    transition: color .2s, border-color .2s;
}

.clear-all-btn:hover {
    color: var(--rose-deep);
    border-color: var(--rose-deep);
}

.reservas-panel {
    padding: .6rem .8rem;
    max-height: 300px;
    overflow-y: auto;
}

.reservas-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 2rem;
    color: var(--text-soft);
    font-size: .88rem;
    text-align: center;
}

.reservas-empty span {
    font-size: 2rem;
}

.reserva-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem .8rem;
    border-radius: 12px;
    transition: background .2s;
    animation: fadeUp .35s ease;
}

.reserva-item:not(:last-child) {
    border-bottom: 1px solid rgba(232, 160, 180, .1);
}

.reserva-item:hover {
    background: var(--rose-light);
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(30px);
        max-height: 0;
        padding: 0;
    }
}

.reserva-info {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.reserva-servicio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

.reserva-detalle {
    font-size: .78rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.reserva-cancel {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(196, 99, 126, .3);
    background: none;
    color: var(--rose-deep);
    font-size: .7rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, color .2s;
}

.reserva-cancel:hover {
    background: var(--rose-deep);
    color: var(--white);
    border-color: var(--rose-deep);
}

/* ── CONTACTO ────────────────────────────────────────────── */
#contacto {
    background: var(--text);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

#contacto .section-tag {
    color: var(--rose-light);
}

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

#contacto .section-sub {
    color: rgba(255, 255, 255, .6);
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contacto-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 160, 180, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contacto-text {
    font-size: .92rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

.contacto-text strong {
    display: block;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: .2rem;
    font-weight: 400;
}

/* ── MAPA ────────────────────────────────────────────────── */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.map-iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter .4s;
}

.map-wrapper:hover .map-iframe {
    filter: grayscale(0%) contrast(1);
}

.map-open-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1.1rem;
    background: var(--white);
    color: var(--rose-deep);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
    transition: transform .2s, box-shadow .2s;
}

.map-open-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.map-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
    background: #1a1a1a;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-brand svg {
    display: block;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 1.2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, .3);
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--rose);
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover .whatsapp-label {
    max-width: 200px;
    opacity: 1;
    padding: .55rem 1.1rem;
    margin-right: .7rem;
}

.whatsapp-label {
    background: var(--white);
    color: #25D366;
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 50px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: .55rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
    transition: max-width .4s ease, opacity .35s ease, padding .4s ease, margin .4s ease;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
    flex-shrink: 0;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.whatsapp-float:hover .whatsapp-btn {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, .55);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: waPulse 2.2s ease-out infinite;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .3);
    animation: waPulse 2.2s ease-out .7s infinite;
}

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

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

/* ── HAMBURGER BUTTON ──────────────────────────────────── */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {

    /* ── Nav ── */
    nav {
        padding: 0.6rem 1.5rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(250, 248, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2.5rem 2rem;
        gap: 0;
        box-shadow: -8px 0 40px rgba(0, 0, 0, .1);
        transition: right .35s ease;
        z-index: 1001;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(232, 160, 180, 0.12);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: .95rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    /* ── Sections general ── */
    section {
        padding: 3.5rem 1.5rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .section-sub {
        font-size: .9rem;
    }

    /* ── Hero ── */
    #hero {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        text-align: center;
        min-height: auto;
    }

    .hero-brand {
        align-items: center;
        text-align: center;
    }

    .hero-brand-name {
        font-size: 3.5rem;
    }

    .hero-brand-tag {
        font-size: .85rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-img-wrap {
        width: min(280px, 70vw);
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -1rem;
        font-size: .75rem;
        white-space: nowrap;
    }

    /* ── Servicios ── */
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    /* ── Nosotros ── */
    #nosotros {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nosotros-stat {
        right: 0;
        bottom: 1.5rem;
    }

    .nosotros-content .section-sub {
        max-width: 100%;
    }

    /* ── Galería ── */
    #galeria {
        padding: 3.5rem 1.5rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }

    .galeria-item.tall {
        grid-row: 1 / 3;
    }

    .galeria-item.wide {
        grid-column: 1 / 3;
    }

    /* ── Equipo ── */
    .equipo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .team-avatar {
        width: 110px;
        height: 110px;
    }

    /* ── Form ── */
    .form-card {
        padding: 2rem 1.5rem;
    }

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

    /* ── Contacto ── */
    #contacto {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* ── Footer ── */
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    /* ── WhatsApp ── */
    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-label {
        display: none;
    }

    /* ── Reservas panel ── */
    .reservas-panel-header {
        flex-direction: column;
        gap: .8rem;
        align-items: flex-start;
    }
}

/* ── SMALL PHONES ──────────────────────────────────────── */
@media (max-width: 580px) {

    section {
        padding: 3rem 1.2rem;
    }

    #hero {
        padding: 6.5rem 1.2rem 2.5rem;
    }

    .hero-brand-name {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .hero-brand-tag {
        font-size: .75rem;
        letter-spacing: 0.3em;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .hero-visual {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: .8rem;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    /* ── Servicios ── */
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ── Galería ── */
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .galeria-item.tall,
    .galeria-item.wide {
        grid-row: auto;
        grid-column: auto;
    }

    .galeria-item {
        aspect-ratio: 4/3;
    }

    #galeria {
        padding: 3rem 1.2rem;
    }

    /* ── Equipo ── */
    .equipo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .team-avatar {
        width: 90px;
        height: 90px;
    }

    .team-name {
        font-size: 1.05rem;
    }

    .team-role {
        font-size: .7rem;
    }

    /* ── Form ── */
    .form-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .btn-submit {
        font-size: .85rem;
        padding: .9rem 1.5rem;
    }

    /* ── Contacto ── */
    #contacto {
        padding: 3rem 1.2rem;
    }

    .map-wrapper {
        aspect-ratio: 3/2;
        border-radius: 14px;
    }

    /* ── Footer ── */
    footer {
        padding: 1.5rem 1.2rem;
    }

    .footer-copy {
        font-size: .7rem;
    }

    /* ── Nav logo ── */
    .nav-logo img {
        height: 55px;
    }
}

/* SVG Logo Styling */
.nav-logo img,
.nav-logo img {
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.footer-brand img {
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.nav-logo:hover img {
    transform: scale(1.02);
}

/* ── Hero Logo ── */
.hero-brand-logo {
    height: 120px;
    width: auto;
    margin-bottom: -1rem;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

/* ── Background Watermark ── */
.nosotros-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.nosotros-bg-logo img {
    width: 100%;
    height: auto;
}

#nosotros {
    position: relative;
    overflow: hidden;
}
/* ── INSTAGRAM NAV ICON ─────────────────────────────────── */
.nav-ig {
    display: flex;
    align-items: center;
    color: var(--rose-deep);
    transition: color .2s, transform .2s;
}
.nav-ig:hover {
    color: var(--rose);
    transform: scale(1.15);
}

/* ── INSTAGRAM HERO PILL ────────────────────────────────── */
.hero-ig-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.2rem;
    padding: .45rem 1rem;
    border: 1.5px solid var(--rose);
    border-radius: 50px;
    color: var(--rose-deep);
    font-size: .82rem;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .25s, color .25s, border-color .25s;
}
.hero-ig-pill:hover {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
    color: var(--white);
}

/* ── INSTAGRAM CTA SECTION ──────────────────────────────── */
.ig-cta-section {
    padding: 0 clamp(1.5rem, 5vw, 5rem);
    margin: 0 0 4rem;
}
.ig-cta-banner {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.6rem 2rem;
    background: var(--gradient);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(196,99,126,.12);
}
.ig-cta-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(196,99,126,.22);
}
.ig-cta-icon {
    flex-shrink: 0;
    color: var(--rose-deep);
}
.ig-cta-text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    flex: 1;
}
.ig-cta-handle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rose-deep);
}
.ig-cta-sub {
    font-size: .82rem;
    color: var(--text-soft);
    letter-spacing: .02em;
}
.ig-cta-arrow {
    font-size: 1.4rem;
    color: var(--rose-deep);
    flex-shrink: 0;
    transition: transform .2s;
}
.ig-cta-banner:hover .ig-cta-arrow {
    transform: translateX(5px);
}
@media (max-width: 500px) {
    .ig-cta-arrow { display: none; }
    .ig-cta-handle { font-size: 1.05rem; }
}

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
    padding: 5rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list-wrap {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(196, 99, 126, .08);
    border: 1px solid rgba(232, 160, 180, .18);
}

.faq-item {
    border-bottom: 1px solid rgba(232, 160, 180, .12);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
    transition: background .2s, color .2s;
}

.faq-toggle:hover {
    background: rgba(232, 160, 180, .07);
    color: var(--rose-deep);
}

.faq-toggle[aria-expanded="true"] {
    color: var(--rose-deep);
    background: rgba(232, 160, 180, .07);
}

.faq-body {
    padding: .2rem 2rem 1.4rem;
    font-size: .92rem;
    color: var(--text-soft);
    line-height: 1.78;
    animation: fadeUp .28s ease;
}

.faq-body strong {
    color: var(--text);
    font-weight: 500;
}

@media (max-width: 600px) {
    #faq { padding: 3rem 1rem; }
    .faq-toggle { padding: 1rem 1.2rem; font-size: .9rem; }
    .faq-body { padding: .2rem 1.2rem 1.2rem; }
}
