:root {
    --green-900: #243c2b;
    --green-700: #3f6b4a;
    --green-100: #edf5ea;
    --wood: #9a6a3a;
    --wood-light: #d7b98a;
    --cream: #fbf6eb;
    --beige: #efe2ce;
    --white: #fffdf8;
    --text: #2f332c;
    --muted: #6d7468;
    --shadow: 0 18px 45px rgba(49, 67, 45, 0.13);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(215, 185, 138, 0.23), transparent 34rem),
        linear-gradient(180deg, var(--cream) 0%, #fff 45%, var(--cream) 100%);
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid rgba(63, 107, 74, 0.12);
    backdrop-filter: blur(16px);
}

.navbar {
    width: min(1180px, calc(100% - 36px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--green-900);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(154, 106, 58, 0.24);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
    color: var(--green-900);
    background: var(--green-100);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 10px 22px rgba(63, 107, 74, 0.18);
}

.nav-cta:hover,
.btn:hover,
.btn-map:hover {
    transform: translateY(-2px);
}

.hero {
    width: min(1180px, calc(100% - 36px));
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    padding: 72px 0 84px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: clamp(32px, 6vw, 72px);
}

.hero-content {
    max-width: 650px;
}

.eyebrow,
.section-kicker,
.menu-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--wood);
    background: rgba(215, 185, 138, 0.2);
    border: 1px solid rgba(154, 106, 58, 0.16);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow,
.section-kicker {
    padding: 8px 12px;
}

.hero h1,
.about h2,
.menu-section h2,
.contact h2 {
    font-family: 'Playfair Display', serif;
    color: var(--green-900);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    margin-top: 22px;
    font-size: clamp(2.55rem, 6vw, 5.45rem);
}

.hero p {
    max-width: 600px;
    margin-top: 22px;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-primary {
    color: var(--white);
    background: var(--green-700);
    box-shadow: 0 16px 28px rgba(63, 107, 74, 0.22);
}

.btn-secondary {
    color: var(--green-900);
    background: var(--white);
    border: 1px solid rgba(63, 107, 74, 0.16);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-highlights span,
.about-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-900);
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(63, 107, 74, 0.12);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-highlights i,
.about-list i,
.contact-info i {
    color: var(--green-700);
}

.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 22px -18px -18px 32px;
    z-index: -1;
    border-radius: var(--radius);
    background: var(--beige);
}

.hero-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: min(290px, calc(100% - 36px));
    padding: 16px 18px;
    color: var(--green-900);
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(63, 107, 74, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(47, 51, 44, 0.14);
}

.hero-note strong,
.hero-note span {
    display: block;
}

.hero-note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: clamp(72px, 9vw, 112px) 0;
}

.about {
    background: var(--white);
    border-block: 1px solid rgba(63, 107, 74, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
    margin-top: 24px;
}

.about h2,
.menu-section h2,
.contact h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-text p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.02rem;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.menu-section {
    background:
        linear-gradient(180deg, rgba(237, 245, 234, 0.76), rgba(251, 246, 235, 0.8)),
        var(--cream);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-heading p {
    max-width: 420px;
    color: var(--muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.menu-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(63, 107, 74, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(49, 67, 45, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.menu-card img {
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.menu-card-body {
    padding: 18px;
}

.menu-tag {
    padding: 5px 10px;
    font-size: 0.72rem;
}

.menu-card h3 {
    margin-top: 12px;
    color: var(--green-900);
    font-size: 1.18rem;
}

.menu-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.94rem;
}

.contact {
    background: var(--white);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: 30px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(36, 60, 43, 0.92), rgba(63, 107, 74, 0.88)),
        url('Images/banner.jpg') center/cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card .section-kicker {
    color: #f6e8cf;
    background: rgba(255, 253, 248, 0.12);
    border-color: rgba(255, 253, 248, 0.18);
}

.contact h2 {
    color: var(--white);
}

.contact-intro,
.contact-info p {
    color: rgba(255, 253, 248, 0.82);
}

.contact-intro {
    margin-top: 16px;
}

.contact-info {
    display: grid;
    gap: 14px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    margin-top: 6px;
    color: #f6e8cf;
}

.btn-map {
    width: fit-content;
    min-height: 48px;
    margin-top: 8px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    color: var(--green-900);
    background: var(--cream);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
    transition: transform 180ms ease, background 180ms ease;
}

.btn-map i {
    margin: 0 8px 0 0;
    color: var(--green-700);
}

.btn-map:hover {
    background: #fff;
}

footer {
    background: var(--green-900);
    color: rgba(255, 253, 248, 0.76);
}

.footer-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.92rem;
}

.footer-inner strong {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

@media (max-width: 980px) {
    .hero,
    .about-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 54px;
    }

    .hero-media {
        max-width: 680px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 14px;
    }
}

@media (max-width: 720px) {
    .container,
    .hero,
    .navbar,
    .footer-inner {
        width: min(100% - 28px, 1120px);
    }

    .navbar {
        min-height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .brand {
        flex: 1 1 100%;
        justify-content: center;
    }

    .nav-links {
        flex: 1;
        justify-content: center;
        order: 3;
        width: 100%;
    }

    .nav-links a {
        padding: 8px 10px;
        font-size: 0.88rem;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 42px 0 62px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-media::before {
        inset: 14px -8px -10px 18px;
    }

    .hero-note {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 26px 18px;
    }

    .footer-inner {
        display: block;
        text-align: center;
    }

    .footer-inner p {
        margin-top: 8px;
    }
}
