        :root {
            --bg-dark: #0a0a0a;
            --bg-card: #111111;
            --bg-card-hover: #1a1a1a;
            --accent-red: #e53935;
            --accent-red-dark: #c62828;
            --accent-gold: #d4af37;
            --accent-pink: #ff4081;
            --accent-cream: #f5f0e6;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --text-muted: #606060;
            --gradient-neon: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
            --gradient-gold: linear-gradient(135deg, var(--accent-gold), #b8860b);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Zen Kaku Gothic New', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            width: 100%;
        }

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

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-red);
            border-radius: 3px;
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 0.6rem 2rem;
            background: rgba(10, 10, 10, 0.98);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--text-primary);
            flex-shrink: 0;
        }

        .logo-text {
            font-family: 'Dela Gothic One', cursive;
            font-size: 1.75rem;
            letter-spacing: -1px;
            display: flex;
            align-items: baseline;
        }

        .logo-text .ku {
            color: var(--accent-red);
        }

        .logo-text .ramen {
            color: var(--text-primary);
            margin-left: 0.4rem;
        }

        .logo-sub {
            display: none; /* replaced by .logo-sub-wrap */
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
            letter-spacing: 0.5px;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--text-primary);
        }

        .btn-outline:hover {
            border-color: var(--accent-red);
            background: rgba(229, 57, 53, 0.1);
        }

        .btn-primary {
            background: var(--accent-red);
            color: white;
            box-shadow: 0 4px 20px rgba(229, 57, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(229, 57, 53, 0.4);
            background: var(--accent-red-dark);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Logo sub area */
        .logo-sub-wrap {
            display: flex;
            flex-direction: column;
            margin-left: 0.75rem;
            line-height: 1.2;
        }
        .logo-city {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 0.75rem;
            color: var(--text-primary);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
        }
        .logo-origin {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 0.55rem;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            text-decoration: none;
            transition: color 0.3s;
        }
        .logo-origin:hover {
            color: var(--text-secondary);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem 2rem;
        }

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

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, 
                rgba(10, 10, 10, 0.7) 0%,
                rgba(10, 10, 10, 0.5) 45%,
                rgba(10, 10, 10, 0.95) 100%
            );
            z-index: 1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(1.1) contrast(1.05);
        }

        /* Animated Background Kanji */
        .floating-kanji {
            position: absolute;
            font-family: 'Shippori Mincho', serif;
            font-size: 20rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.015);
            z-index: 0;
            user-select: none;
            animation: float 25s ease-in-out infinite;
        }

        .floating-kanji:nth-child(1) {
            top: 5%;
            left: -8%;
            animation-delay: 0s;
        }

        .floating-kanji:nth-child(2) {
            top: 40%;
            right: -10%;
            font-size: 25rem;
            animation-delay: -8s;
        }

        .floating-kanji:nth-child(3) {
            bottom: 5%;
            left: 15%;
            font-size: 15rem;
            animation-delay: -15s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.015; }
            50% { transform: translateY(-40px) rotate(3deg); opacity: 0.025; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.21);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.6rem 1.25rem;
            border-radius: 2px;
            font-size: 0.75rem;
            color: #fff;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 900;
        }

        .hero-badge::before {
            content: '●';
            font-size: 0.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero-title {
            font-family: 'Dela Gothic One', cursive;
            font-size: clamp(4rem, 12vw, 9rem);
            font-weight: 400;
            line-height: 0.95;
            margin-bottom: 0.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
            letter-spacing: -2px;
        }

        .hero-title .ku {
            color: var(--accent-red);
        }

        .hero-title-jp {
            font-family: 'Shippori Mincho', serif;
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.15rem);
            font-weight: 300;
            color: var(--text-secondary);
            max-width: 550px;
            margin: 0 auto 3rem;
            animation: fadeInUp 0.8s ease 0.6s both;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .hero-cta .btn {
            padding: 1.1rem 2.5rem;
            font-size: 0.9rem;
            min-width: 240px;
            text-align: center;
        }

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

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-muted);
            font-size: 0.65rem;
            letter-spacing: 3px;
            animation: bounce 2.5s infinite;
        }

        .scroll-indicator::after {
            content: '';
            width: 1px;
            height: 50px;
            background: linear-gradient(180deg, var(--text-muted), transparent);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(12px); }
        }

        /* ===== STATS SECTION ===== */
        .stats {
            padding: 5rem 2rem;
            background: var(--bg-card);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .stat-number {
            font-family: 'Dela Gothic One', cursive;
            font-size: 2.75rem;
            color: var(--accent-red);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        /* ===== SECTION STYLES ===== */
        section {
            padding: 7rem 2rem;
            overflow: hidden;
        }

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

        .section-tag {
            font-size: 0.7rem;
            color: var(--accent-red);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-family: 'Dela Gothic One', cursive;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 400;
            margin-bottom: 0.75rem;
            letter-spacing: -1px;
        }

        .section-title-jp {
            font-family: 'Shippori Mincho', serif;
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 0.75rem;
        }

        /* ===== MENU SECTION ===== */
        .menu {
            background: var(--bg-dark);
        }

        .menu-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
            gap: 1.5rem;
        }

        .menu-card {
            background: var(--bg-card);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .menu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border-color: rgba(229, 57, 53, 0.2);
        }

        .menu-card-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .menu-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .menu-card-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--accent-red);
            padding: 0.4rem 0.8rem;
            border-radius: 2px;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .menu-card-badge.gold {
            background: var(--accent-gold);
            color: var(--bg-dark);
        }

        .menu-card-content {
            padding: 1.5rem;
        }

        .menu-card-title {
            font-family: 'Zen Kaku Gothic New', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .menu-card-title-jp {
            font-family: 'Shippori Mincho', serif;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
        }

        .menu-card-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            line-height: 1.7;
        }

        .menu-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-card-price {
            font-family: 'Dela Gothic One', cursive;
            font-size: 1.35rem;
            color: var(--text-primary);
        }

        .menu-card-price span {
            font-family: 'Zen Kaku Gothic New', sans-serif;
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .menu-card-btn {
            width: 44px;
            height: 44px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .menu-card-btn:hover {
            background: var(--accent-red);
            border-color: transparent;
        }

        .view-menu-btn {
            display: block;
            width: fit-content;
            margin: 3.5rem auto 0;
            padding: 1.1rem 3rem;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--bg-card);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '麺';
            position: absolute;
            right: -8%;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Shippori Mincho', serif;
            font-size: 45rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.015);
            pointer-events: none;
        }

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

        .about-image {
            position: relative;
        }

        .about-image-main {
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .about-image-main img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-image-accent {
            position: absolute;
            bottom: -2.5rem;
            right: -2.5rem;
            width: 180px;
            height: 180px;
            border-radius: 4px;
            overflow: hidden;
            border: 4px solid var(--bg-card);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .about-image-accent img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

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

        .about-content .section-tag {
            text-align: left;
        }

        .about-content .section-title {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .about-text {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.9;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .about-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 4px;
            background: rgba(229, 57, 53, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--accent-red);
        }

        .about-feature h4 {
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }

        .about-feature p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ===== LOCATION SECTION ===== */
        .location {
            background: var(--bg-dark);
        }

        .location-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .location-card {
            background: var(--bg-card);
            border-radius: 4px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .location-card-image {
            height: 450px;
            overflow: hidden;
            position: relative;
        }

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

        .location-card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 60%, rgba(17, 17, 17, 0.8) 100%);
        }

        .location-card-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .location-card-title {
            font-family: 'Dela Gothic One', cursive;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .location-card-title .ku {
            color: var(--accent-red);
        }

        .location-card-subtitle {
            font-family: 'Shippori Mincho', serif;
            color: var(--text-muted);
            margin-bottom: 2rem;
            letter-spacing: 0.5rem;
        }

        .location-info {
            margin-bottom: 2rem;
        }

        .location-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .location-info-icon {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: rgba(229, 57, 53, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-info-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--accent-red);
        }

        .location-info-text h4 {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .location-info-text p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .location-actions {
            display: flex;
            gap: 1rem;
        }

        .location-actions .btn {
            flex: 1;
            text-align: center;
        }

        /* ===== PROMOS SECTION ===== */
        .promos {
            background: var(--bg-card);
            position: relative;
        }

        .promos-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .promo-card-featured {
            background: linear-gradient(135deg, rgba(229, 57, 53, 0.08), rgba(229, 57, 53, 0.02));
            border: 1px solid rgba(229, 57, 53, 0.2);
            border-radius: 4px;
            padding: 3.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .promo-card-featured::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(229, 57, 53, 0.15), transparent 70%);
            pointer-events: none;
        }

        .promo-featured-content {
            position: relative;
            z-index: 1;
        }

        .promo-featured-badge {
            display: inline-block;
            background: var(--accent-red);
            padding: 0.5rem 1rem;
            border-radius: 2px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .promo-featured-title {
            font-family: 'Dela Gothic One', cursive;
            font-size: 2.25rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .promo-featured-desc {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1rem;
            line-height: 1.8;
        }

        .promo-featured-image {
            position: relative;
            z-index: 1;
        }

        .promo-featured-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .promos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .promo-card {
            background: var(--bg-dark);
            border-radius: 4px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        .promo-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }

        .promo-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 4px;
            background: rgba(212, 175, 55, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .promo-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent-gold);
        }

        .promo-card h3 {
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }

        .promo-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ===== LOYALTY SECTION ===== */
        .loyalty {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .loyalty::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.08), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08), transparent 50%);
            pointer-events: none;
        }

        .loyalty-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .loyalty-card {
            background: var(--bg-card);
            border-radius: 4px;
            padding: 3.5rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .loyalty-logo {
            font-family: 'Dela Gothic One', cursive;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .loyalty-logo .ku {
            color: var(--accent-red);
        }

        .loyalty-subtitle {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 3px;
            margin-bottom: 2rem;
        }

        .loyalty-title {
            font-family: 'Dela Gothic One', cursive;
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .loyalty-desc {
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .loyalty-tiers {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .loyalty-tier {
            background: rgba(255, 255, 255, 0.02);
            padding: 1.75rem 1rem;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        .loyalty-tier:hover {
            border-color: rgba(212, 175, 55, 0.3);
            background: rgba(212, 175, 55, 0.05);
        }

        .loyalty-tier:last-child {
            background: rgba(212, 175, 55, 0.08);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .loyalty-tier-percent {
            font-family: 'Dela Gothic One', cursive;
            font-size: 1.75rem;
            color: var(--accent-gold);
        }

        .loyalty-tier-name {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .loyalty-tier-req {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .loyalty-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 1.5rem;
        }

        .btn-gold {
            background: var(--accent-gold);
            color: var(--bg-dark);
            font-weight: 700;
        }

        .btn-gold:hover {
            background: #b8860b;
            transform: translateY(-2px);
        }

        /* ===== CTA SECTION ===== */
        .cta {
            padding: 9rem 2rem;
            background: var(--bg-card);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: 'ラーメン';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Shippori Mincho', serif;
            font-size: 18rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.015);
            white-space: nowrap;
            pointer-events: none;
        }

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

        .cta-title {
            font-family: 'Dela Gothic One', cursive;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .cta-desc {
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--bg-dark);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

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

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

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

        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--accent-red);
            color: white;
        }

        .footer-column h4 {
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--accent-red);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--text-primary);
        }

        /* ===== ANIMATIONS ON SCROLL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
                z-index: 9999;
            }

            /* Mobile lang switch - always visible at bottom */
            .mobile-lang-switch {
                display: flex;
                position: fixed;
                bottom: 20px;
                right: 20px;
                z-index: 999;
                gap: 4px;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 20px;
                padding: 3px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            }
            .mobile-lang-switch a {
                padding: 6px 14px;
                border-radius: 16px;
                font-size: 12px;
                font-weight: 700;
                text-decoration: none;
                color: var(--text-secondary);
                transition: all 0.3s;
                letter-spacing: 0.5px;
            }
            .mobile-lang-switch a.active {
                background: var(--accent-red);
                color: #fff;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                order: -1;
            }

            .location-card {
                grid-template-columns: 1fr;
            }

            .location-card-image {
                height: 300px;
            }

            .location-card-image::after {
                background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, 0.9) 100%);
            }

            .promo-card-featured {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .promos-grid {
                grid-template-columns: 1fr;
            }

            .loyalty-tiers {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-main {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-badge {
                display: inline-flex;
                align-items: center;
                gap: 0.75rem;
                background: rgba(255, 255, 255, 0.21);
                border: 1px solid rgba(255, 255, 255, 0.3);
                padding: 0.6rem 1.25rem;
                border-radius: 2px;
                font-size: 0.55rem;
                color: #fff;
                margin-bottom: 2.5rem;
                animation: fadeInUp 0.8s ease;
                letter-spacing: 2px;
                text-transform: uppercase;
                font-weight: 900;
            }
            header {
                padding: 1rem;
            }

            .nav-cta .btn-outline,
            .nav-cta .btn-primary {
                font-size: 0.8rem;
                padding: 0.6rem 1.2rem;
            }

            .hero {
                padding: 5rem 1rem 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .stat-item::after {
                display: none;
            }

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

            .loyalty-tiers {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-main {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-cta {
                flex-direction: column;
            }

            .hero-cta .btn {
                width: 100%;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .loyalty-tiers {
                grid-template-columns: 1fr;
            }

            .location-actions {
                flex-direction: column;
            }
        }

/* === Language Switcher (desktop, in nav-cta) === */
.ku-lang-switch {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 3px;
    margin-left: 8px;
}
.ku-lang-switch a {
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.ku-lang-switch a.active {
    background: var(--accent-red);
    color: #fff;
}
.ku-lang-switch a:hover:not(.active) {
    color: #fff;
}
/* Mobile lang switch handled in responsive section above */
.mobile-lang-switch {
    display: none;
}
@media (max-width: 1024px) {
    .ku-lang-switch {
        display: none;
    }
}

/* Nav lang mobile - only show in mobile overlay */
.nav-lang-mobile { display: none; list-style: none; }
@media (max-width: 1024px) {
    .nav-lang-mobile { display: block; }
    .nav-lang-mobile .ku-lang-switch { display: flex !important; }
}

/* ===== GALLERY SECTION ===== */
.ku-gallery {
    background: var(--bg-dark);
    overflow: hidden;
}

.ku-gallery-track {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

.ku-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.ku-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    display: block;
}

.ku-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.ku-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.ku-gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .ku-gallery-track {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
        grid-template-rows: auto auto;
        grid-auto-flow: column;
        grid-auto-columns: minmax(45%, 1fr);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding-bottom: 8px;
        scrollbar-width: none;
        max-width: 100%;
    }
    .ku-gallery-track::-webkit-scrollbar {
        display: none;
    }
    .ku-gallery-item {
        scroll-snap-align: start;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .ku-gallery-track {
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        grid-auto-columns: minmax(48%, 1fr);
        gap: 4px;
    }
}
