/* Page-specific CSS for site/about.html. .value-card was staged during
   Task 6 (the one card from the nine-card list defined here; not defined
   on any other page). The remaining rules below were added during Task 8
   to carry the rest of about.html's inline <style> block: the partial
   .hero/.hero__image overrides (recorded in docs/intentional-differences.md),
   and the origin/mission/values/food/cta-band sections and their responsive
   breakpoints, none of which exist in components.css. Copied verbatim from
   site/about.html. */

/* ===== Hero (partial override; see docs/intentional-differences.md) ===== */
.hero {
    min-height: 70vh;
    max-height: 800px;
}

.hero__image {
    object-position: center 30%;
}

/* ===== Origin Story ===== */
.origin {
    padding: 120px 3rem;
}

.origin__inner {
    max-width: 720px;
    margin: 0 auto;
}

.origin__headline {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--char);
    line-height: 1.25;
    margin-bottom: 2.5rem;
    text-align: center;
}

.origin__body p {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.origin__body p:last-child {
    margin-bottom: 0;
}

.origin__pullquote {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--char);
    line-height: 1.45;
    text-align: center;
    padding: 2.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(16, 25, 33, 0.08);
    border-bottom: 1px solid rgba(16, 25, 33, 0.08);
}

/* ===== Mission ===== */
.mission {
    background: var(--cream);
    padding: 120px 3rem;
}

.mission__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.mission__statement {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--char);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.mission__body {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Values ===== */
.values {
    padding: 120px 3rem;
}

.values__inner {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.values__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.value-card {
    padding: 2rem 0;
}

.value-card__name {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--char);
    margin-bottom: 0.6rem;
}

.value-card__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.value-card__accent {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--turmeric);
    margin-bottom: 1.25rem;
}

/* ===== Food Section ===== */
.food {
    background: var(--cream);
    padding: 120px 3rem;
}

.food__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.food__text {
    max-width: 440px;
}

.food__headline {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--char);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.food__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.food__list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.food__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--turmeric);
}

.food__image-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.food__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Catering Callout ===== */
.cta-band {
    background: var(--char);
    padding: 80px 3rem;
    text-align: center;
}

.cta-band__inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-band__headline {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-band__body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .origin__headline,
    .values__headline,
    .food__headline {
        font-size: 2rem;
    }

    .mission__statement {
        font-size: 1.7rem;
    }

    .food__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .food__text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .origin,
    .mission,
    .values,
    .food {
        padding: 80px 1.5rem;
    }

    .cta-band {
        padding: 60px 1.5rem;
    }

    .origin__headline,
    .values__headline,
    .food__headline {
        font-size: 1.8rem;
    }

    .mission__statement {
        font-size: 1.5rem;
    }

    .origin__pullquote {
        font-size: 1.25rem;
    }

    .values__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-band__headline {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .origin__headline,
    .values__headline,
    .food__headline {
        font-size: 1.6rem;
    }

    .mission__statement {
        font-size: 1.35rem;
    }

    .cta-band__headline {
        font-size: 1.5rem;
    }
}
