/* =========================================================================
   TABLE OF CONTENTS
   1.  Fonts & Theme Variables
   2.  Reset & Base
   3.  Typography System
   4.  Page Background Helpers
   5.  Navbar (Main)
   6.  Mobile Nav Toggle (Hamburger)
   7.  Menu Navbar (Sticky Sub-Nav)
   8.  Buttons
   9.  Hero Section
   10. Menu Preview Section
   11. Best Sellers Section
   12. Vision Section
   13. Generic Section / Grid / Card Utilities
   14. Menu Section & Food Grid
   15. Newsletter
   16. Contact
   17. Location Page
   18. Footer
   19. Theme Toggle Switch
   20. Light Mode Overrides
   21. Messenger Float & Misc
   22. Terms & Conditions Page
   23. Responsive / Media Queries
   ========================================================================= */


/* =========================================================================
   1. FONTS & THEME VARIABLES
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Base backgrounds */
    --bg: #0c0b0a;
    --bg-elevated: #141210;
    --bg-elevated-2: #1a1714;

    /* Text */
    --text: #f0ebe2;
    --text-muted: #8a8178;
    --text-light: #8a8178;
    /* alias used by terms page */

    /* Accent (red) */
    --accent: #8b1a24;
    --accent-deep: #6a1019;
    --accent-glow: rgba(139, 26, 36, 0.35);

    /* Gold */
    --gold: #b8924a;
    --gold-bright: #d4aa6a;
    --gold-muted: rgba(184, 146, 74, 0.18);

    /* Borders */
    --border-soft: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(184, 146, 74, 0.22);

    /* Shadows */
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.45);
    --glow-gold: 0 8px 32px rgba(184, 146, 74, 0.15);

    /* Misc surfaces used by terms page */
    --card-bg: var(--bg-elevated);
    --hero-fade: rgba(139, 26, 36, 0.10);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.light-mode {
    --bg: #f7f3ec;
    --bg-elevated: #ffffff;
    --bg-elevated-2: #ede8df;
    --text: #1a1512;
    --text-muted: #6b6057;
    --text-light: #6b6057;
    --border-soft: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(184, 146, 74, 0.3);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glow-gold: 0 8px 32px rgba(0, 0, 0, 0.2);
    --card-bg: #ffffff;
    --hero-fade: rgba(196, 30, 58, 0.05);
}


/* =========================================================================
   2. RESET & BASE
   ========================================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================================
   3. TYPOGRAPHY SYSTEM
   ========================================================================= */

/* --- Poppins: UI / body elements --- */
.nav-links a,
.menu-navbar a,
.site-title,
.price,
.food-item .price,
.hero-est,
.location-tag,
.btn,
.location-btn,
.newsletter-form button,
.footer-links a,
.footer-column a,
.form-group label,
.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input,
.jp-name,
.toggle-label {
    font-family: 'Poppins', sans-serif;
}

/* --- Cormorant Garamond: display headings --- */
.hero h2,
.vision-title,
.sub-hero h2,
.menu-header h3,
.location-card h3,
.contact-form-section h2,
.footer-column h3,
.footer-column h4,
.footer-column h5,
.best-sellers-header h2,
.newsletter-content h2,
.section-title {
    font-family: 'Cormorant Garamond', 'Cinzel', serif;
}

/* --- Section title --- */
.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: var(--text);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(to right, var(--accent), var(--gold));
    border-radius: 50px;
}

.section-title .jp-name {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 1rem;
    letter-spacing: 3px;
}

/* --- Misc text utilities --- */
.nav-links a,
.menu-navbar a {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.hero-est,
.location-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
}

.jp-name {
    color: var(--gold-bright);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.description {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 330px;
    margin-top: -8px;
    text-align: center;
}

.price,
.food-item .price {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn,
.location-btn,
.newsletter-form button {
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input {
    font-size: 0.92rem;
}

.newsletter-content h2 {
    font-weight: 400;
    letter-spacing: 1px;
}

/* --- Dividers --- */
.gold-divider {
    width: 80px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-line {
    width: 80px;
    height: 1px;
    margin: 18px auto;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}


/* =========================================================================
   4. PAGE BACKGROUND HELPERS
   ========================================================================= */

.hero-background-wrapper {
    position: absolute;
    inset: 0;
    background: url("images/background Hero.png") center / cover no-repeat;
    background-attachment: scroll;
    z-index: -2;
    pointer-events: none;
}

.full-row {
    display: flex;
    width: 100vw;
    height: 20px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.full-row img {
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: flex 0.4s var(--ease);
}

.full-row img:hover {
    flex: 1.5;
}


/* =========================================================================
   5. NAVBAR (MAIN)
   ========================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(12, 11, 10, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s var(--ease), opacity 0.3s ease;
}

.logo:hover {
    transform: rotate(-4deg) scale(1.06);
    opacity: 0.85;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text);
    opacity: 0.85;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 52px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-bright);
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* --- Search --- */
.nav-search {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-search input {
    width: 170px;
    padding: 7px 14px;
    border-radius: 3px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.82rem;
    outline: none;
    transition: width 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.nav-search input:focus {
    width: 220px;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.nav-search button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    transition: color 0.2s;
}

.nav-search button:hover {
    color: var(--gold);
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-elevated);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    color: var(--text);
}

#suggestions a {
    display: block;
    padding: 12px 15px;
    color: var(--text);
    text-decoration: none;
    transition: all .25s ease;
}

#suggestions a:hover {
    background: rgba(184, 146, 74, 0.12);
    color: var(--gold-bright);
}


/* =========================================================================
   6. MOBILE NAV TOGGLE (HAMBURGER)
   ========================================================================= */

/* Requires this markup inside <nav class="navbar">, right before .nav-right:

   <input type="checkbox" id="navToggle" class="nav-toggle">
   <label for="navToggle" class="hamburger-icon">
       <span></span><span></span><span></span>
   </label>
*/

.nav-toggle {
    display: none;
}

.hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

/* X animation when open */
.nav-toggle:checked+.hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked+.hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked+.hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================================
   7. MENU NAVBAR (STICKY SUB-NAV)
   ========================================================================= */

.menu-navbar {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 998;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 14px 20px;
    background: rgba(12, 11, 10, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
}

.menu-navbar a {
    position: relative;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.menu-navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.menu-navbar a:hover {
    color: var(--gold-bright);
    opacity: 1;
}

.menu-navbar a:hover::after {
    width: 100%;
}


/* =========================================================================
   8. BUTTONS
   ========================================================================= */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 3px;
    border: 1px solid transparent;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.btn:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--border-gold);
}

.btn-outline:hover {
    background: rgba(184, 146, 74, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
    box-shadow: none;
}

.location-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 28px;
    border-radius: 3px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s var(--ease);
}

.location-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
}


/* =========================================================================
   9. HERO SECTION
   ========================================================================= */

.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

/* Vignette overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(12, 11, 10, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero>* {
    position: relative;
    z-index: 2;
}

.hero-logo img {
    width: 320px;
    max-width: 75%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 0.9s var(--ease) forwards;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero span {
    display: block;
    margin: 10px 0 25px;
    color: var(--gold-bright);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================================
   10. MENU PREVIEW SECTION
   ========================================================================= */

.menu-preview {
    position: relative;
    padding: 80px 5% 70px;
    text-align: center;
    background: var(--bg);
}

.menu-preview-header {
    margin-bottom: 12px;
}

.menu-preview-header span {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.menu-preview-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 8px 0 16px;
    color: var(--text);
}

.menu-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), var(--gold));
    margin: 0 auto 40px;
}

.menu-preview-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    overflow: hidden;
}

.menu-category-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    background: var(--bg-elevated);
    overflow: hidden;
    transition: background 0.3s ease;
}

.menu-category-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.menu-category-card.featured::before {
    background: linear-gradient(to right, var(--accent), var(--gold));
}

.menu-category-card:hover {
    background: var(--bg-elevated-2);
}

.menu-category-card:hover::before {
    transform: scaleX(1);
}

.menu-category-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.9);
    transition: transform 0.5s var(--ease), filter 0.3s ease;
}

.menu-category-card:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

.menu-category-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    margin: 14px 0 4px;
    color: var(--text);
}

.menu-category-card.featured h3 {
    color: var(--gold-bright);
}

.menu-category-card p {
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding-bottom: 16px;
    text-transform: uppercase;
}

.menu-preview-btn {
    margin-top: 44px;
}


/* =========================================================================
   11. BEST SELLERS SECTION
   ========================================================================= */

.best-sellers {
    position: relative;
    padding: 80px 5% 90px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}

/* Ambient background glow */
.best-sellers::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 26, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.best-sellers-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.best-sellers-header .line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
}

.best-sellers-header span {
    color: var(--gold);
    font-size: 0.85rem;
}

.best-sellers-header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.best-sellers-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 120px;
}

.best-seller-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 240px;
    padding: 28px 32px;
    background: var(--bg);
    overflow: hidden;
    transition: background 0.3s ease;
}

/* Gold top-line accent on hover */
.best-seller-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.best-seller-card:hover {
    background: var(--bg-elevated-2);
}

.best-seller-card:hover::before {
    opacity: 1;
}

.best-seller-card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    filter: brightness(0.95) saturate(0.9);
    transition: transform 0.4s var(--ease), filter 0.4s ease;
}

.best-seller-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1);
}

.best-seller-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
}

.best-seller-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
}

.best-seller-info .jp-name {
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.best-seller-info .description {
    text-align: left;
    margin: 0;
    font-size: 0.85rem;
    max-width: 280px;
}


/* =========================================================================
   12. VISION SECTION
   ========================================================================= */

.vision-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.vision-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.45) contrast(1.08) saturate(0.9);
    transform: scale(1.03);
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(12, 11, 10, 0.94) 0%,
            rgba(12, 11, 10, 0.80) 45%,
            rgba(12, 11, 10, 0.50) 100%);
    z-index: 1;
}

.vision-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 90px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-content .vision-subtitle {
    display: block;
    color: var(--gold);
    font-size: 1.0rem;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vision-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 84px);
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1;
    margin: 12px 0 28px;
    color: var(--gold-bright);
    text-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    text-transform: uppercase;
}

.vision-content p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 14px;
    max-width: 500px;
}

.vision-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    margin: 28px 0;
    color: var(--gold-bright);
    letter-spacing: 8px;
    opacity: 0.85;
}

.vision-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-top: 8px;
    color: var(--text);
}

.vision-content span {
    font-size: 11px;
    letter-spacing: 5px;
    opacity: 0.5;
    text-transform: uppercase;
    color: var(--text);
}

body.light-mode .vision-title,
body.light-mode .vision-brand {
    color: #a67c38;
}

.vision-content h4 {
    margin-top: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    opacity: 0.65;
    border-left: 1px solid var(--gold);
    padding-left: 16px;
    letter-spacing: 1px;
    color: var(--text);
}

/* --- Vision image stack --- */
.vision-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 520px;
    padding-right: 40px;
}

.vision-images img {
    position: absolute;
    border-radius: 10px;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.9);
    transition: transform 0.5s var(--ease), filter 0.5s ease;
}

.ramen-image {
    width: 520px;
    top: -60px;
    z-index: 1;
    transform: translateX(40px) translateY(-20px) rotate(-4deg);
}

.TENDON-image {
    width: 520px;
    z-index: 2;
    opacity: 0.92;
    transform: translateX(180px) translateY(60px) rotate(6deg);
}

.katsudon-image {
    width: 520px;
    z-index: 3;
    opacity: 0.88;
    transform: translateX(-20px) translateY(110px) rotate(-7deg);
}

.ramen-image:hover {
    transform: translateX(40px) translateY(-34px) scale(1.05) rotate(0deg);
    filter: brightness(1) saturate(1);
}

.TENDON-image:hover {
    transform: translateX(180px) translateY(42px) scale(1.06) rotate(0deg);
    filter: brightness(1) saturate(1);
}

.katsudon-image:hover {
    transform: translateX(-20px) translateY(92px) scale(1.06) rotate(0deg);
    filter: brightness(1) saturate(1);
}

/* ==========================
   VISION SECTION - LIGHT MODE
   ========================== */

body.light-mode .vision-overlay {
    background: linear-gradient(110deg,
            rgba(247, 243, 236, 0.88) 0%,
            rgba(247, 243, 236, 0.75) 45%,
            rgba(247, 243, 236, 0.35) 100%);
}

body.light-mode .vision-content p {
    color: #2b241d;
    opacity: 0.9;
}

body.light-mode .vision-content h3,
body.light-mode .vision-content h4 {
    color: #1a1512;
}

body.light-mode .vision-content span {
    color: #6b6057;
}

body.light-mode .vision-video {
    filter: brightness(0.75) contrast(1.05);
}


/* =========================================================================
   13. GENERIC SECTION / GRID / CARD UTILITIES
   ========================================================================= */

section {
    position: relative;
    z-index: 2;
}

.grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: var(--bg-elevated);
}

.card img {
    width: 100%;
}

.category-card {
    background: rgba(20, 18, 16, 0.75);
    color: var(--text);
    padding: 30px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.gallery-section {
    position: sticky;
    top: 80px;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px;
}


/* =========================================================================
   14. MENU SECTION & FOOD GRID
   ========================================================================= */

.menu-section {
    max-width: 1400px;
    margin: auto;
    padding-top: 180px;
    position: relative;
    z-index: 2;
}

/* --- Menu grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 56px;
    justify-items: center;
    text-align: center;
}

/* --- Food grid --- */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    align-items: stretch;
}

/* --- Menu card --- */
.menu-card {
    position: relative;
    border-radius: 6px;
    padding: 24px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: rgba(139, 26, 36, 0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-gold);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
}

.menu-card:hover img {
    transform: scale(1.04);
}

.menu-info {
    text-align: center;
    padding-top: 12px;
}

.menu-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text);
}

.price {
    display: block;
    margin-top: 16px;
    color: var(--gold-bright);
    font-size: 1.1rem;
}

/* --- Food item --- */
.food-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: transform 0.3s var(--ease);
}

.food-item.hidden {
    display: none;
}

.food-item.highlight {
    transform: scale(1.04);
    box-shadow: 0 0 24px var(--accent-glow);
    border: 1px solid var(--accent);
    border-radius: 6px;
}

.food-item img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 24px;
    transition: transform 0.35s var(--ease);
}

.food-item img:hover {
    transform: scale(1.07);
}

.food-item h3,
.menu-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 14px;
}

.food-item .jp-name {
    display: block;
    text-align: center;
    margin-bottom: 0px;
    min-height: auto;
}

.food-item p {
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
    min-height: 45px;
    line-height: 1.6;
    color: var(--text-muted);
}

.food-item .price {
    margin-top: auto;
    padding-top: 15px;
    font-size: 1.1rem;
    color: var(--gold-bright);
}

/* --- Scroll targets for menu sections --- */
#ramen,
#donburi,
#agemono,
#maki,
#aburi,
#nigiri,
#sashimi {
    scroll-margin-top: 130px;
}


/* =========================================================================
   15. NEWSLETTER
   ========================================================================= */

.newsletter {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: var(--bg-elevated-2);
    border-top: 1px solid var(--border-soft);
}

.newsletter-content {
    text-align: center;
    max-width: 520px;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text);
}

.newsletter-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.newsletter-form input {
    width: 280px;
    height: 46px;
    padding: 0 16px;
    border: 1px solid var(--border-soft);
    border-right: none;
    border-radius: 3px 0 0 3px;
    background: var(--bg-elevated);
    color: var(--text);
    font-size: 0.88rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--gold);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.newsletter-form button {
    height: 46px;
    padding: 0 26px;
    border: none;
    border-radius: 0 3px 3px 0;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-deep);
}


/* =========================================================================
   16. CONTACT
   ========================================================================= */

.contact {
    position: relative;
    z-index: 2;
    color: var(--text);
}

.contact-form-section {
    max-width: 760px;
    margin: 80px auto;
    padding: 52px;
    text-align: center;
    background: var(--bg-elevated);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.form-subtitle {
    margin: 0 0 4px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.contact-form select option {
    background-color: #1a1714;
    color: var(--text);
}

.contact-form .btn {
    margin-top: 10px;
    align-self: center;
    min-width: 180px;
}


/* =========================================================================
   17. LOCATION PAGE
   ========================================================================= */

.location-page {
    padding: 110px 8% 100px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.location-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: center;
}

.location-card {
    padding: 44px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    color: var(--text);
    transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 146, 74, 0.45);
}

.location-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.location-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.location-card p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.map-card iframe {
    width: 100%;
    height: 520px;
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}


/* =========================================================================
   18. FOOTER
   ========================================================================= */

.footer {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-gold);
}

/* Ambient glow */
.footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 26, 36, 0.05), transparent 70%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    padding: 80px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    align-items: start;
}

.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
}

.footer-brand .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    opacity: 0.85;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.footer-column {
    width: 100%;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-column h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.footer-column p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 650px;
    margin: auto;
}

.footer-column ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold-bright);
}

.footer-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;
    border: 1px solid var(--border-gold);
    border-radius: 3px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-btn:hover {
    background: rgba(184, 146, 74, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 8px 0 18px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-soft);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease), border-color 0.3s ease, color 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.contact-info {
    margin: 0;
    text-align: center;
}

.contact-info h5 {
    margin-bottom: 8px;
}

/* --- Footer bottom bar --- */
.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border-top: 1px solid var(--border-soft);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    opacity: 0.6;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-bright);
    opacity: 1;
}

.copyright-notice {
    margin: 10px auto 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
}


/* =========================================================================
   19. THEME TOGGLE SWITCH
   ========================================================================= */

.theme-toggle {
    margin-left: 20px;
}

.theme-toggle input {
    display: none;
}

.toggle-label {
    position: relative;
    width: 68px;
    height: 36px;
    border-radius: 50px;
    background: #1f1f1f;
    border: 2px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    display: block;
}

/* Slider */
.toggle-ball {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4c35a;
    transition: .35s ease;
    z-index: 2;
}

/* Both icons */
.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 3;
}

/* Left icon */
.moon {
    left: 9px;
    color: #ffd166;
}

/* Right icon */
.sun {
    right: 9px;
    color: #ffb300;
}

#themeSwitch:checked+.toggle-label {
    background: #ececec;
}

#themeSwitch:checked+.toggle-label .toggle-ball {
    left: 35px;
    background: #fff;
}

#themeSwitch:checked+.toggle-label .moon {
    color: #666;
}

#themeSwitch:checked+.toggle-label .sun {
    color: #f5a000;
}


/* =========================================================================
   20. LIGHT MODE OVERRIDES
   ========================================================================= */

body.light-mode .navbar,
body.light-mode .menu-navbar {
    background: rgba(247, 243, 236, 0.96);
    border-bottom-color: rgba(184, 146, 74, 0.2);
}

body.light-mode .nav-links a,
body.light-mode .menu-navbar a {
    color: var(--text);
}

body.light-mode .hamburger-icon span {
    background: var(--accent);
}

body.light-mode .nav-search input {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .nav-search input:focus {
    border-color: var(--gold);
}

body.light-mode .toggle-label {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .menu-preview-grid {
    background: rgba(0, 0, 0, 0.06);
}

body.light-mode .best-sellers-grid {
    background: rgba(0, 0, 0, 0.04);
}

body.light-mode .newsletter-form input {
    background: var(--bg-elevated);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text);
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .form-group input:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.04);
}

body.light-mode .contact-form select option {
    background-color: #ffffff;
    color: var(--text);
}

body.light-mode .footer {
    border-top-color: rgba(184, 146, 74, 0.18);
}

body.light-mode .social-icons a {
    color: var(--text-muted);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

body.light-mode .page-overlay {
    background: linear-gradient(to bottom,
            rgba(247, 243, 236, 0) 0%,
            rgba(247, 243, 236, 0.15) 30%,
            rgba(247, 243, 236, 0.5) 70%,
            rgba(247, 243, 236, 0.85) 100%);
}


/* =========================================================================
   21. MESSENGER FLOAT & MISC
   ========================================================================= */

.nav-message-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid rgba(212, 170, 106, .5);
    border-radius: 999px;
    background: rgba(212, 170, 106, .08);
    backdrop-filter: blur(10px);
    color: var(--gold-bright);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.nav-message-btn:hover {
    background: rgba(212, 170, 106, .15);
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .25),
        0 0 20px rgba(212, 170, 106, .25);
}

.nav-message-btn i {
    font-size: 1.1rem;
}


/* =========================================================================
   22. TERMS & CONDITIONS PAGE
   ========================================================================= */

.terms-page {
    padding: 140px 8% 100px;
    background: linear-gradient(to bottom,
            var(--hero-fade),
            var(--bg) 18%,
            var(--bg));
}

.terms-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.terms-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(196, 30, 58, .08);
    color: #c41e3a;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.terms-header h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    color: var(--text);
    margin-bottom: 18px;
}

.terms-header p {
    max-width: 720px;
    margin: auto;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.last-updated {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: .9rem;
}

.last-updated i {
    color: #c41e3a;
}

.terms-container {
    max-width: 1000px;
    margin: auto;
}

.terms-card {
    background: var(--card-bg);
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.terms-section {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    padding: 38px 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-number {
    font-size: 2rem;
    font-weight: 800;
    color: #c41e3a;
    opacity: .9;
}

.terms-content h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 14px;
}

.terms-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

.terms-content ul {
    margin-left: 20px;
}

.terms-content li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

.terms-content strong {
    color: var(--text);
}

.contact-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-list i {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(196, 30, 58, .08);
    color: #c41e3a;
    flex-shrink: 0;
}

.terms-footer {
    margin-top: 100px;
    padding: 60px 8%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.footer-content {
    max-width: 700px;
    margin: auto;
}

.footer-content img {
    width: 80px;
    margin-bottom: 20px;
}

.footer-content h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.footer-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.copyright {
    font-size: .9rem;
    color: var(--text-light);
}

.nav-links a.active {
    color: #c41e3a;
}

.nav-links a.active::after {
    width: 100%;
}


/* =========================================================================
   23. RESPONSIVE / MEDIA QUERIES
   ========================================================================= */

@media (max-width: 1200px) {

    .menu-grid,
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .best-sellers-grid {
        grid-template-columns: 1fr;
    }

    .vision-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vision-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .vision-images {
        margin-top: 50px;
        height: auto;
        width: 100%;
        max-width: 560px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 4vw;
        padding: 0 16px;
    }

    .vision-images img {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0;
        transform: none;
        flex: 1 1 0;
        width: auto;
        max-width: 180px;
        aspect-ratio: 1 / 1;
        height: auto;
        object-fit: cover;
        opacity: 1;
        z-index: auto;
        border-radius: 12px;
        
    }

    .ramen-image,
    .TENDON-image,
    .katsudon-image {
        top: auto;
        opacity: 1;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .map-card iframe {
        height: 380px;
    }
}

/* --- Mobile navbar layout & hamburger menu activation --- */
@media (max-width: 860px) {

    .navbar {
        padding: 0 16px;
        height: 68px;
    }

    .site-title {
        display: none;
    }

    .nav-left {
        min-width: auto;
    }

    .hamburger-icon {
        display: flex;
    }

    /* Reorder so hamburger sits at the far right */
    .navbar {
        justify-content: space-between;
    }

    .nav-right {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(12, 11, 10, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-gold);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s var(--ease), opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-toggle:checked~.nav-right {
        max-height: 80vh;
        opacity: 1;
        overflow-y: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-soft);
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 0.9rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-message-btn {
        justify-content: center;
        margin: 20px auto;
        width: calc(100% - 40px);
    }

    .theme-toggle {
        display: flex;
        justify-content: center;
        margin: 0 auto 24px;
    }

    body.light-mode .nav-right {
        background: rgba(247, 243, 236, 0.98);
    }
}

@media (max-width: 768px) {

    .menu-navbar {
        flex-wrap: wrap;
        gap: 10px;
        top: 68px;
    }

    .menu-grid,
    .grid,
    .menu-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.9rem;
    }

    .menu-header h3 {
        font-size: 1.4rem;
    }

    .best-seller-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
    }

    .best-seller-info {
        align-items: center;
        text-align: center;
    }

    .best-seller-info .description {
        text-align: center;
        margin: 0 auto;
    }

    .footer-container {
        padding: 60px 20px 44px;
    }

    .footer-column ul {
        flex-direction: column;
        gap: 14px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        height: auto;
        padding: 140px 20px 80px;
    }

    .vision-content {
        padding: 30px 20px;
    }

    .categories,
    .best-sellers {
        padding: 64px 4%;
    }
}

@media (max-width: 600px) {
    .newsletter-content h2 {
        font-size: 1.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 340px;
        border-right: 1px solid var(--border-soft);
        border-bottom: none;
        border-radius: 3px 3px 0 0;
    }

    .newsletter-form button {
        width: 100%;
        max-width: 340px;
        border-radius: 0 0 3px 3px;
    }

    .location-page {
        padding: 80px 5% 60px;
    }

    .location-card {
        padding: 28px;
    }

    .location-card h3 {
        font-size: 1.5rem;
    }

    .map-card iframe {
        height: 300px;
    }

    .menu-preview-grid {
        grid-template-columns: 1fr;
    }

    .menu-preview-header h2 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 32px 24px;
        margin: 60px 16px;
    }
}

/* --- Small phones (iPhone SE, older Android, etc.) --- */
@media (max-width: 420px) {

    .navbar {
        padding: 0 12px;
    }

    .logo {
        width: 56px;
        height: 56px;
    }

    .hero {
        padding: 120px 16px 60px;
    }

    .hero-logo img {
        width: 240px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .vision-brand {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .vision-content h4 {
        font-size: 24px;
    }

    .vision-images {
        gap: 8px;
        padding: 0 10px;
    }

    .food-item img {
        width: 220px;
        height: 220px;
    }

    .menu-card img {
        height: 200px;
    }

    .terms-section {
        padding: 24px 20px;
    }

    .terms-tag {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
}