/* ============================================
   RAMEN JI - Ultra Premium Design v10
   Design immersif et appétissant
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Noto+Sans+JP:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Palette exacte du cahier des charges */
    --noir: #1a1918;
    --noir-light: #252423;
    --noir-lighter: #333231;
    
    --creme: #FAF6F2;
    --creme-dark: #F5F0EA;
    --beige: #E8E2DA;
    
    --corail: #E4A190;
    --corail-dark: #D8907E;
    --corail-light: #EDB5A6;
    
    --rouge: #A63D3D;
    --rouge-dark: #8A3232;
    --rouge-light: #c45454;
    
    --or: #D4A853;
    --or-light: #E5BE72;
    --or-glow: rgba(212, 168, 83, 0.4);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-gap: clamp(80px, 12vh, 140px);
    --container-width: 1280px;
    --gutter: clamp(20px, 5vw, 80px);
    
    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration: 0.4s;
    --duration-slow: 0.6s;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--noir);
    background: var(--creme);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
}

h1 { font-size: clamp(48px, 10vw, 100px); }
h2 { font-size: clamp(36px, 6vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.text-jp {
    font-family: var(--font-jp);
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--or-glow); }
    50% { box-shadow: 0 0 40px var(--or-glow), 0 0 60px rgba(212, 168, 83, 0.2); }
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"].visible {
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-left"].visible {
    transform: translateX(0);
}

[data-animate="scale"] {
    transform: scale(0.95);
}

[data-animate="scale"].visible {
    transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(166, 61, 61, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(166, 61, 61, 0.5);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--or);
    color: var(--or-light);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-dark {
    background: var(--noir);
    color: #fff;
    box-shadow: 0 8px 30px rgba(26, 25, 24, 0.3);
}

.btn-dark:hover {
    background: var(--noir-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 25, 24, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-light) 100%);
    color: var(--noir);
    font-weight: 600;
    box-shadow: 0 8px 30px var(--or-glow);
    animation: glow 3s ease-in-out infinite;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px var(--or-glow);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 clamp(24px, 5vw, 60px);
    transition: all var(--duration) var(--ease);
}

.navbar.dark {
    background: transparent;
}

.navbar.scrolled {
    height: 70px;
    background: rgba(26, 25, 24, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: all var(--duration) var(--ease);
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 10px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--or), var(--corail));
    transition: width var(--duration) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-cta {
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--noir);
    background: linear-gradient(135deg, var(--or) 0%, var(--or-light) 100%);
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 20px var(--or-glow);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px var(--or-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all var(--duration) var(--ease);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, var(--noir) 0%, var(--noir-light) 100%);
    padding: 130px 50px 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: right var(--duration-slow) var(--ease);
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 32px;
    color: rgba(255,255,255,0.7);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all var(--duration) var(--ease);
}

.mobile-nav a:hover {
    color: var(--or);
    padding-left: 20px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--noir);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -10%;
    background: url('../images/restaurant.jpg') center center / cover no-repeat;
    animation: kenburns 20s ease-in-out infinite alternate;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(228, 161, 144, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 80% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 20% 80%, rgba(166, 61, 61, 0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 25, 24, 0.4) 0%,
        rgba(26, 25, 24, 0.2) 30%,
        rgba(26, 25, 24, 0.3) 60%,
        rgba(26, 25, 24, 0.85) 100%
    );
}

/* Vignette effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(26, 25, 24, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 var(--gutter);
    max-width: 950px;
}

.hero-logo {
    width: clamp(150px, 25vw, 250px);
    height: auto;
    margin: 0 auto 35px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) forwards 0.2s;
    filter: drop-shadow(0 15px 50px rgba(0,0,0,0.6));
    transition: transform var(--duration) var(--ease);
}

.hero-logo:hover {
    transform: scale(1.08) rotate(2deg);
}

.hero-badge {
    font-family: var(--font-jp);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.6em;
    color: var(--or);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) forwards 0.5s;
    text-shadow: 0 0 30px var(--or-glow), 0 0 60px var(--or-glow);
}

.hero-title {
    font-size: clamp(65px, 15vw, 160px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) forwards 0.7s;
    text-shadow: 0 8px 40px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    color: var(--corail);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) forwards 0.85s;
    text-shadow: 0 4px 30px rgba(228, 161, 144, 0.5);
}

.hero-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 55px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) forwards 1s;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease) forwards 1.15s;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeUp 1s var(--ease) forwards 1.4s;
}

.hero-scroll-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, var(--or), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: var(--or);
    animation: scrollLine 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--or-glow);
}

/* === SERVICES BANNER === */
.services-banner {
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-light) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.services-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A853' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 45px 35px;
    border-right: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background: rgba(255,255,255,0.04);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--duration) var(--ease-bounce);
    box-shadow: 0 6px 25px rgba(166, 61, 61, 0.4);
}

.service-item:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 35px rgba(166, 61, 61, 0.5);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.service-text h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #fff;
}

.service-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* === SECTION HEADERS === */
.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--corail);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 26px;
}

.section-line {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--or), var(--corail));
    margin-bottom: 35px;
    border-radius: 2px;
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
}

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

.section-header .section-line {
    margin-left: auto;
    margin-right: auto;
}

/* === ABOUT SECTION === */
.about-section {
    padding: var(--section-gap) 0;
    background: var(--creme);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '味';
    position: absolute;
    top: 10%;
    right: 5%;
    font-family: var(--font-jp);
    font-size: clamp(180px, 25vw, 350px);
    font-weight: 300;
    color: var(--beige);
    opacity: 0.6;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.about-image {
    position: relative;
}

.about-image-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: url('../images/restaurant.jpg') center center / cover no-repeat;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(26, 25, 24, 0.25);
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(228, 161, 144, 0.2) 0%, transparent 60%);
}

.about-image-main::after {
    display: none;
}

/* Decorative frame */
.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    right: 50px;
    bottom: 50px;
    border: 2px solid var(--or);
    opacity: 0.4;
    z-index: -1;
    transition: all var(--duration) var(--ease);
}

.about-image:hover::before {
    top: -30px;
    left: -30px;
    opacity: 0.6;
}

.about-accent {
    position: absolute;
    bottom: 50%;
    right: -35px;
    transform: translateY(50%);
    width: 150px;
    padding: 36px 28px;
    background: linear-gradient(135deg, var(--corail) 0%, var(--corail-dark) 100%);
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(228, 161, 144, 0.5);
    z-index: 10;
    transition: all var(--duration) var(--ease);
}

.about-image:hover .about-accent {
    transform: translateY(50%) scale(1.05);
    box-shadow: 0 25px 60px rgba(228, 161, 144, 0.6);
}

.about-accent span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.about-accent strong {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 17px;
    line-height: 2;
    color: var(--noir-lighter);
    margin-bottom: 26px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    margin-bottom: 45px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    transition: all var(--duration) var(--ease);
    border: 1px solid transparent;
}

.about-feature:hover {
    background: #fff;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--corail-light);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(166, 61, 61, 0.3);
}

.about-feature-icon svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
}

.about-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--noir);
}

/* === MENU SECTION === */
.menu-section {
    background: linear-gradient(180deg, var(--noir) 0%, var(--noir-light) 100%);
    padding: var(--section-gap) 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 60% at 20% 80%, rgba(166, 61, 61, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.menu-jp {
    font-size: 15px;
    letter-spacing: 0.35em;
    color: var(--or);
    text-shadow: 0 0 20px var(--or-glow), 0 0 40px var(--or-glow);
}

.menu-section .section-title {
    color: #fff;
}

.menu-section .section-line {
    margin-left: auto;
    margin-right: auto;
}

/* Menu Tabs & Categories */
.menu-tabs,
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.menu-tab,
.menu-cat-btn {
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.menu-tab::before,
.menu-cat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
    z-index: -1;
}

.menu-tab span,
.menu-cat-btn span {
    position: relative;
    z-index: 1;
}

.menu-tab:hover,
.menu-cat-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.menu-tab.active,
.menu-cat-btn.active {
    color: #000;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(166, 61, 61, 0.4);
    position: relative;
    z-index: 1;
}

.menu-tab.active::before,
.menu-cat-btn.active::before {
    opacity: 1;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--or), var(--corail));
    transition: height var(--duration) var(--ease);
}

.menu-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.menu-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.menu-item:hover::before {
    height: 100%;
}

.menu-item:hover::after {
    opacity: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--or);
    text-shadow: 0 0 15px var(--or-glow);
}

.menu-item-code {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--corail);
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.menu-item-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.menu-cta {
    text-align: center;
    margin-top: 55px;
}

/* === SPECIALTIES / INCONTOURNABLES === */
.specialties-section {
    padding: var(--section-gap) 0;
    background: var(--creme);
    position: relative;
    overflow: hidden;
}

.specialties-section::before {
    content: '旨';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-family: var(--font-jp);
    font-size: clamp(180px, 25vw, 350px);
    font-weight: 300;
    color: var(--beige);
    opacity: 0.6;
    pointer-events: none;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.specialty-card {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease);
    cursor: pointer;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform var(--duration-slow) var(--ease);
}

.specialty-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.specialty-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.specialty-card:hover::before {
    transform: scale(1.05);
}

.specialty-card.card-red::before {
    background: linear-gradient(135deg, var(--rouge) 0%, #6a2828 100%);
}

.specialty-card.card-dark::before {
    background: linear-gradient(135deg, var(--noir) 0%, #0a0909 100%);
}

.specialty-card.card-coral::before {
    background: linear-gradient(135deg, var(--corail) 0%, #b87a6a 100%);
}

.specialty-card-content {
    position: relative;
    z-index: 2;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.specialty-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 22px;
}

.specialty-name {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px;
}

.specialty-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.specialty-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--or);
    text-shadow: 0 0 20px var(--or-glow), 0 0 40px var(--or-glow);
}

/* === EXPERIENCE SECTION === */
.experience-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 25, 24, 0.92) 0%, rgba(26, 25, 24, 0.85) 100%);
}

.experience-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 80px var(--gutter);
    max-width: 900px;
}

.experience-content .section-tag {
    color: var(--or);
}

.experience-content .section-title {
    color: #fff;
    margin-bottom: 24px;
}

.experience-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.experience-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--or);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px var(--or-glow);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* === QUOTE SECTION === */
.quote-section {
    background: linear-gradient(135deg, var(--corail) 0%, var(--corail-dark) 100%);
    padding: clamp(70px, 12vh, 120px) var(--gutter);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 8%;
    font-family: var(--font-display);
    font-size: 400px;
    font-weight: 300;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    pointer-events: none;
}

.quote-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 35px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: var(--section-gap) 0;
    background: var(--creme);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.contact-info {
    padding: 20px 0;
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateX(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--corail-light);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(166, 61, 61, 0.35);
    transition: all var(--duration) var(--ease);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--noir);
}

.contact-details p,
.contact-details a {
    font-size: 15px;
    color: var(--noir-lighter);
    line-height: 1.7;
}

.contact-details a:hover {
    color: var(--rouge);
}

/* Contact Hours Styling */
.contact-hours {
    margin-top: 30px;
}

.contact-hours h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--noir);
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 20px;
    align-items: center;
}

.hours-grid .day {
    font-weight: 600;
    color: var(--noir);
    font-size: 14px;
}

.hours-grid .time {
    color: var(--noir-lighter);
    font-size: 14px;
}

.hours-grid .time.closed {
    color: var(--rouge);
    font-style: italic;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--corail);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 15px;
    color: var(--noir-lighter);
    line-height: 1.7;
}

.contact-map {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--beige);
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
    transition: filter var(--duration) var(--ease);
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-light) 100%);
    padding: clamp(90px, 14vh, 140px) var(--gutter);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 120% at 50% 100%, rgba(166, 61, 61, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212, 168, 83, 0.12) 0%, transparent 50%);
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-jp {
    font-family: var(--font-jp);
    font-size: 15px;
    letter-spacing: 0.35em;
    color: var(--or);
    margin-bottom: 22px;
    text-shadow: 0 0 20px var(--or-glow), 0 0 40px var(--or-glow);
}

.cta-title {
    font-size: clamp(34px, 5.5vw, 52px);
    margin-bottom: 22px;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 45px;
}

/* === FOOTER === */
.footer {
    background: var(--noir);
    color: #fff;
    padding: 90px var(--gutter) 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto 65px;
}

.footer-brand img {
    width: 110px;
    height: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    background: var(--rouge);
    border-color: var(--rouge);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(166, 61, 61, 0.4);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: all var(--duration) var(--ease);
    position: relative;
    display: block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--or);
    transition: width var(--duration) var(--ease);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--or);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-hours p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-hours p strong {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 35px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--duration) var(--ease);
}

.footer-legal a:hover {
    color: var(--or);
}

/* === FORMS === */
.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--noir);
    margin-bottom: 12px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px 22px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--noir);
    background: #fff;
    border: 2px solid var(--beige);
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--corail);
    box-shadow: 0 0 0 5px rgba(228, 161, 144, 0.15);
}

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

/* === PAGE HEADERS === */
.page-header {
    padding: 190px 0 110px;
    background: linear-gradient(135deg, var(--noir) 0%, var(--noir-light) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 60% at 50% 100%, rgba(166, 61, 61, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
}

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

.page-header .section-tag {
    margin-bottom: 18px;
}

.page-header .section-title {
    color: #fff;
    margin-bottom: 18px;
}

.page-header-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    margin: 0 auto;
}

/* === PAGE CONTENT === */
.page-content {
    padding: var(--section-gap) 0;
    background: var(--creme);
}

.page-content .container {
    max-width: 900px;
}

.page-content h2 {
    font-size: clamp(26px, 3.5vw, 34px);
    margin: 52px 0 26px;
    color: var(--noir);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-size: 17px;
    line-height: 2;
    color: var(--noir-lighter);
    margin-bottom: 22px;
}

.page-content ul {
    margin: 22px 0;
    padding-left: 28px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.9;
    color: var(--noir-lighter);
    margin-bottom: 14px;
}


/* === RESPONSIVE === */

/* Ensure proper box-sizing and prevent horizontal scroll */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100%;
}

/* Tablet Large - 1200px */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-hours {
        grid-column: span 3;
        margin-top: 25px;
        padding-top: 35px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-hours p {
        max-width: 320px;
    }

    .specialties-grid {
        gap: 25px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(50px, 12vw, 100px);
    }
    
    .hero-logo {
        width: clamp(120px, 20vw, 180px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image::before {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .specialty-card {
        min-height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-hours {
        grid-column: span 2;
    }
    
    .experience-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    :root {
        --section-gap: 70px;
        --gutter: 20px;
    }

    /* Fix horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .navbar {
        height: 80px;
        padding: 0 20px;
    }

    .navbar.scrolled {
        height: 65px;
    }

    .nav-logo img {
        height: 45px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 20px;
    }
    
    .hero-logo {
        width: 120px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        letter-spacing: 0.4em;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-scroll {
        bottom: 30px;
    }
    
    .services-banner {
        overflow-x: hidden;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        width: 100%;
    }

    .service-item {
        padding: 25px 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        min-width: 0; /* Prevent overflow */
    }

    .service-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.08);
    }

    .service-item:nth-child(even) {
        border-right: none;
    }

    .service-item:nth-child(3),
    .service-item:nth-child(4) {
        border-bottom: none;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-text h4 {
        font-size: 16px;
    }
    
    .service-text p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .about-section {
        overflow: hidden;
    }

    .about-section::before {
        font-size: 150px;
        opacity: 0.3;
    }

    .about-grid {
        padding: 0 20px;
    }

    .about-image-main {
        aspect-ratio: 1/1;
    }

    .about-accent {
        width: 120px;
        padding: 25px 20px;
        bottom: 50%;
        right: -10px;
        transform: translateY(50%);
    }

    .about-accent strong {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-feature {
        width: 100%;
    }

    /* Menu Section Fixes */
    .menu-section {
        overflow-x: hidden;
    }

    .menu-section .container {
        padding: 0 20px;
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .menu-item {
        padding: 24px;
        width: 100%;
    }

    /* Menu tabs - scrollable horizontal */
    .menu-tabs {
        display: flex;
        gap: 8px;
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 40px;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        padding: 12px 20px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .menu-categories {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .menu-categories::-webkit-scrollbar {
        display: none;
    }

    .menu-cat-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .specialty-card {
        min-height: 320px;
    }
    
    .specialty-card-content {
        padding: 40px 30px;
    }
    
    .specialty-name {
        font-size: 26px;
    }
    
    .specialty-price {
        font-size: 30px;
    }
    
    .experience-section {
        min-height: 500px;
    }
    
    .experience-bg {
        background-attachment: scroll;
    }
    
    .experience-content {
        padding: 60px 20px;
    }
    
    .experience-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .experience-stats {
        gap: 30px;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .quote-text {
        font-size: 22px;
    }
    
    /* Contact Section Fixes */
    .contact-section {
        overflow: hidden;
    }

    .contact-grid {
        padding: 0 20px;
        width: 100%;
    }

    .contact-item {
        padding: 20px;
        width: 100%;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-map {
        width: 100%;
        height: 400px;
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
    }

    /* CTA Section */
    .cta-section {
        overflow: hidden;
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    /* Footer Fixes */
    .footer {
        overflow: hidden;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
        width: 100%;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand img {
        width: 80px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-hours {
        grid-column: 1;
    }
    
    .footer-hours p {
        justify-content: center;
        gap: 20px;
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 20px;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {
    :root {
        --section-gap: 60px;
        --gutter: 15px;
    }

    /* Ensure no overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .navbar {
        height: 70px;
        padding: 0 15px;
    }

    .nav-logo img {
        height: 40px;
    }

    /* Hero Section */
    .hero {
        width: 100%;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
    }

    .hero-logo {
        width: 100px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 12px;
        width: 100%;
        max-width: 280px;
    }

    .hero-cta {
        width: 100%;
        padding: 0 15px;
    }

    /* Services Grid - Stack vertically on small mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    .service-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 20px 15px;
        width: 100%;
    }

    .service-item:last-child {
        border-bottom: none;
    }
    
    .section-title {
        font-size: 28px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        padding: 0 15px;
    }

    .about-content {
        padding: 0;
        width: 100%;
    }

    .about-text {
        font-size: 15px;
    }

    .about-feature {
        padding: 12px 14px;
        width: 100%;
    }

    .about-feature span {
        font-size: 13px;
    }

    /* Menu Section */
    .menu-section {
        padding: 60px 0;
    }

    .menu-section .container {
        padding: 0 15px;
    }

    .menu-tabs {
        padding: 0 15px;
        margin-bottom: 30px;
        gap: 10px;
    }

    .menu-tab {
        text-align: center;
        padding: 12px 18px;
        font-size: 10px;
    }

    .menu-grid {
        padding: 0 15px;
        gap: 15px;
    }

    .menu-item {
        padding: 20px;
    }
    
    .menu-item-name {
        font-size: 18px;
    }
    
    .menu-item-price {
        font-size: 20px;
    }
    
    .menu-item-desc {
        font-size: 13px;
    }
    
    /* Specialties Section */
    .specialties-section {
        padding: 60px 0;
    }

    .specialties-grid {
        padding: 0 15px;
        gap: 20px;
    }

    .specialty-card {
        min-height: 280px;
        width: 100%;
    }

    .specialty-card-content {
        padding: 30px 20px;
    }

    .specialty-name {
        font-size: 24px;
    }

    .specialty-desc {
        font-size: 14px;
    }

    .specialty-price {
        font-size: 28px;
    }

    /* Experience Section */
    .experience-section {
        width: 100%;
        overflow: hidden;
    }

    .experience-content {
        padding: 50px 15px;
        width: 100%;
    }

    .experience-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Quote Section */
    .quote-section {
        padding: 50px 15px;
        overflow: hidden;
    }

    .quote-content {
        width: 100%;
        padding: 0 10px;
    }

    .quote-text {
        font-size: 20px;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        padding: 0 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-map {
        aspect-ratio: 1/1;
        width: 100%;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-content {
        width: 100%;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Footer */
    .footer {
        padding: 50px 15px 30px;
        overflow: hidden;
    }

    .footer-grid {
        padding: 0 15px;
        width: 100%;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-links a,
    .footer-contact p,
    .footer-hours p {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 0 15px;
        width: 100%;
    }

    /* Page Header */
    .page-header {
        padding: 110px 0 50px;
        overflow: hidden;
    }

    .page-header-content {
        padding: 0 15px;
        width: 100%;
    }

    .page-header .section-title {
        font-size: 32px;
    }
}

/* Very Small Screens - 360px */
@media (max-width: 360px) {
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .specialty-card {
        min-height: 280px;
    }
    
    .specialty-card-content {
        padding: 30px 20px;
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--noir);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--rouge), var(--rouge-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--rouge-light), var(--rouge));
}

/* Hide scrollbar on mobile */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 0;
        display: none;
    }
}

/* === SELECTION === */
::selection {
    background: var(--corail);
    color: #fff;
}

/* === LOADING STATE === */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Show only on mobile */
@media (min-width: 769px) {
    .show-mobile-only {
        display: none !important;
    }
}
