/* 
   White-Base Modern Wa Theme 
   Concept: "Snow & Indigo" (白雪と藍)
   Base: Pure White & Deep Navy
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');

:root {
    /* Color Palette */
    --color-bg: #ffffff;
    /* Pure White */
    --color-bg-alt: #f8f9fa;
    /* Very Light Grey for banding */

    --color-text-main: #0d1b2a;
    /* Deep Navy (Primary Text) */
    --color-text-muted: #5e6c7c;
    /* Cool Grey */

    --color-accent: #a4161a;
    /* Crimson Red (Deep) */
    --color-accent-light: #e5383b;

    --color-border: #e2e8f0;
    /* Light Border */

    /* Typography */
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;

    /* Spacing */
    --section-padding: 8rem 2rem;
    --nav-height: 80px;
}

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

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

html,
body,
main {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* ... */

.feature-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: visible;
    border-top: 5px solid transparent;
}

/* Tricolor Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--color-accent);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Button/Link Styling */
.feature-card a {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: normal;
    transition: all 0.3s ease;
    border-radius: 9999px;
    vertical-align: middle;
    margin-bottom: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    /* Headings are Serif for Premium feel */
    font-weight: 600;
    margin-top: 0;
    line-height: 1.5;
    color: var(--color-text-main);
}

p {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.text-highlight {
    background: linear-gradient(transparent 60%, rgba(255, 223, 0, 0.4) 60%);
    /* Yellow Marker */
    font-weight: 700;
    padding: 0 2px;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.25em;
    line-height: 2;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 
   Header (Clean White) 
*/
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: padding 0.3s ease;
}

.global-header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 0.1em;
    font-family: var(--font-serif);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-text-main);
    transition: all 0.3s ease-in-out;
}

/* Hamburger to X animation */
.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.global-nav ul {
    display: flex;
    gap: 2.5rem;
}

.global-nav a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.global-nav a:hover,
.global-nav a.active {
    color: var(--color-accent);
}

/*
   Hero Section (Natural Light)
*/
/* =========================================
   Standard Subpage Hero - Matching Home Consistency
   ========================================= */
.page-hero {
    position: relative;
    width: 100%;
    /* Use min-height and ample padding to force layout */
    height: auto;
    min-height: 80vh;
    background-color: #000;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Do NOT center vertically, push from top */
    align-items: center;

    overflow: hidden;
    margin-top: 0;

    /* CRITICAL FIX: Massive padding to guarantee header clearance */
    padding-top: 220px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

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

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Dark for contrast */
    transform: scale(1.1);
    animation: zoomEffect 20s infinite alternate;
}

/* Vignette for focus */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.page-hero h2 {
    /* Vertical Writing */
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    font-family: var(--font-serif);
    margin: 0;
    color: #ffffff;

    /* Premium Look */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
    border-right: 2px solid var(--color-accent);
    padding-right: 2rem;
    margin-right: -1rem;

    /* Reset defaults */
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.page-hero h2::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: -10px;
}

.page-hero .hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: static;
    margin-top: 1rem;
    text-transform: uppercase;
    text-align: center;

    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-hero .hero-subtitle::before,
.page-hero .hero-subtitle::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

/*
   Hero Section (Premium Vertical Design)
*/
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    background-color: #000;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.1);
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;

    /* Layout for Vertical Text */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    /* RESET White Box styles explicitly */
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: none;
}

.hero h2 {
    /* Vertical Writing */
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--font-serif);
    font-size: 5rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin: 0;

    /* Premium Look - Stronger Shadow */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.6);
    border-right: 2px solid var(--color-accent);
    padding-right: 2rem;
    padding-bottom: 0;
    /* Reset */
    margin-bottom: 0;
    /* Reset */
    display: block;
    /* Reset inline-block */
    margin-right: -1rem;
    color: #ffffff;
    border-bottom: none;
    /* Reset horizontal border */
}

.hero h2::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: -15px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.4em;
    font-weight: 500;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    /* Reset */
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

/* 
   Intro Section (Philosophy) - Pure White
*/
#intro {
    background-color: #ffffff;
    position: relative;
    padding: var(--section-padding);
}

/* Vertical Red Line running through Intro */
#intro::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(164, 22, 26, 0.15);
    /* Very subtle Red axis */
    transform: translateX(-50%);
    z-index: 1;
}

.intro-section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.intro-section-header h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
    /* Navy */
}

.intro-section-header .intro-subtitle {
    display: inline-block;
    color: #ffffff;
    background-color: var(--color-accent);
    /* Red Box for "PHILOSOPHY" */
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Philosophy List (Refined for Readability) */
.atmosphere-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    /* Slightly tighter gap for flow */
    max-width: 700px;
    /* Narrower for better reading experience */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-left: 2rem;
    /* Reduced padding */
    border-left: 1px solid rgba(13, 27, 42, 0.1);
    /* Subtle Navy axis, not border color */
}

.atmosphere-row {
    padding: 0;
    text-align: left;
    position: relative;
}

/* Bullet point for the axis */
.atmosphere-row::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    /* Align with border-left center */
    top: 0.6rem;
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 50%;
    border: 2px solid #fff;
    /* Crisp outline */
    box-shadow: 0 0 0 1px var(--color-accent);
    /* Double ring effect */
}

.atmosphere-row h4 {
    font-size: 2rem;
    /* Larger, more solid */
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    writing-mode: horizontal-tb;
    border-bottom: 2px solid rgba(164, 22, 26, 0.1);
    /* Subtle underline */
    padding-bottom: 0.5rem;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.atmosphere-row p {
    font-size: 1.1rem;
    /* Larger for readability */
    line-height: 2.1;
    /* Relaxed line height */
    color: #4a5568;
    /* Slightly darker than muted for contrast */
    margin-top: 0;
    text-align: justify;
    /* Justify text for solid block look */
    text-justify: inter-ideograph;
}

/* 
   Highlights Section (Tricolor Balance: Navy BG / White Cards / Red Accents) 
*/
#highlights {
    background-color: var(--color-text-main);
    /* Navy Background */
    color: #ffffff;
    padding: var(--section-padding);
    position: relative;
    border-top: 4px solid var(--color-accent);
    text-align: center;
    /* Force center alignment for everything in highlights */
}

#highlights .section-title {
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 5rem;
    /* Center text explicitly just in case */
    text-align: center;
}

/* Decorative Red element behind title */
#highlights .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
}

/* Highlights Grid (Vertical Stack) */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    /* Spacious padding */
    text-align: center;
    /* Centered Alignment as requested */
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    border-top: 5px solid transparent;
    height: 100%;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--color-accent);
}

.feature-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: var(--color-text-main);
    font-weight: 700;
    letter-spacing: 0.1em;
    /* Add elegance */
}

.feature-card p {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    /* Space before list */
    line-height: 2.0;
    font-size: 1.05rem;
    text-align: center;
    /* Intro text centered */
}

.feature-list {
    text-align: left;
    display: inline-block;
    /* Keep list centered in card */
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    /* Custom bullets */
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✔';
    /* Checkmark bullet */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    /* Red check */
    font-weight: 700;
}

/* Button Removed */


/* 
   Background Utilities 
*/
.bg-white {
    background-color: #ffffff;
}

.bg-grey {
    background-color: var(--color-bg-alt);
}

.bg-navy {
    background-color: var(--color-text-main);
    color: #ffffff;
}

/* 
   Menu Section 
*/
#menu {
    padding: var(--section-padding);
    text-align: center;
    /* Center everything in menu section */
}

/* Ensure title is centered */
#menu .section-title {
    display: inline-block;
    /* Needed for border-bottom usually */
    margin-bottom: 2rem;
}

.section-header-styled {
    position: relative;
    padding: 2rem 0 4rem;
    text-align: center;
}

.watermark {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(13, 27, 42, 0.05);
    /* Very subtle Navy */
    z-index: 0;
    letter-spacing: 0.2em;
    font-family: var(--font-sans);
    pointer-events: none;
}

#menu .section-title {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: none;
    /* Remove simple line */
}

/* Decorative element below title */
#menu .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 1rem auto 0;
}

.menu-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: transform 0.3s ease;
    border-top: 3px solid transparent;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--color-accent);
}

.menu-item-card h3 {
    font-size: 1.6rem;
    /* Larger Title */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
    /* Thicker line */
    display: inline-block;
    font-weight: 700;
}

.menu-item-card p {
    line-height: 2.0;
    color: var(--color-text-main);
    /* Darker text */
}

.menu-item-card strong {
    background: linear-gradient(transparent 60%, rgba(200, 200, 200, 0.3) 60%);
    /* Gray marker */
    font-weight: 700;
    color: #000;
}

/* 
   Ingredients & Owner Sections 
*/
#ingredients,
#owner,
#space,
#access {
    padding: var(--section-padding);
}

/* Space Features Layout */
.space-features {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.space-feature-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    /* Simple rounded corners */
    /* Remove shadow if preferring flat, or keep subtle */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--color-accent);
    /* Left accent bar */
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-border);
    /* Subtle numbering */
    font-family: var(--font-serif);
    margin-right: 1.5rem;
    line-height: 1;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0;
}

.message-card {
    background: #fff;
    padding: 4rem 3rem;
    max-width: 800px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft Shadow */
    border-radius: 2px;
    text-align: center;
}

.card-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-accent);
}

.card-decoration.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.card-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.message-card h4 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.message-card p {
    line-height: 2.4;
    color: var(--color-text-main);
    font-size: 1.05rem;
    text-align: justify;
    /* Justify for clean block look */
    text-align-last: center;
}

/* Owner Specifics */
.owner-box h4 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
    font-family: var(--font-serif);
}

/* Dark Mode Header Override */
.section-header-styled.dark-mode .watermark {
    color: rgba(255, 255, 255, 0.08);
    /* Increased for visibility */
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    max-width: 500px;
    text-align: left;
}

.commitment-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.commitment-list li::before {
    content: '✔';
    /* Or use icon */
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Owner Intro (Matches Menu Intro structure) */
.owner-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
    /* Space from title */
}

/* Commitment Intro */
.commitment-intro {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.main-quote {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.05em;
    display: inline-block;
    position: relative;
    /* Remove old quote decorations to match "Menu" cleanliness or keep them if desired? 
       User said "like the menu", menu is clean. But owner image had quotes. 
       I will keep them subtle if needed, but let's stick to the styling provided in the previous image. 
       The previous image had red quotes. */
}

.main-quote::before,
.main-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.8;
    position: absolute;
    font-family: serif;
}

.main-quote::before {
    top: -1.5rem;
    left: -1.5rem;
}

.main-quote::after {
    bottom: -3rem;
    right: -1.5rem;
    transform: rotate(180deg);
}

/* Owner Message Styling */
.owner-message-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.main-quote::before,
.main-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.5;
    position: absolute;
    font-family: serif;
}

.main-quote::before {
    top: -2rem;
    left: -2rem;
}

.main-quote::after {
    bottom: -4rem;
    right: -2rem;
    transform: rotate(180deg);
}

.owner-body-text p {
    color: rgba(255, 255, 255, 0.9);
    /* High contrast white text */
    line-height: 2.2;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    text-align: left;
    /* Left align for readability */
    /* But keep block centered */
}

/* Gold Highlight for Dark Background */
.text-highlight-gold {
    background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.25) 60%);
    font-weight: 700;
    color: #fff;
    padding: 0 4px;
}

.owner-body-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2.4;
    /* More breathing room */
    margin-bottom: 2.5rem;
    /* Separated paragraphs */
    font-size: 1.05rem;
    text-align: left;
    /* Keep left align for readability flow */
    position: relative;
}

/* Add a subtle separator between paragraphs? */
.owner-body-text p::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem auto 0;
}

.owner-body-text p:last-child::after {
    display: none;
}

.owner-body-text strong {
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gold Highlight for Dark Background */
.text-highlight-gold {
    background: linear-gradient(transparent 60%, rgba(255, 215, 0, 0.25) 60%);
    font-weight: 700;
    color: #fff;
    padding: 0 4px;
}

.owner-body-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2.4;
    /* More breathing room */
    margin-bottom: 2.5rem;
    /* Separated paragraphs */
    font-size: 1.05rem;
    text-align: left;
    /* Keep left align for readability flow */
    position: relative;
}

/* Add a subtle separator between paragraphs? */
.owner-body-text p::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem auto 0;
}

.owner-body-text p:last-child::after {
    display: none;
}

.owner-body-text strong {
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.owner-sign {
    margin-top: 4rem;
    text-align: right;
    color: #fff;
    font-family: var(--font-serif);
}

.sign-name {
    font-size: 1.8rem;
    margin-left: 1rem;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

/* 
   Space Section
*/
.space-content p {
    font-size: 1.05rem;
}

/* 
   Access Section 
*/
.access-grid {
    display: flex;
    justify-content: center;
}

.access-info {
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 2rem;
    /* Optional border for definition */
}

.access-info h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.access-info dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    /* Fixed label width */
    gap: 1.5rem;
    text-align: left;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.access-info dt {
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
}

.access-info dt::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-right: 10px;
}

.access-info dd {
    margin: 0;
    color: var(--color-text-muted);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.access-info dd:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .access-info dl {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 0.5rem;
    }

    .access-info dt {
        margin-top: 1rem;
        color: var(--color-accent);
        /* Highlight label on mobile */
    }

    .access-info dt::before {
        display: none;
    }

    .access-info dd {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}

#news {
    background-color: var(--color-bg);
    padding: var(--section-padding);
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 2px solid var(--color-text-main);
}

.news-item {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.news-item time {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-text-main);
    min-width: 100px;
}

.news-item p {
    margin: 0;
    color: var(--color-text-muted);
}

/* Footer (Deep Navy for Contrast) */
.global-footer {
    background-color: var(--color-text-main);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.copyright {
    color: #888;
    font-size: 0.8rem;
}

/* Access Section Modern Styles */
.access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 768px) {
    .access-wrapper {
        grid-template-columns: 1fr;
    }
}

.access-info-card {
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.info-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 2rem;
}

.info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.shop-name-kana {
    font-size: 1rem;
    font-weight: normal;
    color: var(--color-text-muted);
}

.postal-code {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
    display: inline-block;
    margin-right: 1rem;
}

.address-text {
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.tel-link {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s;
    font-family: var(--font-sans);
    /* Ensure numbers are readable */
}

.tel-link:hover {
    color: var(--color-accent);
}

.info-list {
    display: grid;
    gap: 1.5rem;
}

.info-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    border-bottom: 1px dotted var(--color-border);
    padding-bottom: 0.5rem;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row dt {
    font-weight: 700;
    color: var(--color-accent);
}

.info-row dd {
    margin: 0;
    color: var(--color-text-main);
    line-height: 1.6;
}

.info-row .note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.access-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    background: var(--color-bg-alt);
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--color-text-muted);
}

.access-map {
    width: 100%;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.text-center {
    text-align: center !important;
    text-align-last: center !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .page-hero h2 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .intro-section-header h3 {
        font-size: 1.8rem !important;
    }

    .lead-text {
        font-size: 1.2rem !important;
        margin-bottom: 2rem !important;
    }

    .atmosphere-wrapper {
        border-left: none;
        padding-left: 0;
        gap: 4rem;
    }

    .atmosphere-row::before {
        display: none;
        /* Hide axis dots on mobile */
    }

    .atmosphere-row h4 {
        border-bottom: 2px solid var(--color-accent);
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .global-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 999;
        /* Below the button (1000) */
        padding-top: 100px;
        backdrop-filter: blur(10px);
    }

    .global-nav.active {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .global-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .global-nav a {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 0.5rem;
        border-bottom: none;
    }

    .global-nav a:last-child {
        border-bottom: none;
    }

    .mobile-menu-btn {
        display: block;
        /* Re-enabling the hamburger menu button */
    }
}

/* Utility Classes */
.text-white {
    color: #ffffff !important;
}

.text-gold {
    color: #d4af37 !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

/* Dark Mode Title Override */
.section-header-styled.dark-mode .section-title {
    color: #ffffff !important;
}

/* Features Section Spacing */
/* Features Section Spacing */
#features {
    padding-top: 10rem !important;
    padding-bottom: 12rem !important;
}

/* Premium Button Styling */
.btn-view-more {
    display: inline-block;
    background-color: var(--color-text-main);
    /* Navy */
    color: #ffffff;
    padding: 1.2rem 4rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--color-text-main);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.2);
    text-align: center;
}

.btn-view-more:hover {
    background-color: var(--color-accent);
    /* Red */
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(164, 22, 26, 0.3);
    color: #ffffff;
}

.btn-view-more .en {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: var(--font-sans);
}

.btn-view-more span:not(.en) {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Page Hero (Subpages) - Added via Emergency Fix */

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    /* Dark overlay effect for text visibility */
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-hero h2 {
    color: var(--color-text-main);
    /* Match Home: Navy text */
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-family: var(--font-serif);
    position: relative;
    z-index: 10;
    text-shadow: none;
    /* Remove shadow for clean look on white */
    margin-bottom: 0.5rem;
}

.page-hero .hero-subtitle {
    color: var(--color-text-muted);
    /* Match Home: Muted text */
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 10;
    text-shadow: none;
}

/* Texture Backgrounds */
.bg-texture-navy {
    background-color: var(--color-text-main);
    background-image: url('../images/bg_texture_navy.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
}

/* Floating Images for visual interest */
.floating-img-right {
    float: right;
    width: 40%;
    margin-left: 3rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.floating-img-right:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 768px) {
    .floating-img-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
        transform: none;
    }
}

/* =========================================
   Premium Service Page Refinements (Modern Wa)
   ========================================= */

/* 1. Cinematic Hero with Vertical Text & Premium Feel */
.page-hero {
    height: 85vh;
    /* Taller */
    min-height: 600px;
    background-color: #000;
    /* Pure Black base */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

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

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    /* Slightly brighter than before */
    transform: scale(1.1);
    animation: slowZoom 30s infinite alternate;
    filter: contrast(1.1) saturate(1.1);
    /* Enhance image quality */
}

/* Vignette Overlay for focus */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(5, 10, 16, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.page-hero .hero-content {
    z-index: 20;
    /* Above vignetter */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

/* Vertical Title Container */
.page-hero h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: 'Noto Serif JP', serif;
    /* Enforce Serif */
    font-weight: 500;
    /* Lighter for elegance */
    font-size: 4.5rem;
    /* Larger */
    letter-spacing: 0.4em;
    color: #ffffff;
    margin: 0;
    margin-bottom: 3rem;

    /* Decoration: Red Line sits to the right side (because vertical-rl) */
    position: relative;
    padding-right: 3rem;
    border-right: 2px solid var(--color-accent);
}

.page-hero h2::before {
    /* Top Accent Dot on the line */
    content: '';
    position: absolute;
    top: -10px;
    right: -6px;
    /* Center on 2px border */
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
}

.page-hero h2::after {
    /* Bottom Accent Dot on the line */
    content: '';
    position: absolute;
    bottom: -10px;
    right: -6px;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
}

.page-hero .hero-subtitle {
    writing-mode: horizontal-tb;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;

    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-hero .hero-subtitle::before,
.page-hero .hero-subtitle::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    font-family: var(--font-sans);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* 2. Z-Pattern Service Sections */
.service-section {
    padding: 120px 0;
    /* Generous whitespace */
    position: relative;
    overflow: hidden;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin: 0 auto;
    max-width: 1100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    position: relative;
    height: 450px;
    /* Taller images */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-section:hover .service-img img {
    transform: scale(1.03);
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 1rem;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
}

.service-text p {
    font-size: 1.05rem;
    line-height: 2.2;
    text-align: justify;
    color: inherit;
    opacity: 0.9;
}

/* 3. Typography & Accents */
.text-gold {
    color: #c5a059;
    /* Refined Gold */
    background: linear-gradient(135deg, #c5a059 0%, #e6d08e 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.text-navy {
    color: var(--color-text-main);
}

/* 4. Responsive */
@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .service-img {
        width: 100%;
        height: 300px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .page-hero h2 {
        font-size: 2.5rem;
        padding-right: 1.5rem;
    }

    .service-section {
        padding: 80px 0;
    }

    .service-text h3 {
        font-size: 1.8rem;
    }
}

/* =========================================
   Universal Subpage Hero - FIXED & ROBUST
   ========================================= */
.subpage-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 680px;
    background-color: #050505;
    /* Deep black base */

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Do NOT center vertically - push from top */
    align-items: center;

    overflow: hidden;
    margin-top: 0;

    /* Header clearance and bottom spacing */
    padding-top: 240px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

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

.subpage-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Slightly more visible image */
    transform: scale(1.1);
    animation: zoomEffect 25s infinite alternate ease-in-out;
    /* Smoother animation */
}

/* Vignette - deeper and more cinematic */
.subpage-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 90%);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* align-items: center;  -> REMOVED to fix vertical text cutoff */
    gap: 2rem;
    width: 100%;
}

.subpage-hero h2 {
    /* Vertical Writing for Japanese aesthetic */
    writing-mode: vertical-rl;
    text-orientation: upright;
    align-self: center;
    /* Center the h2 itself instead of the whole flex container across cross-axis */
    font-size: 4rem;
    /* Larger impact */
    font-weight: 500;
    letter-spacing: 0.4em;
    /* Wider spacing for elegance */
    font-family: var(--font-serif);
    margin: 0;
    color: #ffffff;

    /* Sharp, elegant shadow instead of muddy glow */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);

    border-right: 3px solid var(--color-accent);
    /* Thicker accent line */
    padding-right: 2rem;
    padding-top: 1rem;
    margin-right: -1rem;

    display: block;
    line-height: 1;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpHero 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

/* Accent Dot */
.subpage-hero h2::before {
    content: '';
    display: block;
    width: 10px;
    /* Larger dot */
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    right: -6.5px;
    /* Adjusted alignment */
    top: -15px;
    box-shadow: 0 0 10px var(--color-accent);
    /* Glow effect */
}

.subpage-hero .hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    align-self: center;
    /* Center the subtitle within the flex column */
    gap: 1.5rem;

    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpHero 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    /* Staggered */
}

.subpage-hero .hero-subtitle::before,
.subpage-hero .hero-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    /* Longer lines */
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    /* Fading lines */
}

/* Keyframes for Hero Build-up */
@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .subpage-hero {
        height: auto;
        min-height: 560px;
        padding-top: 190px;
        padding-bottom: 60px;
    }

    .subpage-hero h2 {
        font-size: 2.8rem;
        padding-right: 1.5rem;
        padding-top: 1.5rem;
        letter-spacing: 0.3em;
    }

    .subpage-hero .hero-subtitle {
        font-size: 0.8rem;
        gap: 0.8rem;
    }

    .subpage-hero .hero-subtitle::before,
    .subpage-hero .hero-subtitle::after {
        width: 20px;
    }
}

/* =========================================
   Soup Section - Full Bleed Split (Cinematic)
   ========================================= */
.full-bleed-wrapper {
    display: flex;
    width: 100%;
    min-height: 80vh;
    /* Taller, more cinematic */
    background-color: #0b1c2c;
    /* Deep Navy Base */
    overflow: hidden;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.full-bleed-wrapper:hover .split-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 28, 44, 0) 70%, rgba(11, 28, 44, 1) 100%);
    /* Fade into text side */
    z-index: 1;
}

.split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem;
    position: relative;
    z-index: 2;
    background-image: url('../images/bg_texture_navy.png');
    /* Subtle texture */
    background-blend-mode: soft-light;
    background-size: cover;
}

.content-inner {
    max-width: 500px;
    color: #fff;
}

/* Typography Overrides for this section */
.text-left {
    text-align: left !important;
    align-items: flex-start !important;
}

.section-header-styled.text-left {
    align-items: flex-start;
    text-align: left;
}

.section-header-styled.text-left .watermark {
    left: 0;
    transform: translate(0, -50%);
}

.lead-text {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
}

.soup-description p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 2;
}

.text-gold {
    color: #c5a059;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .full-bleed-wrapper {
        flex-direction: column;
    }

    .split-image {
        min-height: 300px;
        flex: none;
        height: 40vh;
    }

    .image-overlay {
        background: linear-gradient(to bottom, rgba(11, 28, 44, 0) 70%, rgba(11, 28, 44, 1) 100%);
    }

    .split-content {
        padding: 4rem 2rem;
    }

    .lead-text {
        font-size: 1.4rem;
    }
}

/* =========================================
   Premium Centered Sections (Soup & Noodles)
   ========================================= */
.soup-centered-section {
    padding: 6rem 0;
    padding-top: 10rem;
    background-color: #0b1c2c;
    /* Deep Navy */
    color: #fff;
    text-align: center;
}

.noodles-centered-section {
    padding: 6rem 0;
    padding-top: 8rem;
    background-color: #1a1a1a;
    /* Dark Grey/Black for contrast */
    color: #fff;
    text-align: center;
    position: relative;
}

.noodles-light-section {
    padding: 6rem 0;
    padding-top: 8rem;
    background-color: #f9f9f9;
    /* Light Grey/White */
    color: #333;
    /* Dark Text */
    text-align: center;
    position: relative;
}

.premium-centered-header {
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.premium-centered-header .watermark {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    opacity: 0.05;
    color: #fff;
    white-space: nowrap;
}

/* Light Mode Overrides for Header */
.noodles-light-section .premium-centered-header .watermark,
.bg-grey .premium-centered-header .watermark {
    color: #000;
    /* Dark watermark on light bg */
    opacity: 0.03;
}

.noodles-light-section .premium-centered-header h2,
.bg-grey .premium-centered-header h2 {
    color: #333;
    text-shadow: none;
    /* Clean look for light mode */
}

.noodles-light-section .premium-centered-header .commitment-intro,
.bg-grey .premium-centered-header .commitment-intro {
    color: #c5a059;
    /* Keep gold but slightly darker if needed, or same */
    font-weight: 600;
}

.premium-centered-header h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2em;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.premium-centered-header .commitment-intro {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #d4af37;
    /* Gold */
    letter-spacing: 0.3em;
    margin-top: 1.5rem;
    display: block;
}

/* Flex Row Layout (Shared) */
.premium-content-layout {
    display: flex;
    flex-direction: row;
    /* Side by Side */
    align-items: center;
    /* Vertically centered */
    justify-content: center;
    max-width: 1100px;
    /* Wider to accommodate both */
    margin: 0 auto;
    gap: 4rem;
    /* Space between Image and Text */
}

/* Image Container */
.premium-image-container {
    flex: 1;
    /* Take up half */
    width: auto;
    max-width: none;
    /* Reset max-width */
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.premium-image-container:hover {
    transform: translateY(-5px);
}

.premium-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Text Container */
.premium-text-container {
    flex: 1;
    /* Take up half */
    max-width: none;
    text-align: left;
    /* Left align for side-by-side */
    padding: 0;
    /* Reset padding */
}

.premium-text-container .lead-text-center {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold line */
    padding-bottom: 2rem;
    display: inline-block;
    text-align: left;
}

.premium-text-container p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 2.2;
    text-align: justify;
    /* Keep justify */
    text-align-last: left;
    /* Reset last line to left */
    margin-bottom: 1.5rem;
}

/* Noodle Types List */
.noodle-types-list {
    margin-top: 2rem;
    text-align: left;
}

.noodle-type-item {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
}

.noodle-type-item h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.noodle-type-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    text-align: left;
    text-align-last: left;
}

/* Noodle Comparison Grid (Twin Columns) */
.noodle-intro-text {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    font-weight: 500;
}

.noodle-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.noodle-card {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.noodle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.noodle-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.noodle-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noodle-card h4 {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    color: #111;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.noodle-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .premium-content-layout {
        flex-direction: column;
        /* Stack on mobile/tablet */
        gap: 3rem;
    }

    .noodle-comparison-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
        gap: 2rem;
    }

    .premium-image-container,
    .premium-text-container {
        flex: none;
        width: 100%;
    }

    .premium-text-container {
        text-align: center;
        padding: 0 1rem;
    }

    .premium-text-container .lead-text-center {
        text-align: center;
    }

    .premium-text-container p {
        text-align-last: center;
    }

    .noodle-types-list {
        text-align: left;
        /* Keep left align specifically for list even on mobile? Or center? Left is better for readability */
        padding: 0 1rem;
    }

    .premium-centered-header h2 {
        font-size: 2.8rem;
    }

    .premium-centered-header .watermark {
        font-size: 5rem;
    }

    .premium-text-container .lead-text-center {
        font-size: 1.5rem;
    }

    .soup-centered-section,
    .noodles-centered-section,
    .noodles-light-section {
        padding: 4rem 1rem;
    }
}

/* Fix for Ingredients List Spacing */
#ingredients-list {
    padding: var(--section-padding);
}

/* =========================================
/* =========================================
/* =========================================
/* =========================================
/* =========================================
   Premium Footer Design (Softened Dark)
   ========================================= */
.site-footer {
    background-color: #1a1a1a;
    /* Soft Charcoal (Not Black) */
    color: #fff;
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    border-top: 1px solid #333;
    /* Subtle division */
}

/* No textures, No gradients - Focus on Typography */

.site-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    /* Large vertical spacing */
}

/* Brand */
.footer-logo {
    margin-bottom: 0;
}

.footer-logo h2 {
    font-size: 3rem;
    /* Very Large */
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: var(--font-serif);
}

.footer-logo p {
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.7);
    /* Slightly brighter against grey */
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Info Group - Pure Text */
.footer-info-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    /* Separate Address and Hours cleanly */
    width: 100%;
}

/* Address & Phone */
.footer-contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-address {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #f0f0f0;
    /* Soft White */
}

/* Phone Number - The Hero Element */
.footer-tel {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

.footer-tel a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.footer-tel a:hover {
    opacity: 0.7;
    border-color: transparent;
}

/* Hours Block - Simple Text */
.footer-hours {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 4rem;
    width: auto;
    display: inline-block;
}

.footer-hours p {
    font-size: 1.2rem;
    /* Easy to read */
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.footer-hours .sub {
    font-size: 1rem;
    color: #ccc;
    /* Slightly dimmed for hierarchy */
    margin-bottom: 0;
}

/* Copyright */
.copyright {
    margin-top: 5rem;
    font-size: 0.85rem;
    color: #666;
    /* Fade out more on grey bg */
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 5rem 1rem 3rem;
    }

    .footer-logo h2 {
        font-size: 2.2rem;
    }

    .footer-tel {
        font-size: 1.8rem;
    }

    .footer-hours {
        padding: 1.5rem 0;
        border-right: none;
        border-left: none;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* =========================================
   Premium Menu Grid Layout
   ========================================= */
.premium-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.premium-menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}

.premium-menu-item.reverse {
    flex-direction: row-reverse;
}

.menu-item-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4 / 3;
    background-color: #1a1a1a;
    position: relative;
    height: 100%;
}

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

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #888;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    min-height: 250px;
}

.bg-navy .image-placeholder {
    background: #112233;
    color: #445566;
}

.menu-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    width: 100%;
}

.menu-item-header h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.bg-grey .menu-item-header h3 {
    color: var(--color-text-main);
}

.menu-leader {
    flex: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
    position: relative;
    top: -6px;
}

.menu-leader.dark {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.menu-price {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
    white-space: nowrap;
}

.menu-item-tags {
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-weight: bold;
    letter-spacing: 0.1em;
}

.tag.popular {
    background: #c5a059;
    color: #fff;
    border: 1px solid #d4af37;
}

.menu-item-details p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.bg-grey .menu-item-details p {
    color: #444;
}

.allergy-warning {
    max-width: 800px;
    margin: 6rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.allergy-warning h4 {
    color: var(--color-accent);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.allergy-warning p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Breakpoint for Menu Grid */
@media (max-width: 900px) {

    .premium-menu-item,
    .premium-menu-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .menu-item-image {
        flex: auto;
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .menu-leader {
        display: none;
    }
}

/* =========================================
   Premium Table (Company Profile)
   ========================================= */
.premium-table-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 3rem 4rem;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table th,
.premium-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eaeaea;
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.premium-table tr:last-child th,
.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table th {
    width: 25%;
    font-family: var(--font-serif);
    color: var(--color-text-main);
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.premium-table td {
    color: #444;
    font-size: 1.05rem;
}

.inline-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #a68444;
}

.text-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--color-accent);
}

@media (max-width: 600px) {
    .premium-table-container {
        padding: 2rem 1.5rem;
    }

    .premium-table th,
    .premium-table td {
        display: block;
        width: 100%;
        padding: 1rem 0;
    }

    .premium-table th {
        border-bottom: none;
        padding-bottom: 0.2rem;
        color: var(--color-accent);
    }
}

/* =========================================
   Recruit Page (Staff Voices & Button)
   ========================================= */
.recruit-feature-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .recruit-feature-box {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.staff-card {
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-accent);
    position: relative;
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #eaeaea;
}



.staff-quote {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
}

.staff-quote::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.btn-premium {
    display: inline-block;
    background: var(--color-accent);
    /* Gold base */
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-premium span {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-premium:hover {
    background: #7a1013;
    /* Darker, richer red on hover instead of black */
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    color: #fff;
}

.btn-premium:hover span {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-card {
        padding: 2rem;
    }
}

/* =========================================
   News Page
   ========================================= */
.premium-news-list {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-news-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
}

.premium-news-item:hover {
    background-color: #fafafa;
    transform: translateX(5px);
}

.premium-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-meta {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-date {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

.news-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    width: fit-content;
}

.news-content {
    flex-grow: 1;
}

.news-title {
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.premium-news-item:hover .news-title {
    color: var(--color-accent);
}

.news-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 2.2;
    margin: 0;
}

@media (max-width: 768px) {
    .premium-news-list {
        padding: 2rem;
    }

    .premium-news-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2.5rem 0;
    }

    .news-meta {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }

    .news-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* =========================================
   Contact Page (Premium Form)
   ========================================= */
.premium-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.required-badge {
    background: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-weight: normal;
    letter-spacing: 0.05em;
}

.premium-input,
.premium-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.premium-textarea {
    resize: vertical;
    min-height: 120px;
}

.premium-input:focus,
.premium-textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
    box-shadow: 0 1px 0 var(--color-accent);
}

.premium-input::placeholder,
.premium-textarea::placeholder {
    color: #bbb;
    font-weight: 300;
}

.form-submit-area {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .premium-form-container {
        padding: 2rem 1.5rem;
    }
}