*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #f5f0e8;
    --parchment: #ece4d4;
    --gold: #b8935a;
    --gold-light: #d4ad76;
    --charcoal: #1a1814;
    --warm-gray: #6b6560;
    --off-black: #0f0e0c;
    --section-pad: clamp(80px, 10vw, 140px);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(184, 147, 90, 0.7);

}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 240, 232, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;   
    height: 40px;
}

.nav-logo>img {
    width:  auto;
    height: 3rem;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: relative;
    z-index: 1;
}

.nav-links a {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: bold;
    text-decoration: none;    
    transition: color 0.3s;
    padding: 2rem 1rem;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-reserve {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--charcoal);
    border: none;
    padding: 12px 24px;
    position: relative;
    z-index: 1;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.nav-reserve:hover {
    background: var(--gold);
}

/* Hero */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 80px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 300;
    line-height: 0.9;
    color: var(--charcoal);
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-tagline {
    margin-top: 36px;
    font-size: 0.85rem;
    color: var(--warm-gray);
    max-width: 340px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

.btn {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary {
    color: var(--cream);
    background: var(--charcoal);
    border: none;
}


.btn:hover {
    background: var(--gold);
}

.btn-ghost {
    color: var(--warm-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    border: 1px solid var(--gold);
}

.btn-ghost:hover {
    color: #fff;

}

.btn-ghost::after {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.btn-ghost:hover::after {
    width: 50px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(26, 24, 20, 0.1) 0%, rgba(26, 24, 20, 0.4) 100%),
        url('https://images.unsplash.com/photo-1729394405518-eaf2a0203aa7?q=80&w=1920') center/cover no-repeat;
    animation: slowZoom 12s ease-out forwards;
    opacity: 0;
    animation: imgReveal 1.2s 0.2s forwards, slowZoom 18s 1.4s ease-out forwards;
}

.hero-year {
    position: absolute;
    bottom: 80px;
    right: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(245, 240, 232, 0.6);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Marquee strip */
.marquee-strip {
    background: var(--charcoal);
    padding: 16px 0;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
}

.marquee-track span {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    flex-shrink: 0;
}

.marquee-track .sep {
    color: var(--warm-gray);
    font-size: 0.5rem;
}

/* About section */
.about {
    padding: var(--section-pad) 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.about-text {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--warm-gray);
    margin-top: 28px;
    max-width: 480px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.stat-item {}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 6px;
}

.about-right {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: url('https://images.unsplash.com/photo-1551218808-94e220e084d2?w=800&q=80') center/cover;
    position: relative;
    z-index: 1;
}

.about-img-accent {
    position: absolute;
    width: 55%;
    aspect-ratio: 1;
    bottom: -48px;
    left: -48px;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=600&q=80') center/cover;
    border: 6px solid var(--cream);
    z-index: 2;
}

.about-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: rotateBadge 20s linear infinite;
}

.about-badge-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--cream);
    font-weight: 300;
    line-height: 1;
    text-align: center;
}

.about-badge-sub {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.45rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
    text-align: center;
}

/* Menu section */
.menu {
    background: var(--charcoal);
    padding: var(--section-pad) 60px;
}

.menu-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}

.menu .section-label {
    color: var(--gold-light);
}

.menu .section-label::before {
    background: var(--gold-light);
}

.menu .section-title {
    color: var(--cream);
}

.menu-tabs {
    display: flex;
    gap: 4px;
}

.tab {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    background: transparent;
    border: 1px solid rgba(107, 101, 96, 0.3);
    padding: 10px 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.tab.active,
.tab:hover {
    color: var(--charcoal);
    background: var(--gold);
    border-color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.dish-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;

}

.dish-card:nth-child(2) {
    aspect-ratio: 3/5;
    margin-top: -60px;
}

.dish-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(.23, 1, .32, 1);
}

.dish-card:hover .dish-bg {
    transform: scale(1.06);
}

.dish-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 14, 12, 0.9) 0%, rgba(15, 14, 12, 0.1) 60%);
}

.dish-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    transform: translateY(8px);
    transition: transform 0.4s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.dish-card:hover .dish-info {
    transform: translateY(0);
}

.dish-cat {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 8px;
}

.dish-desc {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.7;
    transition: opacity 0.4s 0.1s;
    max-width: 260px;
}

.dish-card:hover .dish-desc {
    opacity: 1;
}

.dish-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-top: 14px;
}

/* Experience section */
.experience {
    padding: var(--section-pad) 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: start;
}

.exp-visual {
    position: relative;
}

.exp-img-1 {
    width: 80%;
    aspect-ratio: 3/4;
    background: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?w=800&q=80') center/cover;
}

.exp-img-2 {
    position: absolute;
    width: 55%;
    aspect-ratio: 4/3;
    top: 50%;
    right: 0;
    background: url('https://images.unsplash.com/photo-1424847651672-bf20a4b0982b?w=600&q=80') center/cover;
    border: 6px solid var(--cream);
    box-shadow: -12px 12px 40px rgba(26, 24, 20, 0.15);
}

.exp-quote {
    position: absolute;
    bottom: -40px;
    left: 20px;
    right: 100px;
    background: var(--charcoal);
    padding: 28px 32px;
    z-index: 3;
}

.exp-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
}

.exp-quote cite {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 12px;
    display: block;
    font-style: normal;
}

.exp-content {
    padding-top: 20px;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(107, 101, 96, 0.2);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    padding-top: 2px;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.feature-text {
    font-size: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* Reservation section */
.reservation {
    background: var(--parchment);
    padding: var(--section-pad) 60px;
    position: relative;
    overflow: hidden;
}

.reservation::before {
    content: 'AURUM';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22vw;
    font-weight: 600;
    color: rgba(184, 147, 90, 0.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.reservation-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservation .section-label {
    justify-content: center;
}

.reservation .section-label::before {
    display: none;
}

.reservation .section-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-top: 12px;
}

.reservation p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    margin-top: 20px;
    line-height: 1.9;
}

.res-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 50px;
}

.res-form input,
.res-form select {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--charcoal);
    background: rgba(245, 240, 232, 0.8);
    border: 1px solid rgba(107, 101, 96, 0.2);
    padding: 18px 24px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    appearance: none;
    width: 100%;
}

.res-form input:focus,
.res-form select:focus {
    border-color: var(--gold);
    background: var(--cream);
}

.res-form input::placeholder {
    color: var(--warm-gray);
}

.res-form .full-width {
    grid-column: 1 / -1;
}

.btn-reserve {
    grid-column: 1 / -1;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--charcoal);
    border: none;
    padding: 20px;
    transition: background 0.3s;
    margin-top: 2px;
}

.btn-reserve:hover {
    background: var(--gold);
}

/* Footer */
footer {
    background: var(--off-black);
    padding: 80px 60px 60px;
    color: var(--cream);
    
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.78rem;
    line-height: 1.9;
    color: rgba(245, 240, 232, 0.45);
    max-width: 280px;
}

.footer-col-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-col p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(245, 240, 232, 0.25);
    letter-spacing: 0.05em;
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-socials a {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--gold-light);
}


#disclaimer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--charcoal);    
    color: white;
    z-index: 999;
    padding:0.5rem 1rem;
    font-size: 0.75rem;
}
#disclaimer a{
    text-decoration: none;
    color: var(--gold);
}


/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imgReveal {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ── Hamburger ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 200;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    height: 1px;
    background: var(--charcoal);
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
}

.nav-hamburger span:nth-child(3) {
    width: 60%;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    width: 100%;
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .mobile-reserve {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--charcoal);
    padding: 14px 32px;
    margin-top: 12px;
    font-size: 0.65rem;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
    nav {
        padding: 22px 32px;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .hero-left {
        padding: 140px 32px 60px;
        justify-content: center;
    }

    .hero-right {
        height: 45vh;
        position: relative;
    }

    .hero-right .hero-img {
        position: absolute;
        inset: 0;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 32px 100px;
    }

    .about-right {
        min-height: 400px;
    }

    .about-img-accent {
        left: -20px;
        bottom: -30px;
    }

    .about-badge {
        right: 0;
    }

    .menu {
        padding: 80px 32px;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-bottom: 48px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dish-card:nth-child(2) {
        aspect-ratio: 3/4;
        margin-top: 0;
    }

    section[id="experience"] {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    section[id="experience"]>div {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .exp-visual {
        min-height: 480px;
    }

    .exp-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 24px;
    }

    .reservation {
        padding: 80px 32px;
    }

    .res-form {
        grid-template-columns: 1fr;
    }

    .res-form .full-width {
        grid-column: 1;
    }

    .btn-reserve {
        grid-column: 1;
    }

    footer {
        padding: 60px 32px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .nav-links,
    .nav-reserve {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
    :root {
        --section-pad: 64px;
    }

    nav {
        padding: 18px 20px;
    }

    .hero-left {
        padding: 120px 20px 48px;
    }

    .hero-title {
        font-size: clamp(3rem, 11vw, 4.5rem);
    }

    .hero-tagline {
        font-size: 0.82rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about {
        padding: 64px 20px 80px;
    }

    .about-img-main {
        aspect-ratio: 4/3;
    }

    .about-img-accent {
        width: 45%;
        left: -10px;
        bottom: -24px;
        border-width: 4px;
    }

    .about-badge {
        width: 72px;
        height: 72px;
        right: 4px;
        top: 24px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .menu {
        padding: 64px 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .dish-card {
        aspect-ratio: 4/3 !important;
        margin-top: 0 !important;
    }

    .dish-desc {
        opacity: 1;
    }




    section[id="experience"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
        display: block;
    }

    .exp-img-1 {
        width: 100%;
    }

    .exp-img-2 {
        display: none;
    }

    .exp-quote {
        margin-top: 20px;
        padding: 20px 22px;
    }

    .exp-content {
        padding-top: 80px !important;
    }

    .reservation {
        padding: 64px 20px;
    }

    .reservation .section-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    footer {
        padding: 48px 20px 50px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }
}