@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold: #c9a96a;
    --gold-light: #e8c98a;
    --gold-dim: rgba(201,169,106,0.15);
    --black: #080808;
    --dark: #0e0e0e;
    --panel: #111111;
    --border: rgba(201,169,106,0.18);
    --text: #faf8f4;
    --muted: rgba(250,248,244,0.88);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===================== NAV ===================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 52px;
    transition: background 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(8,8,8,0.96);
    padding: 12px 52px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.logo img {
    height: 44px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links.open {}

.nav-close {
    display: none;
}

.nav-mobile-phone {
    display: none;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250,248,244,0.98);
    transition: color 0.25s;
    cursor: pointer;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.nav-links a:hover { color: var(--gold); }

.nav-phone {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.nav-phone a { color: var(--gold); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.55) 0%,
        rgba(8,8,8,0.35) 35%,
        rgba(8,8,8,0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: heroFade 1.6s ease both;
}

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

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text);
    line-height: 1.0;
    margin-bottom: 18px;
    opacity: 0;
    animation: heroFade 1.4s 0.5s ease forwards;
    text-shadow: 0 2px 40px rgba(0,0,0,0.7), 0 1px 8px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250,248,244,0.95);
    margin-bottom: 44px;
    opacity: 0;
    animation: heroFade 1.4s 0.7s ease forwards;
    text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
    opacity: 0;
    animation: heroFade 1.4s 0.3s ease forwards;
    text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    opacity: 0;
    animation: heroFade 1.4s 0.9s ease forwards;
}

.btn-gold {
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    background: transparent;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-ghost {
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid rgba(240,236,228,0.3);
    color: rgba(250,248,244,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    background: transparent;
}

.btn-ghost:hover {
    border-color: rgba(250,248,244,0.85);
    color: var(--text);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: heroFade 1.4s 1.4s ease forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.scroll-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===================== INTRO ===================== */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.intro-image {
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.intro-image:hover img { transform: scale(1.04); }

.intro-text {
    background: var(--panel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
}

.section-tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 36px;
}

.gold-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}

/* ===================== SIGNATURE DISHES ===================== */
.dishes {
    padding: 110px 52px;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--text);
    letter-spacing: 1px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.dish-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.dish-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dish-card:hover img { transform: scale(1.08); }

.dish-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 28px;
    transition: background 0.4s;
}

.dish-card:hover .dish-overlay {
    background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 55%);
}

.dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 4px;
}

.dish-desc {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--muted);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.35s ease;
}

.dish-card:hover .dish-desc {
    opacity: 1;
    transform: translateY(0);
}

.dish-price {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ===================== GALLERY STRIP ===================== */
.gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    height: 680px;
}

.gallery-strip .g-main {
    grid-row: 1 / 3;
    overflow: hidden;
}

.gallery-strip .g-cell {
    overflow: hidden;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-strip .g-main img,
.gallery-strip .g-cell img {
    transition: transform 0.7s ease;
}

.gallery-strip .g-main:hover img,
.gallery-strip .g-cell:hover img {
    transform: scale(1.05);
}

.g-mobile-only { display: none; }

/* ===================== MENUS ===================== */
.menus-section {
    padding: 110px 52px;
    background: var(--panel);
}

.menus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.menu-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.menu-card-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s ease;
    display: block;
}

.menu-card:hover .menu-card-img { transform: scale(1.04); }

.menu-card-footer {
    padding: 24px 28px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.menu-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
}

.menu-card-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.menu-expand-btn {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 8px 18px;
    cursor: pointer;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s, color 0.3s;
}

.menu-expand-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox-inner {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    width: 100%;
}

.lightbox-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 85vh;
}

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
}

.lightbox-close:hover { color: var(--gold); }

/* ===================== STORY ===================== */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
}

.story-text {
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    border-right: 1px solid var(--border);
}

.story-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 18px;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================== HIGHLIGHTS ===================== */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.highlight-item {
    padding: 56px 48px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.highlight-item:last-child { border-right: none; }

.highlight-icon {
    font-size: 28px;
    margin-bottom: 18px;
}

.highlight-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===================== RESERVATION ===================== */
.reservation {
    padding: 110px 52px;
    background: var(--panel);
    text-align: center;
}

.reservation h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 18px;
}

.reservation p {
    font-size: 14px;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.reservation-form-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.res-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.res-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.req { color: var(--gold); }

.res-error {
    font-size: 13px;
    color: #e07070;
    letter-spacing: 0.5px;
}

.reserve-success {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.reserve-success-inner {
    text-align: center;
    border: 1px solid var(--border);
    padding: 52px 60px;
    max-width: 520px;
}

.reserve-check {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.reserve-success-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.reserve-success-inner p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-field input, .form-field select {
    background: var(--dark);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 13px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
}

.form-field input:focus, .form-field select:focus {
    border-color: var(--gold);
}

.form-field select option { background: var(--dark); }

/* ===================== CONTACT ===================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.contact-map {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.88);
    opacity: 0.7;
}

.contact-info {
    background: var(--panel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 70px;
    border-left: 1px solid var(--border);
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 40px;
}

.contact-row {
    margin-bottom: 28px;
}

.contact-row .label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-row p, .contact-row a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    transition: color 0.2s;
}

.contact-row a:hover { color: var(--gold); }

/* ===================== FOOTER ===================== */
footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 44px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img { height: 34px; opacity: 0.9; }

.footer-copy {
    font-size: 11px;
    color: rgba(250,248,244,0.72);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(250,248,244,0.75);
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links a:hover { color: var(--gold); }

/* ===================== MENU PANEL ===================== */
.menu-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
}

.menu-panel-overlay.active { display: block; }

.side-panel {
    position: fixed;
    top: 0;
    right: -520px;
    width: 480px;
    max-width: 100vw;
    height: 100vh;
    background: var(--panel);
    z-index: 10001;
    overflow-y: auto;
    transition: right 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid var(--border);
}

.side-panel.active { right: 0; }

.panel-header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--panel);
    z-index: 1;
}

.panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
}

.panel-close {
    font-size: 22px;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.panel-close:hover { color: var(--gold); }

.panel-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.panel-tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.panel-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.panel-body { padding: 32px 40px; }

.menu-category {
    margin-bottom: 36px;
}

.menu-cat-name {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.menu-item:last-child { border-bottom: none; }

.item-name {
    font-size: 15px;
    color: var(--text);
}

.item-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

.item-price {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 24px;
}

/* MOBILE NAV */
@media (max-width: 900px) {
    .nav {
        padding: 16px 22px;
        background: rgba(8,8,8,0.85);
        backdrop-filter: blur(10px);
    }
    .nav.scrolled {
        padding: 12px 22px;
        background: rgba(8,8,8,0.96);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 19998;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 22px; right: 26px;
        font-size: 32px;
        color: var(--gold);
        cursor: pointer;
        line-height: 1;
    }

    .nav-links a { font-size: 13px; letter-spacing: 3px; text-shadow: none; }

    .nav-mobile-phone {
        display: block !important;
        color: var(--gold) !important;
        font-size: 14px !important;
        letter-spacing: 2px !important;
        margin-top: 8px;
    }

    .nav-phone { display: none; }

    .hamburger { display: flex; position: fixed; top: 20px; right: 22px; z-index: 19999; }

    .hero-scroll-hint { bottom: 108px; }

    .intro { grid-template-columns: 1fr; }
    .intro-image { aspect-ratio: 4/3; }
    .intro-text { padding: 52px 28px; }

    .dishes { padding: 70px 16px; }
    .dishes-grid { grid-template-columns: 1fr; gap: 3px; }
    .dish-card { aspect-ratio: 4/3; }

    .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
    .gallery-strip .g-main { grid-row: auto; }
    .gallery-strip img { height: 200px; }
    .g-mobile-only { display: block; }

    .menus-section { padding: 70px 22px; }
    .menus-grid { grid-template-columns: 1fr; }

    .story { grid-template-columns: 1fr; }
    .story-image { aspect-ratio: 4/3; }
    .story-text { padding: 52px 28px; }

    .highlights { grid-template-columns: 1fr; }
    .highlight-item { border-right: none; border-bottom: 1px solid var(--border); }
    .highlight-item:last-child { border-bottom: none; }

    .reservation { padding: 70px 22px; }
    .res-row { grid-template-columns: 1fr; }

    .contact-section { grid-template-columns: 1fr; }
    .contact-map { height: 300px; }
    .contact-info { padding: 52px 28px; border-left: none; border-top: 1px solid var(--border); }

    footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 22px; }
    .footer-links { justify-content: center; }

    .side-panel { width: 100%; right: -100%; }
    .panel-body { padding: 24px 22px; }
    .panel-header { padding: 26px 22px 20px; }
}

.hero-video,
.optimized-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    background: #080808;
}

@media (max-width: 900px) {
    .hero {
        min-height: 100svh;
    }

    .hero-video,
    .optimized-video {
        transform: translateZ(0);
        will-change: transform;
    }

    .nav,
    .nav.scrolled {
        backdrop-filter: none;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(8,8,8,0.62) 0%,
            rgba(8,8,8,0.42) 35%,
            rgba(8,8,8,0.78) 100%
        );
    }

    .hero h1,
    .hero-sub,
    .hero-eyebrow {
        text-shadow: 0 2px 22px rgba(0,0,0,0.85);
    }

    .hero-content,
    .hero h1,
    .hero-sub,
    .hero-eyebrow,
    .hero-actions,
    .hero-scroll-hint {
        animation-duration: 0.8s;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: clamp(52px, 16vw, 76px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold,
    .btn-ghost {
        width: min(100%, 280px);
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-video,
    .optimized-video {
        display: none;
    }

    .hero-content,
    .hero h1,
    .hero-sub,
    .hero-eyebrow,
    .hero-actions,
    .hero-scroll-hint,
    .scroll-line {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .dish-card img,
    .gallery-strip img,
    .menu-card-img,
    .intro-image img,
    .btn-gold,
    .btn-ghost,
    .nav,
    .hamburger span,
    .side-panel {
        transition: none;
    }
}