/* =========================================================
   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 PAGE
   ========================================================= */

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

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

.contact-page-intro h2 {
    margin: 0 0 30px;
    font-size: clamp(50px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

    .contact-page-intro h2 em {
        display: block;
    }

.contact-page-intro > p {
    max-width: 480px;
    margin-bottom: 50px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   DIRECT CONTACT DETAILS
   ========================================================= */

.contact-direct {
    border-top: 1px solid var(--line);
}

    .contact-direct > div {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }

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

    .contact-direct a {
        font-size: 13px;
        transition: color 0.2s ease;
    }

        .contact-direct a:hover {
            color: var(--sage);
        }

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

.cafe-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 18px;
    padding: 42px;
    background: var(--surface-light);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.cafe-form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cafe-form-field-full {
    grid-column: 1 / -1;
}

.cafe-form-field label {
    color: var(--ivory);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

    .cafe-form-field label span {
        margin-left: 5px;
        color: var(--muted);
        font-weight: 400;
    }

/* =========================================================
   INPUTS
   ========================================================= */

.cafe-form-field input,
.cafe-form-field select,
.cafe-form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    background: var(--surface);
    color: var(--ivory);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cafe-form-field input,
.cafe-form-field select {
    min-height: 52px;
    padding: 0 15px;
}

.cafe-form-field textarea {
    min-height: 170px;
    padding: 15px;
    resize: vertical;
}

    .cafe-form-field input::placeholder,
    .cafe-form-field textarea::placeholder {
        color: #6f756f;
    }

    .cafe-form-field input:focus,
    .cafe-form-field select:focus,
    .cafe-form-field textarea:focus {
        border-color: var(--sage);
        background: #181c1a;
        box-shadow: 0 0 0 3px rgba(168, 184, 160, 0.08);
    }

.cafe-form-field select {
    cursor: pointer;
}

/* =========================================================
   SUBMIT
   ========================================================= */

.cafe-form-submit {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 8px;
}

    .cafe-form-submit p {
        max-width: 320px;
        margin: 0;
        color: var(--muted);
        font-size: 10px;
        line-height: 1.6;
    }

/* =========================================================
   CONTACT PAGE TABLET
   ========================================================= */

@media (max-width: 1000px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-page-intro {
        max-width: 650px;
    }
}

/* =========================================================
   CONTACT PAGE MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .cafe-contact-form {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .cafe-form-field-full {
        grid-column: auto;
    }

    .cafe-form-submit {
        grid-column: auto;
        align-items: flex-start;
        flex-direction: column;
    }
}
