/* ═══════════════════════════════════════════════════════
   Sillas Tiffany Los Ángeles — Hoja de Estilos Principal
   ═══════════════════════════════════════════════════════ */

/* ── FUENTES ── */
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Dancing+Script:wght@400;600;700&family=Jost:ital,wght@0,300;0,400;0,500;1,400&display=swap");

/* ── VARIABLES ── */
:root {
    --gold: #c9a84c;
    --gold-lt: #e8c97a;
    --dark: #0c0b09;
    --dark-2: #141210;
    --dark-3: #1e1b16;
    --cream: #f7f2e8;
    --muted: #b8aa90;
    --font-display: "Great Vibes", cursive;
    --font-body: "Jost", sans-serif;
    --font-italic: "Dancing Script", cursive;
    --nav-h: 72px;
    --max-w: 1200px;
}

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--dark);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ── NOISE OVERLAY ── */
.noise {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════
   NAVEGACIÓN
   ════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background: rgba(12, 11, 9, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 48px;
    width: 48px;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.12);
    mix-blend-mode: lighten;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--cream);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    transition:
        background 0.25s,
        color 0.25s;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: all 0.3s;
}

@media (max-width: 900px) {
    .nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: #111009;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
        padding: 5rem 2.5rem 3rem;
        gap: 0;
        align-items: flex-start;
        justify-content: flex-start;
        z-index: 300;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    }
    .nav-links a {
        display: block;
        width: 100%;
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        color: var(--muted);
        padding: 1.1rem 0;
        transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold);
    }
    .nav-links.open {
        transform: translateX(0);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        z-index: 200;
    }
    .nav-overlay.open {
        display: block;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ════════════════════════════════════════
   LAYOUT BASE
   ════════════════════════════════════════ */
main {
    padding-top: var(--nav-h);
}

.section {
    padding: 6rem 2.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}
.section--full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.section--dark {
    background: var(--dark-2);
}

/* ── SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
}
.section-title .gold {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-italic);
}

.section-subtitle {
    font-family: "Dancing Script", cursive;
    font-style: normal;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--muted);
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* ── DIVIDER ── */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
    margin: 2rem auto;
}
.div-line {
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
}
.div-gem {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}
.breadcrumb a {
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--gold);
}
.breadcrumb-sep {
    color: rgba(201, 168, 76, 0.3);
}

/* ════════════════════════════════════════
   BOTONES
   ════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-primary {
    background: var(--gold);
    color: var(--dark);
}
.btn-primary:hover {
    background: var(--gold-lt);
}
.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.4);
}
.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}
.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.72rem;
}

/* ════════════════════════════════════════
   HERO (página principal)
   ════════════════════════════════════════ */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 50%,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black, transparent);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-badge {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    box-shadow:
        0 0 30px rgba(201, 168, 76, 0.15),
        0 0 60px rgba(201, 168, 76, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    overflow: hidden;
}
.hero-badge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 3rem;
}

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

/* ── HERO SUBPÁGINA ── */
.page-hero {
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 50% at 50% 50%,
        rgba(201, 168, 76, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.1;
}
.page-hero h1 .gold {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-italic);
}
.page-hero-sub {
    font-family: "Dancing Script", cursive;
    font-style: normal;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--muted);
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* ════════════════════════════════════════
   FEATURES / POR QUÉ ELEGIRNOS
   ════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    background: rgba(201, 168, 76, 0.08);
}
.feature-card {
    background: var(--dark-2);
    padding: 3rem 2rem;
    text-align: center;
    transition: background 0.3s;
}
.feature-card:hover {
    background: var(--dark-3);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.33rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.feature-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ════════════════════════════════════════
   TARJETAS DE PRODUCTOS
   ════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    background: rgba(201, 168, 76, 0.06);
}
.product-card {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.product-card:hover {
    background: var(--dark-3);
}

.product-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-img img {
    transform: scale(1.06);
}
.product-img-placeholder {
    color: rgba(201, 168, 76, 0.15);
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    user-select: none;
}

.product-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-tag {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}
.product-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 0.8rem;
}
.product-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.product-price {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold);
}
.product-price small {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    display: block;
}

/* ── FILTROS ── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(201, 168, 76, 0.12);
    width: fit-content;
    margin: 0 auto 3rem;
}
.filter-btn {
    padding: 0.65rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    border-right: 1px solid rgba(201, 168, 76, 0.12);
    transition: all 0.25s;
}
.filter-btn:last-child {
    border-right: none;
}
.filter-btn.active,
.filter-btn:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
}

/* ════════════════════════════════════════
   GALERÍA
   ════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 4px;
}
.gallery-item {
    aspect-ratio: 1;
    background: var(--dark-3);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 11, 9, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-overlay span {
    color: var(--gold);
    font-size: 1.8rem;
}
.gallery-placeholder {
    color: rgba(201, 168, 76, 0.12);
    font-size: 4rem;
    user-select: none;
}

/* ── LIGHTBOX ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12, 11, 9, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--cream);
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.3s,
        color 0.3s;
    line-height: 1;
}
.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ════════════════════════════════════════
   CÓMO FUNCIONA (STEPPER)
   ════════════════════════════════════════ */
.stepper {
    max-width: 960px;
    margin: 0 auto;
}
.stepper-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.stepper-track::before {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(100% / 8);
    right: calc(100% / 8);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(201, 168, 76, 0.3) 20%,
        rgba(201, 168, 76, 0.3) 80%,
        transparent
    );
}
.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.2rem;
    position: relative;
}
.stepper-node {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
    background: var(--dark-2);
    position: relative;
    z-index: 1;
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.stepper-step:hover .stepper-node {
    border-color: rgba(201, 168, 76, 0.7);
    background: var(--dark-3);
}
.stepper-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 0.7rem;
    font-weight: 400;
}
.stepper-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 640px) {
    .stepper-track {
        grid-template-columns: 1fr;
    }
    .stepper-track::before {
        display: none;
    }
    .stepper-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        padding: 0 0 2.5rem;
    }
    .stepper-step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 29px;
        top: 60px;
        bottom: 0;
        width: 1px;
        background: rgba(201, 168, 76, 0.18);
    }
    .stepper-node {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .stepper-step .stepper-title {
        margin-top: 0.9rem;
    }
}

/* ════════════════════════════════════════
   EVENTOS CUBIERTOS
   ════════════════════════════════════════ */
.events-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201, 168, 76, 0.08);
}
.event-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.2rem;
    background: var(--dark-2);
    transition: background 0.3s;
}
.event-card:hover {
    background: var(--dark-3);
}
.event-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    margin-top: 0.1rem;
}
.event-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 0.4rem;
}
.event-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .events-list {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════
   NOSOTROS / ABOUT
   ════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-img-wrap {
    aspect-ratio: 4/5;
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-wrap::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 1;
    pointer-events: none;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-placeholder {
    color: rgba(201, 168, 76, 0.12);
    font-family: var(--font-display);
    font-size: 6rem;
    letter-spacing: 0.1em;
}

.about-eyebrow {
    justify-content: flex-start;
}
.about-eyebrow::before {
    display: none;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.about-title .gold {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-italic);
}

.about-body {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.about-body + .about-body {
    margin-top: -1rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.stat-item {
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── VALORES ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    background: rgba(201, 168, 76, 0.06);
}
.value-card {
    background: var(--dark-2);
    padding: 2.5rem 2rem;
}
.value-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}
.value-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.value-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── TESTIMONIOSS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: rgba(201, 168, 76, 0.06);
}
.testimonial-card {
    background: var(--dark-2);
    padding: 2.5rem;
}
.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}
.testimonial-text {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    font-family: var(--font-display);
}
.testimonial-name {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--cream);
}
.testimonial-event {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* ════════════════════════════════════════
   CONTACTO
   ════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2px;
    background: rgba(201, 168, 76, 0.06);
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: var(--dark-2);
    padding: 3.5rem 2.5rem;
}
.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}
.contact-item-icon {
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.contact-item-value {
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--cream);
}
.contact-item-value a {
    transition: color 0.3s;
}
.contact-item-value a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.social-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: all 0.3s;
}
.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── FORMULARIO ── */
.contact-form-wrap {
    background: var(--dark-3);
    padding: 3.5rem 2.5rem;
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.4rem;
}
.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.form-control:focus {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.06);
}
.form-control::placeholder {
    color: var(--muted);
    opacity: 0.5;
}
textarea.form-control {
    resize: vertical;
    min-height: 130px;
}
select.form-control {
    cursor: pointer;
}
select.form-control option {
    background: var(--dark-2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 520px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-success {
    display: none;
    margin-top: 1.5rem;
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    text-align: center;
    padding: 1.2rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.form-error {
    display: none;
    margin-top: 1.2rem;
    font-size: 0.88rem;
    color: #e07070;
    text-align: center;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(224, 112, 112, 0.25);
    background: rgba(224, 112, 112, 0.05);
}

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
    background: var(--dark-2);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.cta-band h2 .gold {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-italic);
}
.cta-band p {
    font-family: "Dancing Script", cursive;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 4rem 2.5rem 2rem;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.footer-logo-img {
    height: 60px;
    width: 60px;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 0 14px rgba(201, 168, 76, 0.1);
    mix-blend-mode: lighten;
    object-fit: cover;
}
.footer-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-nav-title {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-nav a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.3s;
}
.footer-nav a:hover {
    color: var(--cream);
}

.footer-contact-item {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-contact-item a {
    transition: color 0.3s;
}
.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(154, 143, 120, 0.4);
}

/* ════════════════════════════════════════
   404
   ════════════════════════════════════════ */
.notfound {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.notfound-num {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}
.notfound-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.notfound-sub {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

/* ════════════════════════════════════════
   ANIMACIONES SCROLL
   ════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ════════════════════════════════════════
   WHATSAPP FLOTANTE
   ════════════════════════════════════════ */
@keyframes wsp-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes wsp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.wsp-float {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation:
        wsp-bob 2.4s ease-in-out infinite,
        wsp-pulse 2.4s ease-out infinite;
}
.wsp-float:hover {
    animation: none;
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.wsp-float svg {
    display: block;
}

/* ════════════════════════════════════════
   UTILIDADES COMUNES
   ════════════════════════════════════════ */
.text-center {
    text-align: center;
}
.bg-dark-2 {
    background: var(--dark-2);
}

.section-outer--dark {
    background: var(--dark-2);
    padding: 6rem 0;
}
.section--no-pb {
    padding-bottom: 0 !important;
}
.section--sm-pt {
    padding-top: 2rem !important;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
