:root {
    --black: #030303;
    --white: #fff7ee;
    --gold: #e7a43c;
    --gold-dark: #b8791f;
    --ink: #17110c;
    --overlay: rgba(0, 0, 0, 0.58);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--white);
    background: var(--black);
    font-family: var(--sans);
}

a {
    color: inherit;
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 54px);
    background: rgba(3, 3, 3, 0.72);
    backdrop-filter: blur(10px);
}

.brand {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 28px);
}

.nav-links a,
.gold-button {
    border-radius: 999px;
    text-decoration: none;
}

.nav-links a {
    color: var(--white);
    font-size: 0.96rem;
}

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

.nav-toggle {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.page-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: clamp(70px, 14vw, 160px);
    padding: 120px 24px 90px;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.logo-mark {
    width: min(320px, 72vw);
    aspect-ratio: 1;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.78));
}

img.logo-mark {
    height: auto;
}

.logo-mark.small {
    width: min(250px, 60vw);
}

/*
    Kept for compatibility if a future editor changes the logo back to text.
*/
.logo-mark strong,
.logo-mark span {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.logo-mark strong {
    font-size: clamp(2.1rem, 6vw, 4.6rem);
    line-height: 0.85;
    letter-spacing: 0;
}

.logo-mark span {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.logo-mark.small strong {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero-actions {
    width: min(1000px, 100%);
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 18px;
}

.gold-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 22px;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transition: transform 180ms ease, background 180ms ease;
}

.gold-button:hover {
    transform: translateY(-2px);
    background: #f3b34b;
}

.gold-button.large {
    min-width: min(320px, 86vw);
    min-height: 60px;
    font-size: 1.2rem;
}

.home-button {
    position: absolute;
    top: 74px;
    right: 30px;
    z-index: 8;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--gold);
    font-size: 1.6rem;
    text-decoration: none;
}

h1,
h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.6rem, 7vw, 5.1rem);
}

.section-image,
.menu-photo,
.contact-photo {
    background-position: center;
    background-size: cover;
}

.about {
    display: grid;
    grid-template-rows: 42vh 58vh;
    background: var(--black);
}

.about-image {
    background-image:
        linear-gradient(var(--overlay), var(--overlay)),
        url("https://images.unsplash.com/photo-1630409351217-bc4fa6422075?auto=format&fit=crop&w=1800&q=80");
}

.section-copy {
    display: grid;
    place-content: center;
    padding: 32px;
    text-align: center;
}

.section-copy p {
    max-width: 760px;
    margin: 48px auto 0;
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
}

.menu-section,
.contact-section {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
}

.menu-photo {
    display: grid;
    place-items: center;
    background-image:
        linear-gradient(var(--overlay), var(--overlay)),
        url("https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=1500&q=80");
}

.menu-panel,
.contact-panel {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 80px;
    padding: 90px 32px;
    background: var(--black);
    text-align: center;
}

.specials {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 92px 24px;
    background: var(--black);
}

.specials-image {
    position: absolute;
    width: min(33vw, 430px);
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}

.specials-image.left {
    left: -70px;
    top: 86px;
    border-radius: 0 0 50% 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
        url("https://images.unsplash.com/photo-1633945274405-b6c8069047b0?auto=format&fit=crop&w=900&q=80");
}

.specials-image.right {
    right: -48px;
    bottom: 70px;
    border-radius: 50% 0 0 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
        url("https://images.unsplash.com/photo-1565557623262-b51c2513a641?auto=format&fit=crop&w=900&q=80");
}

.specials-content {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    text-align: center;
}

.special-status {
    margin: 34px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(231, 164, 60, 0.55);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.58);
    color: var(--gold);
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 7vw, 78px) clamp(44px, 8vw, 110px);
    margin-top: 56px;
}

.special-grid h2,
.special-grid p {
    font-family: var(--serif);
}

.special-grid p {
    margin: 8px 0 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.contact-panel {
    gap: 46px;
}

.contact-panel address,
.contact-panel p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.contact-panel a {
    text-decoration: none;
}

.contact-photo {
    display: grid;
    place-items: center;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
        url("https://images.unsplash.com/photo-1596797038530-2c107229654b?auto=format&fit=crop&w=1300&q=80");
}

.reviews {
    padding: 110px clamp(18px, 6vw, 90px) 70px;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        url("https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.reviews h1 {
    text-align: center;
    margin-bottom: 28px;
}

.review-status {
    width: min(760px, 100%);
    margin: 0 auto 34px;
    padding: 14px 18px;
    border: 1px solid rgba(231, 164, 60, 0.55);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.58);
    color: var(--gold);
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px clamp(18px, 4vw, 64px);
}

.review-card {
    min-height: 126px;
    padding: 14px 16px;
    border-radius: 6px;
    color: #21313a;
    background: rgba(255, 255, 255, 0.94);
    font-size: 0.75rem;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d5eef1;
}

.review-card h2 {
    color: #176573;
    font-family: var(--sans);
    font-size: 0.98rem;
}

.review-card small {
    color: #6d7f86;
}

.stars {
    margin-top: 4px;
    color: #f6a400;
    letter-spacing: 0.06em;
}

.review-card strong {
    display: block;
    margin-top: 4px;
    color: #46656d;
}

.review-card p {
    margin: 5px 0 0;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .hero-actions,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .menu-photo,
    .contact-photo {
        min-height: 48vh;
    }

    .contact-photo {
        order: -1;
    }

    .specials-image {
        opacity: 0.42;
        width: 44vw;
    }
}

@media (max-width: 680px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        padding: 18px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.94);
    }

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

    .hero-actions,
    .special-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .home-button {
        top: 82px;
        right: 16px;
    }

    .about {
        grid-template-rows: 34vh auto;
    }

    .section-copy {
        min-height: 66vh;
    }

    .specials-image.left {
        left: -100px;
    }

    .specials-image.right {
        right: -110px;
    }
}
