/* =========================================================================
   GOLDEN BLADE - The Cut Design System
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-base: #0a0a0c;
    --bg-surface: #121216;
    --bg-surface-light: #1a1a20;
    
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #996515;
    
    --text-primary: #F8F8F8;
    --text-secondary: #A0A0A5;
    
    --border-color: rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(18, 18, 22, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background-color: var(--bg-base); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--gold-primary); }
a { text-decoration: none; color: inherit; }

/* UTILITIES */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.section-title { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; letter-spacing: 1px; }
.section-subtitle { color: var(--text-secondary); font-size: 18px; max-width: 600px; margin: 0 auto 60px; font-weight: 300; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-base); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer;
    transition: var(--transition-fast); position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: var(--transition-smooth); }
.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }
.btn-outline { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); }
.btn-outline:hover { background: var(--gold-primary); color: var(--bg-base); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0; background: var(--glass-bg); backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); z-index: 1000; transition: var(--transition-fast); }
.navbar.scrolled { padding: 15px 0; background: rgba(10, 10, 12, 0.95); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold-primary); letter-spacing: 1px; }
.nav-menu { display: flex; gap: 40px; list-style: none; }
.nav-link { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-primary); transition: var(--transition-fast); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--gold-primary); transition: var(--transition-fast); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold-primary); }

/* =========================================
   PREMIUM SPLIT HERO
   ========================================= */
.split-hero-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-base);
    overflow: hidden;
}

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    z-index: 10;
    position: relative;
}

.split-title {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.split-desc {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    max-width: 500px;
    font-weight: 300;
}

.split-right {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.split-image {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1920&q=80') center/cover;
    will-change: transform;
}

.split-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10,10,12,1) 0%, rgba(10,10,12,0) 20%);
    pointer-events: none;
}

.cut-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    will-change: opacity;
}
.line-down { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--text-primary), transparent); animation: slideDown 2s infinite; }
@keyframes slideDown { 0% { transform: translateY(-10px); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(20px); opacity: 0; } }

/* =========================================
   MARQUEE BANDS
   ========================================= */
.marquee-band {
    background: var(--gold-primary);
    color: var(--bg-base);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}
.marquee-content span { padding-right: 50px; }
.marquee-reverse .marquee-content { animation-direction: reverse; background: var(--bg-surface-light); color: var(--gold-primary); border-color: var(--border-color); }
.marquee-reverse { background: var(--bg-surface-light); border-color: var(--border-color); }

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

/* =========================================
   EDITORIAL ABOUT SECTION
   ========================================= */
.editorial-about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.ed-subtitle { font-family: 'Outfit', sans-serif; font-size: 14px; letter-spacing: 4px; color: var(--text-secondary); margin-bottom: 20px; }
.ed-title { font-size: clamp(36px, 4vw, 56px); line-height: 1.1; margin-bottom: 30px; }
.ed-desc { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.ed-link { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold-primary); border-bottom: 1px solid var(--gold-primary); padding-bottom: 5px; transition: var(--transition-fast); }
.ed-link:hover { color: var(--text-primary); border-color: var(--text-primary); }

.ed-images { position: relative; width: 100%; height: 600px; }
.ed-img-main { position: absolute; top: 0; right: 0; width: 80%; height: 80%; object-fit: cover; border-radius: 4px; filter: grayscale(100%); transition: var(--transition-smooth); }
.ed-img-sub { position: absolute; bottom: 0; left: 0; width: 60%; height: 60%; object-fit: cover; border-radius: 4px; box-shadow: 20px -20px 40px rgba(10,10,12,0.8); border: 2px solid var(--border-color); filter: grayscale(50%); transition: var(--transition-smooth); }
.ed-images:hover .ed-img-main { filter: grayscale(0%); transform: translate(-10px, 10px); }
.ed-images:hover .ed-img-sub { filter: grayscale(0%); transform: translate(10px, -10px); }

/* =========================================
   LUXURY MENU
   ========================================= */
.luxury-menu-wrapper { padding: 40px; background: var(--bg-surface); border-radius: 8px; position: relative; }
.luxury-menu-border { border: 1px solid var(--border-color); padding: 50px 40px; position: relative; }
.luxury-menu-border::before, .luxury-menu-border::after { content:''; position:absolute; width:10px; height:10px; border:1px solid var(--gold-primary); }
.luxury-menu-border::before { top:-5px; left:-5px; }
.luxury-menu-border::after { bottom:-5px; right:-5px; }

.luxury-list { display: flex; flex-direction: column; gap: 30px; }
.menu-item { display: flex; flex-direction: column; gap: 5px; }
.menu-title-row { display: flex; align-items: flex-end; width: 100%; }
.menu-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text-primary); white-space: nowrap; }
.menu-dots { flex-grow: 1; border-bottom: 1px dotted var(--text-secondary); margin: 0 15px 8px; opacity: 0.5; }
.menu-price { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 600; color: var(--gold-primary); white-space: nowrap; }
.menu-desc { font-size: 14px; color: var(--text-secondary); }


/* CARDS & GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.glass-card { background: var(--bg-surface); border: 1px solid var(--border-color); padding: 40px; border-radius: 8px; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.glass-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent); opacity: 0; transition: var(--transition-smooth); pointer-events: none; }
.glass-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.glass-card:hover::before { opacity: 1; }

/* FORMS */
.form-control { width: 100%; background: var(--bg-base); border: 1px solid var(--border-color); border-radius: 4px; padding: 16px 20px; color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 15px; transition: var(--transition-fast); margin-bottom: 24px; outline: none; }
.form-control:focus { border-color: var(--gold-primary); background: var(--bg-surface-light); }

/* SMOOTH REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-40px); opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { transform: translateX(0); opacity: 1; }
.reveal-right { transform: translateX(40px); opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { transform: translateX(0); opacity: 1; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #050505;
    padding: 80px 0 20px 0;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 15px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: var(--transition-smooth);
}
.footer-socials a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}
.footer-info {
    list-style: none;
    padding: 0; margin: 0;
    color: var(--text-secondary);
}
.footer-info li {
    margin-bottom: 15px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
}
.info-icon { font-size: 16px; opacity: 0.8; margin-top: 3px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: var(--text-secondary);
}

/* RESPONSIVE */
.mobile-toggle { display: none; cursor: pointer; }

@media (max-width: 900px) {
    .split-hero-container { flex-direction: column; height: auto; min-height: 100vh; }
    .split-left { padding: 40px 5%; flex: none; min-height: 50vh; align-items: center; text-align: center; }
    .split-right { flex: none; min-height: 50vh; width: 100%; }
    
    .editorial-about { grid-template-columns: 1fr; gap: 40px; }
    .ed-images { height: 400px; margin-top: 20px; width: 100%; }
    .ed-img-main { width: 90%; height: 80%; }
    .ed-img-sub { width: 70%; height: 60%; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    .section-padding { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Navbar Mobile Menu */
    .mobile-toggle { display: block; }
    .nav-menu { 
        position: absolute; top: 100%; left: 0; width: 100%; 
        background: var(--bg-base); flex-direction: column; gap: 0;
        border-bottom: 1px solid var(--border-color);
        max-height: 0; overflow: hidden; transition: var(--transition-smooth);
    }
    .nav-menu.mobile-active { max-height: 500px; padding: 20px 0; }
    .nav-menu li { padding: 15px 24px; text-align: center; width: 100%; }
    .nav-menu li a.btn { display: inline-block; width: 100%; margin-top: 10px; }
    
    /* Hero scaling */
    .split-title { font-size: 42px; margin-bottom: 15px; }
    .split-desc { font-size: 16px; margin-bottom: 20px; }
    
    /* Luxury Menu */
    .luxury-menu-border { padding: 20px 15px; }
    .luxury-menu-wrapper { padding: 20px; }
    .menu-name { font-size: 18px; white-space: normal; }
    .menu-price { font-size: 18px; }
    .menu-dots { display: none; } /* Hide dots on very small screens to prevent wrapping issues */
    .menu-title-row { justify-content: space-between; }
    
    /* Marquee */
    .marquee-content { font-size: 16px; }
    .marquee-content span { padding-right: 15px; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col { align-items: center; }
    .footer-socials { justify-content: center; }
    .footer-info li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    
    .split-left { min-height: 60vh; padding-top: 80px; }
    .split-title { font-size: 36px; }
    
    .ed-images { height: 300px; }
    .glass-card { padding: 25px 20px; }
    .section-title { font-size: 32px; }
}

@media (max-width: 380px) {
    .split-title { font-size: 32px; }
    .split-left { padding-top: 100px; }
    .menu-name { font-size: 16px; }
    .menu-price { font-size: 16px; }
}
