/* ================= RESET & BASE ================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold:        #b8935a;
    --gold-light:  #d4b483;
    --gold-xlight: #f0e6d0;
    --gold-dark:   #8a6b38;
    --cream:       #faf8f4;
    --cream2:      #f4f0e8;
    --cream3:      #ece6d8;
    --white:       #ffffff;
    --text:        #2a2218;
    --text2:       #5a4e3a;
    --muted:       #8a7d68;
    --muted2:      #b5a890;
    --border:      #e8e0d0;
    --border2:     #d4c8b0;
    --card:        #ffffff;
    --header-h:    80px;
    --banner-h:    36px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1160px;
    margin: auto;
}

/* ================= SPLASH ================= */
.splash-screen {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-inner { text-align: center; }

.splash-icon {
    font-size: 36px;
    color: var(--gold);
    display: block;
    animation: splashFade 0.8s ease forwards;
    opacity: 0;
}

.splash-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--text);
    margin-top: 6px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.35s;
}

.splash-sub {
    font-size: 10px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-top: 4px;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards 0.6s;
}

.splash-bar {
    width: 100px;
    height: 1px;
    background: var(--border);
    margin: 20px auto 0;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.4s ease forwards 0.75s;
}

.splash-progress {
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: splashLoad 1.1s ease forwards 0.85s;
}

@keyframes splashFade { from { opacity:0; transform: scale(0.7); } to { opacity:1; transform: scale(1); } }
@keyframes fadeUp { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
@keyframes splashLoad { to { width: 100%; } }

/* ================= PROMO BANNER ================= */
.promo-banner {
    background: var(--gold);
    height: var(--banner-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: height 0.3s, opacity 0.3s;
}

.promo-banner.hidden { height: 0; opacity: 0; pointer-events: none; }

.promo-track {
    display: inline-flex;
    gap: 32px;
    animation: marquee 34s linear infinite;
    padding-left: 100%;
    white-space: nowrap;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #fff;
}

.promo-sep { opacity: 0.5; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.promo-close {
    position: absolute; right: 12px;
    background: rgba(255,255,255,0.2);
    border: none; color: #fff;
    width: 22px; height: 22px;
    border-radius: 50%; font-size: 10px;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: var(--banner-h);
    width: 100%;
    z-index: 1000;
    background: rgba(250,248,244,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: top 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    background: rgba(250,248,244,0.98);
    border-color: var(--border);
    box-shadow: 0 1px 20px rgba(184,147,90,0.08);
}

.header.banner-hidden { top: 0; }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-diamond { font-size: 18px; color: var(--gold); }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text);
}

.logo-sub { font-size: 8px; letter-spacing: 4px; color: var(--gold); font-weight: 400; }

.nav { display: flex; align-items: center; gap: 14px; }

.nav-links { display: flex; list-style: none; }

.nav-links li { margin-left: 26px; }

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-reserva {
    background: var(--gold);
    color: #fff;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn-reserva:hover { background: var(--gold-dark); transform: translateY(-1px); }

.burger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 5px; z-index: 1001;
}

.burger span { display: block; width: 22px; height: 1px; background: var(--text); transition: all 0.3s; }

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--banner-h) + var(--header-h));
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        110deg,
        rgba(250,248,244,0.97) 42%,
        rgba(250,248,244,0.5) 75%,
        rgba(250,248,244,0.1) 100%
    );
}

/* Decorative circles */
.hero-deco { position: absolute; inset: 0; pointer-events: none; }

.deco-circle {
    position: absolute;
    border: 1px solid rgba(184,147,90,0.18);
    border-radius: 50%;
}

.deco-1 { width: 500px; height: 500px; top: -100px; right: -80px; }
.deco-2 { width: 300px; height: 300px; top: 40px; right: 60px; }

.deco-petal {
    position: absolute;
    top: 30%;
    right: 18%;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.08;
    transform: rotate(20deg);
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 560px; padding: 60px 0; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.ey-line { display: block; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 7vw, 92px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero p {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 22px;
    max-width: 420px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 18px;
    color: var(--text2);
}

.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted2); flex-shrink: 0; }

.hero-status.open  .status-dot { background: #16a34a; box-shadow: 0 0 6px #16a34a; animation: blink 2s infinite; }
.hero-status.closed .status-dot { background: #dc2626; }
.hero-status.open  .status-text { color: #16a34a; }
.hero-status.closed .status-text { color: #dc2626; }

@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero-proof {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: var(--muted);
    margin-bottom: 30px; flex-wrap: wrap;
}

.proof-div { opacity: 0.4; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-hint span { font-size: 9px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }

@keyframes scrollPulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* ================= BUTTONS ================= */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 13px 28px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer; border: none;
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 26px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost:hover { background: var(--gold); color: #fff; }

.btn-ghost-soft {
    display: inline-block;
    border: 1px solid var(--border2);
    color: var(--muted);
    padding: 12px 26px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-soft:hover { border-color: var(--gold); color: var(--gold); }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: none; }

.reveal-hero { opacity: 0; transform: translateY(18px); animation: fadeUp 0.9s ease forwards; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.26s; }
.delay-3 { animation-delay: 0.4s; }

/* ================= SECTION TITLES ================= */
.section-title { text-align: center; margin-bottom: 52px; }

.section-label {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.1;
}

.section-title p { color: var(--muted); font-size: 14px; font-weight: 300; }

/* ================= PILLARS ================= */
.pillars-section {
    padding: 70px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.pillar {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    text-align: center;
    transition: background 0.3s;
    position: relative;
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream2); }

.pillar-icon { font-size: 26px; margin-bottom: 14px; display: block; }

.pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.pillar p { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ================= SERVICES ================= */
.services-section { padding: 100px 0; background: var(--cream); }

.filters-wrap { margin-bottom: 40px; }

.filters-scroll {
    display: flex; gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.filter-btn {
    flex-shrink: 0;
    background: var(--white);
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 9px 20px;
    border-radius: 2px;
    font-size: 12.5px;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-weight: 400;
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    animation: fadeIn 0.35s ease;
    margin-bottom: 36px;
}

.services-grid.hidden { display: none; }

@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: none; } }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(184,147,90,0.12);
    transform: translateY(-4px);
    border-color: var(--gold-light);
}

.service-card.combo { border-color: var(--gold-xlight); background: #fffdf9; }

.sc-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.92) saturate(0.85);
}

.service-card:hover .sc-img img { transform: scale(1.04); filter: brightness(1) saturate(1); }

.sc-body { padding: 18px; }

.sc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }

.sc-top h3 { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.3; }

.sc-price { color: var(--gold); font-weight: 400; font-size: 14px; white-space: nowrap; }

.sc-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; font-weight: 300; }

.sc-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.sc-tags span {
    font-size: 11px; color: var(--muted2);
    background: var(--cream2);
    border: 1px solid var(--border);
    padding: 2px 9px; border-radius: 2px;
}

.combo-badge {
    display: inline-block;
    font-size: 11px; color: var(--gold-dark);
    padding: 4px 10px;
    background: var(--gold-xlight);
    border-radius: 2px;
    margin: 16px 18px -4px;
    font-weight: 400;
}

.services-cta { text-align: center; padding-top: 8px; }
.services-cta p { color: var(--muted); font-size: 14px; margin-bottom: 14px; font-weight: 300; }

/* ================= RITUALES ================= */
.rituales-section { padding: 100px 0; background: var(--white); }

.rituales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ritual-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    background: var(--white);
}

.ritual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(184,147,90,0.15);
    border-color: var(--gold-light);
}

.ritual-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 400;
    padding: 4px 12px;
    border-radius: 2px;
    border: 1px solid var(--gold-xlight);
    z-index: 2;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.ritual-card img {
    width: 100%; height: 230px;
    object-fit: cover; display: block;
    filter: brightness(0.88) saturate(0.8);
    transition: transform 0.4s, filter 0.3s;
}

.ritual-card:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }

.ritual-info { padding: 22px; }

.ritual-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--text); margin-bottom: 8px;
}

.ritual-info p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }

.ritual-footer { display: flex; justify-content: space-between; align-items: center; }

.ritual-price { color: var(--gold); font-size: 16px; font-weight: 400; }

.ritual-dur {
    font-size: 11px; color: var(--muted2);
    border: 1px solid var(--border);
    padding: 3px 10px; border-radius: 2px;
}

/* ================= EXPERIENCE ================= */
.experience-section { padding: 100px 0; background: var(--cream2); }

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.exp-text .section-label { display: block; margin-bottom: 10px; }

.exp-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}

.exp-text h2 em { font-style: italic; font-weight: 400; color: var(--gold); }

.exp-text p { color: var(--muted); font-size: 14px; line-height: 1.9; margin-bottom: 14px; font-weight: 300; }

.exp-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 36px;
    padding-top: 30px; border-top: 1px solid var(--border);
}

.stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300;
    color: var(--gold); line-height: 1;
}

.stat span { font-size: 12px; color: var(--muted); margin-top: 4px; display: block; letter-spacing: 0.3px; font-weight: 300; }

.exp-images {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.exp-img-big {
    grid-row: 1 / 3;
    width: 100%; height: 400px;
    object-fit: cover; border-radius: 4px;
    filter: brightness(0.88) saturate(0.8);
    transition: filter 0.3s;
}

.exp-img-small {
    width: 100%; height: 190px;
    object-fit: cover; border-radius: 4px;
    filter: brightness(0.88) saturate(0.8);
    transition: filter 0.3s;
}

.exp-images:hover img { filter: brightness(1) saturate(1); }

/* ================= TEAM ================= */
.team-section { padding: 100px 0; background: var(--white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(184,147,90,0.12);
    border-color: var(--gold-light);
}

.team-img { position: relative; overflow: hidden; }

.team-img img {
    width: 100%; height: 300px;
    object-fit: cover; object-position: top;
    display: block;
    filter: brightness(0.88) grayscale(20%);
    transition: transform 0.4s, filter 0.3s;
}

.team-card:hover .team-img img { transform: scale(1.04); filter: brightness(1) grayscale(0%); }

.team-overlay {
    position: absolute; inset: 0;
    background: rgba(184,147,90,0.75);
    display: flex; align-items: flex-end;
    padding: 16px; opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .team-overlay { opacity: 1; }

.btn-reserva-team {
    display: block; width: 100%; text-align: center;
    background: #fff; color: var(--gold-dark);
    padding: 10px; border-radius: 2px;
    font-size: 13px; font-weight: 400;
    text-decoration: none; letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn-reserva-team:hover { background: var(--gold-xlight); }

.team-info { padding: 22px; background: var(--white); }

.team-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--text); margin-bottom: 4px;
}

.team-role {
    display: block; font-size: 11px;
    color: var(--gold); letter-spacing: 1px;
    margin-bottom: 10px; text-transform: uppercase;
    font-weight: 400;
}

.team-info p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; font-weight: 300; }

.team-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.team-tags span {
    font-size: 11px; color: var(--muted2);
    border: 1px solid var(--border);
    padding: 2px 9px; border-radius: 2px;
}

/* ================= GALLERY ================= */
.gallery-section { padding: 100px 0; background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-img {
    width: 100%; height: 240px;
    object-fit: cover; border-radius: 4px;
    cursor: pointer;
    filter: brightness(0.88) saturate(0.8);
    transition: filter 0.35s, transform 0.35s;
}

.gallery-img:hover { filter: brightness(1) saturate(1); transform: scale(1.02); }

/* LIGHTBOX */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(250,248,244,0.97);
    z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-img {
    max-width: 88vw; max-height: 84vh;
    border-radius: 4px; object-fit: contain;
    box-shadow: 0 8px 60px rgba(0,0,0,0.12);
    transition: opacity 0.2s;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text2);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    font-size: 18px;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close { top: 20px; right: 22px; width: 40px; height: 40px; font-size: 14px; }
.lightbox-prev  { left: 14px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-next  { right: 14px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }

.lightbox-counter {
    position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
    font-size: 12px; color: var(--muted); letter-spacing: 1px;
}

/* ================= TESTIMONIALS ================= */
.testimonials-section { padding: 90px 0; background: var(--cream2); }

.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(184,147,90,0.08);
}

.stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }

.testimonial p {
    color: var(--text2); font-size: 14px;
    font-style: italic; line-height: 1.8;
    margin-bottom: 16px; font-weight: 300;
    font-family: 'Cormorant Garamond', serif; font-size: 16px;
}

.t-author { display: flex; justify-content: space-between; align-items: center; }

.t-name { font-size: 13px; color: var(--gold); font-weight: 400; }

.t-source {
    font-size: 11px; color: var(--muted2);
    border: 1px solid var(--border);
    padding: 2px 9px; border-radius: 10px; letter-spacing: 0.3px;
}

/* ================= EVENTOS ================= */
.eventos-section { padding: 100px 0; background: var(--white); }

.eventos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.eventos-img { position: relative; }

.eventos-img img {
    width: 100%; height: 420px;
    object-fit: cover; border-radius: 4px;
    filter: brightness(0.88) saturate(0.8);
}

.eventos-badge {
    position: absolute;
    bottom: -16px; right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 12px 20px;
    border-radius: 2px;
    font-size: 12px; line-height: 1.5;
    box-shadow: 0 8px 28px rgba(184,147,90,0.3);
}

.eventos-badge strong { display: block; font-size: 13px; font-weight: 500; }

.eventos-text .section-label { display: block; margin-bottom: 10px; }

.eventos-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 300; letter-spacing: 1px;
    margin-bottom: 16px; color: var(--text); line-height: 1.15;
}

.eventos-text p { color: var(--muted); font-size: 14px; line-height: 1.9; margin-bottom: 18px; font-weight: 300; }

.eventos-lista { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.eventos-lista li { font-size: 14px; color: var(--muted); font-weight: 300; }

/* ================= CONTACT ================= */
.contact-section { padding: 100px 0; background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-info { display: flex; flex-direction: column; gap: 22px; }

.ci-item { display: flex; gap: 14px; align-items: flex-start; }

.ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.ci-item h4 { font-size: 11px; color: var(--gold); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }

.ci-item p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

.contact-status {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 8px; padding: 4px 12px;
    border-radius: 20px; font-size: 12px;
    background: var(--white); border: 1px solid var(--border);
}

.contact-status .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted2); }
.contact-status.open  .status-dot { background: #16a34a; animation: blink 2s infinite; }
.contact-status.closed .status-dot { background: #dc2626; }
.contact-status.open  .status-text { color: #16a34a; }
.contact-status.closed .status-text { color: #dc2626; }

.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }

.social-link {
    font-size: 12px; color: var(--muted);
    text-decoration: none; border: 1px solid var(--border);
    padding: 3px 10px; border-radius: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.social-link:hover { color: var(--gold); border-color: var(--gold); }

.ca-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px; padding: 36px;
    text-align: center;
}

.ca-icon { font-size: 32px; margin-bottom: 14px; display: block; }

.ca-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--text); margin-bottom: 10px;
}

.ca-card p { color: var(--muted); font-size: 14px; line-height: 1.7; font-weight: 300; }

.map-container {
    grid-column: 1 / -1;
    border-radius: 4px; overflow: hidden;
    border: 1px solid var(--border);
    filter: saturate(0.5) brightness(1.05);
}

/* ================= FOOTER ================= */
.footer {
    background: var(--text);
    padding: 64px 0 24px;
    color: rgba(255,255,255,0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand { max-width: 260px; }

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 300;
    letter-spacing: 4px; color: #fff;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}

.footer-logo span { color: var(--gold); }

.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px; font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; font-weight: 300; }
.footer a:hover { color: var(--gold); }

.footer-col p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; font-weight: 300; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px; font-size: 12px;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap; gap: 10px;
}

.share-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.35);
    padding: 6px 16px; border-radius: 2px;
    font-size: 12px; font-family: 'Jost', sans-serif;
    cursor: pointer; transition: border-color 0.2s, color 0.2s;
}

.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ================= WHATSAPP FLOTANTE ================= */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    background: #25D366;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37,211,102,0.35);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

.wf-icon { font-size: 24px; }

.wf-tooltip {
    position: absolute; right: 64px; top: 50%;
    transform: translateY(-50%);
    background: var(--white); color: var(--text);
    font-size: 13px; font-weight: 400;
    white-space: nowrap;
    padding: 8px 14px; border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    font-family: 'Jost', sans-serif;
}

.wf-tooltip::after {
    content: ''; position: absolute;
    left: 100%; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float.show-tooltip .wf-tooltip { opacity: 1; }

/* ================= RESPONSIVE ================= */
@media (max-width: 960px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(2) { border-right: none; }
    .pillar:nth-child(3) { border-top: 1px solid var(--border); }
    .pillar:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    .rituales-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { max-width: 100%; }
}

@media (max-width: 768px) {
    .burger { display: flex; }
    .btn-reserva { display: none; }
    .nav-links {
        display: none; flex-direction: column;
        position: fixed;
        top: calc(var(--banner-h) + var(--header-h));
        left: 0; width: 100%;
        background: rgba(250,248,244,0.99);
        text-align: center; padding: 28px 0;
        z-index: 999; border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--border); }
    .nav-links a { font-size: 16px; color: var(--text); }

    .hero h1 { font-size: 52px; }
    .hero-lines, .deco-circle, .deco-petal { display: none; }

    .exp-grid { grid-template-columns: 1fr; }
    .exp-images { grid-template-columns: 1fr 1fr; }
    .exp-img-big { grid-row: auto; height: 220px; }
    .exp-img-small { height: 220px; }

    .contact-grid { grid-template-columns: 1fr; }
    .map-container { grid-column: 1; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .eventos-inner { grid-template-columns: 1fr; gap: 50px; }
    .eventos-img img { height: 280px; }
    .eventos-img { order: -1; }

    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: auto; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .rituales-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 40px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid var(--border); }
    .gallery-grid { grid-template-columns: 1fr; }
    .exp-images { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
}