/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0F172A;
    --navy-light:  #1E293B;
    --navy-mid:    #334155;
    --gold:        #D4A017;
    --gold-light:  #F0C040;
    --gold-dark:   #B8860B;
    --cream:       #FFF8E7;
    --white:       #FFFFFF;
    --text-light:  #F8FAFC;
    --text-muted:  #94A3B8;
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.15;
    font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 22px;
    background: var(--gold);
    color: var(--navy) !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    padding: 8px;
}

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212,160,23,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,160,23,0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(30,41,59,0.5) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-headline-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,160,23,0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-send-again {
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-size: 1.5rem;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Hero right — image stack */
.hero-right {
    position: relative;
    height: 600px;
}

.hero-img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main {
    width: 75%;
    height: 78%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 55%;
    height: 45%;
    bottom: 5%;
    left: 0;
    z-index: 3;
    border: 4px solid var(--navy);
}

.hero-geo-shape {
    position: absolute;
    z-index: 1;
}

.hero-geo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.12;
    top: 10%;
    left: 25%;
}

.hero-geo-square {
    width: 80px;
    height: 80px;
    background: var(--gold);
    opacity: 0.08;
    bottom: 25%;
    right: -10%;
    transform: rotate(45deg);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-dot {
    color: var(--navy);
    opacity: 0.5;
    font-size: 0.6rem;
    align-self: center;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.section-tag--light { color: var(--gold); }
.section-tag--dark { color: var(--gold-dark); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.section-title--light { color: var(--white); }
.section-title--dark { color: var(--navy); }

.section-desc {
    font-size: 1.05rem;
    color: var(--navy-mid);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== MENU ===== */
.menu-section {
    padding: 100px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,23,42,0.12);
}

.menu-card-accent {
    height: 5px;
    width: 100%;
}

.menu-card--coffee .menu-card-accent { background: linear-gradient(90deg, #6B4226, #9C6427); }
.menu-card--cocktails .menu-card-accent { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }
.menu-card--food .menu-card-accent { background: linear-gradient(90deg, #E07B39, #F0A500); }
.menu-card--pastry .menu-card-accent { background: linear-gradient(90deg, #D4A017, #F5D060); }

.menu-card-body {
    padding: 32px;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--navy);
}

.menu-card--coffee .menu-card-icon { background: rgba(107,66,38,0.1); }
.menu-card--cocktails .menu-card-icon { background: rgba(15,23,42,0.08); }
.menu-card--food .menu-card-icon { background: rgba(224,123,57,0.1); }
.menu-card--pastry .menu-card-icon { background: rgba(212,160,23,0.12); }

.menu-card-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.menu-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }

.menu-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.menu-item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0;
}

.menu-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 32px;
    font-style: italic;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212,160,23,0.04);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 78%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--navy);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-geo {
    position: absolute;
    top: -20px;
    right: 40%;
    color: var(--gold);
    opacity: 0.3;
}

.about-content { position: relative; z-index: 1; }

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212,160,23,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about-value strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== VIBES ===== */
.vibes-section {
    padding: 100px 0;
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
}

.vibes-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(212,160,23,0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(212,160,23,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.vibes-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.vibe-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.vibe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.vibe-card:hover::before { transform: scaleX(1); }

.vibe-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.vibe-card-geo {
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
}

.vibe-card-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.vibe-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== VISIT ===== */
.visit-section {
    padding: 100px 0;
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info { padding-right: 24px; }

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-mid);
    margin-bottom: 4px;
    font-weight: 600;
}

.visit-detail p {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--navy);
    font-weight: 600;
    transition: color var(--transition);
}

.visit-detail a:hover { color: var(--gold-dark); }

.visit-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 12px 40px rgba(15,23,42,0.12);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.visit-map-link {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background var(--transition);
}

.visit-map-link:hover { background: var(--navy-light); }

/* ===== CONTACT ===== */
.contact-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212,160,23,0.04);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-content { padding-top: 8px; }

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 16px;
}

.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--navy-mid);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.form-group select {
    appearance: none;
    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='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
}

.contact-success.visible {
    display: flex;
}

.contact-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,160,23,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-success h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-success p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav strong,
.footer-contact strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--navy-mid);
    font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .hero-right { height: 480px; }
    .about-images { height: 480px; }
    .vibes-grid { gap: 16px; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right { display: none; }
    .hero { padding-top: 120px; }

    .menu-grid { grid-template-columns: 1fr; }

    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 400px; order: -1; }

    .vibes-grid { grid-template-columns: 1fr; }

    .visit-grid { grid-template-columns: 1fr; }
    .visit-info { padding-right: 0; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-content { text-align: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 0 60px; }
    .hero-headline { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .menu-card-body { padding: 24px; }
    .menu-card-title { font-size: 1.25rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .section-header { margin-bottom: 48px; }
    .menu-section, .about-section, .vibes-section, .visit-section, .contact-section {
        padding: 64px 0;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .marquee-track { animation: none; }
}
