:root {
    --rail: 248px;
    --ink: #1b1713;
    --charcoal: #211915;
    --clay: #b7472f;
    --clay-dark: #8f3424;
    --olive: #66724c;
    --sage: #e5eadb;
    --sand: #f5ead9;
    --paper: #fffbf4;
    --muted: #77695d;
    --line: rgba(27, 23, 19, 0.12);
    --soft: 0 22px 70px rgba(36, 26, 19, 0.12);
    --wrap: min(1120px, calc(100vw - 56px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.66;
}

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

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

p,
ul,
ol,
figure {
    margin-top: 0;
}

.wrap {
    width: var(--wrap);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 100;
    background: #fff;
    padding: 10px 14px;
}

.site-header {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 40;
    width: var(--rail);
    overflow: hidden auto;
    background: rgba(255, 251, 244, 0.92);
    border-right: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.admin-bar .site-header {
    top: 32px;
}

.site-main,
.site-footer {
    margin-left: var(--rail);
}

.nav-shell {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 30px;
    padding: 28px 24px 108px;
    width: auto;
    max-width: 100%;
}

.brand {
    display: grid;
    gap: 14px;
}

.brand-logo,
.custom-logo {
    width: 78px;
    height: 58px;
    max-width: 78px;
    max-height: 58px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 4px;
}

.brand-copy strong {
    max-width: 172px;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 1.38rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.brand-copy span,
.eyebrow {
    color: var(--clay);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.site-nav-list {
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav-list a {
    display: block;
    padding: 9px 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-nav-list a:hover,
.current-menu-item a {
    color: var(--ink);
}

.header-cta {
    position: absolute;
    right: 24px;
    bottom: 28px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: auto;
    max-width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
}

.header-cta:hover {
    background: var(--clay-dark);
}

.button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--clay);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
}

.button:hover,
.wp-block-button__link:hover {
    background: var(--clay-dark);
}

.button-secondary,
.button-secondary .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--sand);
    color: var(--ink);
}

.site-main > * {
    margin-block-start: 0;
}

.hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 76px 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(183, 71, 47, 0.16), transparent 30%),
        linear-gradient(135deg, var(--paper), var(--sand));
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 42px;
    align-items: center;
}

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

.hero h1 {
    margin: 0 0 22px;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: clamp(3.55rem, 7.6vw, 7.6rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.hero p {
    max-width: 580px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions,
.wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-collage {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    grid-template-rows: 270px 270px;
    gap: 16px;
}

.hero-collage img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--soft);
}

.hero-collage img:first-child {
    grid-row: span 2;
}

.hero-collage img:nth-child(2) {
    border-top-right-radius: 110px;
}

.hero-collage img:nth-child(3) {
    border-bottom-right-radius: 110px;
}

.section {
    padding: 92px 0;
}

.section-alt {
    background: var(--sand);
}

.section-dark {
    background: var(--charcoal);
    color: #fff;
}

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

.section-dark .eyebrow {
    color: #f0b99d;
}

h1,
h2,
h3 {
    color: inherit;
}

h2 {
    margin: 0 0 18px;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: clamp(2.45rem, 4.5vw, 4.8rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h3 {
    margin: 0 0 8px;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.12;
}

.grid-2,
.grid-3,
.gallery-grid,
.offer-strip {
    display: grid;
    gap: 24px;
}

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

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

.offer-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    counter-reset: offer;
}

.offer-card {
    counter-increment: offer;
    position: relative;
    min-height: 260px;
    padding: 68px 26px 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: var(--soft);
}

.offer-card::before {
    content: counter(offer, decimal-leading-zero);
    position: absolute;
    top: 24px;
    left: 26px;
    color: var(--clay);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.feature,
.contact-panel,
.hours-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--soft);
}

.section-dark .feature {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

.feature p,
.contact-panel p,
.hours-card p,
.section-head p {
    color: var(--muted);
}

.section-dark .feature p,
.section-dark .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.media-frame,
.gallery-tile {
    overflow: hidden;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--soft);
}

.media-frame {
    min-height: 460px;
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.menu-list {
    display: grid;
    gap: 12px;
}

.menu-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.menu-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.price {
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.split-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.split-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.gallery-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.gallery-tile {
    min-height: 310px;
}

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

.contact-grid {
    align-items: stretch;
}

.contact-panel a {
    color: var(--clay-dark);
    font-weight: 800;
}

.map-frame {
    width: 100%;
    min-height: 430px;
    border: 0;
    border-radius: 32px;
    box-shadow: var(--soft);
}

.site-footer {
    background: var(--charcoal);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    gap: 28px;
    padding: 56px 0 30px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo {
    width: 90px;
    max-height: 70px;
    object-fit: contain;
}

.site-footer p,
.footer-meta {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.site-footer a {
    color: #fff;
    font-weight: 800;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

.page-title-band {
    padding: 96px 0 68px;
    background:
        radial-gradient(circle at 76% 18%, rgba(183, 71, 47, 0.13), transparent 30%),
        var(--sand);
}

.page-title-band h1 {
    max-width: 930px;
    margin: 0;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: clamp(3.35rem, 6.7vw, 6.7rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.06em;
}

@media (max-width: 1080px) {
    :root {
        --rail: 0px;
    }

    .site-header {
        position: sticky;
        width: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .admin-bar .site-header {
        top: 32px;
    }

    .site-main,
    .site-footer {
        margin-left: 0;
    }

    .nav-shell {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 16px;
        padding: 16px 0;
        width: var(--wrap);
        margin: 0 auto;
    }

    .brand {
        grid-template-columns: 72px 1fr;
        align-items: center;
    }

    .brand-copy strong {
        font-size: 1.45rem;
    }

    .site-nav {
        overflow-x: auto;
        padding-top: 0;
        border-top: 0;
    }

    .site-nav-list {
        display: flex;
        gap: 16px;
    }

    .site-nav-list a {
        white-space: nowrap;
    }

    .header-cta {
        position: static;
        margin-top: 0;
        width: auto;
        align-self: auto;
        justify-self: start;
    }

    .hero-grid,
    .grid-2,
    .grid-3,
    .offer-strip,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: calc(100vw - 28px);
    }

    body {
        font-size: 16px;
    }

    .hero {
        min-height: 0;
        padding: 52px 0 64px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 18vw, 5.2rem);
    }

    .hero-collage,
    .menu-card {
        grid-template-columns: 1fr;
    }

    .hero-collage {
        grid-template-rows: repeat(3, 220px);
    }

    .hero-collage img:first-child {
        grid-row: auto;
    }

    .section {
        padding: 66px 0;
    }

    .price {
        text-align: left;
    }

    .footer-meta {
        flex-direction: column;
    }
}
