@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-bg: #1a1a1a;
    /* Dark Grey/Black background */
    --color-text: #f0f0f0;
    /* Off-white text */
    --color-bg-light: #252525;
    /* Slightly lighter background for sections */
    --color-bg-accent: #2a2a2a;
    /* Even lighter for cards/rows */
    --color-accent: #c5a059;
    /* Gold/Brass accent */
    --color-accent-hover: #e0b86a;
    --color-sub-text: #aaaaaa;
    /* Grey text */

    /* Fonts */
    --font-en: 'Cinzel', serif;
    --font-jp: 'Noto Serif JP', serif;

    /* Spacing */
    --section-padding: 80px 0;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-jp);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
.center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

/* Button */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-jp);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent-hover);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo .en {
    font-family: var(--font-en);
    font-size: 1.4rem;
    color: var(--color-accent);
    line-height: 1;
}

.logo .jp {
    font-size: 0.7rem;
    color: var(--color-sub-text);
    margin-top: 5px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-family: var(--font-en);
    font-size: 0.9rem;
    color: var(--color-text);
    text-transform: uppercase;
    position: relative;
}

.nav a.active {
    color: var(--color-accent);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.reserve-btn {
    display: none;
    /* Mobile mostly, or special CTA */
}

@media (min-width: 768px) {
    .reserve-btn {
        display: inline-block;
        font-size: 0.8rem;
        border: 1px solid var(--color-text);
        padding: 8px 20px;
    }

    .reserve-btn:hover {
        background: var(--color-text);
        color: var(--color-bg);
        border-color: var(--color-text);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    /* Dim image to make text pop */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-sub {
    font-family: var(--font-en);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
}

/* ==========================================================================
   Page Header (Sub-pages)
   ========================================================================== */
.page-header {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    /* offset fixed header roughly */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title-content h2 {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.page-title-content p {
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.1em;
}


/* ==========================================================================
   Section Common
   ========================================================================== */
.section {
    padding: var(--section-padding);
}

.section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
    /* Default center for most headers */
}

.section-title-wrapper .en-title {
    display: block;
    font-family: var(--font-en);
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.section-title-wrapper .jp-title {
    font-size: 2rem;
    font-weight: 400;
    /* Sophisticated look */
}

/* ==========================================================================
   Concept (Top Page & Sub Page)
   ========================================================================== */
.concept-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.concept-image,
.about-image {
    flex: 1 1 400px;
}

.concept-image img,
.about-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.concept-text {
    flex: 1 1 400px;
}

.concept-text h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.concept-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
}

/* About Page Specific */
.about-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1 1 400px;
}

.about-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-accent);
    line-height: 1.4;
    font-family: var(--font-jp);
}


/* ==========================================================================
   Menu / Strengths
   ========================================================================== */
.menu-strengths {
    background-color: var(--color-bg-light);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.strength-item {
    background: var(--color-bg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.strength-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.strength-icon .number {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.strength-item h3 {
    font-family: var(--font-en);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.strength-desc {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.8;
}

.strength-desc strong {
    color: white;
    font-weight: normal;
    border-bottom: 1px solid var(--color-accent);
}

.strength-desc .note {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
}

.menu-link-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Menu Page List */
.menu-list {
    background: var(--color-bg);
}

.menu-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-title .badge {
    font-size: 0.8rem;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 5px 10px;
    border-radius: 2px;
}

.category-desc {
    color: #ccc;
    margin-bottom: 30px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-item-row.highlight {
    border-bottom: 1px solid var(--color-accent);
    /* Highlight recommended items */
}

.menu-item-row dt {
    flex: 1;
}

.item-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-en);
}

.item-detail {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.menu-item-row dd {
    font-family: var(--font-en);
    font-size: 1.1rem;
    color: var(--color-text);
    white-space: nowrap;
    margin-left: 20px;
}

.tax-note {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: -20px;
}


/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   Access
   ========================================================================== */
.access-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.access-info {
    flex: 1 1 300px;
    padding: 30px;
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-accent);
}

.shop-name {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.access-info p {
    margin-bottom: 15px;
    color: #ccc;
}

.tel {
    font-size: 1.5rem;
    font-family: var(--font-en);
    color: white;
    margin: 20px 0;
}

.access-map {
    flex: 1 1 400px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 30px 0;
    background: #111;
    font-size: 0.8rem;
    color: #666;
    font-family: var(--font-en);
}

/* ==========================================================================
   Mobile Styles
   ========================================================================== */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }

    .nav {
        display: none;
        /* Mobile menu implementation omitted for brevity, stick to basics first */
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title-wrapper {
        text-align: left;
        margin-bottom: 40px;
    }

    .section-title-wrapper.center {
        text-align: center;
    }

    .concept-content,
    .access-content,
    .about-block,
    .about-block.reverse {
        flex-direction: column;
    }

    .menu-item-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-row dd {
        margin-left: 0;
        margin-top: 5px;
        align-self: flex-end;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-section {
    background: var(--color-bg);
}

.contact-box {
    background: var(--color-bg-light);
    padding: 50px 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.contact-desc {
    margin-bottom: 30px;
    color: #ccc;
}

.tel-link {
    display: inline-block;
    font-size: 2rem;
    font-family: var(--font-en);
    color: white;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid white;
}

.tel-link .icon {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 10px;
    color: var(--color-accent);
}

.tel-link:hover {
    background: white;
    color: var(--color-bg);
}

.hours-note {
    font-size: 0.9rem;
    color: #888;
}

.hp-btn {
    display: inline-block;
    background: #FF516D;
    /* HotPepper Pink-ish color */
    color: white;
    font-weight: bold;
    padding: 20px 60px;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.hp-btn:hover {
    opacity: 0.8;
}

/* Style Page Tweaks */
.style-gallery {
    padding-top: 80px;
}

/* ==========================================================================
   Splash Screen
   ========================================================================== */
/* Splash Screen styles moved to upper section or updated there */
/* Splash Screen (Updated) */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* Match logo background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-logo img {
    width: 90vmin;
    /* Maximize size relative to viewport */
    max-width: 800px;
    /* Cap for very large screens */
    height: auto;
    animation: zoomIn 2.5s ease-out forwards;
    opacity: 0;
    /* Blend mode to ensure black background of image disappears into splash background */
    mix-blend-mode: screen;
}

.splash-since {
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-top: 10px;
    opacity: 0;
    animation: zoomIn 2.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;

    }
}

/* Ensure body doesn't scroll initially (handled by JS, but good to have CSS backup if needed class applied) */
/* For now, JS will handle body.style.overflow = 'hidden' if we want, or just overlay covers it. */