/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --cream: #F7F2EA;
    --beige: #E8DCC8;
    --beige-dark: #D4C4A8;
    --brown-light: #C4A97D;
    --brown: #8B6B3D;
    --brown-dark: #5C4325;
    --green: #6B7B5E;
    --green-dark: #4A5740;
    --green-darker: #323d2b;
    --text: #3A2E1E;
    --text-light: #7A6A52;
    --white: #FDFAF5;
    --shadow-sm: rgba(91, 67, 37, 0.08);
    --shadow: rgba(91, 67, 37, 0.14);
    --shadow-lg: rgba(91, 67, 37, 0.22);
    --gold: #c9a96e;
    --intro-bg: #151e12;
    --radius: 10px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-dark));
    z-index: 1001;
    transition: width 0.1s ease;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background-color var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition),
                box-shadow var(--transition);
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}
.btn-primary:hover {
    background: var(--green-darker);
    border-color: var(--green-darker);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green-dark);
}
.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header.light .section-eyebrow,
.section-header.light h2,
.section-header.light .section-ornament span,
.section-header.light .section-ornament i {
    color: var(--beige);
}
.section-header.light .section-ornament span {
    background: var(--beige);
    opacity: 0.5;
}

.section-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brown-light);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--green-dark);
    margin-bottom: 1.25rem;
}

.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.section-ornament span {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--beige-dark);
}
.section-ornament i {
    color: var(--brown-light);
    font-size: 0.75rem;
}

.section-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: none;
}

/* ============================================================
   INTRO SCREEN
   ============================================================ */
.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background: var(--intro-bg);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(74,87,64,0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(92,67,37,0.2) 0%, transparent 60%);
}

.intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
}

/* Ornaments */
.intro-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 1.5rem 0;
    opacity: 0;
}
.intro-ornament--top { animation: introFadeIn 0.6s ease 0.6s forwards; }
.intro-ornament--bottom { animation: introFadeIn 0.6s ease 1.6s forwards; }

.ornament-line {
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    width: 0;
    transition: width 0.8s ease;
}
.intro-ornament--top .ornament-line  { animation: introLineGrow 0.8s ease 0.8s forwards; }
.intro-ornament--bottom .ornament-line { animation: introLineGrow 0.8s ease 1.8s forwards; }

.ornament-diamond {
    color: var(--gold);
    font-size: 0.65rem;
    margin: 0 14px;
    flex-shrink: 0;
}

/* Logo */
.intro-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(201,169,110,0.7);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: introFadeInDown 0.7s ease 1.2s forwards;
}

.intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
    opacity: 0;
    animation: introTitleReveal 1s ease 1.3s forwards, introTitleSpin 2s ease 1.3s forwards;
}

.intro-club {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.4rem;
    opacity: 0;
    animation: introFadeIn 0.7s ease 1.7s forwards;
}

.intro-location {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247,242,234,0.45);
    margin-top: 1.8rem;
    opacity: 0;
    animation: introFadeIn 0.7s ease 2.2s forwards;
}

.intro-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(247,242,234,0.65);
    margin-top: 0.6rem;
    opacity: 0;
    animation: introFadeIn 0.8s ease 2.6s forwards;
}

/* Enter button */
.intro-enter {
    position: relative;
    z-index: 1;
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(247,242,234,0.5);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    animation: introFadeIn 0.7s ease 3.2s forwards;
    transition: color var(--transition);
}
.intro-enter:hover { color: var(--gold); }
.intro-enter i {
    font-size: 0.9rem;
    animation: introBounce 1.5s ease-in-out 3.8s infinite;
}

/* Intro exit */
.intro-screen.exit {
    animation: introSlideUp 0.85s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

/* Intro keyframes */
@keyframes introLineGrow {
    from { width: 0; }
    to   { width: 80px; }
}
@keyframes introFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes introFadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes introTitleReveal {
    from { opacity: 0; letter-spacing: 0.25em; }
    to   { opacity: 1; letter-spacing: 0.08em; }
}
@keyframes introTitleSpin {
    0% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}
@keyframes introBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}
@keyframes introSlideUp {
    from { transform: translateY(0); opacity: 1; }
    to   { transform: translateY(-100%); opacity: 0.5; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 0;
}

.header.scrolled {
    background: rgba(253,250,245,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.2rem 24px;
    transition: padding var(--transition);
}
.header.scrolled .nav { padding: 0.85rem 24px; }

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    transition: opacity var(--transition);
}
.logo:hover { opacity: 0.8; }

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    transition: color var(--transition);
}
.header.scrolled .logo-main { color: var(--green-dark); }

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.header.scrolled .logo-sub { color: var(--brown-light); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 6px 14px;
    border-radius: 4px;
    transition: color var(--transition), background-color var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header.scrolled .nav-links a { color: var(--text); }
.header.scrolled .nav-links a:hover { color: var(--green-dark); background: var(--cream); }

.nav-links a.nav-cta {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 6px 18px;
}
.nav-links a.nav-cta:hover { background: var(--white); color: var(--green-dark); }
.header.scrolled .nav-links a.nav-cta {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
}
.header.scrolled .nav-links a.nav-cta:hover { background: var(--green-darker); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--text); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Language Toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    cursor: pointer;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition);
    margin-left: 1rem;
}
.lang-toggle i { font-size: 0.95rem; }
.lang-toggle .lang-label { line-height: 1; }
.lang-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}
.header.scrolled .lang-toggle {
    color: var(--text);
    background: var(--cream);
    border-color: var(--beige-dark);
}
.header.scrolled .lang-toggle:hover {
    color: var(--green-dark);
    border-color: var(--green);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all var(--transition);
    margin-left: 0.6rem;
}
.header.scrolled .dark-mode-toggle {
    color: var(--text);
    background: var(--cream);
    border-color: var(--beige-dark);
}
.dark-mode-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}
.header.scrolled .dark-mode-toggle:hover {
    color: var(--green-dark);
    border-color: var(--green);
}
.dark-mode-toggle i {
    font-size: 1.1rem;
}

/* ============================================================
   DARK MODE
   Las variables están afinadas para que los colores "de texto"
   (títulos, párrafos, íconos) queden CLAROS, y luego se corrigen
   puntualmente los componentes que usan esas variables como FONDO.
   ============================================================ */
body.dark-mode {
    --cream: #15140f;        /* fondo de página */
    --beige: #1d1c16;        /* fondo de secciones alternas */
    --beige-dark: #3d3b32;   /* bordes / separadores */
    --brown-light: #d9b67f;  /* eyebrows / acentos dorados */
    --brown: #c9a96e;
    --brown-dark: #e6dccb;
    --green: #a6c191;        /* íconos de acento (claro) */
    --green-dark: #d2e6c4;   /* TÍTULOS y texto clave (claro) */
    --green-darker: #0d0d09; /* fondo del footer */
    --text: #ece6da;
    --text-light: #b6ae9c;
    --white: #201f1a;        /* fondo de tarjetas/superficies (oscuro) */
    --shadow-sm: rgba(0,0,0,0.35);
    --shadow: rgba(0,0,0,0.5);
    --shadow-lg: rgba(0,0,0,0.7);
    --gold: #d9b67f;
    --intro-bg: #0a0a07;
}

/* Texto claro donde se apoya sobre imágenes/zonas oscuras */
body.dark-mode .hero-content,
body.dark-mode .hero-title,
body.dark-mode .stat-number,
body.dark-mode .logo-main,
body.dark-mode .btn-ghost,
body.dark-mode .event-card-body h3,
body.dark-mode .footer-logo-main {
    color: #f3ece0;
}

/* Header sólido al hacer scroll */
body.dark-mode .header.scrolled {
    background: rgba(21,20,15,0.95);
}

/* Botones primarios: mantienen un verde legible (no se invierten) */
body.dark-mode .btn-primary,
body.dark-mode .header.scrolled .nav-links a.nav-cta {
    background: #3f5233;
    border-color: #3f5233;
    color: #f3ece0;
}
body.dark-mode .btn-primary:hover,
body.dark-mode .header.scrolled .nav-links a.nav-cta:hover {
    background: #4c6340;
    border-color: #4c6340;
}
body.dark-mode .btn-secondary {
    color: var(--green-dark);
    border-color: var(--green-dark);
}
body.dark-mode .btn-secondary:hover {
    background: #3f5233;
    border-color: #3f5233;
    color: #f3ece0;
}

/* Avatares e insignias mantienen fondo verde con texto claro */
body.dark-mode .review-avatar { background: #3f5233; color: #f3ece0; }

/* Tarjeta de visita: conserva su acento verde oscuro */
body.dark-mode .visit-card { background: #26331e; }

/* Tarjeta de contacto (glass): vidrio oscuro en vez de claro */
body.dark-mode .contact-info-card {
    background: rgba(32,31,26,0.85) !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(21, 30, 18, 0.55) 0%,
            rgba(21, 30, 18, 0.28) 38%,
            rgba(21, 30, 18, 0.68) 100%
        ),
        linear-gradient(
            135deg,
            rgba(21, 30, 18, 0.5) 0%,
            rgba(74, 87, 64, 0.32) 50%,
            rgba(92, 67, 37, 0.38) 100%
        );
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    color: rgba(201, 169, 110, 0.3);
    font-size: 1.5rem;
    animation: float 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; right: 15%; animation-delay: 2s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 4s; }
.particle-4 { top: 80%; right: 10%; animation-delay: 6s; }
.particle-5 { top: 30%; left: 80%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 8rem 2rem 6rem;
    max-width: 780px;
    animation: heroReveal 1.1s ease 0.3s both;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.85);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 1.5rem auto;
}
.divider-line {
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(201,169,110,0.5);
}
.hero-divider i { color: var(--gold); font-size: 0.8rem; }

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    padding: 1.25rem 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.stat {
    flex: 1;
    text-align: center;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--white);
    display: inline;
    line-height: 1;
}
.stat-suffix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}
.stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

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

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroReveal 1s ease 1.5s both;
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-wheel {
    width: 3px;
    height: 7px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 1rem;
}

.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px var(--shadow);
}
.about-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--green-dark);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 8px 20px var(--shadow);
}
.about-badge i { font-size: 1.1rem; color: var(--gold); }

.about-text { padding-top: 0.5rem; }
.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--green-dark);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}
.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color var(--transition), transform var(--transition);
}
.feature-icon i { color: var(--green); font-size: 1rem; }
.feature:hover .feature-icon {
    background: var(--green-dark);
    transform: scale(1.08);
}
.feature:hover .feature-icon i { color: var(--white); }
.feature h3 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.feature p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.events-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 30, 18, 0.82);
}
.events .container { position: relative; z-index: 1; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.event-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(4px);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}
.event-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.event-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.08); }
.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.event-card-body {
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.event-icon {
    width: 50px;
    height: 50px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color var(--transition);
}
.event-icon i { color: var(--gold); font-size: 1.1rem; }
.event-card:hover .event-icon { background: rgba(201,169,110,0.25); }

.event-card-body h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}
.event-card-body p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ============================================================
   GASTRONOMY
   ============================================================ */
.gastronomy {
    padding: 100px 0;
    background: var(--cream);
}

.gastro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.gastro-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gastro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow);
}

.gastro-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.gastro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gastro-card:hover .gastro-img img { transform: scale(1.06); }

.gastro-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--green-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.gastro-info {
    padding: 1.5rem;
}
.gastro-info h3 {
    font-size: 1.35rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}
.gastro-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.gastro-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gastro-service {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gastro-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}
.gastro-service > i {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
    transition: color var(--transition);
}
.gastro-service:hover > i { color: var(--green-dark); }
.gastro-service h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}
.gastro-service p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ============================================================
   DECORATIONS
   ============================================================ */
.decorations {
    padding: 100px 0;
    background: var(--white);
}

.deco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.deco-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-sm);
    background: var(--cream);
    transition: transform var(--transition), box-shadow var(--transition);
}
.deco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow);
}

.deco-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.deco-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.deco-card:hover .deco-img img { transform: scale(1.06); }

.deco-icon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74,87,64,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.deco-card:hover .deco-icon-overlay { opacity: 1; }
.deco-icon-overlay i { color: var(--white); font-size: 1.5rem; }

.deco-info { padding: 1.5rem; }
.deco-info h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}
.deco-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

.deco-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.deco-service {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.deco-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}
.deco-service > i {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 1rem;
    display: block;
    transition: color var(--transition);
}
.deco-service:hover > i { color: var(--green-dark); }
.deco-service h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}
.deco-service p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: 100px 0;
    background: var(--beige);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.gallery-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--beige-dark);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition),
                background var(--transition), transform var(--transition),
                box-shadow var(--transition);
}
.gallery-filter i {
    font-size: 0.85em;
    color: var(--brown-light);
    transition: color var(--transition);
}
.gallery-filter:hover {
    color: var(--green-dark);
    border-color: var(--green);
    transform: translateY(-2px);
}
.gallery-filter.active {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(74, 87, 64, 0.28);
}
.gallery-filter.active i { color: var(--gold); }

/* Filtros en modo oscuro */
body.dark-mode .gallery-filter { color: var(--text-light); border-color: var(--beige-dark); }
body.dark-mode .gallery-filter:hover { color: #f3ece0; border-color: #556b45; }
body.dark-mode .gallery-filter.active {
    background: linear-gradient(135deg, #3f5233 0%, #58704795 100%);
    color: #f3ece0;
}
body.dark-mode .gallery-filter.active i { color: var(--gold); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21,30,18,0.75) 0%, rgba(21,30,18,0.1) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-inner {
    padding: 1.25rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.gallery-overlay-inner i {
    font-size: 1rem;
    opacity: 0.8;
}
.gallery-overlay-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10,14,9,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.lightbox-content img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lightboxZoom 0.35s ease;
}
@keyframes lightboxZoom {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.lightbox-caption {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
    font-size: 0.9rem;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-prev:hover  { background: rgba(255,255,255,0.2); transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover  { background: rgba(255,255,255,0.2); transform: translateY(-50%) translateX(3px); }

/* ============================================================
   LOCATION
   ============================================================ */
.location {
    padding: 100px 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 1.75rem;
}
.location-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.93rem;
    color: var(--text-light);
}
.location-list i {
    color: var(--green);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.location-list a { color: var(--green-dark); transition: color var(--transition); }
.location-list a:hover { color: var(--brown); }

.location-map iframe {
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px var(--shadow);
    display: block;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
    padding: 100px 0;
    background: var(--cream);
}

.reviews-slider-wrap {
    overflow: hidden;
    margin-bottom: 2rem;
}
.reviews-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    flex: 0 0 calc(33.333% - 1.2rem);
    background: var(--white);
    padding: 2.25rem;
    border-radius: 14px;
    box-shadow: 0 8px 28px var(--shadow-sm);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px var(--shadow);
}

.review-quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--beige-dark);
    line-height: 0.7;
    margin-bottom: 1rem;
    display: block;
}
.review-stars {
    color: #F5A623;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}
.review-card > p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.93rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--green-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.review-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
.reviews-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--beige-dark);
    color: var(--green-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}
.reviews-btn:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: scale(1.05);
}
.reviews-dots { display: flex; gap: 8px; }
.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige-dark);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}
.reviews-dot.active {
    background: var(--green-dark);
    transform: scale(1.3);
}

.google-rating {
    max-width: 560px;
    margin: 0 auto;
}
.google-rating-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 28px var(--shadow-sm);
    flex-wrap: wrap;
    justify-content: center;
}
.google-logo { flex-shrink: 0; }
.google-info { flex: 1; min-width: 140px; }
.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #F5A623;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.google-stars strong {
    color: var(--green-dark);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    margin-left: 4px;
}
.google-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}
.required { color: var(--brown-light); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid var(--beige-dark);
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--beige-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(107, 123, 94, 0.12);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6A52' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 14px;
}

/* FORM PREVIEW */
.form-preview {
    background: var(--beige);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid var(--beige-dark);
}
.form-preview h4 {
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}
#previewContent {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: pre-line;
}

/* FORM VALIDATION */
.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}
.form-group.success input,
.form-group.success textarea {
    border-color: #27ae60;
}
.form-error {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Contact aside */
.contact-info-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.contact-info-card h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px var(--shadow-sm);
}
.contact-icon i { color: var(--green); font-size: 0.85rem; }
.contact-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}
.contact-list a, .contact-list span {
    font-size: 0.9rem;
    color: var(--text);
    transition: color var(--transition);
}
.contact-list a:hover { color: var(--green-dark); }

.social-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    box-shadow: 0 3px 10px var(--shadow-sm);
    transition: background-color var(--transition), color var(--transition), transform var(--transition);
    font-size: 0.85rem;
}
.social-link:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.visit-card {
    background: var(--green-dark);
    color: var(--white);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
}
.visit-card > i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}
.visit-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.visit-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.visit-card .btn-secondary {
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.visit-card .btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-darker); color: var(--white); }

.footer-top { padding: 60px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.footer-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}
.footer-logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}
.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    transition: background-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--intro-bg);
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-nav ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a,
.footer-contact li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom p {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.float-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.scroll-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 800;
    width: 44px;
    height: 44px;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.scroll-top:hover { background: var(--green-darker); }

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

#calendarContainer {
    text-align: center;
}
#calendarDate {
    margin: 1rem 0;
    padding: 0.5rem;
    border: 1px solid var(--beige-dark);
    border-radius: 4px;
}
#availabilityStatus {
    margin-top: 1rem;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .about-image img { height: 360px; }
    .about-badge { bottom: 14px; right: 14px; }
    .about-grid .reveal-left,
    .about-grid .reveal-right { transform: translateY(40px); }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: span 2; }

    .review-card { flex: 0 0 calc(50% - 0.9rem); }
}

@media (max-width: 768px) {
    /* Nav — agrupar controles a la derecha */
    .menu-toggle { display: flex; order: 4; }
    .logo { order: 1; }
    .lang-toggle { order: 2; margin-left: auto; }
    .dark-mode-toggle { order: 3; }
    .nav-links { order: 5; }
    .lang-toggle { height: 36px; padding: 0 12px; }
    .dark-mode-toggle { width: 36px; height: 36px; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253,250,245,0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 8px 24px var(--shadow);
        display: none;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--text);
        font-size: 13px;
        border-radius: 0;
    }
    .nav-links a:hover { background: var(--cream); color: var(--green-dark); }
    .nav-links a.nav-cta {
        margin: 0.5rem 1.5rem;
        background: var(--green-dark);
        color: var(--white);
        border-radius: 6px;
        text-align: center;
    }

    /* Sections */
    .about { padding: 70px 0; }
    .events { padding: 70px 0; }
    .gastronomy { padding: 70px 0; }
    .decorations { padding: 70px 0; }
    .gallery { padding: 70px 0; }
    .location { padding: 70px 0; }
    .reviews { padding: 70px 0; }
    .contact { padding: 70px 0; }

    /* Grids */
    .features-grid { grid-template-columns: 1fr; }
    .events-grid   { grid-template-columns: 1fr; }
    .gastro-grid   { grid-template-columns: 1fr; }
    .gastro-services { grid-template-columns: 1fr; }
    .deco-grid     { grid-template-columns: 1fr; }
    .deco-services { grid-template-columns: 1fr; }
    .gallery-grid  { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid  { grid-template-columns: 1fr; }
    .form-row      { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr; }
    .footer-brand  { grid-column: span 1; }

    /* Reviews */
    .review-card { flex: 0 0 100%; }

    /* Hero */
    .hero-bg { background-attachment: scroll; }
    .events  { background-attachment: scroll; }

    /* Location map */
    .location-map iframe { height: 280px; }

    /* Contact */
    .contact-aside { order: -1; }

    /* Float buttons */
    .float-whatsapp { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.3rem; }
    .scroll-top { bottom: 4.5rem; right: 1.25rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-sep { width: 40px; height: 1px; }
    .hero-buttons { flex-direction: column; }
    .section-header h2 { font-size: 1.85rem; }
    .google-rating-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   REFINEMENTS & POLISH — v2 (elegancia + microinteracciones)
   ============================================================ */

/* Anillo de foco accesible y coherente con la marca */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}
/* Selección de texto con color de marca */
::selection { background: var(--green-dark); color: var(--white); }

/* ── HERO — viñeta sutil para más profundidad y foco ──────── */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 42%, transparent 52%, rgba(10,14,9,0.5) 100%);
}

/* Acento dorado en la palabra en itálica del título */
.hero-title em {
    background: linear-gradient(100deg, #f4e9d2 0%, var(--gold) 55%, #e6c48f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

/* ── BOTÓN PRIMARIO — barrido de luz al pasar el cursor ───── */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s cubic-bezier(0.23,1,0.32,1);
    pointer-events: none;
}
.btn-primary:hover::after { left: 140%; }

/* ── EYEBROWS con guion dorado decorativo ─────────────────── */
.section-eyebrow { position: relative; display: inline-block; }
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    vertical-align: middle;
    margin: 0 10px 3px;
    background: currentColor;
    opacity: 0.5;
}

/* ── GALERÍA — primer mosaico destacado tipo revista ──────── */
.gallery-grid {
    grid-template-rows: none;
    grid-auto-rows: 240px;
}
.gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-grid .gallery-item:first-child img { height: 100%; }
.gallery-grid .gallery-item:first-child .gallery-overlay-inner h3 { font-size: 1.5rem; }

/* ── TARJETAS — fino acento dorado superior al hover ──────── */
.gastro-card,
.deco-card { position: relative; }
.gastro-card::before,
.deco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brown-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
    z-index: 5;
}
.gastro-card:hover::before,
.deco-card:hover::before { transform: scaleX(1); }

/* ── WHATSAPP flotante — pulso de atención ────────────────── */
.float-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: waPulse 2.6s cubic-bezier(0.66,0,0,1) infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    70%  { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* ── NAV — resaltado de la sección activa (scroll-spy) ────── */
.nav-links a.active { color: var(--white); }
.header.scrolled .nav-links a.active { color: var(--green-dark); }

/* ── Imágenes con borde superior redondeado en map iframe ── */
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px var(--shadow); }
.location-map iframe { box-shadow: none; border-radius: 0; }

/* Respetar reduced-motion en los nuevos efectos */
@media (prefers-reduced-motion: reduce) {
    .float-whatsapp::before { animation: none; }
    .btn-primary::after { transition: none; }
}

/* Galería destacada vuelve a tamaño normal en pantallas chicas */
@media (max-width: 768px) {
    .gallery-grid { grid-auto-rows: 200px; }
    .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-auto-rows: auto; }
    .gallery-grid .gallery-item:first-child { grid-column: auto; grid-row: auto; }
    .gallery-grid .gallery-item:first-child img { height: 240px; }
}

/* Galería — hover más elegante (overlay con deslizamiento + badge) */
.gallery-overlay {
    background: linear-gradient(to top, rgba(21,30,18,0.85) 0%, rgba(21,30,18,0.2) 55%, transparent 100%);
}
.gallery-overlay-inner {
    transform: translateY(14px);
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.gallery-item:hover .gallery-overlay-inner { transform: translateY(0); }
.gallery-overlay-inner i {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    backdrop-filter: blur(2px);
}

/* ============================================================
   PROCESS — banda oscura "Cómo trabajamos" (paso a paso)
   ============================================================ */
.process {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(160deg, #1a2415 0%, #2c3a24 60%, #1f2b18 100%);
}
/* Encabezado siempre claro sobre la banda oscura (independiente del tema) */
.process .section-header h2 { color: #fff; }
.process .section-eyebrow { color: var(--gold); }
.process .section-eyebrow::before,
.process .section-eyebrow::after { background: var(--gold); opacity: 0.6; }
.process .section-ornament span { background: rgba(255,255,255,0.3); }
.process .section-ornament i { color: var(--gold); }
.process .section-desc { color: rgba(255,255,255,0.72); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.process-step {
    text-align: center;
    padding: 0 0.75rem;
}
.process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1;
    color: rgba(201,169,110,0.4);
}
.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0.6rem auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.35);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
}
.process-icon i { font-size: 1.4rem; color: var(--gold); }
.process-step:hover .process-icon {
    transform: translateY(-6px) scale(1.06);
    background: rgba(201,169,110,0.22);
}
.process-step:hover .process-num { color: rgba(201,169,110,0.7); }
.process-step h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}
.process-step p {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   FAQ — acordeón de preguntas frecuentes
   ============================================================ */
.faq {
    padding: 100px 0;
    background: var(--white);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius);
    background: var(--cream);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.open {
    border-color: var(--green);
    box-shadow: 0 12px 32px var(--shadow-sm);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--green-dark);
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--brown); }
.faq-question i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), background 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(135deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.3rem;
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* FAQ en modo oscuro: el "+" no debe quedar blanco sobre verde claro */
body.dark-mode .faq-question i { background: #3f5233; color: #f3ece0; }

/* ============================================================
   RESPONSIVE — secciones nuevas
   ============================================================ */
@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}
@media (max-width: 768px) {
    .process { padding: 70px 0; }
    .faq { padding: 70px 0; }
}
@media (max-width: 520px) {
    .process-grid { grid-template-columns: 1fr; gap: 2rem; }
    .faq-question { font-size: 1.15rem; }
}
