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

:root {
    --bg: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text: #f0ece6;
    --text-muted: #8a8580;
    --accent: #c8a97e;
    --accent-hover: #d4b88e;
    --border: rgba(255,255,255,0.08);
    --radius: 16px;
    --radius-sm: 12px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --gap: 8px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ===== PAGE TRANSITIONS ===== */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.page-transition.done {
    opacity: 0;
}

/* ===== REVEAL TEXT ===== */
.reveal-text span {
    display: inline-block;
    animation: revealUp 0.6s var(--ease) both;
    opacity: 0;
}

@keyframes revealUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE LAYOUT (Bento Grid) ===== */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    gap: var(--gap);
    padding: var(--gap);
    overflow: hidden;
}

/* Left Panel */
.left-panel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.left-panel-img {
    position: absolute;
    inset: 0;
}

.left-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation — contained dark bar */
.nav {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.7rem 0.8rem 0.7rem 1rem;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}

.nav-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-burger span {
    display: block;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.4s var(--ease), opacity 0.3s;
    width: 100%;
}

.nav-burger.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}
.nav-burger.active span:nth-child(2) {
    opacity: 0;
}
.nav-burger.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--text);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    margin-left: 0.3rem;
}

.nav-link {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

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

.nav-btn {
    margin-left: 0.3rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
}

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

/* Hero Title */
.hero-title {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 10;
}

.hero-title h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Social Icons */
.social-icons {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.social-icons a {
    color: var(--text-muted);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    color: var(--text);
}

/* Right Panel */
.right-panel {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: var(--gap);
    min-height: 0;
}

/* ===== BENTO CARDS ===== */
.bento-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    transition: transform 0.5s var(--ease);
    min-height: 0;
}

.bento-card:hover {
    /* JS handles tilt transform */
}

.bento-card--img {
    background: var(--bg-card);
}

.bento-card--img {
    min-height: 0;
}

.bento-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease), opacity 0.6s;
}

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

.bento-card-label {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.bento-card:hover .bento-card-label {
    background: rgba(0,0,0,0.7);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

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

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-anim="fade-up"] {
    transform: translateY(30px);
}

[data-anim="fade"] {
    transform: none;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SUBPAGE LAYOUT ===== */
.subpage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    gap: var(--gap);
    padding: var(--gap);
    overflow: hidden;
}

/* Subpage Left Panel (image + title) */
.sub-left {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.sub-left-img {
    position: absolute;
    inset: 0;
}

.sub-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-left-title {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 10;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

/* Subpage Right Panel */
.sub-right {
    overflow-y: auto;
    max-height: 100vh;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.sub-right::-webkit-scrollbar {
    width: 4px;
}

.sub-right::-webkit-scrollbar-track {
    background: transparent;
}

.sub-right::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* ===== MENU PAGE ===== */
.menu-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 50;
}

.menu-tab {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    color: var(--text-muted);
}

.menu-tab:hover,
.menu-tab.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200,169,126,0.08);
}

.menu-category {
    padding: 2rem 2rem 3rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu-category-title::before,
.menu-category-title::after {
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0;
    transition: padding-left 0.3s var(--ease);
}

.menu-item {
    transition: padding-left 0.3s var(--ease), background 0.3s;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.menu-item:hover {
    padding-left: 0.8rem;
    background: rgba(255,255,255,0.02);
}

.menu-item:hover .menu-item-name {
    color: var(--accent);
    transition: color 0.3s;
}

.menu-item-thumb {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.menu-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.menu-item-top {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.menu-item-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    min-width: 20px;
    margin-bottom: 3px;
}

.menu-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== ABOUT PAGE — Bento Grid ===== */
.about-bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr auto 1fr auto;
    gap: var(--gap);
    padding: var(--gap);
    min-height: 100%;
}

/* Row 1: Heading card */
.ab-heading {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-card-heading {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

.about-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Row 1: Woman image */
.ab-woman {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 0;
}

.ab-woman img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Shared image nav button */
.img-nav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: background 0.3s;
    z-index: 5;
}

.img-nav:hover {
    background: rgba(0,0,0,0.7);
}

/* Row 2: Rating cards — span full width */
.ab-rating {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.ab-rating:nth-of-type(3) { /* 1st rating */ }
.ab-rating:nth-of-type(4) { /* 2nd rating */ }
.ab-rating:nth-of-type(5) { /* 3rd rating */ }

/* Make ratings span the 3-column sub-grid across full width */
.about-bento {
    grid-template-columns: 1.3fr 1fr;
}

/* Override: ratings row uses 3 columns in a sub-area */
.ab-rating:nth-of-type(3) { grid-column: 1 / 2; }
.ab-rating:nth-of-type(4) { grid-column: 2 / 3; }

/* We need 3 rating cols — restructure to explicit grid-template-areas */
.about-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr auto 1fr auto;
    grid-template-areas:
        "heading heading woman"
        "r1 r2 r3"
        "chef chef story"
        "footer footer footer";
    gap: var(--gap);
    padding: var(--gap);
    min-height: 100%;
}

.ab-heading { grid-area: heading; }
.ab-woman   { grid-area: woman; }
.ab-rating:nth-of-type(3) { grid-area: r1; }
.ab-rating:nth-of-type(4) { grid-area: r2; }
.ab-rating:nth-of-type(5) { grid-area: r3; }
.ab-chef    { grid-area: chef; }
.ab-story   { grid-area: story; }
.ab-footer  { grid-area: footer; }

.rating-stars {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.rating-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rating-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Row 3: Chef image */
.ab-chef {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 0;
}

.ab-chef img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Row 3: Story card */
.ab-story {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.about-story-label::before,
.about-story-label::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-story-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
}

/* About Footer */
.ab-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 0;
}

.ab-footer a {
    transition: color 0.3s;
}

.ab-footer a:hover {
    color: var(--text);
}

.about-footer-dot {
    width: 3px;
    height: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.5;
}

/* ===== RESERVATION PAGE ===== */
.res-right-inner {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.res-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.res-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}

.res-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.res-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color 0.3s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.08);
}

.form-group.focused label {
    color: var(--accent);
    transition: color 0.3s;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8580' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(200, 169, 126, 0.2);
}

/* Reservation Info */
.res-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.res-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.res-info-item:last-child {
    margin-bottom: 0;
}

.res-info-item svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.res-info-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.res-info-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.15rem;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.6s var(--ease) both;
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE — TABLET (<=1024px) ===== */
@media (max-width: 1024px) {
    /* Homepage: stack vertically, scrollable */
    .page-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        overflow: visible;
    }

    .left-panel {
        min-height: 65vh;
    }

    .right-panel {
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr;
        min-height: 200px;
    }

    .bento-card--img img {
        position: relative;
    }

    .bento-card {
        min-height: 180px;
    }

    /* Subpages: stack vertically, scrollable */
    .subpage-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: auto;
        overflow: visible;
    }

    .sub-left {
        min-height: 50vh;
    }

    .sub-right {
        max-height: none;
        overflow-y: visible;
    }
}

/* ===== RESPONSIVE — MOBILE (<=768px) ===== */
@media (max-width: 768px) {
    :root {
        --gap: 6px;
        --radius: 14px;
    }

    /* Nav: hide text links, keep burger + logo + book btn */
    .nav-links {
        display: none;
    }

    .nav {
        top: 0.8rem;
        left: 0.8rem;
        gap: 0.8rem;
        padding: 0.6rem 0.7rem 0.6rem 0.8rem;
    }

    .nav-logo {
        font-size: 0.95rem;
    }

    .nav-btn {
        font-size: 0.6rem;
        padding: 0.45rem 0.8rem;
    }

    /* Homepage */
    .page-layout {
        grid-template-rows: auto auto;
    }

    .left-panel {
        min-height: 55vh;
    }

    .right-panel {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .bento-card {
        min-height: 160px;
    }

    .hero-title {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .hero-title h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .social-icons {
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .bento-card-label {
        bottom: 0.8rem;
        right: 0.8rem;
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }

    /* Subpages */
    .sub-left {
        min-height: 40vh;
    }

    .sub-left-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        bottom: 1.5rem;
        left: 1.5rem;
    }

    /* Menu */
    .menu-tabs {
        padding: 1rem;
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .menu-tab {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }

    .menu-category {
        padding: 1.2rem 1rem 2rem;
    }

    .menu-category-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .menu-category-title::before,
    .menu-category-title::after {
        width: 22px;
        height: 22px;
    }

    .menu-item {
        gap: 0.8rem;
    }

    .menu-item-thumb {
        width: 55px;
        height: 40px;
        border-radius: 6px;
    }

    .menu-item-name {
        font-size: 0.7rem;
    }

    .menu-item-price {
        font-size: 0.75rem;
    }

    .menu-item-desc {
        font-size: 0.7rem;
    }

    /* About */
    .about-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "heading heading"
            "woman woman"
            "r1 r2"
            "r3 r3"
            "chef chef"
            "story story"
            "footer footer";
        grid-template-rows: auto 200px auto auto 200px auto auto;
    }

    .ab-heading {
        padding: 1.5rem;
    }

    .about-card-heading {
        font-size: 1.3rem;
    }

    .about-card-text {
        font-size: 0.78rem;
        padding-top: 1rem;
    }

    .ab-woman,
    .ab-chef {
        min-height: 200px;
    }

    .ab-woman img,
    .ab-chef img {
        position: absolute;
    }

    .ab-story {
        padding: 1.2rem;
    }

    .about-story-text {
        font-size: 0.8rem;
    }

    /* Reservation */
    .res-right-inner {
        padding: 1.5rem;
    }

    .res-title {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .res-info {
        padding: 1.2rem;
    }

    /* Mobile menu */
    .mobile-menu-link {
        font-size: 2rem;
    }
}

/* ===== RESPONSIVE — SMALL MOBILE (<=480px) ===== */
@media (max-width: 480px) {
    :root {
        --gap: 4px;
        --radius: 10px;
    }

    .nav {
        top: 0.5rem;
        left: 0.5rem;
        gap: 0.6rem;
        padding: 0.5rem 0.6rem;
    }

    .nav-logo {
        font-size: 0.85rem;
    }

    .left-panel {
        min-height: 50vh;
    }

    .hero-title {
        bottom: 1rem;
        left: 1rem;
    }

    .hero-title h1 {
        font-size: clamp(2rem, 14vw, 3rem);
    }

    .social-icons {
        bottom: 0.8rem;
        right: 0.8rem;
        gap: 0.5rem;
    }

    .sub-left {
        min-height: 35vh;
    }

    .sub-left-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
        bottom: 1rem;
        left: 1rem;
    }

    .about-bento {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "woman"
            "r1"
            "r2"
            "r3"
            "chef"
            "story"
            "footer";
        grid-template-rows: auto 180px auto auto auto 180px auto auto;
    }

    .bento-card {
        min-height: 140px;
    }

    .mobile-menu-link {
        font-size: 1.6rem;
    }

    .menu-item-thumb {
        width: 45px;
        height: 35px;
    }

    .menu-item-name {
        font-size: 0.65rem;
    }
}
