:root {
    --ink: #15221c;
    --leaf: #31543f;
    --leaf-deep: #20392b;
    --tomato: #c64b38;
    --mustard: #e2ad3f;
    --cream: #fbf7ef;
    --paper: #fffdf8;
    --mist: #eef2ea;
    --text: #26332b;
    --muted: #637064;
    --line: rgba(21, 34, 28, 0.14);
    --shadow: 0 24px 54px rgba(30, 42, 34, 0.16);
    --wrap: min(1180px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: "Source Sans 3", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

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

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

p,
ul,
ol {
    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: 99;
    background: #fff;
    padding: 10px 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 247, 239, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 82px;
}

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

.brand-logo,
.custom-logo {
    flex: 0 0 92px;
    display: block;
    width: 92px;
    height: 48px;
    max-width: 92px;
    max-height: 48px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.brand-copy strong {
    font-family: "Fraunces", serif;
    font-size: 1.12rem;
    line-height: 1;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.88rem;
}

.site-nav {
    justify-self: center;
}

.site-nav-list {
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-weight: 700;
}

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

.header-cta,
.button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 6px;
    background: var(--tomato);
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.header-cta:hover,
.button:hover,
.wp-block-button__link:hover {
    background: #a93e2e;
}

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

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    max-height: 860px;
    display: grid;
    align-items: end;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(12, 24, 17, 0.18) 0%, rgba(12, 24, 17, 0.62) 52%, rgba(12, 24, 17, 0.86) 100%),
        url("https://www.lucacafe.com.au/web/image/website.s_quadrant_default_image_2") center/cover no-repeat;
}

.hero .wrap {
    padding: 88px 0 72px;
}

.hero h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-family: "Fraunces", serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
}

.hero p {
    max-width: 620px;
    font-size: 1.28rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.button-secondary .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.section {
    padding: 86px 0;
}

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

.section-green {
    background: var(--leaf-deep);
    color: #fff;
}

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

.eyebrow {
    margin-bottom: 10px;
    color: var(--tomato);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-green .eyebrow {
    color: var(--mustard);
}

h1,
h2,
h3 {
    color: inherit;
}

h2 {
    margin: 0 0 16px;
    font-family: "Fraunces", serif;
    font-size: clamp(2.35rem, 4.5vw, 4.8rem);
    line-height: 0.98;
}

h3 {
    margin: 0 0 8px;
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    line-height: 1.08;
}

.grid-2,
.grid-3 {
    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));
}

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

.feature,
.menu-card,
.contact-panel {
    padding: 26px;
}

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

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

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

.media-frame {
    overflow: hidden;
    min-height: 420px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.price {
    color: var(--tomato);
    font-weight: 800;
}

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

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

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

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

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

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    padding: 54px 0 26px;
}

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

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

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

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

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

.page-title-band {
    padding: 86px 0 42px;
    background: var(--cream);
}

.page-title-band h1 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: 0.94;
}

@media (max-width: 920px) {
    .nav-shell {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 0;
    }

    .site-nav {
        justify-self: start;
    }

    .site-nav-list {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .header-cta {
        justify-self: start;
    }

    .hero {
        min-height: 720px;
    }

    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

    body {
        font-size: 17px;
    }

    .hero .wrap {
        padding: 72px 0 52px;
    }

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

    .section {
        padding: 68px 0;
    }

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