/* ============================================================
   Restaurant Eden Iași — Main Stylesheet (Light Cream Theme)
   ============================================================ */

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

:root {
    /* Light cream backgrounds */
    --bg:        #faf7f2;
    --bg-2:      #f3ede2;
    --bg-3:      #ece4d5;
    --bg-4:      #e4d9c8;
    /* Dark sections (footer, hero) */
    --bg-dark:   #1e1a12;
    --bg-dark-2: #2a2418;
    --bg-dark-3: #332d20;
    /* Gold — slightly deeper to work on light backgrounds */
    --gold:      #b8920f;
    --gold-2:    #9a7a0c;
    --gold-light:#c9a227;
    /* Text */
    --dark:      #1c1610;
    --text:      #3d3020;
    --text-2:    #7a6a52;
    --text-3:    #a89878;
    /* Accent */
    --wine:      #7a1c2c;
    --white:     #ffffff;
    /* Borders */
    --border:    rgba(184,146,15,0.28);
    --border-2:  rgba(28,22,16,0.1);
    --border-3:  rgba(28,22,16,0.06);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Montserrat', Arial, sans-serif;

    --transition: all 0.35s ease;
    --radius:    4px;
    --radius-lg: 8px;
    --shadow:    0 8px 40px rgba(28,22,16,0.12);
    --shadow-md: 0 4px 20px rgba(28,22,16,0.09);
    --shadow-gold: 0 4px 24px rgba(184,146,15,0.25);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-display);
    font-size: 52px; font-weight: 600;
    color: var(--gold); letter-spacing: 6px;
    margin-bottom: 20px;
}
.preloader-line {
    width: 0; height: 1px;
    background: var(--gold);
    margin: 0 auto;
    animation: preload-line 1.2s ease forwards 0.3s;
}
@keyframes preload-line { to { width: 80px; } }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(250,247,242,0.97);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-2);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 26px; font-weight: 400;
    color: var(--white); letter-spacing: 6px;
    transition: var(--transition);
}
.nav.scrolled .nav-logo { color: var(--gold); }
.nav-logo span {
    display: block; font-size: 10px; font-family: var(--font-body);
    font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-top: -2px;
    transition: var(--transition);
}
.nav.scrolled .nav-logo span { color: var(--text-2); }

.nav-links {
    display: flex; gap: 36px; align-items: center;
}
.nav-link {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.8);
    transition: var(--transition); position: relative; padding-bottom: 4px;
}
.nav.scrolled .nav-link { color: var(--text-2); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav.scrolled .nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--bg-dark);
    background: var(--gold); padding: 10px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white); transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--dark); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../images/B0000317.jpg') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28,22,16,0.82) 0%,
        rgba(28,22,16,0.50) 50%,
        rgba(28,22,16,0.68) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 24px;
    opacity: 0; transform: translateY(20px);
    animation: fade-up 0.8s ease forwards 0.8s;
}
.hero-tag::before, .hero-tag::after {
    content: ''; display: block; width: 32px; height: 1px;
    background: var(--gold-light);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 400; line-height: 1.05;
    color: var(--bg); margin-bottom: 28px;
    opacity: 0; transform: translateY(30px);
    animation: fade-up 0.9s ease forwards 1s;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
    font-size: 15px; color: rgba(250,247,242,0.78);
    max-width: 480px; line-height: 1.8; margin-bottom: 44px;
    opacity: 0; transform: translateY(20px);
    animation: fade-up 0.8s ease forwards 1.2s;
}
.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fade-up 0.8s ease forwards 1.4s;
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(250,247,242,0.55);
    animation: bounce 2s ease infinite 2s;
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: var(--gold-light); opacity: 0.5;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 11px;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 16px 36px; border-radius: var(--radius);
    transition: var(--transition); cursor: pointer; border: none;
}
.btn-gold {
    background: var(--gold); color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: var(--white);
}
.btn-outline:hover {
    border-color: var(--gold-light); color: var(--gold-light);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--dark); color: var(--white);
}
.btn-dark:hover {
    background: var(--bg-dark-2); transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--border-2);
    color: var(--text-2);
}
.btn-outline-dark:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-2);
    box-shadow: var(--shadow-md);
}
.stats-bar-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--border-3);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-2); }
.stat-number {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 600;
    color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.stat-label {
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-2);
}

/* ── Section Commons ──────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400; line-height: 1.1;
    color: var(--dark); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
    font-size: 15px; color: var(--text-2);
    line-height: 1.8; max-width: 560px;
}
.section-line {
    width: 40px; height: 1px; background: var(--gold); margin: 24px 0;
}

/* Animations */
@keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
}
[data-aos] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
    opacity: 1; transform: translateY(0);
}

/* ── About Section ────────────────────────────────────────── */
.about { padding: 120px 0; background: var(--bg); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-images {
    position: relative; height: 580px;
}
.about-img-main {
    position: absolute; top: 0; left: 0;
    width: 70%; aspect-ratio: 1/1;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: 0; right: 0;
    width: 50%; aspect-ratio: 1/1;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--bg);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute; bottom: 60px; left: -20px; z-index: 3;
    background: var(--gold); color: var(--white);
    padding: 20px 24px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-gold);
}
.about-badge-num {
    font-family: var(--font-display);
    font-size: 38px; font-weight: 700; line-height: 1; display: block;
}
.about-badge-text {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase;
}
.about-content { padding-left: 20px; }
.about-lead {
    font-family: var(--font-display);
    font-size: 22px; color: var(--dark);
    line-height: 1.6; margin-bottom: 20px; font-style: italic;
}
.about-text {
    font-size: 15px; color: var(--text-2);
    line-height: 1.85; margin-bottom: 16px;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 36px;
}
.about-feature {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border: 1px solid var(--border-3);
    border-radius: var(--radius); background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.about-feature:hover {
    border-color: var(--border); transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.about-feature-icon {
    color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0;
}
.about-feature h4 { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.about-feature p { font-size: 12px; color: var(--text-2); line-height: 1.5; }

/* ── Menu Section ─────────────────────────────────────────── */
.menu-section {
    padding: 120px 0; background: var(--bg-2);
    border-top: 1px solid var(--border-3);
    border-bottom: 1px solid var(--border-3);
}
.menu-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 64px;
}
.menu-categories {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 60px;
}
.menu-category {
    background: var(--white); padding: 40px 32px;
    border: 1px solid var(--border-3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.menu-category::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0);
    transition: var(--transition); transform-origin: left;
}
.menu-category:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-category:hover::before { transform: scaleX(1); }
.category-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.category-title {
    font-family: var(--font-display);
    font-size: 26px; color: var(--dark);
    margin-bottom: 24px; font-weight: 500;
}
.menu-items { display: flex; flex-direction: column; gap: 14px; }
.menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 12px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border-3);
}
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item-name { font-size: 13px; color: var(--dark); font-weight: 500; }
.menu-item-desc { font-size: 11px; color: var(--text-2); margin-top: 2px; }
.menu-item-price {
    font-family: var(--font-display);
    font-size: 18px; color: var(--gold);
    white-space: nowrap; font-weight: 600;
}
.menu-cta { text-align: center; margin-top: 16px; }

/* ── Events Section ───────────────────────────────────────── */
.events-section { padding: 120px 0; background: var(--bg); }
.events-header { text-align: center; margin-bottom: 72px; }
.events-header .section-desc { margin: 0 auto; }
.events-header .section-line { margin: 24px auto; }
.events-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}
.event-card {
    position: relative; overflow: hidden;
    height: 480px; cursor: pointer;
}
.event-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.7s ease;
}
.event-card:hover .event-card-bg { transform: scale(1.06); }
.event-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(28,22,12,0.93) 0%, rgba(28,22,12,0.28) 60%, transparent 100%);
    transition: var(--transition);
}
.event-card:hover .event-card-overlay {
    background: linear-gradient(to top, rgba(28,22,12,0.97) 0%, rgba(28,22,12,0.5) 70%, rgba(28,22,12,0.15) 100%);
}
.event-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 36px;
}
.event-card-tag {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold-light);
    margin-bottom: 12px;
}
.event-card-title {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 400; color: var(--white);
    margin-bottom: 12px; line-height: 1.1;
}
.event-card-desc {
    font-size: 13px; color: rgba(250,247,242,0.78); line-height: 1.7;
    margin-bottom: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease, margin-bottom 0.3s ease;
}
.event-card:hover .event-card-desc { max-height: 120px; margin-bottom: 20px; }
.event-card-capacity {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: rgba(250,247,242,0.65); margin-bottom: 20px;
}
.event-card-capacity i { color: var(--gold-light); }
.event-card-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-light);
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.event-card:hover .event-card-link { opacity: 1; transform: translateY(0); }
.event-card-link i { transition: var(--transition); }
.event-card-link:hover i { transform: translateX(4px); }

/* ── Packages Section ─────────────────────────────────────── */
.packages-section {
    padding: 100px 0; background: var(--bg-3);
    border-top: 1px solid var(--border-3);
    border-bottom: 1px solid var(--border-3);
}
.packages-header { text-align: center; margin-bottom: 60px; }
.packages-header .section-line { margin: 20px auto; }
.packages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.package-card {
    background: var(--white); border: 1px solid var(--border-3);
    border-radius: var(--radius-lg); padding: 40px 32px;
    transition: var(--transition); position: relative;
    overflow: hidden; box-shadow: var(--shadow-md);
}
.package-card.featured { border-color: var(--gold); }
.package-card.featured::before {
    content: 'RECOMANDAT';
    position: absolute; top: 18px; right: -28px;
    background: var(--gold); color: var(--white);
    font-size: 9px; font-weight: 700; letter-spacing: 2px;
    padding: 5px 40px; transform: rotate(45deg);
}
.package-card:hover {
    border-color: var(--gold); transform: translateY(-5px);
    box-shadow: var(--shadow), var(--shadow-gold);
}
.package-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 22px;
    background: var(--bg-2);
    margin-bottom: 24px;
}
.package-name {
    font-family: var(--font-display);
    font-size: 28px; color: var(--dark);
    margin-bottom: 8px; font-weight: 500;
}
.package-price {
    font-size: 13px; color: var(--text-2); margin-bottom: 24px;
}
.package-price span {
    font-family: var(--font-display);
    font-size: 36px; color: var(--gold); font-weight: 600;
}
.package-includes {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-3);
}
.package-includes li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-2);
}
.package-includes i { color: var(--gold); font-size: 11px; }
.package-btn {
    width: 100%; padding: 13px; text-align: center;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; border-radius: var(--radius);
    transition: var(--transition); display: block;
    border: 1.5px solid var(--border-2);
    color: var(--text-2); background: transparent;
}
.package-btn:hover, .package-card.featured .package-btn {
    background: var(--gold); border-color: var(--gold); color: var(--white);
}

/* ── Gallery Section ──────────────────────────────────────── */
.gallery-section { padding: 120px 0; background: var(--bg-2); }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-line { margin: 20px auto; }
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5),
.gallery-item:nth-child(10) { grid-row: span 2; }
.gallery-item {
    overflow: hidden; border-radius: var(--radius);
    position: relative; cursor: pointer;
    box-shadow: var(--shadow-md);
}
.gallery-item img {
    width: 100%; height: 100%; display: block;
    object-fit: cover; transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(28,22,12,0.45);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 28px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
    padding: 100px 0; background: var(--bg);
    border-top: 1px solid var(--border-3);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-line { margin: 20px auto; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white); border: 1px solid var(--border-3);
    border-radius: var(--radius-lg); padding: 36px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border); transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-stars {
    display: flex; gap: 4px; margin-bottom: 20px;
    color: var(--gold); font-size: 13px;
}
.testimonial-text {
    font-family: var(--font-display);
    font-size: 18px; color: var(--dark);
    line-height: 1.7; font-style: italic;
    margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-3); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 18px;
    color: var(--gold); font-weight: 600; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testimonial-event { font-size: 11px; color: var(--text-2); margin-top: 2px; }

/* ── Reservation Section ──────────────────────────────────── */
.reservation-section { padding: 0; }
.reservation-grid { display: grid; grid-template-columns: 1fr 1fr; }
.reservation-half {
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.reservation-dining { background: var(--bg-3); }
.reservation-events { background: var(--wine); }
.reservation-events .section-tag { color: rgba(255,255,255,0.65); }
.reservation-events .section-title { color: var(--white); }
.reservation-events .section-desc { color: rgba(255,255,255,0.7); }
.reservation-events .section-line { background: rgba(255,255,255,0.3); }
.res-features {
    display: flex; gap: 20px; margin: 28px 0 36px;
    flex-wrap: wrap;
}
.res-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--text-2);
}
.res-feature i { color: var(--gold); }

/* ── Contact Section ──────────────────────────────────────── */
.contact-section {
    padding: 80px 0; background: var(--bg-2);
    border-top: 1px solid var(--border-3);
    border-bottom: 1px solid var(--border-3);
}
.contact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.contact-item { text-align: center; }
.contact-icon {
    width: 52px; height: 52px; margin: 0 auto 16px;
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px; background: var(--white);
    transition: var(--transition); box-shadow: var(--shadow-md);
}
.contact-item:hover .contact-icon {
    background: var(--gold); color: var(--white);
    box-shadow: var(--shadow-gold);
}
.contact-label {
    font-size: 10px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.contact-value { font-size: 14px; color: var(--text); line-height: 1.6; }
.contact-value a { transition: var(--transition); color: var(--text); }
.contact-value a:hover { color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(184,146,15,0.2);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
}
.footer-brand-logo {
    margin-bottom: 8px;
}
.footer-brand-logo img {
    height: 60px; width: auto;
    filter: brightness(0) invert(1);
}
.footer-brand-sub {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(250,247,242,0.45); margin-bottom: 20px;
}
.footer-brand p {
    font-size: 13px; color: rgba(250,247,242,0.5);
    line-height: 1.8; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(250,247,242,0.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(250,247,242,0.45); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col h4 {
    font-size: 11px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(250,247,242,0.8);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(250,247,242,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
    font-size: 13px; color: rgba(250,247,242,0.45);
    transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
}
.footer-col li a::before { content: none; }
.footer-col li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-program { display: flex; flex-direction: column; gap: 8px; }
.footer-program-item {
    display: flex; justify-content: space-between;
    font-size: 13px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(250,247,242,0.07);
}
.footer-program-item:last-child { border-bottom: none; }
.prog-day { color: rgba(250,247,242,0.45); }
.prog-hours { color: rgba(250,247,242,0.75); font-weight: 500; }
.footer-badges {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-badges-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
}
.footer-badge-link {
    display: flex; align-items: center;
    opacity: 0.7; transition: opacity 0.3s;
}
.footer-badge-link:hover { opacity: 1; }
.footer-badge-img { height: 40px; width: auto; display: block; }
.footer-bottom {
    border-top: 1px solid rgba(250,247,242,0.07);
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(250,247,242,0.35); }
.footer-bottom a { color: var(--gold-light); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9998;
    background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    color: rgba(250,247,242,0.6); font-size: 32px;
    cursor: pointer; line-height: 1; transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: rgba(250,247,242,0.6); font-size: 28px;
    cursor: pointer; transition: var(--transition); padding: 12px;
}
.lightbox-nav:hover { color: var(--gold-light); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── Back to top ──────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 500;
    width: 44px; height: 44px;
    background: var(--gold); color: var(--white);
    border: none; border-radius: var(--radius); cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 86px; right: 28px; z-index: 500;
    background: #25d366; color: #fff;
    border-radius: 50px; padding: 12px 20px;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float i { font-size: 18px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-images { height: 400px; }
    .about-content { padding-left: 0; }
    .packages-grid { grid-template-columns: 1fr 1fr; }
    .packages-grid .package-card:last-child { grid-column: 1 / -1; max-width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; inset: 0;
        background: rgba(250,247,242,0.98);
        align-items: center; justify-content: center;
        gap: 32px; z-index: 999;
    }
    .nav-links.open .nav-link { font-size: 18px; color: var(--dark); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; z-index: 1000; }

    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }

    .menu-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .menu-categories { grid-template-columns: 1fr; }

    .events-grid { grid-template-columns: 1fr; }
    .event-card { height: 360px; }

    .packages-grid { grid-template-columns: 1fr; }
    .packages-grid .package-card:last-child { grid-column: auto; max-width: 100%; }

    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .reservation-grid { grid-template-columns: 1fr; }
    .reservation-half { padding: 60px 32px; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .about-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .reservation-half { padding: 48px 20px; }
    /* Nav */
    .nav-inner { padding: 0 16px; }
    .nav-logo span { display: none; }
    /* Hero homepage */
    .hero-content { padding: 0 20px; }
    .hero h1 { font-size: clamp(36px, 11vw, 60px); }
    /* Stats */
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
    /* Footer */
    .footer-bottom .container { flex-direction: column; text-align: center; }
    /* Section headings */
    .section-title { font-size: clamp(28px, 7vw, 42px); }
    /* Gallery masonry */
    .gallery-masonry { gap: 8px; }
    /* Menu preview on homepage */
    .menu-categories { gap: 16px; }
    /* Events grid homepage */
    .event-card { height: 320px; }
    .event-card-title { font-size: 28px; }
}
