:root {
    --ink: #0b0907;
    --charcoal: #15110e;
    --espresso: #211812;
    --gold: #caa45a;
    --soft-gold: #e3c982;
    --linen: #f5efe3;
    --warm: #cbbba2;
    --muted: #8f8372;
    --line: rgba(202, 164, 90, 0.24);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--linen);
    font-family: var(--sans);
    line-height: 1.7;
}

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

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

p {
    color: rgba(245, 239, 227, 0.76);
    margin: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 0.98;
    margin: 0;
}

h1 {
    font-size: clamp(3.8rem, 9vw, 8.4rem);
}

h2 {
    font-size: clamp(2.4rem, 5vw, 5.1rem);
}

h3 {
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.site-header {
    align-items: center;
    background: linear-gradient(180deg, rgba(11, 9, 7, 0.82), rgba(11, 9, 7, 0.36));
    display: grid;
    gap: 24px;
    grid-template-columns: auto 1fr auto;
    left: 0;
    padding: 22px clamp(18px, 4vw, 54px);
    position: fixed;
    right: 0;
    top: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    z-index: 20;
}

.site-header.scrolled {
    background: rgba(11, 9, 7, 0.94);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
    padding-bottom: 16px;
    padding-top: 16px;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 13px;
}

.brand-mark {
    align-items: center;
    aspect-ratio: 1;
    border: 1px solid var(--gold);
    color: var(--soft-gold);
    display: inline-flex;
    font-family: var(--serif);
    font-size: 1.08rem;
    justify-content: center;
    letter-spacing: 0;
    width: 44px;
}

.brand strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
}

.brand small {
    color: var(--warm);
    display: block;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: clamp(14px, 2.4vw, 32px);
    justify-content: center;
}

.site-nav a {
    color: rgba(245, 239, 227, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    position: relative;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-nav a::after {
    background: var(--gold);
    bottom: -8px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--linen);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.nav-reserve {
    display: none;
}

.nav-toggle {
    background: transparent;
    border: 1px solid var(--line);
    display: none;
    height: 42px;
    padding: 10px;
    width: 46px;
}

.nav-toggle span {
    background: var(--linen);
    display: block;
    height: 1px;
    margin: 6px 0;
}

.button {
    align-items: center;
    background: var(--gold);
    color: #111;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 50px;
    padding: 0 24px;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

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

.button-small {
    min-height: 42px;
    padding: 0 18px;
    white-space: nowrap;
}

.button-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--linen);
}

.button-ghost:hover {
    background: rgba(245, 239, 227, 0.08);
}

.hero {
    align-items: end;
    display: grid;
    min-height: 96vh;
    overflow: hidden;
    padding: 152px clamp(20px, 6vw, 88px) 70px;
    position: relative;
}

.hero::before {
    background: linear-gradient(90deg, rgba(11, 9, 7, 0.88), rgba(11, 9, 7, 0.56) 46%, rgba(11, 9, 7, 0.22)), linear-gradient(0deg, rgba(11, 9, 7, 0.9), rgba(11, 9, 7, 0) 42%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transform: scale(1.02);
    width: 100%;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--soft-gold);
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero p {
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
    margin: 24px 0 32px;
    max-width: 650px;
}

.hero-actions,
.split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-meta {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 58px;
    padding-top: 24px;
}

.hero-meta strong {
    color: var(--linen);
    display: block;
    font-family: var(--serif);
    font-size: 1.45rem;
}

.section {
    padding: clamp(74px, 9vw, 130px) clamp(20px, 6vw, 88px);
}

.section-alt {
    background: #120f0c;
}

.section-head {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
    margin-bottom: 44px;
}

.section-head p {
    align-self: end;
}

.split {
    align-items: center;
    display: grid;
    gap: clamp(34px, 6vw, 78px);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split.reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split.reverse .split-media {
    order: 2;
}

.split-copy p {
    margin: 20px 0 28px;
}

.image-frame {
    background: var(--espresso);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.image-frame img {
    aspect-ratio: 4 / 5;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    width: 100%;
}

.image-frame.wide img {
    aspect-ratio: 16 / 9;
}

.image-frame:hover img,
.gallery-item:hover img,
.menu-card:hover img {
    transform: scale(1.06);
}

.cards {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.review-card,
.contact-card,
.legal-card {
    background: rgba(245, 239, 227, 0.045);
    border: 1px solid var(--line);
    padding: 30px;
}

.feature-card span,
.menu-card span {
    color: var(--soft-gold);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.feature-card h3,
.review-card h3,
.contact-card h3 {
    margin-bottom: 14px;
}

.banner {
    align-items: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: grid;
    min-height: 54vh;
    padding: clamp(78px, 10vw, 140px) clamp(20px, 6vw, 88px);
    position: relative;
}

.banner::before {
    background: rgba(11, 9, 7, 0.6);
    content: "";
    inset: 0;
    position: absolute;
}

.banner-content {
    max-width: 760px;
    position: relative;
}

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

.menu-card {
    background: #17120e;
    border: 1px solid var(--line);
    overflow: hidden;
}

.menu-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.65s ease;
    width: 100%;
}

.menu-card-content {
    padding: 26px;
}

.dish-list {
    color: rgba(245, 239, 227, 0.76);
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.dish-list li {
    border-top: 1px solid rgba(245, 239, 227, 0.1);
    padding: 12px 0;
}

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

.gallery-item {
    background: var(--espresso);
    min-height: 260px;
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.reviews {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 0.8fr 1.2fr;
}

.contact-card a {
    color: var(--soft-gold);
    display: inline-block;
    margin-top: 8px;
}

.map {
    border: 0;
    height: 100%;
    min-height: 450px;
    width: 100%;
}

.legal-content {
    background: #120f0c;
    padding-top: 150px;
}

.legal-card {
    margin: 0 auto;
    max-width: 920px;
}

.legal-card h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    margin-bottom: 28px;
}

.legal-card h2 {
    font-size: 2rem;
    margin: 36px 0 14px;
}

.legal-card ul {
    color: rgba(245, 239, 227, 0.76);
}

.site-footer {
    background: #080705;
    border-top: 1px solid var(--line);
    padding: 54px clamp(20px, 6vw, 88px) 24px;
}

.footer-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
}

.footer-grid h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.footer-grid a {
    color: rgba(245, 239, 227, 0.76);
    display: block;
    margin: 8px 0;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 239, 227, 0.1);
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 44px;
    padding-top: 22px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1020px) {
    .site-header {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .site-header > .button {
        display: none;
    }

    .site-nav {
        background: rgba(11, 9, 7, 0.98);
        border-top: 1px solid var(--line);
        display: none;
        grid-column: 1 / -1;
        padding: 22px 0 8px;
        width: 100%;
    }

    .site-nav.open {
        display: grid;
        gap: 18px;
        justify-content: start;
    }

    .nav-reserve {
        border: 1px solid var(--gold);
        color: var(--soft-gold) !important;
        display: inline-flex;
        justify-content: center;
        max-width: 220px;
        padding: 10px 14px;
    }

    .nav-reserve::after {
        display: none;
    }

    .section-head,
    .split,
    .split.reverse,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split.reverse .split-media {
        order: 0;
    }

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

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

@media (max-width: 680px) {
    h1 {
        font-size: clamp(3.2rem, 16vw, 4.7rem);
    }

    .site-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 92vh;
        padding: 128px 18px 42px;
    }

    .hero-meta,
    .cards,
    .menu-grid,
    .reviews,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .banner {
        background-attachment: scroll;
        padding-left: 18px;
        padding-right: 18px;
    }

    .button {
        width: 100%;
    }
}
