:root {
    /* Pure Noir & Terracotta System */
    --base-black: #050505;
    --midnight-dark: #000000;
    --jako-orange: #D66D31;
    --gold-flake: #CBA865;
    --crema-white: #F5F5F7;
    
    /* Warm Glows */
    --orange-glow: 0 0 15px rgba(214, 109, 49, 0.4), 0 0 30px rgba(214, 109, 49, 0.2);
    --deep-glow: 0 15px 50px rgba(0, 0, 0, 0.9);
    
    /* Fonts */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Satoshi', 'Inter', sans-serif;
    
    /* Transition */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    font-size: 13px; /* Zoomed out 2 times */
    scroll-behavior: smooth;
}

body {
    background-color: var(--base-black);
    color: var(--crema-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.noir-bg {
    position: relative;
    background-color: var(--base-black);
    min-height: 100vh;
}

/* Atmospheric Global Background */
.noir-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('interior.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35; /* More prominent atmospheric ghosting */
    z-index: -2;
    filter: grayscale(0.5) contrast(1.1) brightness(0.7);
}

/* Texture Overlay */
.noir-bg::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('grain.png'); /* Local grain texture */
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.midnight-bg {
    background: radial-gradient(circle at center, #151515, var(--base-black));
}

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

.container-sm {
    max-width: 800px;
}

/* Typography */
h1, h2, h3, .syne-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-neon {
    color: var(--jako-orange);
    text-shadow: var(--orange-glow);
}

.text-neon-cyan {
    color: var(--crema-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 11, 30, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(214, 109, 49, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--crema-white);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--jako-orange);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--crema-white);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--jako-orange);
    text-shadow: var(--orange-glow);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-right: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(245, 245, 247, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.2rem 0.4rem;
}

.lang-btn:hover {
    color: var(--crema-white);
}

.lang-btn.active {
    color: var(--jako-orange);
    text-shadow: var(--orange-glow);
}

.lang-divider {
    color: rgba(245, 245, 247, 0.2);
    font-weight: 300;
}

/* Logo Image Styling */
.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(214, 109, 49, 0.3));
}

/* Buttons */
.btn-glow {
    position: relative;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--jako-orange);
    border-radius: 4px;
    background: transparent;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--jako-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(214, 109, 49, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(214, 109, 49, 0.5);
    background-color: #e57e3f;
}

.btn-outline {
    border: 1px solid var(--crema-white);
    color: var(--crema-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--crema-white);
    color: var(--midnight-indigo);
}

.btn-xl {
    font-size: 1.2rem;
    padding: 1.5rem 4rem;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start; /* Switch to flex-start for more direct control with padding */
    justify-content: center;
    padding-top: 180px; /* Lowered significantly as requested */
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), var(--base-black));
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(245, 245, 247, 0.8);
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
section {
    padding: 10rem 0;
    position: relative;
}

.section-atmosphere {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214, 109, 49, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.section-atmosphere h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Menu */
.section-menu {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(214, 109, 49, 0.2);
    border-bottom: 1px solid rgba(214, 109, 49, 0.05);
}

.neon-line {
    width: 100px;
    height: 4px;
    background: var(--jako-orange);
    box-shadow: var(--orange-glow);
    margin: 1.5rem 0 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 109, 49, 0.3);
    box-shadow: var(--deep-glow);
}

.card-img-wrapper {
    height: 250px;
    position: relative;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--crema-white);
}

.card-content p {
    font-size: 0.95rem;
    color: rgba(245, 245, 247, 0.6);
    margin-bottom: 1.5rem;
    height: 4.5em;
    overflow: hidden;
}

.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--jako-orange);
    font-size: 1.4rem;
}

/* Spirits */
.section-spirits {
    background: radial-gradient(circle at bottom, #150a05, var(--base-black));
}

.spirits-visual {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.glow-line-pink, .glow-line-cyan {
    width: 150px;
    height: 1px;
}

.glow-line-pink { background: var(--jako-orange); box-shadow: var(--orange-glow); }
.glow-line-cyan { background: var(--crema-white); opacity: 0.3; }

.section-reviews {
    /* Transparent back to show the global fixed background */
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.review-card {
    padding: 3rem;
    border-left: 2px solid var(--gold-flake);
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

cite {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-flake);
    text-transform: uppercase;
    font-style: normal;
}

/* CTA */
.cta-box {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(214, 109, 49, 0.05), rgba(0, 251, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.cta-box h3 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 5rem 0 3rem;
    background-color: var(--midnight-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--gold-flake);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(245, 245, 247, 0.4);
}

/* Placeholders */
.katsu-placeholder, .udev-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a; /* Noir compatible grey */
    padding: 2rem;
    text-align: center;
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.2);
}

.neon-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
    100% { filter: brightness(1); }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(245, 245, 247, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--crema-white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 4rem; }
    .reviews-grid { grid-template-columns: 1fr; }
}
