/* =========================================================
   PECKSWEBSOLUTIONS
   MODERN CAFE MASTER TEMPLATE
   ========================================================= */


:root {
    --bg: #0d0f0f;
    --surface: #151817;
    --surface-light: #1d211f;
    --surface-hover: #232825;
    --ivory: #f1ede5;
    --muted: #9b9f99;
    --sage: #a8b8a0;
    --copper: #c9895b;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.20);
    --shell: 1280px;
}


/* =========================================================
   RESET
   ========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    background: var(--bg);
    color: var(--ivory);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}


    body.nav-open {
        overflow: hidden;
    }


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


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


button {
    font: inherit;
    color: inherit;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.shell {
    width: min( calc(100% - 48px), var(--shell) );
    margin-inline: auto;
}


.section-number,
.eyebrow {
    margin: 0;
    color: var(--sage);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


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


em {
    color: var(--sage);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 0;
    height: 2px;
    background: var(--copper);
}


/* =========================================================
   ANNOUNCEMENT
   ========================================================= */

.announcement-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}


.announcement-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 34px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}


.announcement-separator {
    color: var(--copper);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 15, 15, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}


    .site-header.is-scrolled {
        background: rgba(13, 15, 15, 0.96);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }


.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    min-height: 84px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: flex;
    flex-direction: column;
}


.brand-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 0.95;
}


.brand-subtitle {
    margin-top: 5px;
    color: var(--sage);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
}


    .desktop-nav a {
        color: var(--muted);
        font-size: 12px;
        font-weight: 600;
        transition: color 0.2s ease;
    }


        .desktop-nav a:hover {
            color: var(--ivory);
        }


.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease;
}


    .header-cta:hover {
        background: var(--surface-light);
        border-color: var(--sage);
    }


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}


    .mobile-menu-button span {
        display: block;
        width: 22px;
        height: 1px;
        margin: 6px auto;
        background: var(--ivory);
        transition: transform 0.2s ease;
    }


    .mobile-menu-button.is-active
    span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }


    .mobile-menu-button.is-active
    span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }


.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 80px 0 100px;
}


.hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}


.hero-copy-column {
    max-width: 590px;
}


    .hero-copy-column .eyebrow {
        margin-bottom: 25px;
    }


.hero h1 {
    margin: 0 0 28px;
    font-size: clamp( 58px, 6.3vw, 96px );
    line-height: 0.92;
    letter-spacing: -0.065em;
    font-weight: 500;
}


    .hero h1 em {
        display: block;
        font-size: 1.08em;
    }


.hero-description {
    max-width: 500px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}


.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 50px;
    padding: 13px 21px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}


    .button:hover {
        transform: translateY(-2px);
    }


.button-primary {
    background: var(--ivory);
    color: var(--bg);
}


    .button-primary:hover {
        background: var(--sage);
    }


.button-light {
    background: var(--ivory);
    color: var(--bg);
}


.button-link {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line-strong);
    color: var(--muted);
    font-size: 12px;
}


    .button-link:hover {
        color: var(--ivory);
    }


/* =========================================================
   HERO META
   ========================================================= */

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 62px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}


.meta-label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.17em;
}


.hero-meta p {
    margin: 0;
    font-size: 12px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
}


.hero-image {
    overflow: hidden;
    height: 670px;
    border-radius: 24px;
    background: var(--surface);
}


    .hero-image img {
        height: 100%;
        object-fit: cover;
        filter: saturate(0.82) contrast(1.02);
        transition: transform 0.7s ease;
    }


    .hero-image:hover img {
        transform: scale(1.025);
    }


.hero-floating-card {
    position: absolute;
    left: -40px;
    bottom: 35px;
    width: 210px;
    padding: 23px;
    background: rgba(21, 24, 23, 0.92);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}


    .hero-floating-card span {
        display: block;
        margin-bottom: 22px;
        color: var(--copper);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.18em;
    }


    .hero-floating-card strong {
        display: block;
        margin-bottom: 18px;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.05;
    }


    .hero-floating-card small {
        color: var(--muted);
    }


/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.18em;
    white-space: nowrap;
    animation: marqueeMove 24s linear infinite;
}


    .marquee-track span:nth-child(even) {
        color: var(--copper);
    }


@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
    padding: 130px 0;
}


.intro-grid {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 80px;
}


    .intro-grid h2,
    .section-header h2,
    .story-content h2,
    .gallery-heading h2,
    .visit-main h2,
    .contact-grid h2 {
        margin: 0 0 30px;
        max-width: 900px;
        font-size: clamp( 48px, 5vw, 76px );
        line-height: 0.96;
        letter-spacing: -0.055em;
        font-weight: 500;
    }


    .intro-grid > div > p {
        max-width: 620px;
        margin: 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   MENU
   ========================================================= */

.menu-section {
    padding: 120px 0;
    background: var(--surface);
}


.section-header {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}


    .section-header
    .section-number {
        margin-bottom: 25px;
    }


    .section-header > p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   MENU TABS
   ========================================================= */

.menu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 55px;
}


.menu-tab {
    padding: 11px 18px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}


    .menu-tab:hover {
        transform: translateY(-2px);
        color: var(--ivory);
        border-color: var(--line-strong);
    }


    .menu-tab.is-active {
        background: var(--ivory);
        border-color: var(--ivory);
        color: var(--bg);
    }


/* =========================================================
   MENU LAYOUT
   ========================================================= */

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
}


.menu-category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}


    .menu-category-header > span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line-strong);
        border-radius: 50%;
        color: var(--copper);
        font-size: 10px;
    }


    .menu-category-header small {
        color: var(--muted);
        font-size: 8px;
        letter-spacing: 0.18em;
    }


    .menu-category-header h3 {
        margin: 3px 0 0;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 42px;
        font-weight: 500;
    }


/* =========================================================
   MENU ITEMS
   ========================================================= */

.menu-items {
    border-top: 1px solid var(--line);
}


.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    animation: menuFadeIn 0.35s ease both;
}


.menu-item-info h4 {
    margin: 0 6px;
    font-size: 14px;
    font-weight: 600;
}


.menu-item-info p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}


.menu-item-price {
    color: var(--sage);
    font-size: 14px;
    font-weight: 600;
}


@keyframes menuFadeIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   MENU FEATURE
   ========================================================= */

.menu-feature {
    overflow: hidden;
    align-self: start;
    background: var(--surface-light);
    border: 1px solid var(--line);
    border-radius: 20px;
}


.menu-feature-image {
    overflow: hidden;
    height: 390px;
}


    .menu-feature-image img {
        height: 100%;
        object-fit: cover;
        filter: saturate(0.8);
        transition: opacity 0.2s ease, transform 0.5s ease;
    }


.menu-feature:hover
.menu-feature-image img {
    transform: scale(1.025);
}


.menu-feature-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
}


.feature-label {
    display: block;
    margin-bottom: 14px;
    color: var(--copper);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.17em;
}


.menu-feature-content h3 {
    margin: 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 36px;
    font-weight: 500;
}


.menu-feature-content p {
    max-width: 340px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}


.menu-feature-content strong {
    color: var(--sage);
    font-size: 22px;
}


/* =========================================================
   STORY
   ========================================================= */

.story-section {
    padding: 130px 0;
}


.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 100px;
    align-items: center;
}


.story-image {
    overflow: hidden;
    height: 690px;
    border-radius: 20px;
}


    .story-image img {
        height: 100%;
        object-fit: cover;
        filter: saturate(0.8);
    }


.story-content .section-number {
    margin-bottom: 28px;
}


.story-lead {
    max-width: 590px;
    margin-bottom: 55px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


.story-stats {
    border-top: 1px solid var(--line);
}


    .story-stats > div {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
    }


    .story-stats strong {
        color: var(--copper);
        font-size: 10px;
    }


    .story-stats span {
        color: var(--muted);
        font-size: 13px;
    }


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
    padding: 110px 0;
    background: var(--surface);
}


.gallery-heading {
    margin-bottom: 45px;
}


    .gallery-heading
    .section-number {
        margin-bottom: 22px;
    }


.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 10px;
    width: min( calc(100% - 30px), 1500px );
    margin-inline: auto;
}


.gallery-item {
    overflow: hidden;
    height: 430px;
    border-radius: 12px;
}


    .gallery-item img {
        height: 100%;
        object-fit: cover;
        filter: saturate(0.75);
        transition: transform 0.55s ease, filter 0.55s ease;
    }


    .gallery-item:hover img {
        transform: scale(1.035);
        filter: saturate(1);
    }


/* =========================================================
   VISIT
   ========================================================= */

.visit-section {
    padding: 120px 0;
}


.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 540px;
    background: var(--sage);
    color: var(--bg);
    border-radius: 22px;
}


.visit-main {
    padding: 65px;
}


    .visit-main
    .section-number {
        margin-bottom: 30px;
        color: rgba(13, 15, 15, 0.58);
    }


    .visit-main h2 em {
        color: var(--bg);
    }


.visit-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px;
    background: rgba(13, 15, 15, 0.08);
}


    .visit-details > div {
        padding: 22px 0;
        border-bottom: 1px solid rgba(13, 15, 15, 0.18);
    }


    .visit-details span {
        display: block;
        margin-bottom: 9px;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.17em;
    }


    .visit-details p {
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
    }


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding: 130px 0;
    border-top: 1px solid var(--line);
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 100px;
    align-items: end;
}


    .contact-grid
    .section-number {
        margin-bottom: 25px;
    }


    .contact-grid > div:last-child > p {
        max-width: 500px;
        margin-bottom: 28px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.7;
    }


.contact-email {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-strong);
    font-size: 15px;
    transition: color 0.2s ease, border-color 0.2s ease;
}


    .contact-email:hover {
        color: var(--sage);
        border-color: var(--sage);
    }


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 75px 0 25px;
    background: #090a0a;
    border-top: 1px solid var(--line);
}


.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr 0.7fr;
    gap: 70px;
    padding-bottom: 80px;
}


.footer-brand {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp( 42px, 4vw, 64px );
    line-height: 1;
}


.footer-main > div:first-child p {
    margin: 8px 0 0;
    color: var(--sage);
    font-size: 10px;
    letter-spacing: 0.16em;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


    .footer-links a {
        color: var(--muted);
        font-size: 12px;
    }


        .footer-links a:hover {
            color: var(--ivory);
        }


.footer-social span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.16em;
}


.footer-social a {
    font-size: 12px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #696e69;
    font-size: 10px;
}


/* =========================================================
   REVEAL
   ========================================================= */

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


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


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }


    .header-inner {
        grid-template-columns: 1fr auto;
    }


    .mobile-menu-button {
        display: block;
    }


    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        padding: 10px 24px 22px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }


        .mobile-nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


        .mobile-nav a {
            padding: 15px 0;
            border-bottom: 1px solid var(--line);
            color: var(--muted);
        }


    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .hero-copy-column {
        max-width: 760px;
    }


    .hero-image {
        height: 620px;
    }


    .hero-floating-card {
        left: 25px;
    }


    .intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .section-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .menu-layout {
        grid-template-columns: 1fr;
    }


    .menu-feature {
        max-width: 650px;
    }


    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .story-image {
        height: 560px;
    }


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


    .gallery-large {
        grid-column: 1 / -1;
    }


    .visit-card {
        grid-template-columns: 1fr;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .shell {
        width: calc(100% - 30px);
    }


    .announcement-inner {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }


    .hero {
        padding: 55px 0 75px;
    }


        .hero h1 {
            font-size: clamp( 48px, 14vw, 68px );
        }


    .hero-description {
        font-size: 15px;
    }


    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }


    .hero-meta {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }


    .hero-image {
        height: 490px;
    }


    .hero-floating-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
    }


    .intro-section,
    .menu-section,
    .story-section,
    .visit-section,
    .contact-section {
        padding: 85px 0;
    }


    .intro-grid h2,
    .section-header h2,
    .story-content h2,
    .gallery-heading h2,
    .visit-main h2,
    .contact-grid h2 {
        font-size: clamp( 42px, 12vw, 58px );
    }


    .menu-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }


        .menu-tabs::-webkit-scrollbar {
            display: none;
        }


    .menu-tab {
        flex-shrink: 0;
    }


    .menu-feature-image {
        height: 320px;
    }


    .menu-feature-content {
        flex-direction: column;
    }


    .story-image {
        height: 450px;
    }


    .gallery-section {
        padding: 80px 0;
    }


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


    .gallery-large {
        grid-column: auto;
    }


    .gallery-item {
        height: 380px;
    }


    .visit-main,
    .visit-details {
        padding: 40px 28px;
    }


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


    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   PECKSWEBSOLUTIONS
   INTERNAL PAGE STYLES

   Used by:
   - menu.html
   - future about.html
   - future visit.html
   - future contact.html
   ========================================================= */


/* =========================================================
   CURRENT NAV ITEM
   ========================================================= */

.desktop-nav a.nav-current {
    color: var(--ivory);
}


/* =========================================================
   GENERAL INTERNAL PAGE HERO
   ========================================================= */

.page-hero {
    padding: 105px 0 115px;
    border-bottom: 1px solid var(--line);
}


.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 100px;
    align-items: end;
}


.page-hero-content
.section-number {
    margin-bottom: 28px;
}


.page-hero h1 {
    max-width: 800px;
    margin: 0 0 32px;
    font-size: clamp( 64px, 7vw, 108px );
    font-weight: 500;
    line-height: 0.87;
    letter-spacing: -0.07em;
}


    .page-hero h1 em {
        display: block;
    }


.page-hero-description {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   PAGE HERO META
   ========================================================= */

.page-hero-meta {
    border-top: 1px solid var(--line);
}


    .page-hero-meta > div {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid var(--line);
    }


    .page-hero-meta span {
        color: var(--muted);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.17em;
    }


    .page-hero-meta p {
        margin: 0;
        font-size: 12px;
    }


/* =========================================================
   MENU FEATURE HIGHLIGHT
   ========================================================= */

.menu-highlight {
    padding: 120px 0;
    background: var(--surface);
}


.menu-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    align-items: center;
}


.menu-highlight-image {
    overflow: hidden;
    height: 600px;
    border-radius: 20px;
}


    .menu-highlight-image img {
        height: 100%;
        object-fit: cover;
        filter: saturate(0.8);
        transition: transform 0.6s ease, filter 0.6s ease;
    }


    .menu-highlight-image:hover img {
        transform: scale(1.025);
        filter: saturate(1);
    }


.menu-highlight-content
.section-number {
    margin-bottom: 28px;
}


.menu-highlight-content h2 {
    margin: 0 28px;
    font-size: clamp( 48px, 5vw, 76px );
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.055em;
}


    .menu-highlight-content h2 em {
        display: block;
    }


.menu-highlight-content > p {
    max-width: 480px;
    margin: 0 0 42px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


.highlight-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


    .highlight-price span {
        color: var(--muted);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.16em;
    }


    .highlight-price strong {
        color: var(--sage);
        font-size: 24px;
    }


/* =========================================================
   FULL MENU SECTION
   ========================================================= */

.full-menu-section {
    padding: 130px 0;
}


.full-menu-heading {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 55px;
}


    .full-menu-heading
    .section-number {
        margin-bottom: 25px;
    }


    .full-menu-heading h2 {
        margin: 0;
        font-size: clamp( 50px, 5vw, 78px );
        font-weight: 500;
        line-height: 0.94;
        letter-spacing: -0.055em;
    }


        .full-menu-heading h2 em {
            display: block;
        }


    .full-menu-heading > p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.75;
    }


/* =========================================================
   FULL MENU FILTER BUTTONS
   ========================================================= */

.full-menu-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}


.full-menu-tab {
    appearance: none;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}


    .full-menu-tab:hover {
        transform: translateY(-2px);
        color: var(--ivory);
        border-color: var(--line-strong);
    }


    .full-menu-tab.is-active {
        background: var(--ivory);
        border-color: var(--ivory);
        color: var(--bg);
    }


/* =========================================================
   RESULTS BAR
   ========================================================= */

.menu-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


    .menu-results-bar span {
        color: var(--muted);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.17em;
    }


    .menu-results-bar strong {
        color: var(--sage);
        font-size: 10px;
        letter-spacing: 0.12em;
    }


/* =========================================================
   FULL MENU GRID
   ========================================================= */

.full-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 90px;
    margin-top: 70px;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.menu-category {
    min-width: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}


    .menu-category.is-hidden {
        display: none;
    }


    .menu-category.is-entering {
        animation: categoryEnter 0.4s ease both;
    }


@keyframes categoryEnter {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.category-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}


    .category-heading > span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        border: 1px solid var(--line-strong);
        border-radius: 50%;
        color: var(--copper);
        font-size: 10px;
    }


    .category-heading small {
        display: block;
        margin-bottom: 3px;
        color: var(--muted);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.17em;
    }


    .category-heading h3 {
        margin: 0;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 42px;
        font-weight: 500;
        line-height: 1;
    }


/* =========================================================
   MENU ITEMS
   ========================================================= */

.category-items {
    border-top: 1px solid var(--line);
}


.full-menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}


    .full-menu-item h4 {
        margin: 0 6px;
        font-size: 14px;
        font-weight: 600;
    }


    .full-menu-item p {
        margin: 0;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.6;
    }


    .full-menu-item > strong {
        color: var(--sage);
        font-size: 14px;
        font-weight: 600;
    }


/* =========================================================
   MENU ITEM TAGS
   ========================================================= */

.menu-item-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


    .menu-item-title-row h4 {
        margin-bottom: 6px;
    }


.menu-tag {
    display: inline-flex;
    align-items: center;
    min-height: 19px;
    padding: 3px 7px;
    border: 1px solid rgba(168, 184, 160, 0.35);
    border-radius: 999px;
    color: var(--sage);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.menu-tag-copper {
    border-color: rgba(201, 137, 91, 0.4);
    color: var(--copper);
}


/* =========================================================
   MENU OPTIONS
   ========================================================= */

.menu-options-section {
    padding: 110px 0;
    background: var(--surface);
}


.menu-options-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 100px;
}


    .menu-options-grid
    .section-number {
        margin-bottom: 24px;
    }


    .menu-options-grid h2 {
        margin: 0;
        font-size: clamp( 48px, 5vw, 72px );
        font-weight: 500;
        line-height: 0.94;
        letter-spacing: -0.055em;
    }


        .menu-options-grid h2 em {
            display: block;
        }


.options-list {
    border-top: 1px solid var(--line);
}


    .options-list > div {
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 25px;
        padding: 20px 0;
        border-bottom: 1px solid var(--line);
    }


    .options-list span {
        color: var(--muted);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.16em;
    }


    .options-list p {
        margin: 0;
        font-size: 13px;
    }


/* =========================================================
   MENU CTA
   ========================================================= */

.menu-page-cta {
    padding: 120px 0;
}


.menu-page-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}


.menu-page-cta
.section-number {
    margin-bottom: 22px;
}


.menu-page-cta h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp( 50px, 5vw, 78px );
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.055em;
}


    .menu-page-cta h2 em {
        display: block;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .page-hero-meta {
        max-width: 650px;
    }


    .menu-highlight-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .menu-highlight-image {
        height: 550px;
    }


    .menu-highlight-content {
        max-width: 650px;
    }


    .full-menu-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }


        .full-menu-heading > p {
            max-width: 600px;
        }


    .full-menu-grid {
        gap: 70px 50px;
    }


    .menu-options-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .page-hero {
        padding: 75px 0 80px;
    }


        .page-hero h1 {
            font-size: clamp( 54px, 15vw, 74px );
        }


    .page-hero-description {
        font-size: 15px;
    }


    .page-hero-meta > div {
        grid-template-columns: 90px 1fr;
    }


    /* HIGHLIGHT */

    .menu-highlight {
        padding: 80px 0;
    }


    .menu-highlight-image {
        height: 420px;
    }


    .menu-highlight-content h2 {
        font-size: clamp( 46px, 13vw, 62px );
    }


    /* FULL MENU */

    .full-menu-section {
        padding: 85px 0;
    }


    .full-menu-heading h2 {
        font-size: clamp( 46px, 13vw, 62px );
    }


    .full-menu-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }


        .full-menu-tabs::-webkit-scrollbar {
            display: none;
        }


    .full-menu-tab {
        flex-shrink: 0;
    }


    .full-menu-grid {
        grid-template-columns: 1fr;
        gap: 65px;
        margin-top: 55px;
    }


    /* OPTIONS */

    .menu-options-section {
        padding: 80px 0;
    }


    .options-list > div {
        grid-template-columns: 100px 1fr;
    }


    /* CTA */

    .menu-page-cta {
        padding: 85px 0;
    }


    .menu-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }


    .menu-page-cta h2 {
        font-size: clamp( 46px, 13vw, 62px );
    }
}

/* =========================================================
   CONTACT FORM VALIDATION
   ========================================================= */


/*
    Invalid inputs receive a subtle red border.

    The background remains consistent with the existing
    cafe design.
*/

.cafe-contact-form input.is-invalid,
.cafe-contact-form select.is-invalid,
.cafe-contact-form textarea.is-invalid {
    border-color: #d96b5f;
}


/*
    Inline validation message.
*/

.cafe-contact-form .field-error {
    margin: 8px 0 0;
    color: #e58a80;
    font-size: 13px;
    line-height: 1.45;
}


/*
    Give keyboard users a clear focus state when an
    invalid field receives focus.
*/

.cafe-contact-form input.is-invalid:focus,
.cafe-contact-form select.is-invalid:focus,
.cafe-contact-form textarea.is-invalid:focus {
    outline: 1px solid #d96b5f;
    outline-offset: 2px;
}