:root {
    --ink: #172126;
    --ink-soft: #354248;
    --cream: #f7f4ee;
    --stone: #ebe6dc;
    --paper: #fffdf9;
    --copper: #992620;
    --copper-dark: #711916;
    --ember: #d8665f;
    --sage: #69766a;
    --line: #d8d2c8;
    --white: #fff;
    --shadow: 0 20px 55px rgba(23, 33, 38, .11);
    --radius: 22px;
    --shell: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 135px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

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

[hidden] {
    display: none !important;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    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: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 6.2vw, 5.8rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--copper-dark);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #f0aaa2;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.55;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 12px 22px;
    font-size: .93rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button:disabled {
    cursor: not-allowed;
    opacity: .78;
    transform: none;
}

.button.is-loading {
    cursor: wait;
    gap: 10px;
}

.button.is-loading::before {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: var(--white);
    border-radius: 50%;
    content: "";
    animation: button-loading-spin .75s linear infinite;
}

@keyframes button-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.button-primary {
    background: var(--copper);
    color: var(--white);
}

.button-primary:hover {
    background: var(--copper-dark);
}

.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    background: #29363c;
}

.button-ghost {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.button-outline {
    border-color: var(--ink);
    color: var(--ink);
}

.button-outline:hover {
    background: var(--ink);
    color: var(--white);
}

.button-small {
    min-height: 42px;
    padding: 9px 17px;
    background: var(--copper);
    color: var(--white) !important;
}

.button-block {
    width: 100%;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    color: var(--copper);
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(216, 210, 200, .8);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
}

.header-contact-bar {
    background: var(--ink);
    color: var(--white);
}

.header-contact-inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: .75rem;
    font-weight: 750;
    line-height: 1.2;
}

.header-phone-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.header-contact-inner a {
    color: var(--white);
    text-decoration: none;
}

.header-contact-inner a:hover,
.header-contact-inner a:focus-visible {
    color: #f0aaa2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.header-phone-links > span {
    color: rgba(255, 255, 255, .42);
}

.header-email {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .24);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    width: 255px;
    height: auto;
}

.brand-location {
    position: absolute;
    right: 2px;
    bottom: -6px;
    color: var(--copper-dark);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .19em;
    line-height: 1;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav > a:not(.button) {
    position: relative;
    color: var(--ink-soft);
    font-size: .91rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--copper);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(15, 25, 29, .96) 0%, rgba(15, 25, 29, .82) 40%, rgba(15, 25, 29, .22) 77%, rgba(15, 25, 29, .08) 100%),
        linear-gradient(0deg, rgba(15, 25, 29, .45), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-block: 100px;
}

.hero-content h1 {
    max-width: 810px;
    margin-bottom: 26px;
    color: var(--white);
}

.hero-content > p {
    max-width: 670px;
    margin-bottom: 34px;
    color: #e2e5e5;
    font-size: 1.18rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin: 44px 0 0;
    padding: 0;
    color: #e4e7e6;
    font-size: .9rem;
    font-weight: 700;
    list-style: none;
}

.hero-points li::before {
    margin-right: 8px;
    color: var(--ember);
    content: "◆";
    font-size: .65rem;
}

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

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

.proof-grid > div {
    display: grid;
    min-height: 118px;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    border-left: 1px solid var(--line);
}

.proof-grid > div:last-child {
    border-right: 1px solid var(--line);
}

.proof-grid > div > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: #f1d9d6;
    color: var(--copper-dark);
    font-size: .72rem;
    font-weight: 900;
}

.proof-grid p {
    display: flex;
    margin: 0;
    flex-direction: column;
    line-height: 1.3;
}

.proof-grid strong {
    font-size: .92rem;
}

.proof-grid small {
    margin-top: 6px;
    color: #657077;
    font-size: .78rem;
    line-height: 1.4;
}

.section {
    padding-block: 110px;
}

.section-stone {
    background: var(--stone);
}

.section-dark {
    background: var(--ink);
    color: #d9dede;
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    align-items: end;
    gap: 60px;
}

.centred-heading {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centred-heading h2 {
    margin-bottom: 22px;
}

.centred-heading p {
    margin-bottom: 0;
}

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

.service-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
}

.service-card-featured {
    border-color: #bd716d;
    box-shadow: var(--shadow);
}

.service-card > img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    object-position: center;
}

.service-card:nth-child(1) > img {
    object-position: center 44%;
}

.service-card:nth-child(2) > img {
    object-position: center 72%;
}

.service-card:nth-child(3) > img {
    object-position: center 52%;
}

.service-card > div {
    padding: 31px 30px 34px;
}

.card-number {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 4px;
    background: var(--ink);
    color: var(--white);
    font-size: .78rem;
    font-weight: 900;
}

.card-label {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 6px 10px;
    border-radius: 99px;
    background: #f1d9d6;
    color: var(--copper-dark);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--ink-soft);
}

.check-list {
    margin: 24px 0 26px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 25px;
}

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

.package-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.package-card {
    border: 1px solid #d3cbc0;
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
}

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

.package-image {
    position: relative;
}

.package-image img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    object-position: center;
}

.package-image > span {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 99px;
    background: var(--paper);
    color: var(--copper-dark);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.package-card-body {
    padding: 30px;
}

.package-crowd {
    margin-bottom: 10px;
    color: var(--copper-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.package-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.package-title-row h3 {
    margin-bottom: 0;
}

.package-title-row > strong {
    color: var(--copper-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1;
}

.package-inclusions {
    margin: 24px 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.package-inclusions li {
    margin: 9px 0;
}

.package-inclusions li::before {
    margin-right: 10px;
    color: var(--copper);
    content: "—";
}

.package-card-body > p {
    min-height: 80px;
    color: var(--ink-soft);
    font-size: .91rem;
}

.section-action {
    display: flex;
    margin-top: 38px;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-action p {
    margin: 0;
}

.roaster-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
    align-items: start;
    gap: 90px;
}

.roaster-overview-grid > div:first-child {
    position: sticky;
    top: 120px;
}

.roaster-overview-grid > div:first-child p {
    margin-bottom: 30px;
    color: var(--ink-soft);
}

.size-list {
    border-top: 1px solid var(--line);
}

.size-list a {
    display: grid;
    grid-template-columns: 90px 1.1fr 1.5fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
}

.size-list a > span {
    color: var(--copper-dark);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.size-list a > small {
    color: var(--ink-soft);
}

.size-list a > b {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.gallery-section {
    padding-bottom: 80px;
    background: var(--paper);
    overflow: hidden;
}

.gallery-heading {
    max-width: 820px;
}

.gallery-rail {
    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: melbourne-gallery-scroll 70s linear infinite;
}

.gallery-set {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    padding-right: 16px;
}

.gallery-rail a {
    width: clamp(300px, 30vw, 470px);
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-rail img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.gallery-rail a:hover img {
    transform: scale(1.025);
}

@keyframes melbourne-gallery-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
    gap: 100px;
}

.process-grid > div p {
    max-width: 510px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.process-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.process-list li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    font-size: .8rem;
    font-weight: 900;
}

.process-list strong {
    color: var(--white);
}

.process-list p {
    margin: 5px 0 0;
    color: #aeb8bc;
    font-size: .92rem;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.area-grid > div:first-child p {
    color: var(--ink-soft);
}

.suburb-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suburb-cloud span,
.suburb-cloud b {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--paper);
    font-size: .84rem;
}

.suburb-cloud b {
    border-color: var(--copper);
    color: var(--copper-dark);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 90px;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro p {
    color: var(--ink-soft);
}

.accordion-list {
    border-top: 1px solid #cfc7ba;
}

.accordion-list details {
    border-bottom: 1px solid #cfc7ba;
}

.accordion-list summary {
    display: flex;
    padding: 23px 0;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.accordion-list summary::-webkit-details-marker {
    display: none;
}

.accordion-list summary span {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.accordion-list summary span::before,
.accordion-list summary span::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
    background: var(--copper);
    content: "";
}

.accordion-list summary span::after {
    transform: rotate(90deg);
    transition: transform .2s ease;
}

.accordion-list details[open] summary span::after {
    transform: rotate(0);
}

.accordion-list details p {
    max-width: 720px;
    padding: 0 30px 22px 0;
    color: var(--ink-soft);
}

.quote-section {
    background: #243037;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 70px;
}

.quote-sidebar {
    position: sticky;
    top: 115px;
    color: #d3d9dc;
}

.quote-sidebar h2 {
    color: var(--white);
}

.booking-notes {
    margin-top: 34px;
}

.booking-notes > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 12px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.booking-notes > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.booking-notes > div > span {
    display: grid;
    width: 25px;
    height: 25px;
    margin-top: 2px;
    place-items: center;
    border-radius: 50%;
    background: var(--copper);
    color: var(--white);
    font-size: .68rem;
}

.booking-notes p {
    display: flex;
    margin: 0;
    flex-direction: column;
    line-height: 1.35;
}

.booking-notes strong {
    color: var(--white);
    font-size: .91rem;
}

.booking-notes small {
    margin-top: 6px;
    color: #aeb9bd;
    font-size: .79rem;
    line-height: 1.5;
}

.quote-contact {
    margin-top: 28px;
    font-size: .84rem;
}

.quote-contact a {
    color: #f0aaa2;
}

.quote-form-wrap {
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.quote-form {
    padding: 42px;
}

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

.form-section {
    min-width: 0;
    margin: 0;
    padding: 35px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.form-section-first {
    padding-top: 0;
    border-top: 0;
}

.form-section > legend {
    display: flex;
    width: 100%;
    margin-bottom: 22px;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.34rem;
    font-weight: 700;
    line-height: 1.2;
}

.form-section > legend > span {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    border-radius: 50%;
    background: #f0d8d6;
    color: var(--copper-dark);
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 900;
}

.form-section-note {
    margin: -8px 0 20px;
    color: #5f6a6f;
    font-size: .84rem;
}

.food-extra-groups {
    display: grid;
    gap: 25px;
}

.food-extra-group {
    margin-top: 0;
}

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

.service-choice,
.addon-option,
.radio-stack label,
.option-grid label {
    cursor: pointer;
}

.service-choice input,
.addon-option input,
.radio-stack input,
.option-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-choice > span {
    display: flex;
    min-height: 132px;
    padding: 18px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.service-choice strong {
    color: var(--ink);
}

.service-choice > span::before {
    width: 17px;
    height: 17px;
    margin-bottom: 18px;
    border: 1px solid #a5aaa9;
    border-radius: 50%;
    content: "";
    box-shadow: inset 0 0 0 4px var(--white);
}

.service-choice input:checked + span {
    border-color: var(--copper);
    background: #fff7f6;
    color: var(--ink);
    box-shadow: 0 0 0 1px var(--copper);
}

.service-choice input:checked + span::before {
    border-color: var(--copper);
    background: var(--copper);
}

.service-choice small {
    margin-top: 8px;
    color: #697378;
    font-size: .76rem;
    line-height: 1.4;
}

.selected-interest {
    margin: 18px 0 0;
    padding: 10px 13px;
    border-left: 3px solid var(--copper);
    background: #f6ece5;
    font-size: .83rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.field-compact {
    max-width: 330px;
}

.field > span,
.nested-fieldset > legend {
    color: var(--ink);
    font-size: .83rem;
    font-weight: 800;
}

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

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #bbb9b2;
    border-radius: 5px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    padding: 11px 13px;
}

.field textarea {
    min-height: 125px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(183, 92, 52, .12);
}

.field input:user-invalid,
.field select:user-invalid {
    border-color: #a43232;
}

.nested-fieldset {
    min-width: 0;
    margin: 28px 0 0;
    padding: 0;
    border: 0;
}

.nested-fieldset > p {
    margin: 6px 0 15px;
    color: #697378;
    font-size: .82rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.option-grid label > span {
    display: grid;
    min-height: 47px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--white);
    color: var(--ink);
    font-size: .81rem;
    font-weight: 700;
    text-align: center;
}

.option-grid input:checked + span {
    border-color: var(--copper);
    background: #f2dddb;
    color: var(--copper-dark);
}

.form-alert {
    margin-top: 17px !important;
    padding: 13px 15px;
    border-left: 3px solid #b86b20;
    background: #fff1da;
    color: #633710 !important;
}

.package-preview {
    display: grid;
    margin-top: 20px;
    grid-template-columns: 1fr auto;
    gap: 12px 24px;
    padding: 24px;
    border: 1px solid #c88e8a;
    border-radius: 12px;
    background: #fff7f6;
}

.package-preview h3 {
    margin-bottom: 0;
}

.package-preview .eyebrow {
    margin-bottom: 6px;
}

.preview-price {
    color: var(--copper-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
}

.package-preview dl {
    display: grid;
    margin: 8px 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.package-preview dl div {
    display: flex;
    flex-direction: column;
}

.package-preview dt {
    color: #737a7d;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.package-preview dd {
    margin: 4px 0 0;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.45;
}

.package-preview > p {
    margin: 0;
    grid-column: 1 / -1;
    font-size: .8rem;
}

[data-package-variant-field] {
    margin-top: 18px;
}

.radio-stack {
    display: grid;
    gap: 9px;
}

.radio-stack label > span {
    display: flex;
    min-height: 53px;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font-size: .87rem;
    font-weight: 700;
}

.radio-stack label > span::before {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex: 0 0 18px;
    border: 1px solid #a5aaa9;
    border-radius: 50%;
    content: "";
    box-shadow: inset 0 0 0 4px var(--white);
}

.radio-stack input:checked + span {
    border-color: var(--copper);
    background: #fff7f6;
    color: var(--ink);
}

.radio-stack input:checked + span::before {
    border-color: var(--copper);
    background: var(--copper);
}

.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.addon-option > span {
    display: flex;
    min-height: 108px;
    padding: 17px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
}

.addon-option strong {
    color: var(--ink);
}

.addon-option > span::before {
    display: grid;
    width: 19px;
    height: 19px;
    margin-bottom: 11px;
    place-items: center;
    border: 1px solid #a5aaa9;
    border-radius: 3px;
    content: "";
    color: var(--white);
    font-size: .7rem;
    line-height: 1;
}

.addon-option input:checked + span {
    border-color: var(--copper);
    background: #fff7f6;
    color: var(--ink);
}

.addon-option input:checked + span::before {
    border-color: var(--copper);
    background: var(--copper);
    content: "✓";
}

.addon-option small {
    margin-top: 5px;
    color: #4f5b61;
    font-size: .75rem;
    line-height: 1.4;
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-submit p {
    margin: 0;
    color: #697378;
    font-size: .78rem;
    line-height: 1.4;
}

.form-status {
    margin: 18px 0 0;
    color: #8b2d2d;
    font-size: .85rem;
    font-weight: 700;
}

.form-status[data-state="loading"] {
    color: var(--ink-soft);
}

.form-success {
    padding: 70px 45px;
    text-align: center;
}

.form-success > span {
    display: grid;
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-size: 1.25rem;
}

.form-success h3 {
    font-size: 2rem;
}

.page-hero {
    position: relative;
    min-height: 570px;
    display: grid;
    align-items: end;
    background: var(--ink);
    overflow: hidden;
}

.page-hero > img,
.page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero > img {
    object-fit: cover;
    object-position: center;
}

.page-hero-food > img {
    object-position: center 42%;
}

.page-hero-onsite > img {
    object-position: center 45%;
}

.page-hero-lamb > img {
    object-position: 68% 62%;
}

.page-hero-shade {
    background: linear-gradient(90deg, rgba(17, 28, 33, .94), rgba(17, 28, 33, .68) 55%, rgba(17, 28, 33, .18));
}

.page-hero > .shell {
    position: relative;
    z-index: 1;
    padding-block: 75px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(2.8rem, 5.3vw, 5.2rem);
}

.page-hero p {
    max-width: 680px;
    margin-bottom: 28px;
    color: #e0e5e7;
    font-size: 1.13rem;
}

.breadcrumbs {
    display: flex;
    margin-bottom: 65px;
    gap: 9px;
    color: #d7dddf;
    font-size: .72rem;
}

.breadcrumbs a {
    color: inherit;
}

.hire-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hire-detail-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
}

.hire-card-top {
    display: flex;
    margin-bottom: 28px;
    align-items: center;
    justify-content: space-between;
}

.hire-card-top > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #f1d9d6;
    color: var(--copper-dark);
    font-size: .72rem;
    font-weight: 900;
}

.hire-card-top p {
    display: flex;
    margin: 0;
    flex-direction: column;
    align-items: flex-end;
}

.hire-card-top small {
    color: #727b80;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hire-card-top strong {
    color: var(--copper-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.hire-detail-card dl {
    margin: 26px 0;
}

.hire-detail-card dl div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.hire-detail-card dl div:last-child {
    border-bottom: 1px solid var(--line);
}

.hire-detail-card dt {
    color: #727b80;
    font-size: .77rem;
    font-weight: 800;
}

.hire-detail-card dd {
    margin: 0;
    font-size: .86rem;
}

.deposit-note {
    min-height: 48px;
    color: var(--ink-soft);
    font-size: .78rem;
}

.editorial-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}

.editorial-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.editorial-cards article,
.service-detail-grid article {
    padding: 26px;
    border: 1px solid #d2c9bc;
    border-radius: 10px;
    background: rgba(255, 255, 255, .45);
}

.editorial-cards article > span,
.service-detail-grid article > span {
    color: var(--copper-dark);
    font-size: .71rem;
    font-weight: 900;
}

.editorial-cards h3,
.service-detail-grid h3 {
    margin: 22px 0 10px;
    font-size: 1.33rem;
}

.editorial-cards p,
.service-detail-grid p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .85rem;
}

.section-dark .editorial-cards article {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
}

.section-dark .editorial-cards article > span {
    color: #f08a82;
}

.section-dark .editorial-cards .text-link {
    color: var(--white);
}

.section-dark .editorial-cards .text-link:hover,
.section-dark .editorial-cards .text-link:focus-visible {
    color: #f0aaa2;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section-dark .editorial-cards p {
    color: #c4cdd0;
}

.content-cta {
    padding-block: 75px;
    background: var(--ink);
}

.content-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.content-cta h2 {
    max-width: 750px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
}

.package-detail-list {
    display: grid;
    gap: 32px;
}

.package-detail {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    overflow: hidden;
}

.package-detail:nth-child(even) .package-detail-image {
    order: 2;
}

.package-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.package-detail-content {
    padding: 48px;
}

.package-detail-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 25px;
}

.package-detail-title h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.package-detail-title > strong {
    color: var(--copper-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.included-block {
    margin: 28px 0;
    padding: 24px 0 10px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.included-block h3 {
    margin: 0 0 12px;
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.variant-list {
    display: flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-list > strong,
.variant-list > span {
    padding: 7px 10px;
    border-radius: 4px;
    background: var(--stone);
    font-size: .77rem;
}

.food-extra-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 70px;
}

.food-extra-heading {
    position: sticky;
    top: 135px;
}

.food-extra-heading p {
    margin-bottom: 28px;
    color: #c4cdd0;
}

.food-extra-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.food-extra-card {
    padding: 26px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
}

.food-extra-card h3 {
    margin-bottom: 20px;
    font-size: 1.35rem;
}

.food-extra-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 11px;
    list-style: none;
}

.food-extra-card li {
    position: relative;
    padding-left: 20px;
    color: #dce2e4;
    font-size: .88rem;
}

.food-extra-card li::before {
    position: absolute;
    left: 0;
    color: #f08a82;
    content: "✓";
    font-weight: 900;
}

.custom-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.custom-package-grid img {
    width: 100%;
    height: 430px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center 58%;
}

.onsite-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.venue-grid > img {
    width: 100%;
    height: 430px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center 54%;
}

.check-list-large li {
    margin-block: 15px;
}

.onsite-quote-section {
    background: #243037;
}

.legal-hero {
    padding-block: 95px 80px;
    border-bottom: 1px solid var(--line);
    background: var(--stone);
}

.legal-hero .breadcrumbs {
    margin-bottom: 55px;
    color: var(--ink-soft);
}

.legal-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-hero p {
    max-width: 680px;
    color: var(--ink-soft);
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 760px);
    gap: 90px;
}

.legal-layout aside {
    position: sticky;
    top: 115px;
    display: flex;
    align-self: start;
    flex-direction: column;
}

.legal-layout aside strong {
    margin-bottom: 13px;
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-layout aside a {
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: .85rem;
}

.legal-layout article h2 {
    margin: 52px 0 17px;
    font-size: 2rem;
}

.legal-layout article h2:first-child {
    margin-top: 0;
}

.legal-layout article p {
    color: var(--ink-soft);
}

.site-footer {
    padding-top: 75px;
    background: #10191d;
    color: #aeb8bc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr .8fr .8fr;
    gap: 48px;
    padding-bottom: 60px;
}

.brand-footer {
    margin-bottom: 24px;
    padding: 8px 10px 15px;
    border-radius: 7px;
    background: var(--white);
}

.brand-footer .brand-logo {
    width: 245px;
}

.brand-footer .brand-location {
    right: 12px;
    bottom: 4px;
}

.footer-grid > div:first-child p {
    max-width: 430px;
}

.footer-grid h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid > div:not(:first-child) a {
    margin: 5px 0;
    color: #d9dfe1;
    font-size: .87rem;
    text-decoration: none;
}

.footer-grid p {
    font-size: .83rem;
}

.footer-bottom {
    display: flex;
    padding-block: 22px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .74rem;
}

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

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

    .proof-grid > div:nth-child(2) {
        border-right: 1px solid var(--line);
    }

    .proof-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .service-card-grid,
    .package-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card:last-child,
    .package-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        justify-self: center;
    }

    .roaster-overview-grid,
    .process-grid,
    .quote-layout,
    .faq-layout {
        gap: 55px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 850px) {
    .site-header {
        backdrop-filter: none;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        inset: 100% 0 auto;
        display: none;
        max-height: calc(100vh - 112px);
        align-items: stretch;
        padding: 28px 20px 35px;
        border-bottom: 1px solid var(--line);
        background: var(--cream);
        flex-direction: column;
        overflow: auto;
    }

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

    .primary-nav > a:not(.button) {
        padding: 9px 0;
        font-size: 1.05rem;
    }

    .hero {
        min-height: 660px;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(15, 25, 29, .94), rgba(15, 25, 29, .64));
    }

    .split-heading,
    .roaster-overview-grid,
    .process-grid,
    .area-grid,
    .faq-layout,
    .quote-layout,
    .editorial-grid,
    .food-extra-layout,
    .custom-package-grid,
    .onsite-intro-grid,
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .food-extra-heading {
        position: static;
    }

    .roaster-overview-grid > div:first-child,
    .faq-intro,
    .quote-sidebar {
        position: static;
    }

    .gallery-rail a {
        width: min(67vw, 470px);
    }

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

    .package-detail:nth-child(even) .package-detail-image {
        order: 0;
    }

    .package-detail-image img {
        height: 360px;
        min-height: 0;
    }

    .custom-package-grid img,
    .venue-grid > img {
        height: 360px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .legal-layout aside {
        position: static;
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    body {
        font-size: 16px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .header-inner {
        min-height: 70px;
    }

    .header-contact-inner {
        min-height: 56px;
        justify-content: center;
        gap: 3px;
        flex-direction: column;
        font-size: .71rem;
    }

    .header-phone-links {
        gap: 7px;
    }

    .header-email {
        padding-left: 0;
        border-left: 0;
        color: #f0aaa2 !important;
    }

    .primary-nav {
        max-height: calc(100vh - 127px);
    }

    .hero {
        min-height: 690px;
    }

    .brand-logo {
        width: 220px;
    }

    .hero-media img {
        object-position: 62% center;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(15, 25, 29, .97), rgba(15, 25, 29, .52));
    }

    .hero-content {
        align-self: end;
        padding-block: 70px;
    }

    .hero-content h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .hero-points {
        display: grid;
        margin-top: 34px;
        gap: 8px;
    }

    .proof-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .proof-grid > div {
        min-height: 96px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
        border-left: 0;
        padding-inline: 20px;
    }

    .section {
        padding-block: 75px;
    }

    .service-card-grid,
    .package-card-grid,
    .hire-detail-grid,
    .editorial-cards,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .service-card > img {
        height: 230px;
    }

    .package-image img {
        height: 230px;
    }

    .gallery-rail img,
    .custom-package-grid img,
    .venue-grid > img,
    .package-detail-image img {
        height: 285px;
    }

    .section-action,
    .content-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .size-list a {
        grid-template-columns: 72px 1fr auto;
    }

    .size-list a > small {
        grid-column: 2 / -1;
    }

    .gallery-rail a {
        width: 82vw;
    }

    .quote-layout {
        width: 100%;
    }

    .quote-sidebar {
        padding-inline: 14px;
    }

    .quote-form-wrap {
        border-radius: 0;
    }

    .quote-form {
        padding: 28px 18px;
    }

    .service-choice-grid,
    .form-grid,
    .addon-grid,
    .food-extra-menu,
    .package-preview dl {
        grid-template-columns: 1fr;
    }

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

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

    .preview-price,
    .package-preview dl,
    .package-preview > p {
        grid-column: auto;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit .button {
        width: 100%;
    }

    .page-hero {
        min-height: 540px;
    }

    .page-hero > img {
        object-position: 62% center;
    }

    .page-hero-shade {
        background: linear-gradient(0deg, rgba(17, 28, 33, .97), rgba(17, 28, 33, .42));
    }

    .page-hero > .shell {
        padding-block: 55px;
    }

    .breadcrumbs {
        margin-bottom: 45px;
    }

    .hire-detail-card,
    .package-detail-content {
        padding: 27px 22px;
    }

    .hire-detail-card dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .package-detail-title {
        flex-direction: column;
        gap: 10px;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

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

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

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

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

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