/* ============================================
   VELOUR RESTAURANT — PREMIUM STYLESHEET
   ============================================ */

:root {
    --espresso: #2C1A0E;
    --cream: #F7F2EC;
    --black: #0F0D0B;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --warm-gray: #8A8078;
    --warm-gray-light: #D4CEC7;
    --white: #FEFEFE;
    --shadow: rgba(44, 26, 14, 0.12);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--espresso);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

/* ============================================
   LOADER
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--espresso);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--transition), visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(247, 242, 236, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--gold);
    width: 0;
    animation: fillBar 1.8s var(--transition) forwards;
}

@keyframes fillBar {
    to {
        width: 100%;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--espresso);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-dark {
    background: var(--espresso);
    color: var(--cream);
}

.btn-dark:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--gold);
    color: var(--espresso);
    padding: 10px 22px;
    font-size: 0.78rem;
}

.btn-nav:hover {
    background: var(--gold-light);
}

.btn-hero {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(247, 242, 236, 0.6);
    font-size: 0.82rem;
    padding: 16px 40px;
    letter-spacing: 0.15em;
}

.btn-hero:hover {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(247, 242, 236, 0.4);
}

.btn-outline-light:hover {
    background: rgba(247, 242, 236, 0.1);
    border-color: var(--cream);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-ghost {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--espresso);
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    transition: all 0.4s var(--transition);
}

#navbar.scrolled {
    background: rgba(15, 13, 11, 0.96);
    backdrop-filter: blur(12px);
    height: 60px;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.2);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(247, 242, 236, 0.8);
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--espresso);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn {
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s var(--transition);
    transform: scale(1.05);
    animation: none;
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 13, 11, 0.72) 0%,
            rgba(44, 26, 14, 0.45) 50%,
            rgba(15, 13, 11, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-title em {
    display: block;
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: rgba(247, 242, 236, 0.8);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(247, 242, 236, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(247, 242, 236, 0.5), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.4);
        opacity: 0.3;
    }
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    /* right: 5%; */
    display: flex;
    /* flex-direction: column; */
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(247, 242, 236, 0.3);
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.9s var(--transition) forwards;
}

.hero-eyebrow {
    animation-delay: 0.3s;
}

.hero-title {
    animation-delay: 0.6s;
}

.hero-sub {
    animation-delay: 0.9s;
}

.hero-content .reveal:last-child {
    animation-delay: 1.1s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.section-dark {
    background: var(--espresso);
}

.section-cream {
    background: var(--cream);
}

.section-gold {
    background: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--espresso);
}

.section-title.light {
    color: var(--cream);
}

.section-title.centered {
    text-align: center;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-title.light em {
    color: var(--gold-light);
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* SCROLL ANIMATIONS */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
    transition-delay: var(--delay, 0s);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    background: var(--warm-gray-light);
    border: 2px solid var(--warm-gray-light);
    border-radius: 16px;
    overflow: hidden;
}

.feature-card {
    background: var(--white);
    padding: clamp(32px, 4vw, 48px);
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.feature-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--espresso);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* ============================================
   MENU
   ============================================ */
.menu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 9px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 242, 236, 0.6);
    border: 1px solid rgba(247, 242, 236, 0.2);
    border-radius: 100px;
    transition: all 0.25s var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 242, 236, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.menu-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-img-wrap img {
    transition: transform 0.5s var(--transition);
}

.menu-card:hover .menu-img-wrap img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

.badge-best {
    background: var(--gold);
    color: var(--espresso);
}

.badge-new {
    background: #4CAF8C;
    color: white;
}

.fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 13, 11, 0.6);
    backdrop-filter: blur(6px);
    color: var(--cream);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.fav-btn:hover,
.fav-btn.active {
    background: #e74c3c;
    color: white;
}

.menu-info {
    padding: 20px 22px 22px;
}

.menu-info h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 6px;
}

.menu-info p {
    font-size: 0.85rem;
    color: rgba(247, 242, 236, 0.55);
    line-height: 1.6;
}

.menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.price {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
}

/* ============================================
   BRAND STORY
   ============================================ */
.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.story-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.story-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--espresso);
    padding: 12px 20px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.story-text {
    padding: clamp(0px, 2vw, 24px) 0;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--warm-gray-light);
    border-bottom: 1px solid var(--warm-gray-light);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--espresso);
    line-height: 1;
}

.stat span {
    font-size: 0.78rem;
    color: var(--warm-gray);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.rating-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 40px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 4rem;
    box-shadow: 0 4px 24px var(--shadow);
}

.rating-item {
    text-align: center;
}

.rating-item strong {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--espresso);
}

.rating-item span {
    font-size: 0.82rem;
    color: var(--warm-gray);
}

.rating-divider {
    width: 1px;
    height: 48px;
    background: var(--warm-gray-light);
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--transition);
}

.testimonial-card {
    min-width: calc(50% - 12px);
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px var(--shadow);
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.t-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--espresso);
}

.t-author span {
    font-size: 0.78rem;
    color: var(--warm-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--warm-gray-light);
    color: var(--espresso);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.carousel-btn:hover {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 2rem;
}

.trust-badges span {
    padding: 8px 20px;
    background: var(--white);
    border: 1.5px solid var(--warm-gray-light);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--espresso);
    font-weight: 500;
    box-shadow: 0 2px 8px var(--shadow);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    transition: transform 0.6s var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 26, 14, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    opacity: 0;
    transition: opacity 0.35s var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.event-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: clamp(24px, 3vw, 36px);
    transition: all 0.35s var(--transition);
}

.event-card:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.event-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.event-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.event-card p {
    font-size: 0.88rem;
    color: rgba(247, 242, 236, 0.55);
    line-height: 1.65;
}

/* ============================================
   RESERVATION
   ============================================ */
.reservation-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.reservation-info>p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.res-hours {
    margin-bottom: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--warm-gray-light);
    font-size: 0.9rem;
}

.hours-row span {
    color: var(--warm-gray);
}

.hours-row strong {
    color: var(--espresso);
}

.reservation-form {
    background: var(--white);
    border: 1.5px solid var(--warm-gray-light);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 8px 40px var(--shadow);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--warm-gray-light);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--espresso);
    background: var(--white);
    transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea {
    min-height: 80px;
}

/* ============================================
   LEAD CAPTURE
   ============================================ */
.section-gold .section-title {
    color: var(--espresso);
}

.section-gold .section-title em {
    color: rgba(44, 26, 14, 0.7);
    font-style: italic;
}

.lead-sub {
    font-size: 1rem;
    color: rgba(44, 26, 14, 0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.lead-form input,
.lead-form select {
    padding: 14px 18px;
    border: 1.5px solid rgba(44, 26, 14, 0.25);
    border-radius: 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.6);
    color: var(--espresso);
    transition: all 0.25s;
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: var(--espresso);
    background: rgba(255, 255, 255, 0.9);
    outline: none;
}

.lead-form button {
    grid-column: span 2;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--black);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-brand>p {
    font-size: 0.88rem;
    color: rgba(247, 242, 236, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(247, 242, 236, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(247, 242, 236, 0.6);
    transition: all 0.25s;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h5 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.87rem;
    color: rgba(247, 242, 236, 0.55);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    font-size: 0.87rem;
    color: rgba(247, 242, 236, 0.55);
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-map {
    margin-bottom: 48px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(247, 242, 236, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(247, 242, 236, 0.35);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 50;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--transition);
    animation: whatsappPulse 3s ease infinite;
}

/* Shift WA button up when sticky bar is visible on mobile */
@media (max-width: 768px) {

    .sticky-bar.visible~.whatsapp-float,
    body.sticky-active .whatsapp-float {
        bottom: calc(var(--sticky-h, 64px) + 16px);
        animation: none;
    }
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65);
    }
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--espresso);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.5s var(--transition);
    /* safe area for notch phones */
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar span {
    font-size: 0.88rem;
    color: rgba(247, 242, 236, 0.7);
    flex: 1;
    min-width: 160px;
}

.sticky-close {
    color: rgba(247, 242, 236, 0.4);
    font-size: 1.3rem;
    line-height: 1;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.sticky-close:hover {
    color: var(--cream);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 13, 11, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s var(--transition);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--espresso);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-box h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--espresso);
}

.modal-box p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-coupon {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 1.5rem;
}

.modal-coupon span {
    display: block;
    font-size: 0.95rem;
    color: var(--espresso);
}

.modal-coupon small {
    font-size: 0.78rem;
    color: var(--warm-gray);
}

/* EXIT POPUP */
.exit-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 13, 11, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    padding: 20px;
}

.exit-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-box {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s var(--transition);
}

.exit-overlay.active .exit-box {
    transform: scale(1);
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.4rem;
    color: var(--warm-gray);
    transition: color 0.2s;
}

.exit-close:hover {
    color: var(--espresso);
}

.exit-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exit-box h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--espresso);
    margin-bottom: 0.75rem;
}

.exit-box p {
    font-size: 0.92rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .story-split {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-img {
        aspect-ratio: 16/9;
    }

    .story-stats {
        gap: 20px;
    }

    .reservation-wrap {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }

    .testimonial-card {
        min-width: 85%;
    }

    .rating-divider {
        display: none;
    }

    .rating-banner {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .lead-form {
        grid-template-columns: 1fr;
    }

    .lead-form button {
        grid-column: 1;
    }

    .sticky-bar span {
        display: none;
    }

    /* Center the CTA button in sticky bar on mobile */
    .sticky-bar {
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 12px;
    }

    .sticky-bar .btn {
        flex: 1;
        margin-right: 8px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 90%;
    }

    .modal-box,
    .exit-box {
        padding: 36px 24px;
    }
}

/* CENTERED UTILITY */
.centered {
    text-align: center;
}