/* =====================================================
   AZAKO RAMEN - CINEMATIC ULTRA EXPERIENCE V8
   Ink Brush, Smoke, Neon, 3D Effects
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Shippori+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
    --black: #000000;
    --charcoal: #0a0a0a;
    --dark: #111111;
    --gold: #C9A227;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --red: #8B0000;
    --red-bright: #C41E3A;
    --cream: #F5F0E6;
    --white: #FFFFFF;
    --sakura: #FFB7C5;
    --neon-gold: #FFD700;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Shippori Mincho', serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
    cursor: default;
}

/* Preloader with Ink Animation */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; position: relative; }

.preloader-kanji {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10rem;
    font-weight: 300;
    color: transparent;
    background: linear-gradient(135deg, var(--gold), var(--neon-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0;
    animation: kanjiReveal 2.5s ease forwards;
    filter: drop-shadow(0 0 60px rgba(201, 162, 39, 0.8));
}

@keyframes kanjiReveal {
    0% { opacity: 0; transform: scale(0.5) translateY(50px); filter: blur(30px) drop-shadow(0 0 0 transparent); }
    50% { opacity: 1; filter: blur(0) drop-shadow(0 0 80px rgba(201, 162, 39, 0.8)); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: drop-shadow(0 0 100px rgba(201, 162, 39, 1)); }
}

.preloader-brush {
    width: 300px;
    height: 4px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    background: rgba(201, 162, 39, 0.1);
}

.preloader-brush::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), var(--neon-gold), var(--gold), transparent);
    animation: brushStroke 2s ease-in-out forwards;
}

@keyframes brushStroke {
    0% { left: -100%; }
    100% { left: 100%; }
}

.preloader-text {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.5);
    animation: textFade 1s ease-in-out infinite alternate;
}

@keyframes textFade { from { opacity: 0.3; } to { opacity: 0.8; } }

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo img { 
    height: 55px; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.5));
}

.nav-logo:hover img { 
    transform: scale(1.1) rotate(5deg); 
    filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.8)); 
}

.nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
    transition: all 0.4s ease;
}

.nav-logo:hover .nav-brand { text-shadow: 0 0 50px rgba(201, 162, 39, 0.9); }

.nav-menu { display: flex; align-items: center; gap: 3rem; list-style: none; }

.nav-menu a {
    color: rgba(245, 240, 230, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease 0.2s;
    box-shadow: 0 0 10px var(--gold);
}

.nav-menu a:hover { color: var(--gold); text-shadow: 0 0 20px rgba(201, 162, 39, 0.5); }
.nav-menu a:hover::before { transform: scaleX(1); }
.nav-menu a:hover::after { transform: translateX(-50%) scale(1); }

.nav-cta {
    padding: 0.85rem 2.5rem !important;
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gold), var(--neon-gold), var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { color: var(--black) !important; box-shadow: 0 0 40px rgba(201, 162, 39, 0.6), 0 0 80px rgba(201, 162, 39, 0.3); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.nav-toggle span { width: 28px; height: 1px; background: var(--gold); transition: all 0.4s ease; box-shadow: 0 0 5px var(--gold); }

@media (max-width: 968px) {
    .nav-toggle { display: flex; }
    .nav-menu { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 2.5rem; opacity: 0; visibility: hidden; }
    .nav-menu.active { opacity: 1; visibility: visible; }
    .nav-menu a { font-size: 1.5rem; color: var(--cream); }
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center bottom, #1a0a0a 0%, var(--black) 70%);
}

/* Ink Splash Background */
.ink-splash {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ink-blob {
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: inkSpread 20s ease-in-out infinite;
}

.ink-blob-1 { width: 800px; height: 800px; top: -300px; right: -200px; animation-delay: 0s; }
.ink-blob-2 { width: 600px; height: 600px; bottom: -200px; left: -150px; animation-delay: -7s; background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.1) 0%, transparent 70%); }
.ink-blob-3 { width: 500px; height: 500px; top: 30%; left: 20%; animation-delay: -14s; }

@keyframes inkSpread {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    25% { transform: scale(1.2) translate(30px, -20px); opacity: 0.8; }
    50% { transform: scale(0.9) translate(-20px, 30px); opacity: 0.6; }
    75% { transform: scale(1.1) translate(20px, 20px); opacity: 0.7; }
}

/* Koi Fish */
.koi-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.koi {
    position: absolute;
    animation: koiSwim linear infinite;
}

.koi-body {
    width: 60px;
    height: 25px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--red-bright) 40%, var(--gold-light) 100%);
    border-radius: 50% 20% 20% 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.koi-body::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 20px solid var(--gold);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    animation: tailWave 0.4s ease-in-out infinite;
}

.koi-body::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
}

@keyframes koiSwim {
    0% { transform: translateX(-100px) translateY(0) scaleX(1); }
    25% { transform: translateX(25vw) translateY(-20px) scaleX(1); }
    50% { transform: translateX(50vw) translateY(10px) scaleX(1); }
    75% { transform: translateX(75vw) translateY(-15px) scaleX(1); }
    100% { transform: translateX(calc(100vw + 100px)) translateY(0) scaleX(1); }
}

@keyframes tailWave { 0%, 100% { transform: translateY(-50%) rotate(-10deg); } 50% { transform: translateY(-50%) rotate(10deg); } }

/* Zen Ripples */
.zen-ripples { position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%); pointer-events: none; }

.zen-ripple {
    position: absolute;
    width: 300px;
    height: 100px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    animation: zenRipple 8s ease-out infinite;
}

.zen-ripple:nth-child(2) { animation-delay: 2s; }
.zen-ripple:nth-child(3) { animation-delay: 4s; }
.zen-ripple:nth-child(4) { animation-delay: 6s; }

@keyframes zenRipple {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Neon Border Glow */
.neon-border {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    pointer-events: none;
    background: linear-gradient(var(--black), var(--black)) padding-box,
                linear-gradient(90deg, transparent, var(--gold), var(--red-bright), var(--gold), transparent) border-box;
    animation: neonShift 5s linear infinite;
    opacity: 0.3;
}

@keyframes neonShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Smoke Effect Enhanced */
.smoke {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: smokeRise 15s ease-in-out infinite;
}

@keyframes smokeRise {
    0% { transform: translateY(100px) scale(0.5) rotate(0deg); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.3; }
    100% { transform: translateY(-300px) scale(2) rotate(180deg); opacity: 0; }
}

/* Floating Kanji Enhanced */
.floating-kanji-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.floating-kanji {
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 4rem;
    color: rgba(201, 162, 39, 0.05);
    animation: kanjiFloat 30s linear infinite;
}

@keyframes kanjiFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Sakura Petals Enhanced */
.sakura-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 5; }

.sakura {
    position: absolute;
    top: -50px;
    background: radial-gradient(ellipse at 30% 30%, var(--sakura) 0%, rgba(255, 183, 197, 0.5) 50%, transparent 70%);
    border-radius: 50% 0 50% 0;
    box-shadow: 0 0 10px rgba(255, 183, 197, 0.5);
    animation: sakuraFall linear infinite;
}

@keyframes sakuraFall {
    0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.9; }
    50% { transform: translateY(50vh) rotate(360deg) translateX(80px) scale(1); }
    85% { opacity: 0.6; }
    100% { transform: translateY(110vh) rotate(720deg) translateX(-50px) scale(0.9); opacity: 0; }
}

/* Fireflies Enhanced */
.fireflies-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.firefly {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--gold),
        0 0 20px var(--gold),
        0 0 40px var(--neon-gold),
        0 0 60px rgba(201, 162, 39, 0.5);
    animation: fireflyGlow ease-in-out infinite;
}

@keyframes fireflyGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    25% { transform: translate(50px, -30px) scale(1.5); opacity: 1; }
    50% { transform: translate(-30px, -60px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(60px, -30px) scale(1.2); opacity: 0.9; }
    90% { opacity: 0.3; }
}

/* Lanterns Enhanced */
.lanterns-container { position: absolute; top: 120px; left: 0; right: 0; height: 35%; overflow: hidden; pointer-events: none; }

.lantern {
    position: absolute;
    top: 30px;
    animation: lanternSway 6s ease-in-out infinite;
}

.lantern-body {
    width: 45px;
    height: 55px;
    background: linear-gradient(180deg, var(--red-bright) 0%, var(--red) 100%);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    box-shadow: 
        0 0 30px rgba(196, 30, 58, 0.6),
        0 0 60px rgba(196, 30, 58, 0.4),
        inset 0 -20px 40px rgba(255, 200, 100, 0.4);
    animation: lanternGlow 3s ease-in-out infinite;
}

@keyframes lanternGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(196, 30, 58, 0.6), 0 0 60px rgba(196, 30, 58, 0.4), inset 0 -20px 40px rgba(255, 200, 100, 0.4); }
    50% { box-shadow: 0 0 50px rgba(196, 30, 58, 0.8), 0 0 100px rgba(196, 30, 58, 0.5), inset 0 -20px 40px rgba(255, 200, 100, 0.6); }
}

.lantern-body::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 10px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.lantern-body::after {
    content: '福';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(201, 162, 39, 0.8);
}

.lantern-tassel {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.lantern-tassel::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--gold);
    border-radius: 0 0 50% 50%;
    animation: tasselSway 2s ease-in-out infinite;
}

@keyframes tasselSway { 0%, 100% { transform: translateX(-50%) rotate(-5deg); } 50% { transform: translateX(-50%) rotate(5deg); } }

.lantern-string {
    position: absolute;
    top: -80px;
    left: 50%;
    width: 1px;
    height: 80px;
    background: rgba(201, 162, 39, 0.4);
}

@keyframes lanternSway {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-10px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    opacity: 0;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(80px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-kanji {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 8rem;
    font-weight: 300;
    background: linear-gradient(135deg, var(--gold), var(--neon-gold), var(--gold-light), var(--gold));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite, kanjiPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(201, 162, 39, 0.6));
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes kanjiPulse {
    0%, 100% { filter: drop-shadow(0 0 50px rgba(201, 162, 39, 0.6)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 80px rgba(201, 162, 39, 0.9)); transform: scale(1.02); }
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 30%, var(--cream) 50%, var(--gold-light) 70%, var(--cream) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
    text-shadow: none;
}

@keyframes textShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.5);
    margin-bottom: 3rem;
    animation: subtitleReveal 1s ease forwards 1s;
    opacity: 0;
}

@keyframes subtitleReveal { from { opacity: 0; letter-spacing: 1em; } to { opacity: 0.5; letter-spacing: 0.5em; } }

.hero-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--neon-gold), var(--gold), transparent);
    margin: 0 auto 3rem;
    position: relative;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.5); width: 150px; }
    50% { box-shadow: 0 0 30px rgba(201, 162, 39, 0.8); width: 180px; }
}

.hero-line::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.8rem;
    text-shadow: 0 0 10px var(--gold);
    animation: diamondSpin 10s linear infinite;
}

@keyframes diamondSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--gold) 0%, var(--neon-gold) 50%, var(--gold) 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.hero-cta:hover::before { width: 400px; height: 400px; }
.hero-cta:hover { 
    color: var(--black); 
    border-color: var(--neon-gold);
    box-shadow: 0 0 50px rgba(201, 162, 39, 0.6), 0 0 100px rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: rgba(201, 162, 39, 0.4);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--neon-gold);
    box-shadow: 0 0 10px var(--gold);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(15px); } }
@keyframes scrollDown { 0% { top: -20px; opacity: 0; } 50% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* Sections */
section { padding: 10rem 5%; position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: 6rem; }

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.7rem 2.5rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
    background: rgba(201, 162, 39, 0.05);
}

.section-label::before, .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::before { left: -70px; }
.section-label::after { right: -70px; background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--cream);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 20px var(--gold);
}

/* About */
.about { background: var(--dark); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img { transform: scale(1.08); }

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 10px;
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image:hover::before { border-color: var(--gold); box-shadow: 0 0 40px rgba(201, 162, 39, 0.3); }
.about-image:hover::after { border-color: rgba(201, 162, 39, 0.4); }

.about-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 2rem;
}

.about-content p {
    color: rgba(245, 240, 230, 0.6);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:hover { 
    background: rgba(201, 162, 39, 0.12); 
    border-color: rgba(201, 162, 39, 0.4); 
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    transition: all 0.4s ease;
}

.about-feature:hover .about-feature-icon { transform: scale(1.15) rotate(10deg); box-shadow: 0 0 30px rgba(201, 162, 39, 0.5); }

.about-feature-icon svg { width: 22px; height: 22px; stroke: var(--black); fill: none; }

.about-feature span { font-size: 0.95rem; color: rgba(245, 240, 230, 0.8); }

@media (max-width: 968px) {
    .about { padding-bottom: 0; }
    .about-grid { grid-template-columns: 1fr; }
}

/* Menu */
.menu { background: linear-gradient(180deg, var(--dark) 0%, var(--charcoal) 100%); }

.menu-tabs {
    display: none;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 1.1rem 3rem;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--white);
    font-family: 'Shippori Mincho', serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--neon-gold));
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.menu-tab:hover { color: var(--black); border-color: var(--gold); }
.menu-tab.active { color: var(--white); border-color: var(--gold); }
.menu-tab:hover::before, .menu-tab.active::before { transform: translateY(0); }

.menu-content { display: none; max-width: 1000px; margin: 0 auto; }
.menu-content.active { display: block; animation: menuSlide 0.7s cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes menuSlide { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.menu-item {
    background: var(--dark);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--neon-gold));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.menu-item:hover { background: rgba(201, 162, 39, 0.08); transform: translateX(5px); }
.menu-item:hover::before { transform: scaleY(1); }

.menu-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.menu-item:hover h4 { color: var(--gold); text-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }

.menu-item p { font-size: 0.9rem; color: rgba(245, 240, 230, 0.4); }

.menu-price {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    white-space: nowrap;
    text-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}

@media (max-width: 768px) {
    .menu { padding-bottom: 0; }
    .menu-grid { grid-template-columns: 1fr; }
}

/* Menu Carousel */
.menu-carousel-container {
    margin-top: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-carousel-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.menu-carousel-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 20px var(--gold);
}

.menu-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carousel-btn {
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .menu-carousel {
        gap: 1rem;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Gallery */
.gallery { background: var(--black); padding: 8rem 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.5s ease;
    z-index: 2;
}

.gallery-item:hover img { transform: scale(1.2); filter: grayscale(0%); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { border-color: var(--gold); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

.gallery-overlay h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.gallery-overlay p { font-size: 0.9rem; color: rgba(245, 240, 230, 0.6); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact { background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark) 100%); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.75rem;
    background: rgba(201, 162, 39, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover { 
    background: rgba(201, 162, 39, 0.1); 
    border-color: rgba(201, 162, 39, 0.35); 
    transform: translateX(12px) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.3);
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon { transform: scale(1.15) rotate(10deg); box-shadow: 0 0 40px rgba(201, 162, 39, 0.5); }

.contact-icon svg { width: 26px; height: 26px; stroke: var(--black); fill: none; }

.contact-item h4 { font-weight: 600; color: var(--cream); margin-bottom: 0.35rem; }
.contact-item p { color: rgba(245, 240, 230, 0.5); font-size: 0.95rem; }

.hours-card {
    background: rgba(201, 162, 39, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 12px;
    padding: 3rem;
}

.hours-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.hours-row { display: flex; justify-content: space-between; padding: 1.1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 500; color: var(--cream); }
.hours-row span:last-child { color: rgba(245, 240, 230, 0.5); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--black); border-top: 1px solid rgba(201, 162, 39, 0.15); padding: 6rem 5% 2rem; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 70px; filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.4)); }

.footer-brand p { color: rgba(245, 240, 230, 0.5); font-size: 0.95rem; line-height: 1.9; max-width: 320px; margin-bottom: 1.5rem; text-align: center; }

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover { 
    background: var(--gold); 
    border-color: var(--gold); 
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.footer-social svg { width: 20px; height: 20px; fill: var(--cream); transition: fill 0.3s ease; }
.footer-social a:hover svg { fill: var(--black); }

.footer-column h4 { font-family: 'Cinzel', serif; font-weight: 400; margin-bottom: 1.5rem; color: var(--cream); letter-spacing: 0.15em; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.85rem; }
.footer-column a { color: rgba(245, 240, 230, 0.5); text-decoration: none; transition: all 0.3s ease; position: relative; }
.footer-column a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.footer-column a:hover { color: var(--gold); }
.footer-column a:hover::after { width: 100%; }

.footer-bottom { border-top: 1px solid rgba(201, 162, 39, 0.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { color: rgba(245, 240, 230, 0.3); font-size: 0.85rem; letter-spacing: 0.15em; }

@media (max-width: 768px) { .footer-content { grid-template-columns: 1fr; text-align: center; } .footer-social { justify-content: center; } }

/* Animations */
/* Animations - Content visible by default, enhanced on scroll */
.reveal { 
    opacity: 1; 
    transform: translateY(0); 
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1); 
}
.reveal.animate { 
    animation: revealUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes revealUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--neon-gold), var(--gold)); }
::selection { background: var(--gold); color: var(--black); }

/* Page Transitions */
body { animation: pageLoad 0.8s ease; }
@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }

/* Smooth Image Loading */
img { opacity: 0; transition: opacity 0.5s ease; }
img.loaded { opacity: 1; }

/* Focus States for Accessibility */
a:focus, button:focus { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
