/* Page-specific CSS for site/catering.html. .pkg-card and .boxed-card
   were staged during Task 6 (below). The remaining rules were added
   during Task 14 to carry the rest of the page's inline <style> block:
   the delivery strip, packages, entrees, and add-ons sections and their
   responsive breakpoints. Copied verbatim from site/catering.html.

   NOT carried here: every .inquiry__* rule, including its 768px
   responsive block. Those were already promoted to
   src/css/components.css during Task 6 (see the "Inquiry Form
   (catering)" section there), because the catering form markup lives on
   this page only but its CSS had no divergence from what a shared
   component would need. Restating any of those rules here would just be
   a silent duplicate with no visual effect, so the media queries below
   carry only the selectors components.css does not already own.

   Per docs/intentional-differences.md, catering has ZERO body
   divergences between this inline block and components.css: nothing
   here overrides a components.css value, it only adds selectors
   components.css does not define at all. */

/* Delivery info strip */
.delivery-strip {
    background: var(--white);
    padding: 1.25rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(16, 25, 33, 0.06);
}

.delivery-strip__text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.delivery-strip__link {
    color: var(--turmeric);
    font-weight: 500;
}

/* Packages section */
.packages {
    background: var(--cream);
    padding: 120px 3rem;
}

.packages__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.packages__header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages__headline {
    font-family: Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--char);
}

.packages__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.packages__delivery-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pkg-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(16, 25, 33, 0.08);
    display: flex;
    flex-direction: column;
}

.pkg-card--featured {
    border: 2px solid var(--turmeric);
    position: relative;
}

.pkg-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--turmeric);
    color: var(--char);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
}

.pkg-card__name {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: var(--char);
    margin-bottom: 0.5rem;
}

.pkg-card__price {
    margin-bottom: 0.5rem;
}

.pkg-card__price-amount {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--char);
}

.pkg-card__price-unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pkg-card__estimate {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pkg-card__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.pkg-card__item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
}

.pkg-card__check {
    color: var(--turmeric);
    flex-shrink: 0;
}

.pkg-card__cta {
    display: block;
    text-align: center;
    padding: 0.9rem;
    border-radius: 100px;
    background: var(--chipotle);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.pkg-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125, 39, 45, 0.35);
}

/* Boxed lunches */
.boxed {
    background: var(--white);
    padding: 100px 3rem;
}

.boxed__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.boxed__header {
    text-align: center;
    margin-bottom: 3rem;
}

.boxed__headline {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--char);
}

.boxed__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.boxed__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.boxed-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(16, 25, 33, 0.08);
}

.boxed-card__name {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: var(--char);
    margin-bottom: 0.4rem;
}

.boxed-card__price {
    margin-bottom: 1rem;
}

.boxed-card__price-amount {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--char);
}

.boxed-card__price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.boxed-card__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.boxed-card__item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
}

.boxed-card__cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 100px;
    background: var(--chipotle);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.boxed-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125, 39, 45, 0.35);
}

/* Entrees section */
.entrees {
    background: var(--white);
    padding: 120px 3rem;
}

.entrees__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.entrees__header {
    text-align: center;
    margin-bottom: 3rem;
}

.entrees__headline {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--char);
}

.entrees__photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.entree-photo {
    border-radius: 12px;
    overflow: hidden;
}

.entree-photo__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.entree-photo:hover .entree-photo__img {
    transform: scale(1.04);
}

.entree-photo__info {
    padding: 0.75rem;
    text-align: center;
}

.entree-photo__name {
    font-size: 0.95rem;
    font-weight: 600;
}

.entree-photo__tag {
    font-size: 0.75rem;
    color: var(--text-light);
}

.entrees__text-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.entrees__text-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.entrees__text-tag {
    font-size: 0.75rem;
    color: var(--text-light);
}

.entrees__dietary {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Add-ons section */
.addons {
    background: var(--cream);
    padding: 120px 3rem;
}

.addons__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.addons__header {
    text-align: center;
    margin-bottom: 3rem;
}

.addons__headline {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--char);
}

.addons__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.addons__category-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--char);
    margin-bottom: 1rem;
}

.addons__category-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
}

.addons__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(16, 25, 33, 0.06);
}

.addon-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.addon-row__price {
    font-weight: 500;
    color: var(--char);
    white-space: nowrap;
    margin-left: 1rem;
}

/* ===== Responsive =====
   site/catering.html's own three media queries, minus the .inquiry__*
   selectors folded into them. Those are already carried by
   components.css's own responsive blocks at the same breakpoints and the
   same values: padding 80px 1.5rem, single-column .inquiry__row, and
   2rem/1.8rem .inquiry__headline at 768px/480px respectively. Everything
   else below is unique to this page. */
@media (max-width: 1024px) {
    .packages__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .packages__headline {
        font-size: 2.2rem;
    }

    .entrees__photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .entrees__text-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages,
    .boxed,
    .entrees,
    .addons {
        padding: 80px 1.5rem;
    }

    .delivery-strip {
        padding: 1.25rem 1.5rem;
    }

    .trust-strip__divider {
        display: none;
    }

    .trust-strip__segment {
        display: block;
    }

    .trust-strip__text {
        font-size: 0.68rem;
        line-height: 2.2;
    }

    .boxed__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

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

    .packages__headline,
    .boxed__headline,
    .entrees__headline,
    .addons__headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .entrees__photo-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 2.5rem;
    }

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

    .packages__headline,
    .boxed__headline,
    .entrees__headline,
    .addons__headline {
        font-size: 1.8rem;
    }
}
