:root {
    --red-950: #450a0a;
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --orange-600: #ea580c;
    --orange-500: #f97316;
    --amber-100: #fef3c7;
    --cream: #fffaf3;
    --paper: #ffffff;
    --ink: #1f2937;
    --muted: #5f6876;
    --line: #e7ddd2;
    --shadow-sm: 0 8px 24px rgba(69, 10, 10, .08);
    --shadow-lg: 0 22px 65px rgba(69, 10, 10, .15);
    --radius-sm: .75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - 2rem), 820px);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: .5rem;
    left: .5rem;
    padding: .75rem 1rem;
    border-radius: .5rem;
    color: white;
    background: var(--red-900);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 0 1rem;
    color: var(--red-800);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #fed7aa;
}

.section {
    padding: 5.5rem 0;
}

.section-soft {
    background:
        radial-gradient(circle at 8% 20%, rgba(249, 115, 22, .08), transparent 24rem),
        var(--cream);
}

.section-dark {
    color: white;
    background:
        radial-gradient(circle at 88% 12%, rgba(249, 115, 22, .24), transparent 26rem),
        linear-gradient(135deg, var(--red-950), #1f1110);
}

.section-heading {
        margin-bottom: 2rem;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2 {
    margin: 0;
    color: var(--red-950);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.section-heading p,
.split-copy > p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
    color: white;
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, .78);
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 1.3rem;
    border: 2px solid transparent;
    border-radius: .85rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
    color: white;
    background: var(--red-800);
    box-shadow: 0 10px 25px rgba(153, 27, 27, .24);
}

.button-primary:hover {
    background: var(--red-900);
    box-shadow: 0 14px 30px rgba(153, 27, 27, .3);
}

.button-secondary {
    border-color: rgba(127, 29, 29, .35);
    color: var(--red-900);
    background: rgba(255, 255, 255, .9);
}

.button-secondary:hover {
    border-color: var(--red-800);
    background: white;
}

.button-light {
    color: var(--red-950);
    background: white;
}

.button-small {
    min-height: 2.75rem;
    padding: .65rem 1rem;
    border-radius: .7rem;
    font-size: .92rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--red-800);
    font-weight: 800;
    text-underline-offset: .2em;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 18px rgba(31, 41, 55, .08);
    backdrop-filter: blur(12px);
}

.utility-bar {
    color: white;
    background: var(--red-900);
}

.utility-inner {
    display: flex;
    min-height: 2.5rem;
    align-items: center;
    gap: 1.25rem;
    font-size: .9rem;
    font-weight: 700;
}

.utility-inner a {
    text-decoration: none;
}

.utility-note {
    margin-left: auto;
    color: rgba(255, 255, 255, .76);
    font-weight: 600;
}

.nav-shell {
    display: flex;
    min-height: 5.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    flex: 0 1 280px;
}

.brand img {
    width: min(100%, 280px);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.primary-nav > a:not(.button) {
    color: #4b2730;
    font-size: .94rem;
    font-weight: 750;
    text-decoration: none;
}

.primary-nav > a:not(.button):hover {
    color: var(--red-800);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: .7rem;
    border: 0;
    border-radius: .7rem;
    background: #fef2f2;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--red-900);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    color: white;
    background:
        linear-gradient(90deg, rgba(40, 7, 7, .95) 0%, rgba(69, 10, 10, .86) 46%, rgba(69, 10, 10, .34) 100%),
        url("images/events/hero-real-event.jpg") center 64% / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7px;
    background: linear-gradient(90deg, var(--orange-500), #fbbf24, var(--red-700));
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 610px;
    align-items: center;
    grid-template-columns: minmax(0, 700px) 1fr;
    gap: 2rem;
    padding-block: 4.5rem;
}

.hero-copy {
    padding: 2rem 0;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.75rem, 5.2vw, 5.25rem);
    line-height: .99;
    letter-spacing: -.055em;
}

.hero-lede {
    max-width: 650px;
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: .5rem .8rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 99px;
    color: #fff7ed;
    background: rgba(255, 255, 255, .09);
    font-size: .9rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero .button-secondary {
    border-color: rgba(255, 255, 255, .46);
    color: white;
    background: rgba(255, 255, 255, .1);
}

.hero .button-secondary:hover {
    background: rgba(255, 255, 255, .18);
}

.hero-note {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.trust-strip {
    border-bottom: 1px solid var(--line);
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    min-height: 6.2rem;
    align-items: start;
    gap: .85rem;
    padding: 1.15rem 1.25rem;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    display: inline-grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    color: var(--red-900);
    background: #fff1e8;
    font-weight: 900;
}

.trust-item > div {
    display: grid;
    min-width: 0;
    gap: .25rem;
    padding-top: .05rem;
}

.trust-item strong,
.trust-item > div > span {
    display: block;
}

.trust-item strong {
    color: var(--red-950);
    font-size: .95rem;
    line-height: 1.3;
}

.trust-item > div > span {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
}

.service-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.package-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    margin-inline: auto;
}

.service-card,
.package-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.service-card {
    padding: 1.6rem;
}

.service-card-image {
    width: calc(100% + 3.2rem);
    max-width: none;
    height: auto;
    aspect-ratio: 3 / 2;
    margin: -1.6rem -1.6rem 1.4rem;
    object-fit: cover;
    object-position: center;
}

.service-card::before,
.package-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--red-800), var(--orange-500));
}

.service-number {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    margin-bottom: 1.2rem;
    border-radius: .85rem;
    color: white;
    background: var(--red-900);
    font-size: 1.1rem;
    font-weight: 900;
}

.service-card h3,
.package-card h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.45rem;
    line-height: 1.2;
}

.service-card > p {
    margin: .8rem 0 1.1rem;
    color: var(--muted);
}

.check-list,
.plain-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list {
    margin-bottom: 1.4rem;
}

.check-list li {
    position: relative;
    margin: .55rem 0;
    padding-left: 1.55rem;
    color: #404853;
    font-size: .94rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-600);
    font-weight: 900;
}

.service-card .text-link {
    margin-top: auto;
}

.service-card-featured {
    border-color: rgba(153, 27, 27, .34);
    background: linear-gradient(180deg, #fff, #fff8f3);
    box-shadow: var(--shadow-lg);
}

.card-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .35rem .65rem;
    border-radius: 99px;
    color: var(--red-950);
    background: var(--amber-100);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.choice-helper {
    display: grid;
    margin-top: 2rem;
    padding: 1.4rem;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    background: #fff7ed;
}

.choice-helper-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--orange-600);
    font-size: 1.3rem;
    font-weight: 900;
}

.choice-helper strong,
.choice-helper > div > span {
    display: block;
}

.choice-helper > div > span {
    color: var(--muted);
}

.package-card {
    padding: 1.6rem;
}

.package-card-featured {
    border-color: var(--red-700);
    box-shadow: var(--shadow-lg);
}

.package-tagline {
    min-height: 3rem;
    margin: .65rem 0 .3rem;
    color: var(--muted);
    font-size: .94rem;
}

.package-price {
    margin: .7rem 0 0;
    color: var(--red-900);
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1;
}

.price-caption {
    margin-bottom: .8rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.package-meta {
    margin: .35rem 0;
    color: var(--muted);
    font-size: .93rem;
}

.package-best-for {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: .88rem;
}

.package-section-intro {
    max-width: 780px;
    margin: -1rem 0 1.25rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.complete-customisation-note {
    display: grid;
    gap: .25rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid #fed7aa;
    border-left: 5px solid var(--orange-500);
    border-radius: 1rem;
    background: #fff7ed;
}

.complete-customisation-note strong {
    color: var(--red-950);
}

.complete-customisation-note p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.complete-package-grid {
    margin-top: 0;
}

.complete-package-card {
    background: linear-gradient(180deg, #fff, #fffaf5);
}

.complete-salad-inclusions {
    display: grid;
    gap: .55rem;
    margin-top: .9rem;
    padding: .85rem;
    border-radius: .8rem;
    background: #fef2f2;
}

.complete-salad-inclusions > strong {
    color: var(--red-950);
    font-size: .88rem;
}

.complete-salad-inclusions > div {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.complete-salad-inclusions span {
    padding: .3rem .55rem;
    border: 1px solid #e7c9bc;
    border-radius: 99px;
    color: var(--red-900);
    background: white;
    font-size: .78rem;
    font-weight: 800;
}

.complete-salad-inclusions {
    background: #fff7ed;
}

.complete-salad-inclusions span b {
    color: var(--orange-600);
}

.complete-price-heading {
    display: block;
    margin-top: .9rem;
    color: var(--red-950);
    font-size: .88rem;
}

.complete-price-options {
    margin-top: .55rem;
    margin-bottom: .9rem;
}

.complete-price-options .price-option strong {
    min-width: 3.5rem;
    text-align: right;
}

.complete-carving-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid #fdba74;
    border-radius: 1rem;
    background:
        radial-gradient(circle at 100% 0, rgba(249, 115, 22, .18), transparent 10rem),
        #fff7ed;
}

.complete-carving-banner > div:first-child {
    display: grid;
    gap: .3rem;
}

.complete-carving-banner > div:first-child > span {
    width: fit-content;
    padding: .25rem .5rem;
    border-radius: 99px;
    color: white;
    background: var(--orange-600);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.complete-carving-banner strong {
    color: var(--red-950);
    font-size: 1.15rem;
}

.complete-carving-banner p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.complete-carving-banner-actions {
    display: grid;
    gap: .6rem;
    min-width: 265px;
}

.complete-carving-banner-actions .text-link {
    justify-content: center;
    font-size: .86rem;
}

.complete-inclusions {
    margin: 1rem 0;
    padding-top: .9rem;
    border-top: 1px solid var(--line);
}

.package-card hr {
    width: 100%;
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.package-card .button {
    width: 100%;
    margin-top: auto;
}

.price-options {
    display: grid;
    gap: .6rem;
    margin: 1rem 0 1.4rem;
}

.price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem .85rem;
    border-radius: .7rem;
    background: #fff7ed;
    font-size: .94rem;
}

.price-option strong {
    color: var(--red-900);
}

.price-notes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-note {
    padding: 1rem;
    border-left: 4px solid var(--orange-500);
    border-radius: .5rem;
    background: #fff;
    color: var(--muted);
    font-size: .9rem;
}

.package-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3.5rem 0 1.5rem;
}

.package-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.package-divider h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.55rem;
}

.hosted-package {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr) minmax(220px, .55fr);
    align-items: center;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    color: white;
    background:
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, .26), transparent 20rem),
        linear-gradient(135deg, var(--red-950), #7f1d1d);
    box-shadow: var(--shadow-lg);
}

.package-kicker {
    display: inline-flex;
    margin-bottom: .65rem;
    padding: .35rem .65rem;
    border-radius: 99px;
    color: var(--red-950);
    background: #fed7aa;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hosted-package h3 {
    margin: 0;
    color: white;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.hosted-package p,
.hosted-action span {
    color: rgba(255, 255, 255, .8);
}

.hosted-package p {
    margin: .7rem 0 0;
}

.hosted-inclusions {
    display: grid;
    gap: .55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hosted-inclusions li {
    position: relative;
    padding-left: 1.5rem;
}

.hosted-inclusions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fdba74;
    font-weight: 900;
}

.hosted-action {
    display: grid;
    gap: .5rem;
}

.hosted-action > strong {
    font-size: 1.35rem;
}

.hosted-action > span {
    font-size: .88rem;
}

.hosted-action .button {
    margin-top: .35rem;
}

.crowd-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.crowd-shortcuts > div {
    display: grid;
    gap: .2rem;
    padding: 1rem 1.1rem;
    border: 1px solid #fed7aa;
    border-radius: 1rem;
    background: #fff7ed;
}

.crowd-shortcuts strong {
    color: var(--red-950);
}

.crowd-shortcuts span {
    color: var(--muted);
    font-size: .9rem;
}

.crowd-shortcuts .text-link {
    margin-top: .35rem;
    font-size: .88rem;
}

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

.addon-card {
    display: flex;
    min-height: 100%;
    padding: 1.35rem;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.addon-card h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.3rem;
}

.addon-card > p {
    margin: .55rem 0 1rem;
    color: var(--muted);
    font-size: .92rem;
}

.addon-card .check-list {
    margin-bottom: 1rem;
}

.addon-price {
    margin-top: auto;
    color: var(--red-900);
}

.addon-card .text-link {
    margin-top: .75rem;
}

.catering-options-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(249, 115, 22, .1), transparent 24rem),
        white;
}

.catering-options-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
}

.catering-option-card {
    position: relative;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
}

.catering-option-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--red-800), var(--orange-500));
}

.catering-option-count {
    display: inline-flex;
    margin-bottom: .75rem;
    padding: .28rem .55rem;
    border-radius: 99px;
    color: var(--red-900);
    background: #fff7ed;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.catering-option-card h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.4rem;
}

.catering-option-card > p {
    margin: .55rem 0 1rem;
    color: var(--muted);
    font-size: .92rem;
}

.catering-option-list {
    display: grid;
    gap: .6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catering-option-list li {
    position: relative;
    padding-left: 1.35rem;
    color: #353c46;
    font-size: .9rem;
}

.catering-option-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-600);
    font-weight: 900;
}

.catering-menu-period + .catering-menu-period {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
}

.catering-menu-period > strong {
    display: block;
    margin-bottom: .7rem;
    color: var(--red-950);
    font-size: .9rem;
}

.catering-menu-period-new > strong {
    color: var(--orange-700);
}

.catering-option-card-fresh-salads .catering-option-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catering-options-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    background: #fff7ed;
}

.catering-options-cta strong {
    color: var(--red-950);
    font-size: 1.08rem;
}

.catering-options-cta p {
    max-width: 760px;
    margin: .25rem 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.catering-options-cta .button {
    white-space: nowrap;
}

.friendly-note {
    margin-top: 1rem;
    padding: 1rem;
    border-left: 4px solid var(--orange-500);
    border-radius: .75rem;
    background: #fff7ed;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.split-media {
    position: relative;
}

.split-media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.media-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 250px;
    padding: 1rem;
    border-radius: 1rem;
    color: white;
    background: rgba(69, 10, 10, .92);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
}

.process-list {
    display: grid;
    gap: 1rem;
    margin: 1.7rem 0;
}

.process-step {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    gap: .85rem;
    align-items: start;
}

.process-step > span {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--red-900);
    font-weight: 900;
}

.process-step strong,
.process-step p {
    display: block;
    margin: 0;
}

.process-step p {
    color: var(--muted);
    font-size: .93rem;
}

.quote-section {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(249, 115, 22, .19), transparent 30rem),
        linear-gradient(135deg, #3b0909, var(--red-900));
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(540px, 1.22fr);
    gap: 2rem;
    align-items: start;
}

.quote-copy {
    position: sticky;
    top: 9.5rem;
    color: white;
}

.quote-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.quote-copy > p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
}

.quote-booking-notes {
    display: grid;
    gap: .55rem;
    margin: 1.4rem 0;
}

.quote-booking-notes h3 {
    margin: 0 0 .2rem;
    color: #fff;
    font-size: 1.05rem;
}

.quote-booking-note {
    padding: .7rem .8rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .65rem;
    background: rgba(255, 255, 255, .07);
}

.quote-booking-note strong,
.quote-booking-note span {
    display: block;
}

.quote-booking-note strong {
    margin-bottom: .15rem;
    color: #fed7aa;
    font-size: .88rem;
}

.quote-booking-note span {
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    line-height: 1.4;
}

.quote-prep {
    display: grid;
    gap: .75rem;
    margin: 1.5rem 0;
}

.quote-prep > div {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .65rem;
    align-items: start;
}

.quote-prep > div > span {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    color: var(--red-950);
    background: #fed7aa;
    font-size: .82rem;
    font-weight: 900;
}

.quote-prep p {
    display: grid;
    gap: .15rem;
    margin: 0;
    padding-top: .1rem;
    line-height: 1.4;
}

.quote-prep p strong,
.quote-prep p > span {
    display: block;
}

.quote-prep p > span {
    color: rgba(255, 255, 255, .82);
}

.quote-contact {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .8);
}

.quote-contact a {
    color: white;
    font-weight: 800;
}

.quote-card {
    overflow: hidden;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.quote-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .35rem .35rem 1rem;
}

.quote-card-head strong,
.quote-card-head span {
    display: block;
}

.quote-card-head strong {
    color: var(--red-950);
    font-size: 1.2rem;
}

.quote-card-head span {
    color: var(--muted);
    font-size: .85rem;
}

.response-chip {
    flex: 0 0 auto;
    padding: .45rem .7rem;
    border-radius: 99px;
    color: #166534 !important;
    background: #dcfce7;
    font-weight: 800;
}

.quote-form {
    display: grid;
    gap: 1.15rem;
    padding: .35rem;
    color: var(--red-950);
}

.quote-form[hidden],
.quote-conditional[hidden],
.quote-form-success[hidden],
.quote-form-interest[hidden] {
    display: none;
}

.quote-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.quote-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.quote-fieldset legend,
.quote-field > span {
    display: block;
    margin-bottom: .45rem;
    color: var(--red-950);
    font-size: .9rem;
    font-weight: 850;
}

.quote-field > span b {
    color: var(--orange);
}

.quote-service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
}

.quote-service-option {
    position: relative;
    cursor: pointer;
}

.quote-service-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.quote-service-option > span {
    display: grid;
    min-height: 5.4rem;
    align-content: center;
    gap: .2rem;
    padding: .8rem;
    border: 1px solid #e7c9bc;
    border-radius: .75rem;
    background: #fffaf5;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.quote-service-option strong {
    color: var(--red-900);
    font-size: .88rem;
}

.quote-service-option small {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.35;
}

.quote-service-option input:checked + span {
    border-color: var(--orange);
    background: #fff3e8;
    box-shadow: 0 0 0 2px rgba(255, 94, 20, .14);
}

.quote-service-option input:focus-visible + span {
    outline: 3px solid rgba(255, 94, 20, .28);
    outline-offset: 2px;
}

.quote-form-interest {
    margin: 0;
    padding: .7rem .8rem;
    border-radius: .65rem;
    color: var(--red-900);
    background: #fff3e8;
    font-size: .85rem;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.quote-field {
    display: block;
    min-width: 0;
}

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

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    min-height: 3.05rem;
    padding: .72rem .78rem;
    border: 1px solid #d8c7bf;
    border-radius: .65rem;
    color: #291b18;
    background: white;
    font: inherit;
}

.quote-field textarea {
    min-height: 7rem;
    resize: vertical;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #8a7d77;
}

.quote-select-note {
    display: block;
    margin-top: .45rem;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.4;
}

.quote-package-preview {
    padding: 1rem;
    border: 1px solid #e7c9bc;
    border-radius: .8rem;
    background: linear-gradient(145deg, #fffaf5, #fff);
}

.quote-package-preview[hidden],
.quote-package-price[hidden],
[data-package-variant-field][hidden] {
    display: none;
}

.quote-package-type {
    display: block;
    margin-bottom: .3rem;
    color: var(--orange);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quote-package-preview h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.3rem;
}

.quote-package-preview > p {
    margin: .35rem 0 0;
    color: var(--muted);
    font-size: .86rem;
}

.quote-package-preview-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
    margin-top: .9rem;
}

.quote-package-preview-details > span {
    display: grid;
    gap: .18rem;
    padding: .65rem;
    border-radius: .6rem;
    background: #fff3e8;
}

.quote-package-preview-details strong {
    color: var(--orange);
    font-size: .67rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.quote-package-preview-details b {
    color: var(--red-900);
    font-size: .78rem;
    line-height: 1.35;
}

.quote-package-preview [data-preview-included-wrap] {
    margin-top: .85rem;
    padding-top: .8rem;
    border-top: 1px solid var(--line);
    color: var(--red-900);
    font-size: .8rem;
}

.quote-package-preview [data-preview-included] {
    display: grid;
    gap: .3rem;
    margin: .45rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.quote-package-best-for {
    padding-top: .75rem;
    border-top: 1px solid var(--line);
}

.quote-package-price {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .2rem .75rem;
    align-items: end;
    padding: .8rem .9rem;
    border: 1px solid #fdba74;
    border-radius: .7rem;
    color: #7c2d12;
    background: #fff7ed;
}

.quote-package-price > span {
    font-size: .86rem;
    font-weight: 850;
}

.quote-package-price > strong {
    grid-row: 1 / 3;
    grid-column: 2;
    color: var(--red-900);
    font-size: 1.45rem;
}

.quote-package-price > small {
    grid-column: 1;
    color: #8a4b2c;
    font-size: .72rem;
}

.quote-onsite-upgrade {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    align-items: start;
    padding: .9rem;
    border: 1px solid #e7c9bc;
    border-radius: .75rem;
    color: var(--red-950);
    background: #fffaf5;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.quote-onsite-upgrade:has(input:checked) {
    border-color: var(--orange);
    background: #fff3e8;
    box-shadow: 0 0 0 2px rgba(255, 94, 20, .14);
}

.quote-onsite-upgrade input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .2rem;
    accent-color: var(--orange);
}

.quote-onsite-upgrade > span {
    display: grid;
    gap: .15rem;
}

.quote-onsite-upgrade strong {
    color: var(--red-900);
    font-size: .92rem;
}

.quote-onsite-upgrade em {
    color: var(--muted);
    font-size: .78rem;
    font-style: normal;
    line-height: 1.45;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: var(--orange);
    outline: 3px solid rgba(255, 94, 20, .14);
}

.quote-field [aria-invalid="true"] {
    border-color: #b91c1c;
    background: #fff5f5;
}

.quote-conditional {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: .85rem;
    background: #fffcfa;
}

.quote-package-fields {
    gap: 1.2rem;
}

.quote-field-help {
    margin: -.2rem 0 .6rem;
    color: var(--muted);
    font-size: .8rem;
}

.quote-option-group,
[data-salad-options] {
    margin-top: 1rem;
}

.quote-option-group-heading {
    margin: 0 0 .55rem;
    color: var(--red-950);
    font-size: .84rem;
    font-weight: 800;
}

.quote-option-group .quote-field-help {
    margin: 0 0 .65rem;
}

.quote-heating-notice {
    display: grid;
    gap: .15rem;
    margin: 0 0 .75rem;
    padding: .7rem .8rem;
    border: 1px solid #fdba74;
    border-radius: .6rem;
    color: #7c2d12;
    background: #fff7ed;
    font-size: .8rem;
    line-height: 1.45;
}

.quote-heating-notice strong {
    color: #9a3412;
}

.quote-option-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
}

.quote-option-list-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-option-list-sides {
    max-height: 16rem;
    overflow-y: auto;
    padding: .15rem .25rem .15rem .15rem;
    scrollbar-color: #d8b9aa transparent;
}

.quote-option-list-stack {
    grid-template-columns: 1fr;
}

.quote-option-list label {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    min-width: 0;
    padding: .6rem .65rem;
    border: 1px solid #eadfd9;
    border-radius: .6rem;
    color: #46332e;
    background: white;
    font-size: .82rem;
    line-height: 1.35;
    cursor: pointer;
}

.quote-option-list label:has(input:checked) {
    border-color: var(--orange);
    color: var(--red-900);
    background: #fff3e8;
}

.quote-option-list input {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin-top: .06rem;
    accent-color: var(--orange);
}

.quote-meat-warning {
    margin: .7rem 0 0;
    padding: .75rem .85rem;
    border: 1px solid #fdba74;
    border-radius: .65rem;
    color: #7c2d12;
    background: #fff7ed;
    font-size: .84rem;
    line-height: 1.45;
}

.quote-meat-warning[hidden] {
    display: none;
}

.quote-meat-warning strong {
    display: block;
    margin-bottom: .15rem;
    color: #9a3412;
}

.quote-onsite-notice {
    display: grid;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid #fdba74;
    border-radius: .75rem;
    color: #5f2a13;
    background: #fff7ed;
}

.quote-onsite-notice[hidden] {
    display: none;
}

.quote-onsite-notice-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .7rem;
    align-items: start;
}

.quote-onsite-notice-heading > span {
    display: grid;
    width: 1.5rem;
    height: 1.5rem;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--orange);
    font-size: .8rem;
    font-weight: 900;
}

.quote-onsite-notice-heading strong {
    display: block;
    color: #9a3412;
    font-size: .95rem;
}

.quote-onsite-notice-heading p {
    margin: .2rem 0 0;
    font-size: .82rem;
    line-height: 1.45;
}

.quote-onsite-notice ul {
    display: grid;
    gap: .45rem;
    margin: 0;
    padding-left: 1.2rem;
    font-size: .82rem;
    line-height: 1.45;
}

.quote-onsite-notice-why {
    margin: 0;
    padding: .75rem;
    border: 1px solid #fed7aa;
    border-radius: .6rem;
    color: var(--red-900);
    background: white;
    font-size: .82rem;
    line-height: 1.45;
}

.quote-onsite-notice-why strong {
    display: block;
    margin-bottom: .2rem;
}

.quote-submit-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .85rem;
    padding-top: .25rem;
}

.quote-submit-row p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.4;
}

.quote-submit-row button:disabled {
    opacity: .62;
    cursor: wait;
}

.quote-form-status {
    min-height: 1.3rem;
    margin: -.45rem 0 0;
    color: #166534;
    font-size: .85rem;
    font-weight: 750;
}

.quote-form-status.is-error {
    color: #b91c1c;
}

.quote-form-success {
    padding: 3rem 1.25rem;
    text-align: center;
    outline: 0;
}

.quote-form-success > span {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    border-radius: 50%;
    color: #166534;
    background: #dcfce7;
    font-size: 1.6rem;
    font-weight: 900;
}

.quote-form-success h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.55rem;
}

.quote-form-success p {
    max-width: 34rem;
    margin: .65rem auto 0;
    color: var(--muted);
}

.gallery-shell {
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    overflow: hidden;
}

.gallery-grid.is-loading {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-row {
    width: 100%;
    overflow: hidden;
    padding: .15rem 0 .45rem;
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.gallery-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: gallery-scroll-left 75s linear infinite;
}

.gallery-row-reverse .gallery-track {
    animation-name: gallery-scroll-right;
}

.gallery-grid:hover .gallery-track,
.gallery-grid:focus-within .gallery-track {
    animation-play-state: paused;
}

.gallery-set {
    display: flex;
    flex-shrink: 0;
    gap: .85rem;
    padding-right: .85rem;
}

.gallery-card {
    position: relative;
    flex: 0 0 280px;
    width: 280px;
    height: 190px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 1rem;
    background: #f3f4f6;
    cursor: zoom-in;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-card span {
    position: absolute;
    inset: auto .7rem .7rem;
    padding: .5rem .7rem;
    border-radius: .55rem;
    color: white;
    background: rgba(31, 17, 16, .78);
    font-size: .8rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.gallery-skeleton {
    min-height: 190px;
    border-radius: 1rem;
    background: linear-gradient(90deg, #f3f4f6, #e5e7eb, #f3f4f6);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    to { background-position: -200% 0; }
}

@keyframes gallery-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes gallery-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.gallery-fallback {
    padding: 1rem;
    border-radius: .75rem;
    background: #fff7ed;
}

.gallery-viewer {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, .94);
}

.gallery-viewer.is-open {
    display: flex;
}

.gallery-viewer img {
    max-width: 96vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .65rem 1rem;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: .7rem;
    color: white;
    background: rgba(255, 255, 255, .12);
    cursor: pointer;
}

.partner-panel {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) 1.2fr;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.partner-panel img {
    border-radius: .75rem;
}

.partner-panel h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.35rem;
}

.partner-panel p {
    margin: .45rem 0 0;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: .85rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: white;
    box-shadow: 0 5px 16px rgba(69, 10, 10, .04);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    color: var(--red-950);
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: grid;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    color: var(--red-900);
    background: #fef2f2;
    font-size: 1.25rem;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted);
}

.faq-answer p {
    margin: 0;
}

.cta-section {
    padding: 4rem 0;
}

.cta-panel {
    display: grid;
    padding: clamp(1.6rem, 5vw, 3.5rem);
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    border-radius: var(--radius-lg);
    background: #fff1e8;
}

.cta-panel p {
    margin: .8rem 0 0;
    color: var(--muted);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    color: rgba(255, 255, 255, .78);
    background: #21100f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 3rem;
}

.footer-logo {
    width: min(100%, 260px);
    padding: .65rem;
    border-radius: .6rem;
    background: white;
}

.footer-grid p {
    max-width: 440px;
}

.footer-grid h2 {
    margin: 0 0 .8rem;
    color: white;
    font-size: 1rem;
}

.footer-grid a {
    display: block;
    width: fit-content;
    margin: .5rem 0;
    text-decoration-color: rgba(255, 255, 255, .35);
    text-underline-offset: .2em;
}

.footer-grid > div:last-child > span {
    display: block;
    margin: .5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .82rem;
}

.mobile-action-bar {
    display: none;
}

.sales-hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        linear-gradient(90deg, rgba(44, 6, 6, .96), rgba(74, 14, 14, .72)),
        url("images/events/catering-hero.jpg") center 48% / cover no-repeat;
}

.sales-hero-inner {
    display: grid;
    min-height: 540px;
    align-items: center;
    grid-template-columns: minmax(0, 690px) 1fr;
    padding-block: 4.5rem;
}

.sales-hero h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.sales-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.2rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.included-card {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: white;
}

.included-card strong {
    display: block;
    color: var(--red-950);
}

.included-card span {
    color: var(--muted);
    font-size: .9rem;
}

.section-feature-image {
    width: 100%;
    height: 260px;
    margin: 1.4rem 0;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.requirements-panel {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    background: var(--red-950);
}

.requirements-panel h3 {
    margin-top: 0;
}

.requirements-panel li {
    margin: .65rem 0;
}

@media (max-width: 1050px) {
    .primary-nav {
        gap: .9rem;
    }

    .primary-nav > a:not(.button) {
        font-size: .86rem;
    }

    .brand {
        flex-basis: 235px;
    }

    .service-grid,
    .package-grid,
    .addon-grid,
    .catering-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catering-option-card-fresh-salads {
        grid-column: 1 / -1;
    }

    .service-card:last-child,
    .package-card:last-child {
        grid-column: 1 / -1;
    }

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

    .hosted-package {
        grid-template-columns: 1fr 1fr;
    }

    .hosted-action {
        grid-column: 1 / -1;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .hosted-action .button {
        grid-row: 1 / 3;
        grid-column: 2;
        margin: 0;
    }

    .gallery-grid.is-loading {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 7rem;
    }

    .utility-note {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 1001;
        inset: 7.7rem 1rem auto;
        display: none;
        max-height: calc(100vh - 9rem);
        overflow-y: auto;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 1rem;
        background: white;
        box-shadow: var(--shadow-lg);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: .7rem;
    }

    .primary-nav .button {
        width: 100%;
    }

    .hero-inner,
    .sales-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        background-position: 62% center;
    }

    .hero-inner {
        min-height: auto;
        padding-block: 3.5rem;
    }

    .hero-copy {
        max-width: 660px;
        padding: 0;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 9vw, 4.4rem);
    }

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

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

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

    .complete-carving-banner {
        grid-template-columns: 1fr;
    }

    .complete-carving-banner-actions {
        min-width: 0;
    }

    .hosted-package {
        grid-template-columns: 1fr;
    }

    .hosted-action {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .hosted-action .button {
        grid-row: auto;
        grid-column: auto;
        width: fit-content;
        margin-top: .35rem;
    }

    .split-media {
        order: -1;
    }

    .split-media img {
        min-height: 320px;
    }

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

    .quote-copy {
        position: static;
    }

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

    .partner-panel {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 4.25rem;
    }

    .container,
    .narrow {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .section {
        padding: 4rem 0;
    }

    .utility-inner {
        min-height: 2.8rem;
        justify-content: space-between;
        gap: .5rem;
        font-size: .82rem;
    }

    .utility-email {
        max-width: 58%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-shell {
        min-height: 4.65rem;
        gap: 1rem;
    }

    .brand {
        flex-basis: 235px;
    }

    .brand img {
        max-height: 50px;
        width: auto;
    }

    .primary-nav {
        inset: 7.75rem .65rem auto;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(49, 6, 6, .94), rgba(78, 13, 13, .8)),
            url("images/events/hero-real-event.jpg") center 62% / cover no-repeat;
    }

    .hero-inner {
        padding-block: 2.5rem 3rem;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
        line-height: 1.02;
    }

    .hero-lede {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .hero-points {
        margin-top: 1rem;
    }

    .hero-points li {
        padding: .38rem .62rem;
        font-size: .78rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 1.4rem;
    }

    .hero-actions .button {
        min-height: 3rem;
        padding-inline: .7rem;
        font-size: .9rem;
    }

    .hero-note {
        margin-bottom: 0;
    }

    .trust-grid,
    .service-grid,
    .package-grid,
    .addon-grid,
    .catering-options-grid,
    .price-notes,
    .included-grid,
    .crowd-shortcuts {
        grid-template-columns: 1fr;
    }

    .catering-option-card-fresh-salads {
        grid-column: auto;
    }

    .catering-option-card-fresh-salads .catering-option-list {
        grid-template-columns: 1fr;
    }

    .catering-options-cta {
        grid-template-columns: 1fr;
    }

    .catering-options-cta .button {
        width: 100%;
        white-space: normal;
    }

    .package-tagline {
        min-height: 0;
    }

    .hosted-package {
        gap: 1.4rem;
    }

    .hosted-action .button {
        width: 100%;
    }

    .trust-item,
    .trust-item:nth-child(2) {
        min-height: 4.6rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .service-card:last-child,
    .package-card:last-child {
        grid-column: auto;
    }

    .choice-helper {
        grid-template-columns: auto 1fr;
    }

    .choice-helper .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .package-divider {
        margin-top: 2.6rem;
    }

    .package-divider h3 {
        font-size: 1.25rem;
    }

    .split-media img {
        min-height: 245px;
        border-radius: 1.25rem;
    }

    .media-badge {
        position: static;
        max-width: none;
        margin-top: .7rem;
    }

    .quote-section {
        padding: 4rem 0;
    }

    .quote-card {
        padding: .5rem;
        border-radius: 1.25rem;
    }

    .quote-card-head {
        align-items: flex-start;
        padding: .65rem .65rem 1rem;
        flex-direction: column;
    }

    .quote-form-grid,
    .quote-service-options,
    .quote-option-list,
    .quote-option-list-three,
    .quote-package-preview-details,
    .quote-submit-row {
        grid-template-columns: 1fr;
    }

    .quote-service-option > span {
        min-height: 0;
    }

    .quote-conditional {
        padding: .8rem;
    }

    .quote-option-list-sides {
        max-height: none;
        overflow: visible;
    }

    .quote-submit-row .button {
        width: 100%;
    }

    .gallery-shell {
        padding: .65rem;
        border-radius: 1.25rem;
    }

    .gallery-grid.is-loading {
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
    }

    .gallery-card,
    .gallery-skeleton {
        height: 150px;
        min-height: 150px;
    }

    .gallery-card {
        flex-basis: 220px;
        width: 220px;
    }

    .partner-panel {
        padding: 1rem;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 1200;
        inset: auto 0 0;
        display: grid;
        grid-template-columns: .72fr 1fr 1fr;
        min-height: 4.25rem;
        padding-bottom: env(safe-area-inset-bottom);
        color: white;
        background: #21100f;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, .2);
    }

    .mobile-action-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .35rem;
        padding: .6rem .35rem;
        border-right: 1px solid rgba(255, 255, 255, .14);
        font-size: .82rem;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-action-primary {
        background: var(--red-700);
    }

    .sales-hero-inner {
        min-height: auto;
        padding-block: 3rem;
    }

    .sales-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .gallery-row {
        overflow-x: auto;
        mask-image: none;
    }

    .gallery-track {
        animation: none;
        transform: none;
    }

    .gallery-set[aria-hidden="true"] {
        display: none;
    }
}

/* Confirmed on-site cooking and carving details */
.carving-page {
    background: var(--cream);
}

.carving-hero {
    overflow: hidden;
    padding: 4.5rem 0 0;
    color: white;
    background:
        radial-gradient(circle at 86% 10%, rgba(249, 115, 22, .34), transparent 24rem),
        linear-gradient(135deg, var(--red-950), #2d0c09 64%, #51100b);
}

.carving-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 3rem;
    align-items: end;
    padding-bottom: 2.5rem;
}

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

.carving-hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.carving-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.carving-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-top: 1.8rem;
}

.carving-back-link {
    color: #fed7aa;
    font-weight: 800;
    text-underline-offset: .22em;
}

.carving-confirmed-card {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
    backdrop-filter: blur(10px);
}

.carving-confirmed-card > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 50%;
    color: var(--red-950);
    background: #fed7aa;
    font-size: 1.25rem;
    font-weight: 900;
}

.carving-confirmed-card strong {
    display: block;
    color: white;
    font-size: 1.05rem;
    line-height: 1.35;
}

.carving-confirmed-card p {
    margin: .45rem 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    line-height: 1.55;
}

.carving-hero-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 0 0 -3.4rem;
    border: 5px solid white;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 24px 70px rgba(28, 7, 5, .28);
}

.carving-hero-banner img {
    width: 100%;
    aspect-ratio: 4.48 / 1;
    object-fit: cover;
}

.carving-rundown {
    padding: 2rem 0 2rem;
    background: white;
}

.carving-rundown-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.carving-rundown-heading h2,
.carving-form-sidebar h2,
.carving-form-heading h2 {
    margin: 0;
    color: var(--red-950);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.carving-rundown-heading > p:last-child,
.carving-form-heading > p {
    margin: .8rem 0 0;
    color: var(--muted);
}

.carving-rundown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.carving-rundown-grid article {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fffaf5;
}

.carving-rundown-grid article > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: .85rem;
    color: white;
    background: var(--red-900);
    font-weight: 900;
}

.carving-rundown-grid h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.05rem;
}

.carving-rundown-grid p {
    margin: .3rem 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.carving-form-section {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(249, 115, 22, .22), transparent 28rem),
        linear-gradient(135deg, #3b0909, var(--red-900));
}

.carving-form-layout {
    display: grid;
    grid-template-columns: minmax(300px, .76fr) minmax(560px, 1.24fr);
    gap: 2rem;
    align-items: start;
}

.carving-form-sidebar {
    position: sticky;
    top: 9.5rem;
    color: white;
}

.carving-form-sidebar h2 {
    color: white;
}

.carving-sidebar-intro > p:last-child {
    color: rgba(255, 255, 255, .76);
}

.carving-venue-list {
    display: grid;
    gap: .65rem;
    margin-top: 1.5rem;
}

.carving-venue-list > div {
    display: grid;
    grid-template-columns: 2.15rem 1fr;
    gap: .7rem;
    align-items: start;
    padding: .8rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .75rem;
    background: rgba(255, 255, 255, .07);
}

.carving-venue-list > div > span {
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border-radius: 50%;
    color: var(--red-950);
    background: #fed7aa;
    font-size: .8rem;
    font-weight: 900;
}

.carving-venue-list p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: .86rem;
    line-height: 1.45;
}

.carving-venue-list strong {
    display: block;
    margin-bottom: .12rem;
    color: white;
    font-size: .92rem;
}

.carving-packdown-note {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: .8rem;
    color: #7c2d12;
    background: #ffedd5;
}

.carving-packdown-note strong {
    display: block;
}

.carving-packdown-note p {
    margin: .25rem 0 0;
    font-size: .86rem;
    line-height: 1.5;
}

.carving-form-card {
    overflow: hidden;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.carving-form-heading {
    padding: .35rem .35rem 1.25rem;
}

.carving-form-heading > span {
    display: inline-flex;
    margin-bottom: .65rem;
    color: var(--orange-600);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.carving-form-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.carving-form {
    display: grid;
    gap: 1rem;
    color: var(--red-950);
}

.carving-form[hidden],
.carving-form-success[hidden] {
    display: none;
}

.carving-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.carving-fieldset {
    min-width: 0;
    margin: 0;
    padding: 1.05rem;
    border: 1px solid #ead8ce;
    border-radius: 1rem;
    background: #fffdfb;
}

.carving-fieldset legend {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: 0 .35rem;
    color: var(--red-900);
    font-size: 1rem;
    font-weight: 900;
}

.carving-fieldset legend > span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: .55rem;
    color: white;
    background: var(--red-900);
    font-size: .75rem;
}

.carving-fieldset-copy {
    margin: 0 0 .8rem;
    color: var(--muted);
    font-size: .86rem;
}

.carving-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.carving-field {
    display: block;
    min-width: 0;
}

.carving-field-wide {
    grid-column: 1 / -1;
}

.carving-field > span {
    display: block;
    margin-bottom: .4rem;
    color: var(--red-950);
    font-size: .86rem;
    font-weight: 850;
}

.carving-field > span small {
    color: var(--muted);
    font-weight: 600;
}

.carving-field input,
.carving-field textarea {
    width: 100%;
    min-height: 3rem;
    padding: .72rem .78rem;
    border: 1px solid #d8c7bf;
    border-radius: .65rem;
    color: #291b18;
    background: white;
}

.carving-field textarea {
    min-height: 7rem;
    resize: vertical;
}

.carving-field input:focus,
.carving-field textarea:focus {
    border-color: var(--orange-600);
    outline: 3px solid rgba(249, 115, 22, .15);
}

.carving-field-help {
    display: block;
    margin-top: .35rem;
    color: var(--muted);
    font-size: .72rem;
}

.carving-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.carving-choice {
    position: relative;
    cursor: pointer;
}

.carving-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.carving-choice > span {
    display: grid;
    min-height: 6.2rem;
    align-content: center;
    gap: .25rem;
    padding: .9rem;
    border: 1px solid #e7c9bc;
    border-radius: .75rem;
    background: white;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.carving-choice strong {
    color: var(--red-900);
    font-size: .9rem;
}

.carving-choice small {
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.4;
}

.carving-choice input:checked + span {
    border-color: var(--orange-600);
    background: #fff3e8;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .14);
}

.carving-choice input:focus-visible + span {
    outline: 3px solid rgba(249, 115, 22, .28);
    outline-offset: 2px;
}

.carving-check-list {
    display: grid;
    gap: .55rem;
}

.carving-check-list label {
    display: grid;
    grid-template-columns: 1.2rem 1fr;
    gap: .7rem;
    align-items: start;
    padding: .75rem;
    border: 1px solid #ead8ce;
    border-radius: .7rem;
    color: #42211c;
    background: white;
    cursor: pointer;
    font-size: .84rem;
    line-height: 1.45;
}

.carving-check-list label:has(input:checked) {
    border-color: #fdba74;
    background: #fff7ed;
}

.carving-check-list input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .12rem;
    accent-color: var(--orange-600);
}

.carving-submit-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: .25rem;
}

.carving-submit-row p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
}

.carving-submit-row button:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.carving-form-status {
    min-height: 1.5rem;
    margin: 0;
    padding-inline: .25rem;
    color: #166534;
    font-size: .85rem;
    font-weight: 800;
}

.carving-form-status.is-error {
    color: #991b1b;
}

.carving-form-success {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem;
    border: 1px solid #86efac;
    border-radius: 1rem;
    color: #14532d;
    background: #f0fdf4;
}

.carving-form-success > span {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: #15803d;
    font-size: 1.35rem;
    font-weight: 900;
}

.carving-form-success h3 {
    margin: 0;
    color: #14532d;
    font-size: 1.3rem;
}

.carving-form-success p {
    margin: .35rem 0 0;
}

.carving-reference {
    font-size: .82rem;
    font-weight: 800;
}

@media (max-width: 980px) {
    .carving-hero-grid,
    .carving-form-layout {
        grid-template-columns: 1fr;
    }

    .carving-hero-grid {
        gap: 1.5rem;
    }

    .carving-confirmed-card {
        max-width: 620px;
    }

    .carving-rundown-grid {
        grid-template-columns: 1fr;
    }

    .carving-form-sidebar {
        position: static;
    }

    .carving-venue-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .carving-hero {
        padding-top: 3rem;
    }

    .carving-hero-copy h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .carving-hero-banner {
        margin-bottom: -2.2rem;
        border-width: 3px;
    }

    .carving-hero-banner img {
        aspect-ratio: 2.2 / 1;
    }

    .carving-rundown {
        padding-top: 5.5rem;
    }

    .carving-form-section {
        padding: 3.5rem 0;
    }

    .carving-venue-list,
    .carving-form-grid,
    .carving-choice-grid,
    .carving-submit-row {
        grid-template-columns: 1fr;
    }

    .carving-form-card {
        padding: 1rem;
        border-radius: 1.25rem;
    }

    .carving-fieldset {
        padding: .85rem;
    }

    .carving-choice > span {
        min-height: auto;
    }
}

/* Standalone service pages */
.service-detail-page {
    background: var(--paper);
}

.service-detail-hero {
    overflow: hidden;
    padding: 1.25rem 0 4.5rem;
    color: white;
    background:
        radial-gradient(circle at 84% 8%, rgba(249, 115, 22, .28), transparent 26rem),
        linear-gradient(135deg, var(--red-950), #2b0d0b 68%, #5c120d);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    margin-bottom: 2.25rem;
    color: rgba(255, 255, 255, .68);
    font-size: .86rem;
}

.breadcrumbs a {
    color: white;
    font-weight: 750;
    text-underline-offset: .2em;
}

.service-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.service-detail-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.8rem, 5.7vw, 5.35rem);
    line-height: .98;
    letter-spacing: -.052em;
}

.service-detail-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.15rem;
}

.service-detail-highlights {
    display: grid;
    gap: .55rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.service-detail-highlights li {
    position: relative;
    padding-left: 1.55rem;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

.service-detail-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fdba74;
    font-weight: 900;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.8rem;
}

.service-detail-hero .button-secondary {
    border-color: rgba(255, 255, 255, .5);
    color: white;
    background: rgba(255, 255, 255, .08);
}

.service-detail-hero .button-secondary:hover {
    border-color: white;
    color: var(--red-950);
}

.service-detail-hero-media {
    position: relative;
}

.service-detail-hero-media img {
    width: 100%;
    min-height: 420px;
    aspect-ratio: 4 / 4.35;
    border: 4px solid rgba(255, 255, 255, .86);
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}

.service-detail-hero-media > span {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    max-width: 270px;
    padding: .9rem 1rem;
    border-radius: .9rem;
    color: white;
    background: rgba(69, 10, 10, .92);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.4;
}

.service-detail-callout {
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    color: white;
    background:
        radial-gradient(circle at 95% 5%, rgba(249, 115, 22, .28), transparent 15rem),
        var(--red-950);
    box-shadow: var(--shadow-lg);
}

.service-detail-callout h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.08;
}

.service-detail-callout p:not(.eyebrow) {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, .82);
}

.service-detail-next {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid #fdba74;
    border-radius: 1rem;
    background: #fff7ed;
}

.service-detail-next > div {
    display: grid;
    gap: .25rem;
}

.service-detail-next strong {
    color: var(--red-950);
    font-size: 1.05rem;
}

.service-detail-next span {
    color: var(--muted);
}

.service-level-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-level-grid article {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: white;
    box-shadow: var(--shadow-sm);
}

.service-level-grid article > span {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: .8rem;
    color: white;
    background: var(--red-900);
    font-weight: 900;
}

.service-level-grid h3 {
    margin: 0;
    color: var(--red-950);
    font-size: 1.25rem;
}

.service-level-grid p {
    margin: .55rem 0 0;
    color: var(--muted);
}

.service-detail-page .complete-customisation-note {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.service-detail-page .friendly-note p {
    margin: .35rem 0 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .service-detail-hero-grid,
    .service-level-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero-media {
        max-width: 720px;
    }

    .service-detail-hero-media img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 680px) {
    .service-detail-hero {
        padding-bottom: 3.5rem;
    }

    .breadcrumbs {
        margin-bottom: 1.75rem;
    }

    .service-detail-hero-copy h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .service-detail-actions,
    .service-detail-next {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-detail-actions .button,
    .service-detail-next .button {
        width: 100%;
    }

    .service-detail-hero-media img {
        aspect-ratio: 4 / 3;
        border-width: 3px;
    }

    .service-detail-hero-media > span {
        position: static;
        display: block;
        max-width: none;
        margin-top: .7rem;
    }
}

/* Booking terms and privacy policy */
.legal-hero {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    color: white;
    background:
        radial-gradient(circle at 88% 18%, rgba(249, 115, 22, .3), transparent 24rem),
        linear-gradient(135deg, #450a0a, #7f1d1d 60%, #9a3412);
}

.legal-hero-inner {
    max-width: 58rem;
}

.legal-hero .breadcrumbs {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .78);
}

.legal-hero h1 {
    max-width: 48rem;
    margin: .4rem 0 1rem;
    color: white;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1;
}

.legal-hero p:not(.eyebrow) {
    max-width: 46rem;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.legal-reviewed {
    display: inline-flex;
    margin-top: 1.25rem;
    padding: .45rem .75rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    background: rgba(0, 0, 0, .16);
    font-size: .82rem;
    font-weight: 750;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 20rem);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.legal-content {
    display: grid;
    gap: 2.25rem;
}

.legal-content section {
    padding-bottom: 2.25rem;
    border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-content h2,
.legal-aside h2 {
    margin: 0 0 .8rem;
    color: var(--red-900);
}

.legal-content h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.legal-content p,
.legal-content li,
.legal-aside p {
    color: var(--muted);
    line-height: 1.72;
}

.legal-content p {
    margin: 0 0 .85rem;
}

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

.legal-content ul {
    display: grid;
    gap: .45rem;
    margin: .85rem 0 1rem;
    padding-left: 1.3rem;
}

.legal-aside {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: .7rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--cream);
    box-shadow: var(--shadow-sm);
}

.legal-aside h2,
.legal-aside p {
    margin: 0;
}

.legal-aside a {
    color: var(--red-800);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.legal-aside span {
    color: var(--muted);
}

.legal-aside hr {
    width: 100%;
    margin: .65rem 0;
    border: 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-aside {
        position: static;
    }
}
