/* ========================================
   LION HILL — Bar & Restaurant
   Premium Dark Green + Gold
   ======================================== */

:root {
    --bg: #0b0f0b;
    --bg-alt: #101810;
    --bg-elevated: #151f15;
    --green: #1a2e1a;
    --green-light: #243824;
    --gold: #c8a96e;
    --gold-light: #dcc48f;
    --gold-dim: rgba(200, 169, 110, 0.12);
    --gold-glow: rgba(200, 169, 110, 0.06);
    --white: #f2efe8;
    --white-dim: rgba(242, 239, 232, 0.5);
    --white-muted: rgba(242, 239, 232, 0.25);
    --white-ghost: rgba(242, 239, 232, 0.08);

    --font-serif: 'Instrument Serif', 'Playfair Display', Georgia, serif;
    --font-sans: 'Space Grotesk', -apple-system, sans-serif;

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-dramatic: cubic-bezier(0.77, 0, 0.175, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) transparent;
}
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { }
img { max-width: 100%; display: block; }
button { border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--bg); }

/* ========================================
   Custom Cursor — only on real mouse devices
   ======================================== */
.cursor, .cursor-follower { display: none; }

@media (pointer: fine) and (hover: hover) {
    .cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
        mix-blend-mode: difference;
    }
    .cursor.hover {
        width: 40px;
        height: 40px;
        background: var(--gold-light);
        mix-blend-mode: normal;
        opacity: 0.3;
    }
    .cursor-follower {
        display: block;
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(200, 169, 110, 0.3);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.5s var(--ease), height 0.5s var(--ease), border-color 0.3s;
    }
    .cursor-follower.hover {
        width: 60px;
        height: 60px;
        border-color: rgba(200, 169, 110, 0.1);
    }
}

/* ========================================
   Loader
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.loader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    animation: loaderLine 1.2s var(--ease-out) forwards;
}
.loader-line:last-child { animation-delay: 0.2s; }
@keyframes loaderLine {
    to { transform: scaleX(1); }
}
.loader-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    animation: loaderFade 0.8s 0.4s var(--ease) both;
}
@keyframes loaderFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    mix-blend-mode: difference;
    transition: padding 0.4s var(--ease);
}
.nav.scrolled {
    padding: 16px 40px;
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    color: var(--white);
    font-weight: 400;
}
.nav-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-dim);
    font-weight: 300;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-book {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid var(--white-muted);
    transition: all 0.4s var(--ease);
}
.nav-book:hover {
    background: var(--white);
    color: var(--bg);
}
.nav-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-menu-btn span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}
.hamburger i {
    display: block;
    height: 1px;
    background: var(--white);
    transition: all 0.4s var(--ease-dramatic);
}
.hamburger i:first-child { width: 100%; }
.hamburger i:last-child { width: 60%; margin-left: auto; }
.nav-menu-btn:hover .hamburger i:last-child { width: 100%; }
.nav-menu-btn.active .hamburger i:first-child {
    transform: translateY(3px) rotate(45deg);
}
.nav-menu-btn.active .hamburger i:last-child {
    width: 100%;
    transform: translateY(-3px) rotate(-45deg);
}

/* ========================================
   Full Screen Menu
   ======================================== */
.fullmenu {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.fullmenu.open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}
.fullmenu-bg {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 11, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}
.fullmenu-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 120px 80px;
    gap: 80px;
}
.fullmenu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fullmenu-link {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    display: inline-block;
    transition: color 0.4s, transform 0.4s var(--ease-out);
    transform: translateX(0);
    padding-left: 60px;
}
.fullmenu-link::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}
.fullmenu-link:hover {
    color: var(--gold);
    transform: translateX(20px);
}
.fullmenu-link:hover::before {
    opacity: 1;
}
.fullmenu-info {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.fullmenu-info-block span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.fullmenu-info-block p {
    font-size: 0.9rem;
    color: var(--white-dim);
    font-weight: 300;
    line-height: 1.6;
}
.fullmenu-social {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--white-ghost);
}
.fullmenu-social a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    transition: color 0.3s;
}
.fullmenu-social a:hover { color: var(--gold); }

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-visual {
    position: absolute;
    inset: 0;
}
.hero-media {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(26, 46, 26, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(200, 169, 110, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0d1a0d 30%, #162016 50%, #0d150d 80%, var(--bg) 100%);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,15,11,0.4) 0%, transparent 40%, transparent 60%, rgba(11,15,11,0.9) 100%);
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 2;
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-track span {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 169, 110, 0.25);
    padding: 0 0.15em;
    line-height: 1;
    user-select: none;
}
.marquee-italic {
    font-style: italic !important;
    -webkit-text-stroke-color: rgba(200, 169, 110, 0.15) !important;
}
.marquee-sep {
    font-size: clamp(3rem, 8vw, 6rem) !important;
    -webkit-text-stroke-color: rgba(200, 169, 110, 0.1) !important;
    line-height: 1.8 !important;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Info Blocks — Backdrop blur, floating */
.hero-info-blocks {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 40px 48px;
    gap: 20px;
}
.info-block {
    padding: 24px 28px;
    background: rgba(11, 15, 11, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--white-ghost);
}
.info-block-label {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.info-block p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white-dim);
    line-height: 1.6;
}
.info-block--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-bottom: 60px;
}
.hero-lion {
    width: 80px;
    height: 90px;
    color: var(--gold);
    opacity: 0.7;
    animation: lionFloat 4s ease-in-out infinite;
}
@keyframes lionFloat {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-6px); opacity: 0.9; }
}
.info-block-est {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    opacity: 0.5;
    margin-top: 12px;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* ========================================
   Story Section
   ======================================== */
.story {
    padding: 160px 0;
    position: relative;
}
.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.story-large {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 100px;
}
.story-large em {
    color: var(--gold);
    font-style: italic;
}
.story-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.story-detail span {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.3;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}
.story-detail h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--white);
}
.story-detail p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.7;
}

/* ========================================
   Atmosphere — Horizontal Scroll
   ======================================== */
.atmosphere {
    padding: 100px 0 120px;
    overflow: hidden;
}
.atmosphere-header {
    padding: 0 40px;
    margin-bottom: 50px;
}
.atmosphere-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}
.atmosphere-gallery {
    overflow: hidden;
    position: relative;
}
.gallery-track {
    display: flex;
    gap: 20px;
    padding: 0 40px;
    cursor: grab;
    user-select: none;
    transition: transform 0.1s linear;
}
.gallery-track.dragging { cursor: grabbing; }
.gallery-slide {
    flex-shrink: 0;
    width: 45vw;
    max-width: 600px;
    min-width: 300px;
}
.gallery-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-elevated);
    border: 1px solid var(--white-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.4s;
}
.gallery-img-placeholder span {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white-ghost);
    font-style: italic;
    letter-spacing: 0.05em;
}
.gallery-slide:hover .gallery-img-placeholder {
    border-color: var(--gold-dim);
}
.gallery-caption {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 14px;
    font-weight: 300;
}
.atmosphere-drag-hint {
    text-align: right;
    padding: 20px 40px 0;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--white-muted);
    animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* ========================================
   Menu Section
   ======================================== */
.menu-section {
    padding: 140px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--white-ghost);
    border-bottom: 1px solid var(--white-ghost);
}
.menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}
.menu-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}
.menu-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.menu-title em {
    color: var(--gold);
    font-style: italic;
}
.menu-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.link-underline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
.link-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); }

.menu-list {
    display: flex;
    flex-direction: column;
}
.menu-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--white-ghost);
    transition: padding-left 0.4s var(--ease-out);
}
.menu-item:first-child { border-top: 1px solid var(--white-ghost); }
.menu-item:hover { padding-left: 16px; }
.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}
.menu-item h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
}
.menu-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
}
.menu-item p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--white-muted);
}

/* ========================================
   Events Strip
   ======================================== */
.events-strip {
    padding: 28px 0;
    background: var(--green);
    overflow: hidden;
    border-bottom: 1px solid var(--white-ghost);
}
.events-marquee { overflow: hidden; }
.events-marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.events-marquee-track span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-dim);
    font-weight: 300;
}
.events-marquee-dot {
    color: var(--gold) !important;
    font-size: 0.5rem !important;
    opacity: 0.4;
}

/* ========================================
   Reservation
   ======================================== */
.reservation {
    padding: 140px 0;
}
.reservation-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.reservation h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 32px;
}
.reservation h2 em {
    color: var(--gold);
    font-style: italic;
}
.reservation-phone {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}
.reservation-phone:hover { opacity: 0.7; }
.reservation-contact p {
    font-size: 0.85rem;
    color: var(--white-muted);
    font-weight: 300;
}

.res-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.res-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.res-form input,
.res-form select,
.res-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid var(--white-ghost);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: border-color 0.4s var(--ease);
}
.res-form input::placeholder,
.res-form textarea::placeholder {
    color: var(--white-muted);
}
.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
    border-color: var(--gold);
}
.res-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 7L1 3h8z' fill='%23c8a96e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.res-form select option {
    background: var(--bg);
    color: var(--white);
}
.res-form textarea {
    resize: none;
    min-height: 70px;
}
.res-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
    margin-top: 8px;
}
.res-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.2);
}
.res-submit svg {
    transition: transform 0.3s var(--ease);
}
.res-submit:hover svg { transform: translateX(4px); }

/* ========================================
   Footer
   ======================================== */
.footer {
    border-top: 1px solid var(--white-ghost);
    padding: 60px 0 30px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 50px;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}
.footer-left p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.6;
}
.footer-center {
    display: flex;
    gap: 48px;
}
.footer-col span {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.footer-col p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.6;
}
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-right a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    transition: color 0.3s;
}
.footer-right a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px 0;
    border-top: 1px solid var(--white-ghost);
    display: flex;
    justify-content: space-between;
}
.footer-bottom span,
.footer-bottom a {
    font-size: 0.7rem;
    color: var(--white-muted);
    font-weight: 300;
}
.footer-bottom a:hover { color: var(--gold); }

/* ========================================
   Reveal Animations
   ======================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.story-details [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.story-details [data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.menu-list [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.menu-list [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.menu-list [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.menu-list [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.menu-list [data-reveal]:nth-child(6) { transition-delay: 0.4s; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .menu-inner,
    .reservation-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fullmenu-content {
        flex-direction: column;
        padding: 100px 40px;
        justify-content: center;
        gap: 50px;
    }
    .fullmenu-info {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav-book { display: none; }
    .nav-tagline { display: none; }

    .hero-info-blocks {
        flex-direction: column;
        align-items: center;
        padding: 0 20px 40px;
        gap: 12px;
    }
    .info-block--center { order: -1; padding-bottom: 24px; }
    .info-block--left,
    .info-block--right {
        width: 100%;
        text-align: center;
    }

    .marquee-track span {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .story { padding: 100px 0; }
    .story-inner { padding: 0 20px; }
    .story-large { margin-bottom: 60px; }

    .atmosphere-header { padding: 0 20px; }
    .gallery-slide { width: 75vw; min-width: 260px; }
    .gallery-track { padding: 0 20px; }
    .atmosphere-drag-hint { padding-right: 20px; }

    .menu-section { padding: 100px 0; }
    .menu-inner { padding: 0 20px; }

    .reservation { padding: 100px 0; }
    .reservation-inner { padding: 0 20px; }
    .res-form-row { grid-template-columns: 1fr; }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
    .footer-center { flex-direction: column; gap: 24px; }
    .footer-bottom { padding: 16px 20px 0; }

    .fullmenu-link { font-size: 2rem; padding-left: 40px; }
    .fullmenu-info { flex-direction: column; }
}
