:root {
    --ink: #27211f;
    --muted: #675f5a;
    --paper: #fff8f1;
    --surface: #ffffff;
    --coral: #f05d5e;
    --coral-dark: #b93d45;
    --mint: #4e8f7f;
    --butter: #ffd37e;
    --line: rgba(39, 33, 31, 0.14);
    --shadow: 0 24px 60px rgba(49, 31, 22, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Avenir Next, Trebuchet MS, Segoe UI, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    color: #fff;
    background: linear-gradient(180deg, rgba(32, 24, 20, 0.74), rgba(32, 24, 20, 0));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 65% 35%, #6b3f2c 0 3px, transparent 4px),
        radial-gradient(circle at 36% 64%, #6b3f2c 0 3px, transparent 4px),
        radial-gradient(circle at 42% 34%, #6b3f2c 0 2px, transparent 3px),
        var(--butter);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.brand strong,
.brand small {
    display: block;
    white-space: nowrap;
}

.brand strong {
    font-size: 0.95rem;
    line-height: 1.1;
}

.brand small {
    font-size: 0.72rem;
    opacity: 0.82;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 8px 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 110px clamp(20px, 6vw, 76px) 82px;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(35, 22, 18, 0.82) 0%, rgba(35, 22, 18, 0.68) 37%, rgba(35, 22, 18, 0.18) 68%),
        url("assets/crumbl-branded-catering-hero.webp") center / cover no-repeat;
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(180deg, rgba(255, 248, 241, 0), var(--paper));
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    color: var(--butter);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.coverage h2,
.request-band h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero h1 {
    max-width: 730px;
    font-family: Georgia, Cambria, serif;
    font-size: clamp(2.75rem, 7vw, 6.6rem);
    font-weight: 800;
}

.lede {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.actions,
.request-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.primary {
    color: #fff;
    background: var(--coral);
    box-shadow: 0 14px 32px rgba(240, 93, 94, 0.32);
}

.secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.13);
}

.quick-strip {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 36px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: -44px auto 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.quick-strip div {
    min-height: 116px;
    padding: 24px;
    background: var(--surface);
}

.quick-strip strong,
.quick-strip span {
    display: block;
}

.quick-strip strong {
    font-size: 1rem;
}

.quick-strip span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.94rem;
}

.section,
.product-showcase,
.coverage,
.request-band {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.section,
.product-showcase {
    padding: 94px 0 64px;
}

.section-kicker {
    color: var(--coral-dark);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 7vw, 78px);
    align-items: end;
}

.section h2,
.product-showcase h2,
.coverage h2,
.request-band h2 {
    font-family: Georgia, Cambria, serif;
    font-size: clamp(2.15rem, 5vw, 4.4rem);
}

.section-heading p,
.product-showcase p,
.coverage p,
.request-band p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: center;
}

.product-copy {
    max-width: 520px;
}

.product-showcase h2 {
    margin: 0;
    line-height: 1.02;
}

.product-showcase p:not(.eyebrow) {
    margin-top: 18px;
}

.product-showcase img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 42px;
}

.occasion-grid article {
    min-height: 242px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.occasion-grid span {
    display: inline-block;
    color: var(--mint);
    font-weight: 900;
}

.occasion-grid h3 {
    margin: 54px 0 12px;
    font-size: 1.35rem;
}

.occasion-grid p {
    margin: 0;
    color: var(--muted);
}

.coverage {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: clamp(30px, 7vw, 88px);
    align-items: center;
    padding: 70px clamp(22px, 5vw, 56px);
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(39, 33, 31, 0.94), rgba(51, 82, 76, 0.92)),
        linear-gradient(135deg, var(--ink), var(--mint));
}

.coverage .eyebrow {
    color: var(--butter);
}

.coverage p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.coverage-list li {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.request-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 72px;
    margin-bottom: 72px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.request-band h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.request-band p {
    max-width: 680px;
    margin-top: 10px;
}

.request-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-top: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--coral-dark);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px clamp(18px, 4vw, 56px);
    color: #fff;
    background: var(--ink);
}

footer p {
    max-width: 580px;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 820px) {
    .site-header {
        position: absolute;
        align-items: flex-start;
        padding: 14px 16px;
    }

    nav {
        gap: 2px;
    }

    nav a:not(.nav-cta) {
        display: none;
    }

    .brand strong {
        white-space: normal;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 18px 78px;
    }

    .hero-bg {
        background:
            linear-gradient(90deg, rgba(35, 22, 18, 0.86), rgba(35, 22, 18, 0.46)),
            url("assets/crumbl-branded-catering-hero.webp") center right 38% / cover no-repeat;
    }

    .quick-strip,
    .section-heading,
    .product-showcase,
    .occasion-grid,
    .coverage {
        grid-template-columns: 1fr;
    }

    .quick-strip {
        margin-top: -28px;
    }

    .quick-strip div {
        min-height: auto;
        padding: 18px;
    }

    .section {
        padding-top: 70px;
    }

    .occasion-grid article {
        min-height: 190px;
    }

    .occasion-grid h3 {
        margin-top: 36px;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }

    .request-band,
    footer {
        display: block;
    }

    .request-actions {
        margin-top: 22px;
        justify-content: flex-start;
    }

    footer p + p {
        margin-top: 10px;
    }
}

@media (max-width: 460px) {
    .hero h1 {
        font-size: 2.48rem;
    }

    .button,
    .text-link {
        width: 100%;
    }

    .actions,
    .request-actions {
        gap: 10px;
    }
}
