/* ===========================
   OBIHIRO NIKUDON — JAPANESE STYLE LANDING PAGE
   Design: Dark Japanese Aesthetic with Kanji decorations
   =========================== */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Colors - Japanese Dark Theme */
    --bg-primary: #0d0d0d;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --bg-accent: #1e1510;

    /* Accent Colors - Warm Japanese Palette */
    --red-primary: #c4302b;
    --red-dark: #8b1a1a;
    --red-light: #e8473e;
    --gold: #d4a547;
    --gold-light: #f0c860;
    --gold-dark: #a3802e;
    --cream: #f5efe0;
    --warm-white: #e8e0d4;
    --text-primary: #f5efe0;
    --text-secondary: #b0a898;
    --text-muted: #7a726a;

    /* Borders & Shadows */
    --border-subtle: rgba(212, 165, 71, 0.12);
    --border-accent: rgba(212, 165, 71, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(212, 165, 71, 0.15);
    --shadow-red: 0 0 30px rgba(196, 48, 43, 0.2);

    /* Typography */
    --font-jp: 'Noto Serif JP', 'MS Mincho', serif;
    --font-jp-sans: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: clamp(60px, 10vw, 120px);
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-en);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Floating Kanji Background ---- */
.kanji-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.kanji {
    position: absolute;
    font-family: var(--font-jp);
    color: rgba(212, 165, 71, 0.03);
    font-weight: 900;
    user-select: none;
}

.k1 { font-size: 20vw; top: 5%; left: -5%; transform: rotate(-15deg); animation: floatKanji 20s ease-in-out infinite; }
.k2 { font-size: 15vw; top: 25%; right: -3%; transform: rotate(10deg); animation: floatKanji 25s ease-in-out infinite 2s; }
.k3 { font-size: 12vw; top: 50%; left: 10%; transform: rotate(-8deg); animation: floatKanji 22s ease-in-out infinite 4s; }
.k4 { font-size: 18vw; top: 70%; right: 5%; transform: rotate(20deg); animation: floatKanji 18s ease-in-out infinite 1s; }
.k5 { font-size: 10vw; top: 15%; left: 60%; transform: rotate(5deg); animation: floatKanji 24s ease-in-out infinite 3s; }
.k6 { font-size: 14vw; top: 85%; left: 30%; transform: rotate(-12deg); animation: floatKanji 21s ease-in-out infinite 5s; }
.k7 { font-size: 16vw; top: 40%; left: -8%; transform: rotate(15deg); animation: floatKanji 19s ease-in-out infinite 6s; }
.k8 { font-size: 11vw; top: 60%; right: 20%; transform: rotate(-5deg); animation: floatKanji 23s ease-in-out infinite 7s; }

@keyframes floatKanji {
    0%, 100% { transform: translateY(0) rotate(var(--base-rotate, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--base-rotate, 0deg)); }
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-kanji {
    font-family: var(--font-jp);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.logo-en {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 165, 71, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-smooth);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 24px 60px;
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 40px;
    z-index: 1;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(196, 48, 43, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(212, 165, 71, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(196, 48, 43, 0.12);
    border: 1px solid rgba(196, 48, 43, 0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--red-light);
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.title-jp {
    display: block;
    font-family: var(--font-jp);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-shadow: 0 0 60px rgba(212, 165, 71, 0.15);
}

.title-en {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-top: 8px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.tag {
    padding: 6px 14px;
    background: rgba(245, 239, 224, 0.06);
    border: 1px solid rgba(245, 239, 224, 0.1);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-jp {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(196, 48, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 48, 43, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--border-accent);
}

.btn-outline:hover {
    background: rgba(212, 165, 71, 0.08);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Image */
.hero-image-wrapper {
    flex-shrink: 0;
    position: relative;
    animation: fadeInUp 1s var(--ease-out) 0.5s both;
}

.hero-image {
    width: clamp(280px, 35vw, 440px);
    height: clamp(280px, 35vw, 440px);
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--border-accent);
    box-shadow: var(--shadow-glow), var(--shadow-card);
}

.hero-image-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(212, 165, 71, 0.15);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
}

.hero-image-ring::before {
    content: '帯広肉丼 · OBIHIRO NIKUDON · 炭火焼き · ';
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 0.6rem;
    color: rgba(212, 165, 71, 0.25);
    letter-spacing: 0.2em;
    font-family: var(--font-jp-sans);
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ---- Noren Divider ---- */
.noren-divider {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.noren-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 2px;
}

.noren-panel {
    width: 60px;
    height: 90px;
    background: var(--red-primary);
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: norenSwing 3s ease-in-out infinite;
    transform-origin: top center;
}

.noren-panel:nth-child(2) { animation-delay: 0.2s; }
.noren-panel:nth-child(3) { animation-delay: 0.4s; }
.noren-panel:nth-child(4) { animation-delay: 0.6s; }

.noren-panel span {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    writing-mode: vertical-rl;
}

@keyframes norenSwing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* ---- Section Styles ---- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

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

.section-kanji {
    display: block;
    font-family: var(--font-jp);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: rgba(212, 165, 71, 0.12);
    letter-spacing: 0.3em;
    margin-bottom: -10px;
}

.section-title {
    font-family: var(--font-jp-sans);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--red-primary), var(--gold));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- About Section ---- */
.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 16px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 24px !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-jp);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.about-frame {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--border-accent);
    border-radius: 16px;
    z-index: -1;
}

.about-stamp {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--red-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    transform: rotate(-15deg);
}

.about-stamp span {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red-primary);
    line-height: 1;
}

.about-stamp small {
    font-size: 0.5rem;
    color: var(--red-light);
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 2px;
}

/* ---- Menu Section ---- */
.menu-section {
    background: var(--bg-primary);
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-en);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: 0.02em;
}

.filter-btn:hover {
    border-color: var(--border-accent);
    color: var(--gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    border-color: var(--red-primary);
}

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

.menu-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.menu-card.hidden {
    display: none;
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.card-badge.popular {
    background: rgba(196, 48, 43, 0.9);
    color: white;
}

.card-badge.premium {
    background: rgba(212, 165, 71, 0.9);
    color: var(--bg-primary);
}

.card-badge.spicy {
    background: rgba(220, 80, 40, 0.9);
    color: white;
}

.card-badge.new {
    background: rgba(59, 170, 100, 0.9);
    color: white;
}

.card-content {
    padding: 20px;
}

.card-header {
    margin-bottom: 10px;
}

.card-title {
    font-family: var(--font-jp-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.card-jp {
    display: block;
    font-family: var(--font-jp);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-en);
}

.card-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Wave Divider ---- */
.wave-divider {
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ---- Ambiance Section ---- */
.ambiance-section {
    background: var(--bg-secondary);
}

.ambiance-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.main-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
}

.ambiance-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s var(--ease-out);
}

.main-card:hover .ambiance-img {
    transform: scale(1.05);
}

.ambiance-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ambiance-jp {
    font-family: var(--font-jp);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.ambiance-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.ambiance-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-family: var(--font-jp-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Info Section ---- */
.info-section {
    background: var(--bg-primary);
}

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

.info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--red-primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.info-number {
    font-family: var(--font-jp);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(212, 165, 71, 0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.info-card h3 {
    font-family: var(--font-jp-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

/* ---- Location Section ---- */
.location-section {
    background: var(--bg-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s var(--ease-smooth);
}

.location-card:hover {
    border-color: var(--border-accent);
}

.loc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-card h3 {
    font-family: var(--font-jp-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.location-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.location-card small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.location-map {
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
}

.footer-torii {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}

.torii-top {
    height: 6px;
    background: var(--red-primary);
    border-radius: 3px;
    margin-bottom: 4px;
}

.torii-beam {
    height: 3px;
    background: var(--red-primary);
    margin: 0 8px 0;
}

.torii-pillars {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
}

.pillar {
    width: 6px;
    height: 30px;
    background: var(--red-primary);
    border-radius: 0 0 3px 3px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-kanji {
    display: block;
    font-family: var(--font-jp);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-name {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-jp-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-map-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
}

.footer-map-link:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-jp {
    font-family: var(--font-jp);
    font-size: 0.7rem;
    color: rgba(212, 165, 71, 0.2);
    letter-spacing: 0.15em;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .hero-scroll {
        display: none;
    }

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

    .about-image {
        height: 350px;
    }

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

    .ambiance-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .logo-en {
        display: none;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .title-jp {
        font-size: 2.8rem;
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .noren-panel {
        width: 45px;
        height: 70px;
    }

    .noren-panel span {
        font-size: 1.1rem;
    }

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

    .location-map {
        min-height: 280px;
    }

    .hero-subtitle br {
        display: none;
    }
}

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .card-image-wrapper {
        height: 180px;
    }
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

/* ---- Selection ---- */
::selection {
    background: var(--red-primary);
    color: white;
}
