:root {
    --bg: #1C1410;
    --bg-deep: #120E0A;
    --surface: #2A2018;
    --border: rgba(232, 145, 58, 0.15);
    --text: #F5F0EB;
    --text-muted: #A89A8C;
    --accent: #E8913A;
    --accent-warm: #D4763A;
    --accent-glow: rgba(232, 145, 58, 0.3);
    --cream: #F5E6D3;
}

* { margin: 0; padding: 0; box-sizing: border-box; min-width: 0; }

@media (pointer: fine) {
    body, a, button { cursor: none; }
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
h1, h2, h3, h4, .logo, .category-title { font-family: 'Playfair Display', serif; }

/* Custom Cursor */
.cursor-glow {
    position: fixed; width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), height 0.3s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s;
    backdrop-filter: invert(10%); display: none;
}
@media (pointer: fine) { .cursor-glow { display: block; } }
body:hover .cursor-glow { opacity: 1; }
.cursor-glow.hovering { width: 70px; height: 70px; background: var(--accent-glow); backdrop-filter: blur(2px); border-color: transparent; }

/* Globals */
.section { padding: 80px 5%; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* Buttons */
.btn-primary {
    display: inline-block; padding: 16px 36px; background: rgba(232, 145, 58, 0.12); color: var(--accent);
    border: 1px solid var(--accent); text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.85rem; transition: 0.4s; position: relative; overflow: hidden; z-index: 1;
    text-align: center; font-weight: 600; cursor: pointer; text-decoration: none; font-family: 'Inter', sans-serif;
}
.btn-primary::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0%;
    background: var(--accent); transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1); z-index: -1;
}
.btn-primary:hover { color: var(--bg-deep); }
.btn-primary:hover::after { height: 100%; }

.btn-secondary {
    display: inline-block; padding: 16px 36px; background: transparent; color: var(--cream);
    border: 1px solid rgba(245, 230, 211, 0.3); text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.85rem; transition: 0.4s; text-decoration: none; font-weight: 500; font-family: 'Inter', sans-serif;
}
.btn-secondary:hover { border-color: var(--cream); color: var(--cream); background: rgba(245, 230, 211, 0.08); }

.nav-btn {
    background: var(--accent) !important; color: var(--bg-deep) !important; font-weight: 700;
    border: none; padding: 12px 24px; box-shadow: 0 4px 20px var(--accent-glow);
}

/* Navigation */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center; z-index: 100;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 14, 10, 0.8), transparent); z-index: -1;
    transition: opacity 0.4s;
}
.nav.scrolled { padding: 12px 5%; background: rgba(18, 14, 10, 0.95); backdrop-filter: blur(12px); }
.nav.scrolled::after { opacity: 0; }

.logo { font-size: 1.8rem; font-weight: 700; color: var(--text); letter-spacing: -1px; z-index: 1; }
.nav-links { display: flex; gap: 32px; z-index: 1; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.5px; font-weight: 400; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 20px; z-index: 1; }

/* Hamburger */
.menu-btn { background: transparent; border: none; display: none; flex-direction: column; gap: 6px; z-index: 100; position: relative; padding: 10px; cursor: pointer; }
.menu-btn .line { width: 28px; height: 2px; background: white; transition: 0.3s; display: block; pointer-events: none; }
.menu-btn:hover .line:first-child { width: 36px; transform: translateX(-4px); }

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-deep); z-index: 90; display: flex;
    opacity: 0; pointer-events: none; transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.fullscreen-menu.active { opacity: 1; pointer-events: all; }
.menu-content { flex: 1; padding: 40px 40px; display: flex; flex-direction: column; justify-content: space-between; overflow-y: auto; }
.menu-header { text-align: right; }
.close-btn { background: transparent; border: none; color: white; font-size: 2.5rem; transition: 0.3s; padding: 10px; cursor: pointer; }
.close-btn:hover { color: var(--accent); transform: scale(1.2) rotate(90deg); }

.menu-links { list-style: none; margin-top: 40px; }
.menu-links li { overflow: hidden; margin-bottom: 8px; }
.menu-link {
    font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 8vw, 4rem); color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4); text-decoration: none;
    display: inline-block; transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.3s, -webkit-text-stroke 0.3s;
}
.fullscreen-menu.active .menu-link { transform: translateY(0); }
.fullscreen-menu.active li:nth-child(1) .menu-link { transition-delay: 0.1s; }
.fullscreen-menu.active li:nth-child(2) .menu-link { transition-delay: 0.15s; }
.fullscreen-menu.active li:nth-child(3) .menu-link { transition-delay: 0.2s; }
.fullscreen-menu.active li:nth-child(4) .menu-link { transition-delay: 0.25s; }
.fullscreen-menu.active li:nth-child(5) .menu-link { transition-delay: 0.3s; }
.menu-link:hover { color: var(--accent); -webkit-text-stroke: 0px; }

.menu-info { display: flex; flex-direction: column; gap: 10px; color: var(--text-muted); font-size: 0.95rem; opacity: 0; transition: 1s 0.5s; letter-spacing: 0.5px; margin-top: 30px; }
.fullscreen-menu.active .menu-info { opacity: 1; }

/* Hero */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    background: url('images/hero-restaurant.jpg') center/cover no-repeat;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18, 14, 10, 0.6) 0%, rgba(18, 14, 10, 0.85) 100%); z-index: -1;
}

.hero-content { text-align: center; position: relative; z-index: 1; padding: 0 20px; width: 100%; max-width: 900px; }
.hero-label {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent);
    margin-bottom: 24px; font-weight: 500;
}
.hero-content h1 {
    font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 400; line-height: 1.1;
    margin-bottom: 24px; letter-spacing: -2px;
}
.hero-content i { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-sub {
    font-size: clamp(0.95rem, 3vw, 1.15rem); color: var(--cream); letter-spacing: 0.5px;
    font-weight: 300; line-height: 1.7; max-width: 560px; margin: 0 auto; text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.scroll-ind {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent);
    opacity: 0.7; animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 15px); } }

/* Marquee */
.marquee-section { padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-deep); }
.marquee-wrap { overflow: hidden; max-width: 100%; position: relative; padding: 18px 0; }
.marquee { display: flex; width: max-content; animation: scroll-left 25s linear infinite; will-change: transform; }
.marquee span {
    padding: 0 40px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px;
    color: var(--accent); font-weight: 500; white-space: nowrap; font-family: 'Playfair Display', serif;
    font-style: italic;
}
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Section Titles */
.section-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem); text-align: center; margin-bottom: 20px;
    font-weight: 400; color: var(--accent); letter-spacing: -1px;
}
.section-subtitle {
    text-align: center; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
    max-width: 600px; margin: 0 auto 60px; font-weight: 300;
}

/* Menu Section */
.menu-categories { display: flex; flex-direction: column; gap: 60px; }
.category-title {
    font-size: 1.6rem; color: var(--cream); font-weight: 400; margin-bottom: 30px;
    padding-bottom: 16px; border-bottom: 1px solid var(--border); letter-spacing: 1px;
    font-style: italic;
}
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 60px; }
.menu-item { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); transition: 0.3s; }
.menu-item:hover { border-bottom-color: var(--accent-glow); }
.item-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.item-top h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 500; color: var(--text); white-space: nowrap; }
.dots { flex: 1; border-bottom: 1px dotted rgba(255, 255, 255, 0.15); min-width: 20px; margin-bottom: 4px; }
.item-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--accent); font-style: italic; white-space: nowrap; }
.item-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* About Section */
.about-section { background: var(--bg-deep); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-img-placeholder {
    width: 100%; height: 500px; border-radius: 8px; position: relative; overflow: hidden;
    background: url('images/our-story.jpg') center/cover no-repeat;
}
.about-img-placeholder::after {
    content: ''; display: none;
}
.about-label {
    display: inline-block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 16px; font-weight: 500;
}
.about-text h2 {
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; line-height: 1.2;
    margin-bottom: 28px; letter-spacing: -1px;
}
.about-text h2 i { color: var(--accent); }
.about-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.about-stats { display: flex; gap: 40px; margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--accent); font-weight: 600; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 400; }

/* Gallery Section */
.gallery-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 50px; flex-wrap: wrap; gap: 20px;
}
.gallery-header p { width: 45%; color: var(--text-muted); font-size: 1rem; line-height: 1.7; text-align: right; font-weight: 300; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px;
}
.g-item {
    position: relative; border-radius: 8px; overflow: hidden; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.g-item:hover { transform: scale(1.02); z-index: 2; }
.g-large { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-row: span 2; }
.g-placeholder {
    width: 100%; height: 100%; transition: filter 0.6s, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.8) saturate(0.9);
}
.g-item:hover .g-placeholder { filter: brightness(1) saturate(1.1); transform: scale(1.06); }
.g-caption {
    position: absolute; bottom: 16px; left: 16px; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--cream); font-weight: 500;
    background: rgba(18, 14, 10, 0.7); padding: 6px 14px; border-radius: 4px;
    backdrop-filter: blur(6px); opacity: 0; transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }

/* Gallery images */
.g-pl-1 { background: url('images/hero-restaurant.jpg') center/cover no-repeat; }
.g-pl-2 { background: url('images/jollof-rice.jpg') center/cover no-repeat; }
.g-pl-3 { background: url('images/kitchen.jpg') center/cover no-repeat; }
.g-pl-4 { background: url('images/chapman.jpg') center/cover no-repeat; }
.g-pl-5 { background: url('images/adire.jpg') center/cover no-repeat; }
.g-pl-6 { background: url('images/evening-service.jpg') center/cover no-repeat; }

/* Location Section */
.location-section { background: var(--bg-deep); }
.location-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.info-block { margin-bottom: 36px; }
.info-label {
    display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--accent); margin-bottom: 12px; font-weight: 500;
}
.info-block p { font-size: 1.05rem; color: var(--text); line-height: 1.8; font-weight: 400; }

.hours-grid { display: flex; flex-direction: column; gap: 10px; }
.hours-row {
    display: flex; justify-content: space-between; padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.95rem;
}
.hours-row span:first-child { color: var(--text-muted); }
.hours-row span:last-child { color: var(--text); font-weight: 500; }

.map-wrap { width: 100%; }
.map-placeholder {
    width: 100%; height: 420px; border-radius: 12px; position: relative; overflow: hidden;
    background:
        linear-gradient(135deg, #2A2018 0%, #1C1410 50%, #2A2018 100%);
    border: 1px solid var(--border); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
}
.map-grid-lines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(232, 145, 58, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 145, 58, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-pin { z-index: 1; animation: pin-bounce 2s ease-in-out infinite; }
@keyframes pin-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.map-label {
    z-index: 1; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 1px;
    background: rgba(28, 20, 16, 0.9); padding: 8px 18px; border-radius: 20px;
    border: 1px solid var(--border);
}

/* Footer */
.premium-footer { background: #0E0B08; padding-top: 60px; padding-bottom: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.f-links h4 {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--accent);
    margin-bottom: 20px; font-weight: 400;
}
.f-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; color: var(--text-muted); font-size: 0.9rem; }
.f-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.f-links a:hover { color: var(--accent); letter-spacing: 1px; }

.footer-bottom {
    display: flex; justify-content: center; flex-direction: column; align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px;
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.3); gap: 12px;
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: wa-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .menu-btn { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-placeholder { height: 350px; }
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .g-large { grid-column: span 2; grid-row: span 1; }
    .g-tall { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 50px 5%; }
    .hero { align-items: center; padding-top: 0; }
    .hero-content h1 { font-size: clamp(2.4rem, 9vw, 4rem); letter-spacing: -1px; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; max-width: 300px; }

    .nav { padding: 15px 5%; }
    .nav-btn { padding: 10px 18px; font-size: 0.75rem; }
    .logo { font-size: 1.4rem; }

    .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 16px; }
    .section-subtitle { margin-bottom: 40px; font-size: 0.95rem; }

    .menu-items { grid-template-columns: 1fr; gap: 16px; }
    .item-top h4 { font-size: 0.95rem; }
    .item-price { font-size: 1rem; }

    .about-grid { gap: 30px; }
    .about-img-placeholder { height: 280px; }
    .about-text h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .about-stats { gap: 24px; flex-wrap: wrap; }
    .stat-number { font-size: 1.8rem; }

    .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 30px; }
    .gallery-header p { width: 100%; text-align: left; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .g-large { grid-column: span 1; }
    .g-caption { opacity: 1; transform: translateY(0); }

    .map-placeholder { height: 300px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { text-align: center; }
}

@media (max-width: 480px) {
    .hero-label { font-size: 0.7rem; letter-spacing: 3px; }
    .hero-sub { font-size: 0.9rem; }
    .marquee span { padding: 0 24px; font-size: 0.8rem; letter-spacing: 3px; }
    .category-title { font-size: 1.3rem; }
    .about-stats { gap: 20px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }
    .hours-row { font-size: 0.85rem; }
}
