/**
 * Rumah Ibu - Japanese Elegance Design System
 */

/* ========================================
   Google Fonts Import 
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* ========================================
   Design Tokens - Japanese Natural Palette
   ======================================== */
:root {
    /* Primary Colors - Wood & Earth */
    --wood-dark: #4A3C31;
    --wood-medium: #6B5344;
    --wood-light: #8B7355;
    --wood-warm: #5C4A3D;

    /* Secondary Colors - Stone & Sand */
    --stone: #9A9189;
    --stone-light: #B8B0A6;
    --sand: #D4C4A8;
    --sand-light: #E2D6C1;

    /* Background Colors - Parchment */
    --parchment: #E8DCC8;
    --parchment-light: #F2EBE0;
    --parchment-dark: #D9CAAF;
    --cream: #FAF6F0;

    /* Text Colors - Ink */
    --ink: #2D251E;
    --ink-soft: #3D3229;
    --ink-muted: rgba(45, 37, 30, 0.7);
    --ink-subtle: rgba(45, 37, 30, 0.5);

    /* Accent Colors */
    --accent-gold: #C9A86C;
    --accent-gold-dark: #A8894D;
    --accent-red: #8B4049;
    --accent-green: #5A6B4A;

    /* Panel Colors */
    --panel: rgba(74, 60, 49, 0.88);
    --panel-soft: rgba(74, 60, 49, 0.75);
    --panel-light: rgba(107, 83, 68, 0.65);

    /* Utility */
    --white: #FFFFFF;
    --black: #1A1612;
    --success: #5A6B4A;
    --error: #8B4049;
    --warning: #C9A86C;

    /* Shadows - Softer, warmer */
    --shadow-sm: 0 2px 8px rgba(45, 37, 30, 0.06);
    --shadow: 0 8px 24px rgba(45, 37, 30, 0.10);
    --shadow-lg: 0 20px 50px rgba(45, 37, 30, 0.15);
    --shadow-inner: inset 0 2px 8px rgba(45, 37, 30, 0.08);

    /* Border Radius - Softer curves */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Shippori Mincho', Georgia, serif;
    --font-body: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-japanese: 'Shippori Mincho', 'Noto Serif JP', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 200ms var(--ease-out);
    --transition: 350ms var(--ease-out);
    --transition-slow: 500ms var(--ease-out);

    /* Container */
    --container-max: 1400px;
    --container-narrow: 800px;
}

/* ========================================
   Seigaiha Wave Pattern (CSS Generated)
   ======================================== */
.seigaiha-pattern {
    background-color: var(--parchment);
    background-image:
        radial-gradient(circle at 100% 150%, var(--parchment) 24%, var(--sand) 24%, var(--sand) 28%, transparent 28%, transparent),
        radial-gradient(circle at 0% 150%, var(--parchment) 24%, var(--sand) 24%, var(--sand) 28%, transparent 28%, transparent),
        radial-gradient(circle at 100% 150%, var(--parchment) 24%, var(--sand) 24%, var(--sand) 28%, transparent 28%, transparent),
        radial-gradient(circle at 0% 150%, var(--parchment) 24%, var(--sand) 24%, var(--sand) 28%, transparent 28%, transparent);
    background-size: 40px 20px;
    background-position: 0 0, 20px 0, 0 -10px, 20px -10px;
}

/* Decorative wave border */
.wave-border {
    position: relative;
}

.wave-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0 20 Q25 0 50 20 Q75 40 100 20 L100 20 L0 20 Z' fill='%23E8DCC8'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 20px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--parchment);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Subtle paper texture overlay */
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--wood-medium);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Selection styling */
::selection {
    background: var(--sand);
    color: var(--ink);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    font-style: italic;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Japanese text styling */
.text-japanese {
    font-family: var(--font-japanese);
    letter-spacing: 0.1em;
}

.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }

/* Decorative separator */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.separator::before,
.separator::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.separator-icon {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

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

.container-narrow {
    max-width: var(--container-narrow);
}

.site-main {
    flex: 1;
    padding-top: 0;
}

.page-header,
.menu-page,
.contact-page {
    padding-top: calc(var(--space-4xl) + 80px);
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title-jp {
    display: block;
    font-family: var(--font-japanese);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xs);
}

.section-subtitle {
    color: var(--ink-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.mt-4 { margin-top: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-xl); }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--wood-dark);
    color: var(--cream);
    border: 2px solid var(--wood-dark);
}

.btn-primary:hover {
    background: var(--wood-medium);
    border-color: var(--wood-medium);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--wood-dark);
}

.btn-outline:hover {
    background: var(--wood-dark);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--ink);
    border: 2px solid var(--accent-gold);
}

.btn-gold:hover {
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
}

/* ========================================
   Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: all var(--transition);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    transition: background var(--transition);
}

.site-header.scrolled {
    background: var(--navbar-scroll-bg, #E8DCC8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled::after {
    background: linear-gradient(90deg, transparent, var(--sand), var(--sand), transparent);
}

/* Transparent header - default dark text for light backgrounds */
.site-header--transparent .nav-link {
    color: var(--ink-muted);
}

.site-header--transparent .nav-link:hover,
.site-header--transparent .nav-link.active {
    color: var(--ink);
}

/* When over hero with dark background */
.site-header--transparent.over-hero .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.site-header--transparent.over-hero .nav-link:hover,
.site-header--transparent.over-hero .nav-link.active {
    color: var(--white);
}

.site-header--transparent.scrolled .nav-link {
    color: var(--ink-muted);
}

.site-header--transparent.scrolled .nav-link:hover,
.site-header--transparent.scrolled .nav-link.active {
    color: var(--ink);
}

/* Centered Navigation Layout */
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: var(--space-lg) 0;
    gap: var(--space-xl);
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    grid-column: 2;
    grid-row: 1;
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.nav-brand:hover {
    color: var(--ink);
}

.nav-logo {
    height: 56px;
    width: auto;
    transition: filter var(--transition);
}

.site-header--transparent.over-hero .nav-logo {
    filter: brightness(0) invert(1);
}

.site-header--transparent.scrolled .nav-logo {
    filter: none;
}

/* Left menu */
.nav-menu--left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-xl);
    grid-column: 1;
    grid-row: 1;
}

.nav-item--mobile {
    display: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-muted);
    padding: var(--space-sm) 0;
    position: relative;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

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

/* Right actions */
.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-xl);
    grid-column: 3;
    grid-row: 1;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

/* Elegant outline button for Reservasi */
.btn-outline-elegant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--wood-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-outline-elegant:hover {
    background: var(--wood-dark);
    color: var(--cream);
    border-color: var(--wood-dark);
}

/* When header is over hero (dark background) */
.site-header--transparent.over-hero .btn-outline-elegant {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.site-header--transparent.over-hero .btn-outline-elegant:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.site-header.scrolled .btn-outline-elegant {
    color: var(--ink);
    border-color: var(--wood-dark);
}

.site-header.scrolled .btn-outline-elegant:hover {
    background: var(--wood-dark);
    color: var(--cream);
    border-color: var(--wood-dark);
}

.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    position: relative;
    background: transparent;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--sand-light);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    position: absolute;
    left: 7px;
    transition: all var(--transition);
    border-radius: 1px;
}

.nav-toggle-icon {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-icon::before {
    content: '';
    top: -7px;
}

.nav-toggle-icon::after {
    content: '';
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--ink);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--ink);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -90px;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-placeholder {
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-welcome {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-welcome-jp {
    display: block;
    font-family: var(--font-japanese);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    margin-bottom: var(--space-lg);
}

.hero-logo {
    width: clamp(200px, 35vw, 350px);
    height: auto;
    margin: var(--space-md) 0;
}

.hero-logo img {
    width: 100%;
    height: auto;
    drop-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-brand-jp {
    display: block;
    font-family: var(--font-japanese);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

/* Legacy hero styles for compatibility */
.hero-title-jp {
    display: block;
    font-family: var(--font-japanese);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.4em;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-title {
    color: var(--cream);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    font-weight: 400;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: var(--space-xl);
    }

    .hero-logo {
        width: 160px;
    }
}

/* ========================================
   Tagline Section
   ======================================== */
.tagline-section {
    padding: var(--space-4xl) 0;
    background-color: var(--cream);
}

.tagline-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: var(--space-3xl) var(--space-xl);
}

.tagline-content::before {
    content: '\201C';
    display: block;
    font-family: 'Shippori Mincho', Georgia, serif;
    font-size: 3.5rem;
    line-height: 0.6;
    color: var(--accent-gold);
    opacity: 0.35;
    margin-bottom: var(--space-lg);
}

.tagline-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
    margin: var(--space-xl) auto 0;
}

.tagline-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.8vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.9;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    margin: 0;
}

@media (max-width: 768px) {
    .tagline-section {
        padding: var(--space-3xl) 0;
    }
    .tagline-content {
        padding: var(--space-xl) var(--space-md);
    }
    .tagline-content::before {
        font-size: 2.5rem;
    }
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.page-header.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.85);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-gold);
    z-index: 1;
}

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

.page-title {
    margin-bottom: var(--space-sm);
}

.page-subtitle {
    color: var(--ink-muted);
    font-size: 1.125rem;
}

/* ========================================
   Story Section
   ======================================== */
.story {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.story.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.story.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.story.has-texture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(201, 168, 108, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.story .container {
    position: relative;
    z-index: 1;
}

/* Two-column Story Layout */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.story-text-wrapper {
    text-align: left;
    padding: var(--space-3xl) var(--space-2xl) var(--space-3xl) max(var(--space-2xl), calc((100vw - var(--container-max)) / 2 + var(--space-lg)));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text-wrapper .section-title-jp {
    text-align: left;
}

.story-text-wrapper .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.story-text {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.9;
}

.story-text p {
    margin-bottom: var(--space-md);
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    aspect-ratio: auto;
}

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

.story-image::before {
    display: none;
}

/* Centered Story (fallback for no image) */
.story-content.centered {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content.centered .section-title-jp,
.story-content.centered .section-title {
    text-align: center;
}

.story-content.centered .story-image {
    margin-top: var(--space-2xl);
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
        gap: 0;
    }

    .story-image {
        order: -1;
        aspect-ratio: 3/2;
    }

    .story-text-wrapper {
        padding: var(--space-xl) var(--space-lg);
        text-align: center;
    }

    .story-text-wrapper .section-title-jp,
    .story-text-wrapper .section-title {
        text-align: center;
    }
}

/* ========================================
   Image Carousel Section
   ======================================== */
.image-carousel-section {
    position: relative;
    overflow: hidden;
}

.image-carousel-section.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.image-carousel-section.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.image-carousel-section .container {
    position: relative;
    z-index: 1;
}

.image-carousel-section .section-title {
    margin-bottom: var(--space-sm);
}

.image-carousel-section .section-subtitle {
    margin-bottom: var(--space-2xl);
}

.image-carousel-wrapper {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.image-carousel-section .gallery-carousel {
    overflow: visible;
}

.image-carousel-section .carousel-track {
    cursor: grab;
    gap: 10px;
}

.image-carousel-section .carousel-track.is-dragging {
    cursor: grabbing;
}

.image-carousel-section .carousel-slide {
    flex: 0 0 45%;
    min-width: 0;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.image-carousel-section .carousel-slide.is-active {
    opacity: 1;
}

.image-carousel-section .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-carousel-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    user-select: none;
    -webkit-user-drag: none;
}

.image-carousel-section .gallery-item:hover img {
    transform: scale(1.03);
}

.image-carousel-section .slide-caption {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slide-caption-color, #C9A86C);
}

.image-carousel-section .carousel-btn,
.image-carousel-section .carousel-dots {
    display: none;
}

@media (max-width: 1024px) {
    .image-carousel-section .carousel-slide {
        flex: 0 0 70%;
    }
}

@media (max-width: 640px) {
    .image-carousel-section .carousel-slide {
        flex: 0 0 85%;
    }
}

/* Compact carousel for menu page */
.image-carousel-section.menu-carousel-compact {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-md);
}

.menu-carousel-compact .image-carousel-wrapper {
    margin-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.menu-carousel-compact .carousel-slide {
    flex: 0 0 30%;
}

.menu-carousel-compact .gallery-item {
    aspect-ratio: 3/2;
}

@media (max-width: 768px) {
    .menu-carousel-compact .carousel-slide {
        flex: 0 0 75%;
    }
}

/* ========================================
   Food Section
   ======================================== */
.food-section {
    position: relative;
    overflow: hidden;
}

.food-section.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.food-section.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.food-section .container {
    position: relative;
    z-index: 1;
}

/* Food Caption */
.food-caption {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.02em;
}

/* Food Grid */
.food-grid {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-3xl);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 0.75rem;
}

.food-grid-item {
    flex: 1;
    text-align: center;
}

.food-grid-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.food-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.food-grid-item:hover .food-grid-image img {
    transform: scale(1.05);
}

.food-grid-label {
    margin: var(--space-md) 0 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--ink);
    letter-spacing: 0.01em;
}

/* Food Text Wrapper */
.food-text-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.food-text-wrapper.text-center {
    text-align: center;
}

.food-text-wrapper.text-center .section-title-jp,
.food-text-wrapper.text-center .section-title {
    text-align: center;
}

.food-text-wrapper .section-title {
    margin-bottom: var(--space-lg);
}

.food-text {
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
}

/* Food Grid Responsive */
@media (max-width: 768px) {
    .food-grid {
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .food-grid-item {
        flex: 0 0 calc(50% - var(--space-lg) / 2);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .food-grid {
        gap: var(--space-md);
        padding: 0 0.75rem;
    }

    .food-grid-item {
        flex: 0 0 calc(50% - var(--space-md) / 2);
    }

    .food-grid-label {
        font-size: 0.875rem;
    }
}

/* ========================================
   VIP Room Section
   ======================================== */
.vip-section {
    position: relative;
    padding: 0;
}

.vip-section.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.vip-section.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 220, 200, 0.75);
    pointer-events: none;
}

.vip-section .container {
    position: relative;
    z-index: 1;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.vip-subtitle {
    display: block;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    margin-bottom: var(--space-md);
}

.vip-text-wrapper {
    color: var(--ink);
    padding: var(--space-3xl) max(var(--space-2xl), calc((100vw - var(--container-max)) / 2 + var(--space-lg))) var(--space-3xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vip-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.vip-text {
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.vip-image {
    border-radius: 0;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .vip-content {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
    }

    .vip-text-wrapper {
        padding: var(--space-xl) var(--space-lg);
    }
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    position: relative;
}

.features-section.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.features-section.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 220, 200, 0.92);
    pointer-events: none;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

/* Features Images Grid (staggered) */
.features-images-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-3xl);
    padding: 0 1rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.features-image-item {
    flex: 1;
    text-align: center;
}

.features-image-item:nth-child(even) {
    transform: translateY(-2rem);
}

.features-image-wrap {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.features-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.features-image-item:hover .features-image-wrap img {
    transform: scale(1.05);
}

.features-image-label {
    margin: var(--space-md) 0 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--ink);
}

@media (max-width: 768px) {
    .features-images-grid {
        gap: var(--space-md);
        padding: 0 1rem;
    }

    .features-image-item:nth-child(even) {
        transform: translateY(-1rem);
    }
}

@media (max-width: 480px) {
    .features-image-item:nth-child(even) {
        transform: none;
    }
}

.features-section .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    display: block;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-light);
    transition: all var(--transition);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--wood-dark);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.feature-desc {
    color: var(--ink-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

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

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-md);
    }
}

/* ========================================
   Highlights Grid
   ======================================== */
.highlights {
    position: relative;
}

.highlights.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.highlights.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 220, 200, 0.92);
    pointer-events: none;
}

.highlights .container {
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.highlight-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 1;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.highlight-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.06);
}

.highlight-info {
    padding: var(--space-lg);
}

.highlight-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold-dark);
    font-weight: 500;
}

.highlight-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    margin: var(--space-xs) 0;
}

.highlight-desc {
    color: var(--ink-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.highlight-price {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--wood-dark);
}

/* ========================================
   Badges
   ======================================== */
.badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    background: var(--accent-gold);
    color: var(--ink);
}

.badge-recommended {
    background: var(--accent-green);
    color: var(--white);
}

.badge-spicy {
    background: var(--accent-red);
    color: var(--white);
}

.badge-new {
    background: var(--accent-gold);
    color: var(--ink);
}

.badge-vegetarian {
    background: #7CB342;
    color: var(--white);
}

.highlight-image .badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 2;
}

.badge-inline {
    font-size: 0.5625rem;
    padding: 0.2rem 0.5rem;
    vertical-align: middle;
}

/* ========================================
   Gallery
   ======================================== */
.gallery-preview {
    position: relative;
}

.gallery-preview.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.gallery-preview.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.gallery-preview .container {
    position: relative;
    z-index: 1;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s var(--ease-out);
    gap: var(--space-lg);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - var(--space-lg) * 2 / 3);
    min-width: 280px;
}

.gallery-item {
    display: block;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 37, 30, 0.5), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--cream);
    border: 1px solid var(--sand);
    color: var(--wood-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--wood-dark);
    color: var(--cream);
    border-color: var(--wood-dark);
}

.carousel-prev {
    left: var(--space-md);
}

.carousel-next {
    right: var(--space-md);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--sand);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot:hover {
    background: var(--stone);
}

.carousel-dot.active {
    background: var(--wood-dark);
    width: 28px;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - var(--space-lg) / 2);
    }
}

@media (max-width: 640px) {
    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: var(--space-sm);
    }

    .carousel-next {
        right: var(--space-sm);
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.cta-section.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.cta-section.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 220, 200, 0.92);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-panel {
    background: var(--panel);
    color: var(--cream);
    padding: var(--space-4xl) var(--space-3xl);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Japanese wave decoration at bottom */
.cta-panel::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23C9A86C' fill-opacity='0.15' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
}

/* Decorative corners */
.cta-panel::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.cta-title {
    color: var(--cream);
    margin-bottom: var(--space-sm);
    position: relative;
}

.cta-title-jp {
    display: block;
    font-family: var(--font-japanese);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xs);
}

.cta-text {
    opacity: 0.85;
    margin-bottom: var(--space-2xl);
    font-size: 1.0625rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ========================================
   Closing Banner
   ======================================== */
.closing-banner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.closing-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.closing-banner-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.closing-banner .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.closing-banner-content {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
}

.closing-banner-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Menu Page
   ======================================== */
.menu-page {
    position: relative;
}

.menu-page.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.menu-page.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.menu-page > .container {
    position: relative;
    z-index: 1;
}

.menu-tabs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--cream);
    color: var(--ink-muted);
    border: 1px solid var(--sand);
    transition: all var(--transition);
}

.menu-tab:hover {
    background: var(--sand-light);
    color: var(--ink);
    border-color: var(--sand-light);
}

.menu-tab.active {
    background: var(--wood-dark);
    color: var(--cream);
    border-color: var(--wood-dark);
}

.menu-category {
    margin-bottom: var(--space-4xl);
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.category-title {
    margin-bottom: var(--space-xs);
}

.category-desc {
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

.menu-items {
    display: grid;
    gap: var(--space-lg);
}

.menu-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.menu-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--sand);
}

.menu-item-image {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-image .badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.5625rem;
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 500;
    margin: 0;
}

.menu-item-price {
    text-align: right;
    flex-shrink: 0;
}

.menu-item-price .price {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--wood-dark);
    font-size: 1.125rem;
}

.menu-item-price .price-note {
    display: block;
    font-size: 0.6875rem;
    color: var(--ink-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-item-desc {
    color: var(--ink-muted);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

/* Menu item without image */
.menu-item:not(.has-image) {
    padding: var(--space-md) var(--space-lg);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    position: relative;
}

.contact-page.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.contact-page.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.contact-page > .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-light);
    transition: all var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--sand);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    color: var(--wood-dark);
}

.contact-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.contact-card-content p,
.contact-card-content a {
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

.contact-card-content a:hover {
    color: var(--wood-dark);
}

.contact-card-hours .contact-card-content {
    flex: 1;
    min-width: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--sand-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--ink-muted);
    flex-shrink: 0;
}

.hours-list .time {
    font-weight: 500;
    color: var(--ink);
    text-align: right;
    flex-shrink: 0;
}

.contact-cta {
    padding: var(--space-xl);
    background: var(--panel);
    color: var(--cream);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.contact-cta h3 {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.contact-cta p {
    opacity: 0.85;
    margin-bottom: var(--space-lg);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--sand);
    align-self: stretch;
}

.map-container {
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

.contact-notes {
    margin-top: var(--space-3xl);
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand-light);
    position: relative;
    z-index: 1;
}

.contact-notes h3 {
    margin-bottom: var(--space-md);
}

.notes-content {
    color: var(--ink-muted);
    line-height: 1.7;
}

/* ========================================
   About Page - Revamped Design
   ======================================== */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.about-hero-bg-placeholder {
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.1); }
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cream);
    max-width: 750px;
    margin: 0 auto;
    padding: var(--space-2xl);
}

.about-hero-label {
    display: inline-block;
    font-family: var(--font-japanese);
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.about-hero-title {
    color: var(--cream);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    line-height: 1.15;
}

.about-hero-text {
    font-size: 1.25rem;
    opacity: 0.92;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    opacity: 0.7;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 1;
}

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

/* About Story */
.about-story {
    position: relative;
    padding: 0;
}

.about-story.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-story.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.about-story.has-texture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(201, 168, 108, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-story > .container {
    position: relative;
    z-index: 1;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-story-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    aspect-ratio: auto;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.about-story-image::before {
    display: none;
}

.about-story-image-accent {
    display: none;
}

.about-story-content {
    text-align: left;
    padding: var(--space-3xl) max(var(--space-2xl), calc((100vw - var(--container-max)) / 2 + var(--space-lg))) var(--space-3xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-content .section-title-jp {
    text-align: left;
}

.about-story-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-story-content .story-text {
    text-align: left;
    font-size: 1.0625rem;
    color: var(--ink-muted);
    line-height: 1.9;
}

/* Vision & Mission Section */
.about-vision {
    position: relative;
}

.about-vision.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-vision.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.90);
    pointer-events: none;
}

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

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.vision-card {
    background: var(--cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--sand-light);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--wood-medium));
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vision-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    background: var(--sand-light);
    border-radius: var(--radius-full);
    color: var(--wood-dark);
}

.vision-label {
    display: block;
    font-family: var(--font-japanese);
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xs);
}

.vision-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

.vision-text {
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.about-values {
    position: relative;
}

.about-values.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-values.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.92);
    pointer-events: none;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--cream);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-light);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s var(--ease-out) forwards;
    opacity: 0;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 0 0 3px 3px;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--sand);
    transform: translateY(-8px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wood-dark);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0.8;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.value-desc {
    color: var(--ink-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.about-timeline {
    position: relative;
}

.about-timeline.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-timeline.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.90);
    pointer-events: none;
}

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

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--accent-gold) 10%,
        var(--accent-gold) 90%,
        transparent 100%
    );
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: var(--space-lg);
}

.timeline-item.left {
    padding-right: var(--space-3xl);
    text-align: right;
}

.timeline-item.right {
    margin-left: 50%;
    padding-left: var(--space-3xl);
}

.timeline-marker {
    position: absolute;
    top: var(--space-xl);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.left .timeline-marker {
    right: -10px;
}

.timeline-item.right .timeline-marker {
    left: -10px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border: 4px solid var(--cream);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--wood-dark);
}

.timeline-content {
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--sand-light);
    transition: all var(--transition);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: var(--space-lg);
    width: 16px;
    height: 16px;
    background: var(--cream);
    border: 1px solid var(--sand-light);
    transform: rotate(45deg);
}

.timeline-item.left .timeline-content::before {
    right: -9px;
    border-left: none;
    border-bottom: none;
}

.timeline-item.right .timeline-content::before {
    left: -9px;
    border-right: none;
    border-top: none;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.timeline-year {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.timeline-desc {
    color: var(--ink-muted);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.7;
}

/* Content Blocks */
.about-blocks {
    position: relative;
    padding: 0;
}

.about-blocks.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-blocks.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.88);
    pointer-events: none;
}

.about-blocks > .container {
    position: relative;
    z-index: 1;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: var(--space-4xl);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block.reverse {
    direction: rtl;
    grid-template-columns: 1fr 1fr;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-block-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}

.content-block-image::before {
    display: none;
}

.content-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.content-block:hover .content-block-image img {
    transform: scale(1.03);
}

.content-block-text {
    padding: var(--space-3xl) max(var(--space-2xl), calc((100vw - var(--container-max)) / 2 + var(--space-lg))) var(--space-3xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block.reverse .content-block-text {
    padding: var(--space-3xl) var(--space-2xl) var(--space-3xl) max(var(--space-2xl), calc((100vw - var(--container-max)) / 2 + var(--space-lg)));
}

.content-block-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

.content-block-text p {
    color: var(--ink-muted);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Team Section */
.about-team {
    position: relative;
}

.about-team.has-texture {
    background-image: url('../images/stone-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-team.has-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 235, 224, 0.90);
    pointer-events: none;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
}

.team-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--sand-light);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--sand-light);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
}

.team-info {
    padding: var(--space-lg);
    text-align: center;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--ink);
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ========================================
   Error Page
   ======================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-4xl) 0;
}

.error-code {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
    letter-spacing: -0.05em;
}

.error-title {
    margin: var(--space-md) 0;
}

.error-text {
    color: var(--ink-muted);
    margin-bottom: var(--space-xl);
}

.error-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--parchment-light);
    color: var(--ink);
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: auto;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-2xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.footer-col p {
    color: var(--ink-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-col a {
    color: var(--ink-muted);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--ink);
}

.footer-map {
    margin-top: var(--space-md);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stone-light);
}

.footer-map iframe {
    width: 100%;
    height: 120px;
    display: block;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-link-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--ink-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link-item:hover {
    color: var(--ink);
}

.social-link-item svg {
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: var(--ink-subtle);
    font-size: 0.8125rem;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
    text-align: center;
    padding: var(--space-4xl);
    color: var(--ink-muted);
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.5s var(--ease-out) forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        order: 1;
        grid-column: auto;
    }

    .nav-toggle {
        display: block;
        order: 2;
        z-index: 103;
        position: relative;
    }

    .nav-menu--left {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #E8DCC8;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-xl);
        gap: var(--space-xl);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 101;
        display: flex;
    }

    .nav-menu--left.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu--left .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu--left.open .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu--left.open .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu--left.open .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu--left.open .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu--left.open .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu--left.open .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu--left.open .nav-item:nth-child(6) { transition-delay: 0.35s; }

    .nav-menu--left .nav-link {
        font-size: 1.5rem;
        text-transform: none;
        letter-spacing: 0.01em;
        color: #b82e32;
    }

    .site-header--transparent .nav-menu--left .nav-link,
    .site-header--transparent.scrolled .nav-menu--left .nav-link,
    .site-header--transparent.over-hero .nav-menu--left .nav-link {
        color: #b82e32;
    }

    .nav-menu--left .nav-link:hover,
    .nav-menu--left .nav-link.active,
    .site-header--transparent .nav-menu--left .nav-link:hover,
    .site-header--transparent .nav-menu--left .nav-link.active,
    .site-header--transparent.scrolled .nav-menu--left .nav-link:hover,
    .site-header--transparent.scrolled .nav-menu--left .nav-link.active,
    .site-header--transparent.over-hero .nav-menu--left .nav-link:hover,
    .site-header--transparent.over-hero .nav-menu--left .nav-link.active {
        color: #8a2328;
    }

    .nav-menu--left .nav-link::after {
        display: none;
    }

    .nav-item--mobile {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .site-header--transparent.over-hero .nav-toggle-icon,
    .site-header--transparent.over-hero .nav-toggle-icon::before,
    .site-header--transparent.over-hero .nav-toggle-icon::after {
        background: var(--white);
    }

    .site-header--transparent.scrolled .nav-toggle-icon,
    .site-header--transparent.scrolled .nav-toggle-icon::before,
    .site-header--transparent.scrolled .nav-toggle-icon::after {
        background: var(--ink);
    }

    .nav-toggle[aria-expanded="true"] {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 102;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before,
    .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
        background: var(--ink);
    }

    .nav-toggle[aria-expanded="true"]:hover {
        background: var(--sand-light);
    }

    .hero {
        min-height: 75vh;
    }

    .hero::before,
    .hero::after {
        width: 60px;
        height: 60px;
    }

    .hero::before {
        top: 20px;
        left: 20px;
    }

    .hero::after {
        bottom: 20px;
        right: 20px;
    }

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

    .about-hero {
        min-height: 60vh;
    }

    .about-hero-content {
        padding: var(--space-xl);
    }

    .about-hero-scroll {
        display: none;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
    }

    .about-story-image {
        order: -1;
        aspect-ratio: 3/2;
    }

    .about-story-content {
        padding: var(--space-xl) var(--space-lg);
        text-align: center;
    }

    .about-story-content .section-title-jp,
    .about-story-content .section-title {
        text-align: center;
    }

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

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

    .content-block {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
    }

    .content-block.reverse {
        direction: ltr;
    }

    .content-block-text {
        padding: var(--space-xl) var(--space-lg);
    }

    .content-block.reverse .content-block-text {
        padding: var(--space-xl) var(--space-lg);
    }

    .content-block-image {
        order: -1;
    }

    .timeline-line {
        left: 0;
        transform: none;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        margin-left: 0;
        padding-left: var(--space-2xl);
        padding-right: 0;
        text-align: left;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: -8px;
        right: auto;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -9px;
        right: auto;
        border-right: none;
        border-top: none;
        border-left: 1px solid var(--sand-light);
        border-bottom: 1px solid var(--sand-light);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-image {
        width: 100%;
        height: 200px;
    }

    .menu-item-header {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .menu-item-price {
        text-align: left;
    }

    .cta-panel {
        padding: var(--space-2xl) var(--space-lg);
    }

    .cta-panel::after {
        inset: 12px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

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

    .cta-panel {
        padding: var(--space-xl);
    }

    .menu-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
        margin: 0 calc(-1 * var(--space-md));
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .menu-tab {
        flex-shrink: 0;
    }

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

    .hero-content {
        padding: var(--space-md);
    }

    /* About page mobile */
    .about-hero {
        min-height: 50vh;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .vision-card {
        padding: var(--space-xl);
    }

    .value-card {
        padding: var(--space-xl);
    }

    .timeline-content {
        padding: var(--space-md);
    }

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

    .team-info {
        padding: var(--space-md);
    }
}

/* ========================================
   Gallery Page (Promotion / News / Event)
   ======================================== */
.gallery-page-hero {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    text-align: center;
    background-color: var(--parchment);
    position: relative;
}

.gallery-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
}

.gallery-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.gallery-page-desc {
    color: var(--ink-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-page-content {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background-color: var(--cream);
}

/* Single image display */
.gallery-single-image {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gallery-single-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.gallery-single-caption {
    margin-top: var(--space-lg);
    color: var(--ink-muted);
    font-size: 1rem;
    font-style: italic;
}

/* Large image grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-page-card {
    cursor: pointer;
    transition: transform var(--transition);
}

.gallery-page-card:hover {
    transform: translateY(-4px);
}

.gallery-page-card-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-page-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-page-card:hover .gallery-page-card-image img {
    transform: scale(1.03);
}

.gallery-page-card-caption {
    margin-top: var(--space-md);
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

/* Empty state */
.gallery-empty-state {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    color: var(--ink-subtle);
}

.gallery-empty-state svg {
    margin-bottom: var(--space-lg);
    opacity: 0.4;
}

.gallery-empty-state p {
    font-size: 1.125rem;
}

/* VIP subtitle links */
.vip-subtitle a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.vip-subtitle a:hover {
    opacity: 0.7;
    color: inherit;
}

@media (max-width: 768px) {
    .gallery-page-hero {
        padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl);
    }

    .gallery-page-content {
        padding: var(--space-2xl) 0 var(--space-3xl);
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .nav-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
