:root {
    --ink: #21231f;
    --muted: #65685e;
    --cream: #f6f3eb;
    --paper: #fffdf8;
    --gold: #b88448;
    --line: #ddd6c7;
    --dark: #202b25
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font: 16px/1.65 'Helvetica Neue', Arial, sans-serif
}

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

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

button {
    font: inherit;
    cursor: pointer
}

.wrap {
    width: min(1180px, calc(100% - 44px));
    margin: auto
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.12;
    letter-spacing: -.045em
}

h1 {
    font-size: clamp(3.7rem, 6vw, 6rem);
    font-weight: 600
}

h2 {
    font-size: clamp(2.5rem, 4.6vw, 5rem);
    font-weight: 600
}

h3 {
    font-size: 1.45rem
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    color: var(--muted);
    max-width: 55ch
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--dark);
    background: var(--dark);
    color: white;
    border-radius: 2px;
    padding: 15px 24px;
    min-height: 52px;
    font-size: .84rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    transition: .25s
}

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

.button.ghost {
    background: transparent;
    color: var(--dark)
}

.button.ghost:hover {
    background: var(--dark);
    color: white
}

.button.light {
    background: var(--paper);
    color: var(--dark);
    border-color: var(--paper)
}

.buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    color: white
}

.site-header.on-light {
    position: relative;
    color: var(--ink);
    background: var(--paper)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 93px;
    gap: 25px;
    border-bottom: 1px solid #ffffff55
}

.on-light .nav {
    border-color: var(--line)
}

.brand {
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: .19em;
    line-height: 1.1
}

.brand small {
    font: 500 .57rem 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: .27em;
    text-transform: uppercase;
    margin-top: 8px
}

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

.nav-links>a:not(.button) {
    font-size: .82rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700
}

.nav-links>a:not(.button):hover {
    color: #d8ae78
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 1.6rem
}

.hero {
    min-height: 740px;
    height: auto;
    position: relative;
    background: #1c2520;
    color: white;
    display: flex;
    align-items: flex-end
}

.hero img.cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
    filter: brightness(.74)
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 20, 14, .85), rgba(8, 20, 14, .24) 66%), linear-gradient(0deg, rgba(8, 20, 14, .46), transparent 55%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 190px 0 105px
}

.hero h1 {
    max-width: 13ch;
    margin: 22px 0 26px
}

.hero .lead {
    color: #eee9df;
    max-width: 50ch
}

.hero .eyebrow {
    color: #e8bf83
}

.scroll-mark {
    position: absolute;
    right: 4vw;
    bottom: 30px;
    z-index: 2;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .69rem;
    writing-mode: vertical-rl
}

.section {
    padding: 110px 0
}

.section-head {
    max-width: 780px;
    margin-bottom: 45px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 7vw, 110px);
    align-items: center
}

.split.reverse .visual {
    order: 2
}

.visual {
    position: relative
}

.visual img {
    height: 610px;
    width: 100%;
    object-fit: cover
}

.copy p {
    color: var(--muted);
    max-width: 57ch
}

.copy h2 {
    margin: 16px 0 25px
}

.stat-line {
    border-top: 1px solid var(--line);
    padding-top: 25px;
    margin-top: 35px;
    font-size: .86rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700
}

.dark-section {
    background: var(--dark);
    color: var(--paper)
}

.dark-section .lead,
.dark-section .copy p {
    color: #d8ded6
}

.image-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    gap: 14px
}

.image-grid img {
    height: 380px;
    width: 100%;
    object-fit: cover
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    margin-top: 70px;
    border-top: 1px solid #ffffff55;
    padding-top: 30px
}

.feature-row article span {
    display: block;
    color: #d3a978;
    font-size: .8rem;
    margin-bottom: 18px
}

.feature-row article p {
    color: #c6ccc5;
    font-size: .94rem
}

.menu-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px
}

.dish {
    background: var(--paper)
}

.dish img {
    width: 100%;
    height: 290px;
    object-fit: cover
}

.dish div {
    padding: 24px
}

.dish p {
    font-size: .91rem;
    color: var(--muted);
    margin: 0
}

.banner {
    min-height: 540px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    background: var(--dark)
}

.banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.43)
}

.banner .wrap {
    position: relative
}

.banner h2 {
    max-width: 700px
}

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

.info-grid article {
    border-top: 1px solid var(--line);
    padding-top: 22px
}

.info-grid p {
    color: var(--muted)
}

.page-title {
    padding: 105px 0 62px;
    background: var(--paper)
}

.page-title h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    max-width: 13ch;
    margin: 14px 0 18px
}

.page-title p {
    max-width: 65ch
}

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

.gallery img {
    height: 350px;
    width: 100%;
    object-fit: cover
}

.gallery figure {
    margin: 0
}

.gallery figure:nth-child(5n+2) {
    grid-row: span 2
}

.gallery figure:nth-child(5n+2) img {
    height: 716px
}

.hours {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0
}

.hours td {
    padding: 14px 0;
    border-bottom: 1px solid var(--line)
}

.hours td:last-child {
    text-align: right
}

.map-link {
    display: block;
    border: 1px solid var(--line);
    padding: 22px;
    margin-top: 24px
}

.map-link:hover {
    border-color: var(--gold)
}

.footer {
    background: #17211c;
    color: #f8f6ef;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px
}

.footer h3 {
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d4a36b
}

.footer p,
.footer a {
    color: #ccd1c8
}

.footer a:hover {
    color: white
}

.footer .brand {
    color: white;
    margin-bottom: 23px
}

.footer-bottom {
    border-top: 1px solid #ffffff38;
    margin-top: 65px;
    padding-top: 22px;
    color: #adb5ac;
    font-size: .79rem;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.footer-bottom a {
    margin-left: 18px
}

.legal {
    max-width: 850px
}

.legal h2 {
    font-size: 2rem;
    margin-top: 36px
}

.legal p,
.legal li {
    color: var(--muted)
}

.notice {
    padding: 18px 22px;
    background: #e9e0d0;
    border-left: 3px solid var(--gold)
}

@media(max-width:850px) {
    .menu-toggle {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 93px;
        background: var(--dark);
        padding: 25px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 19px
    }

    .nav-links.open {
        display: flex
    }

    .on-light .nav-links {
        background: var(--dark);
        color: var(--paper)
    }

    .site-header.on-light .nav-links .button.ghost {
        color: var(--paper);
        border-color: var(--paper)
    }

    .nav-links .button {
        width: max-content
    }

    .split {
        grid-template-columns: 1fr
    }

    .split.reverse .visual {
        order: 0
    }

    .visual img {
        height: 460px
    }

    .feature-row,
    .info-grid {
        grid-template-columns: 1fr 1fr
    }

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

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

    .gallery figure:nth-child(5n+2) {
        grid-row: auto
    }

    .gallery figure:nth-child(5n+2) img {
        height: 350px
    }
}

@media(max-width:600px) {
    .wrap {
        width: min(100% - 34px, 1180px)
    }

    .nav {
        min-height: 76px
    }

    .nav-links {
        top: 76px
    }

    .hero {
        min-height: 680px;
        height: auto
    }

    .hero-content {
        padding: 150px 0 85px
    }

    .hero h1 {
        font-size: clamp(3.25rem, 14vw, 5.2rem)
    }

    .section {
        padding: 75px 0
    }

    .visual img {
        height: 380px
    }

    .image-grid {
        grid-template-columns: 1fr 1fr
    }

    .image-grid img {
        height: 210px
    }

    .image-grid img:first-child {
        grid-column: span 2;
        height: 290px
    }

    .image-grid img:nth-child(2) {
        margin: 0
    }

    .feature-row,
    .info-grid,
    .menu-preview,
    .gallery,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .gallery img,
    .gallery figure:nth-child(5n+2) img {
        height: 330px
    }

    .dish img {
        height: 270px
    }

    .page-title {
        padding: 70px 0 48px
    }

    .footer-bottom {
        flex-direction: column
    }

    .footer-bottom a {
        margin: 0 18px 0 0
    }
}

.brand-emblem {
    width: 205px;
    height: auto;
    margin: 24px 0 10px;
    mix-blend-mode: multiply
}

.legal span {
    font-size: 1rem !important;
    color: var(--muted) !important;
    line-height: 1.7 !important
}

.legal h3 {
    font-size: 1.7rem;
    margin: 30px 0 15px
}

.legal a {
    text-decoration: underline
}

.legal #stacks_out_1 {
    max-width: 850px
}

.hero img.cover {
    object-position: center 45%
}

/* Google review display */
.review-panel {
    margin: 32px 0 28px;
    padding: 26px 28px 28px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, .72);
}

.review-kicker {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.review-loading {
    min-height: 112px;
    color: var(--muted);
    font-size: .95rem;
}

.review-rating {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.review-stars {
    position: relative;
    display: inline-block;
    color: var(--gold);
    font-size: 1.45rem;
    letter-spacing: .12em;
    line-height: 1;
    white-space: nowrap;
}

.review-stars::before {
    content: '★★★★★';
    color: #d8d0c2;
}

.review-stars::after {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--review-fill, 100%);
    overflow: hidden;
    color: var(--gold);
    content: '★★★★★';
    white-space: nowrap;
}

.review-score {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
}

.review-summary {
    margin: 14px 0 20px;
    color: var(--muted);
    font-size: .92rem;
}

.review-summary strong {
    color: var(--ink);
    font-weight: 700;
}

.review-link {
    display: inline-flex;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    color: var(--dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.4;
    text-transform: uppercase;
    transition: border-color .25s, color .25s, transform .25s;
}

.review-link:hover,
.review-link:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.instagram-link {
    margin: 0 0 4px;
}

@media (max-width: 600px) {
    .review-panel {
        padding: 22px 20px 24px;
    }

    .review-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.arrival-info {
    margin: 30px 0 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.arrival-info h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.arrival-info p {
    margin-bottom: 22px;
    color: var(--muted);
}

.arrival-info p:last-child {
    margin-bottom: 0;
}

:root {
    --cream: #e4eee6;
    --paper: #f1f7f1;
    --line: #cbd9ce;
}

.site-header.on-light {
    background: var(--dark);
    color: var(--paper);
}

.site-header.on-light .nav {
    border-color: #ffffff55;
}

.site-header.on-light .nav-links .button.ghost {
    color: var(--paper);
    border-color: var(--paper)
}

.page-title {
    background: #c7d8ca;
}