.top-strip {
  --topbar-font-weight: 700;
  font-weight: var(--topbar-font-weight);
  height: 2.5rem;
  background: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.top-strip nav {
  display: flex;
  align-items: center;
}
.top-strip a {
  font-family: "Quicksand", sans-serif;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: inherit;
  text-transform: uppercase;
  padding: 0 0.625rem;
}
.top-strip a + a {
  border-left: 1px solid currentColor;
}
.site-header {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 20;
  color: var(--cream);
}
.header-inner {
  max-width: 75rem;
  width: calc(100% - 5rem);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.5625rem;
  gap: 1.625rem;
}
.brand {
  display: block;
  width: 12.5rem;
  flex: none;
}
.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 2.1875rem;
}
.checkout-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  text-transform: uppercase;
}
.icon {
  width: 1.625rem;
  height: 1.625rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle {
  border: 0;
  background: none;
  color: inherit;
  width: 3.75rem;
  padding: 0.625rem 0;
  display: grid;
  gap: 0.625rem;
}
.menu-toggle span {
  height: 1px;
  background: currentColor;
  width: 3rem;
}
.menu-toggle span:nth-child(2) {
  width: 2.5rem;
  margin-left: 0.5rem;
}
.home-nav {
  display: flex;
  gap: 2.1875rem;
  align-items: center;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.home-nav a {
  white-space: nowrap;
}
.home-nav .nav-cta {
  border: 1px solid currentColor;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}
.home-nav .nav-cta--solid {
  background: var(--warm);
  color: var(--ink);
  border-color: var(--warm);
}
body[data-page="home"] .site-header {
  background: #2c2a2750;
}
body[data-page="home"] .header-inner {
  min-height: 5.3125rem;
}
body[data-page="home"] .header-actions {
  display: none;
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: var(--dark);
  box-shadow: 0 2px 0.75rem #0002;
}
.desktop-menu {
  background: #2c2a27a0;
  padding: 0.9375rem max(2.5rem, calc((100% - 75rem) / 2)) 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 5.625rem;
}
.desktop-menu div {
  display: grid;
  gap: 0.8125rem;
}
.desktop-menu a {
  font-size: 1.125rem;
  text-transform: uppercase;
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s;
}
.drawer.is-open {
  visibility: visible;
  opacity: 1;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: #0008;
  border: 0;
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(24.5rem, 100%);
  background: white;
  padding: 2.5rem;
  color: #111;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.drawer.is-open .drawer-panel {
  transform: none;
}
.drawer-close {
  display: block;
  margin-left: auto;
  border: 0;
  background: none;
  font-size: 2rem;
}
.drawer-nav {
  display: grid;
  gap: 1.4375rem;
  margin-top: 2.8125rem;
}
.drawer-nav a {
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: lowercase;
}
.drawer-primary-row {
  display: flex;
  align-items: center;
}
.drawer-submenu-toggle {
  border: 0;
  background: transparent;
}
.drawer-submenu-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.8125rem solid currentColor;
  vertical-align: middle;
}
.drawer-subnav {
  display: grid;
}
.drawer-logo {
  display: block;
}
.drawer-logo img {
  width: 100%;
}
.drawer-panel .socials {
  margin-top: 2.5rem;
}

/* Keep the approved drawer composition on desktop as well. Desktop pages use
   a fluid root font size, so pixel dimensions here prevent the panel and its
   contents from shrinking at laptop-width viewports. */
@media screen and (min-width: 651px) {
  .drawer-panel {
    width: min(392px, 100%);
    padding: 0;
    border-radius: 38px 0 0 38px;
    color: #08232c;
    overflow: hidden;
  }
  .drawer-close {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 28px;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }
  .drawer-close::before,
  .drawer-close::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 15px;
    width: 26px;
    height: 2px;
    background: #08232c;
  }
  .drawer-close::before {
    transform: rotate(45deg);
  }
  .drawer-close::after {
    transform: rotate(-45deg);
  }
  .drawer-nav {
    width: 100%;
    gap: 19.5px;
    margin-top: 94px;
    padding: 0 40px 212px;
    color: #08232c;
    text-align: center;
  }
  .drawer-nav > a,
  .drawer-primary-link,
  .drawer-subnav a {
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
  }
  .drawer-primary-row {
    position: relative;
    justify-content: center;
    margin-bottom: 1px;
  }
  .drawer-primary-row .drawer-primary-link {
    font-size: 18px;
    font-weight: 700;
    transform: translate(1px, 2px);
  }
  .drawer-nav > a {
    transform: translateX(1px);
  }
  .drawer-submenu-toggle {
    position: absolute;
    left: calc(50% + 77px);
    top: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #08232c;
    font-size: 18px;
    line-height: 32px;
    transform: translateY(-50%);
  }
  .drawer-submenu-toggle[aria-expanded="true"] {
    transform: translateY(-50%) rotate(90deg);
  }
  .drawer-submenu-arrow {
    position: relative;
    left: -1px;
    top: -2px;
  }
  .drawer-subnav {
    gap: 12px;
    padding: 10px 0 14px;
    border-block: 1px solid #08232c26;
  }
  .drawer-subnav a {
    font-size: 15px;
  }
  .drawer-logo {
    position: absolute;
    left: 50%;
    bottom: 110px;
    width: 148px;
    transform: translateX(-50%);
  }
  .drawer-panel .socials {
    position: absolute;
    left: 50%;
    bottom: 58px;
    gap: 10px;
    margin: 0;
    transform: translateX(-50%);
  }
  .drawer-panel .socials svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.25;
  }
  .drawer-panel.has-submenu {
    overflow-y: auto;
  }
  .drawer-panel.has-submenu .drawer-logo,
  .drawer-panel.has-submenu > .socials {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .drawer-backdrop {
    background: #1e1e1e;
  }
  .drawer-panel {
    width: 100%;
    padding: 0;
    border-radius: 2.375rem;
    overflow: hidden;
  }
  .drawer-close {
    position: absolute;
    z-index: 2;
    top: 1.375rem;
    right: 1.75rem;
    width: 2rem;
    height: 2rem;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }
  .drawer-close::before,
  .drawer-close::after {
    content: "";
    position: absolute;
    left: 0.1875rem;
    top: 0.9375rem;
    width: 1.625rem;
    height: 0.125rem;
    background: #08232c;
  }
  .drawer-close::before {
    transform: rotate(45deg);
  }
  .drawer-close::after {
    transform: rotate(-45deg);
  }
  .drawer-nav {
    width: 100%;
    color: #08232c;
    gap: 1.21875rem;
    margin-top: 5.875rem;
    padding: 0 2.5rem 13.25rem;
    text-align: center;
  }
  .drawer-nav > a,
  .drawer-primary-link,
  .drawer-subnav a {
    font-family: Arial, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
  }
  .drawer-primary-row {
    position: relative;
    justify-content: center;
    margin-bottom: 0.0625rem;
  }
  .drawer-primary-row .drawer-primary-link {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: translate(0.0625rem, 0.125rem);
  }
  .drawer-nav > a {
    letter-spacing: 0;
    transform: translateX(0.0625rem);
  }
  .drawer-submenu-toggle {
    position: absolute;
    left: calc(50% + 4.8125rem);
    top: 50%;
    width: 2rem;
    height: 2rem;
    padding: 0;
    color: #08232c;
    font-size: 1.125rem;
    line-height: 2rem;
    transform: translateY(-50%);
  }
  .drawer-submenu-toggle[aria-expanded="true"] {
    transform: translateY(-50%) rotate(90deg);
  }
  .drawer-submenu-arrow {
    position: relative;
    left: -0.0625rem;
    top: -0.125rem;
  }
  .drawer-subnav {
    gap: 0.75rem;
    padding: 0.625rem 0 0.875rem;
    border-block: 1px solid #08232c26;
  }
  .drawer-subnav a {
    font-size: 0.9375rem;
  }
  .drawer-logo {
    position: absolute;
    left: 50%;
    bottom: 6.875rem;
    width: 9.25rem;
    transform: translateX(-50%);
  }
  .drawer-panel .socials {
    position: absolute;
    left: 50%;
    bottom: 3.625rem;
    gap: 0.625rem;
    margin: 0;
    transform: translateX(-50%);
  }
  .drawer-panel .socials svg {
    width: 1.875rem;
    height: 1.875rem;
    stroke-width: 1.25;
  }
  .drawer-panel.has-submenu {
    overflow-y: auto;
  }
  .drawer-panel.has-submenu .drawer-logo,
  .drawer-panel.has-submenu > .socials {
    display: none;
  }
}
.hero {
  height: 43.75rem;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--cream);
  display: flex;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0003;
}
.hero .narrow {
  position: relative;
  z-index: 1;
  padding-top: 5.625rem;
}
.hero h1 {
  max-width: 45rem;
  margin-bottom: 0.9375rem;
}
.hero p {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.503;
  max-width: 47.5rem;
}
.hero-home {
  height: 56.25rem;
  background-image: url("../images/hero-home.png");
}
.hero-home:before {
  background: none;
}
.hero-home p {
  max-width: 41.25rem;
}
.hero-catering,
.hero-terms {
  background-image: url("../images/hero-catering.png");
}
.hero-workshop,
.hero-blog {
  background-image: url("../images/hero-workshop.png");
}
.hero-private {
  background-image: url("../images/hero-private-chef.png");
}
.hero-event {
  background-image: url("../images/event-hero.webp");
}
.hero-checkout,
.hero-login {
  height: 35rem;
  background-image: url("../images/hero-event.png");
}
.hero-terms {
  height: 36.375rem;
  background-position: center top;
}
.hero-actions {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.4375rem;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  border: 1px solid currentColor;
  border-radius: 0.5rem;
  min-height: 3.125rem;
  padding: 0.75rem 1.5625rem;
  background: transparent;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  text-decoration: none;
  box-shadow: 0 3px 0.75rem #0002;
}
.btn-solid {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink);
}
.btn-dark {
  background: #4d4d4d;
  color: white;
  border-color: #4d4d4d;
}
.btn-mint {
  background: var(--mint);
  border-color: var(--mint);
  font-weight: 600;
  text-transform: none;
}
.btn-small {
  font-size: 0.75rem;
  min-height: 2.375rem;
  padding: 0.5625rem 1.25rem;
}
.hero-home .btn {
  min-width: 17.8125rem;
  min-height: 3.875rem;
  font-weight: 700;
}
.arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 21px;
  width: 21px;
  height: 9px;
  overflow: visible;
  color: #000;
  font-size: 0;
  font-weight: 400;
  line-height: 0;
  text-indent: -9999px;
}
.arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 1px;
  top: 50%;
  border-top: 1px solid currentColor;
  transform: translateY(-50%);
}
.arrow::after {
  content: "";
  position: absolute;
  right: 1.25px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6.875rem;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1.2fr 1fr;
}
.split.reverse .split-media {
  order: -1;
}
.split-media img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 2.5rem;
}
.split-copy h2 {
  max-width: 35rem;
}
.split-copy p {
  max-width: 38.75rem;
}
.split-copy .btn {
  margin-top: 1.75rem;
}
.split-copy .actions {
  display: flex;
  gap: 1.5625rem;
}
.feature-cards {
  display: grid;
  grid-template-columns: 0.92fr repeat(3, 1fr);
  gap: 1.5625rem;
  margin-top: 3.4375rem;
  align-items: start;
}
.feature-cards article {
  padding: 1.5rem 1.75rem;
  border-radius: 2.1875rem;
  background: var(--sage);
}
.feature-cards article:first-child {
  background: none;
  padding-left: 0;
}
.feature-cards h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-cards p {
  font-size: 1.125rem;
  line-height: 1.45;
}
.banner {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
}
.banner img {
  width: 100%;
  aspect-ratio: 3;
  object-fit: cover;
}
.banner-copy {
  position: absolute;
  inset: 0;
  background: #0002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1.875rem;
}
.banner-copy h2 {
  margin-bottom: 0.5rem;
}
.banner-copy p {
  max-width: 35rem;
  font-size: 1rem;
}
.faq-wrap {
  max-width: 92.5rem;
  margin: auto;
}
.faq-wrap h2 {
  margin-bottom: 4.0625rem;
  padding-left: 0.9375rem;
}
.faq-item {
  border-bottom: 1px solid #7e8585;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.0625rem 0.9375rem;
  font-size: 1rem;
  font-weight: 600;
}
.faq-item summary:after {
  content: "+";
}
.faq-item[open] summary:after {
  content: "−";
}
.faq-item p {
  padding: 0 0.9375rem 1.5625rem;
  color: #49606a;
  font-size: 1rem;
  max-width: 71.875rem;
}
.field {
  min-width: 0;
}
.field input:not([type="checkbox"]):not([type="radio"]),
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 1px solid #747b78;
  border-radius: 0.5rem;
  padding: 0.6875rem 0.9375rem;
  font-size: 0.875rem;
  min-height: 2.625rem;
}
.field textarea {
  min-height: 8.75rem;
  resize: vertical;
}
.field label:not(.error) {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.field .error,
.form-error {
  display: block;
  color: #a32626;
  font-size: 0.75rem;
  margin: 0.3125rem 0;
}
.field input[aria-invalid="true"] {
  border-color: #a32626;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem;
}
.field-full {
  grid-column: 1/-1;
}
.form-actions {
  margin-top: 1.375rem;
}
.loading-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.site-footer {
  background: var(--sage);
  padding: 6.875rem 0 6.6875rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #4d4d4d;
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.2fr;
  gap: 3.75rem 5.9375rem;
}
.footer-about .brand {
  width: 10.625rem;
  margin-bottom: 1.25rem;
}
.footer-about p {
  font-size: 0.75rem;
  line-height: 1.45;
  max-width: 19.6875rem;
}
.site-footer h3 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer-company p {
  font-size: 0.75rem;
  margin-bottom: 1.5625rem;
}
.socials {
  display: flex;
  gap: 0.9375rem;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.socials svg {
  width: 1.5625rem;
  height: 1.5625rem;
}
.footer-form {
  grid-column: 3;
  grid-row: 1/3;
}
.footer-form .form-grid {
  gap: 0.8125rem;
}
.footer-form input,
.footer-form textarea {
  font-size: 0.75rem !important;
}
.footer-form textarea {
  min-height: 6.25rem;
}
.footer-form .btn {
  min-height: 2.375rem;
  width: 11.875rem;
  font-size: 0.75rem;
  padding: 0.5rem;
}
.flatpickr-calendar {
  font-family: "Poppins", sans-serif;
  border: 1px solid #d7ddd8;
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 2rem #101d1730;
  overflow: hidden;
}
.flatpickr-months,
.flatpickr-weekdays {
  background: var(--dark);
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
span.flatpickr-weekday {
  color: #fff;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #fff;
}
.flatpickr-day.today {
  border-color: #64866c;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.today.selected {
  background: var(--dark);
  border-color: var(--dark);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #aaa;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.8fr;
  gap: 2.5rem;
  grid-column: 1/3;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
}
.footer-links .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem;
}
.footer-bottom {
  font-size: 0.625rem;
  margin-top: 3.75rem;
}
.footer-dark {
  background: var(--dark);
  color: var(--warm);
}
.footer-dark input,
.footer-dark textarea {
  border-color: #a19d96 !important;
}
.footer-dark .btn {
  color: var(--ink);
  background: var(--warm);
}
.toast-region {
  position: fixed;
  z-index: 120;
  right: 1.5rem;
  top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  width: min(24.375rem, calc(100% - 2rem));
}
.toast {
  position: relative;
  background: #315e48;
  color: white;
  box-shadow: 0 0.5rem 1.875rem #0003;
  border-radius: 0.75rem;
  padding: 1.25rem 2.8125rem 1.25rem 1.375rem;
}
.toast-error {
  background: #982f2f;
}
.toast-warning {
  background: #805d20;
}
.toast p {
  font-size: 0.875rem;
  margin: 0.375rem 0 0;
}
.toast button {
  position: absolute;
  right: 0.75rem;
  top: 0.625rem;
  color: inherit;
  background: none;
  border: 0;
  font-size: 1.5rem;
}
.confirm-dialog {
  border: 0;
  border-radius: 0.875rem;
  background: var(--cream);
  max-width: 32.5rem;
  width: calc(100% - 2.5rem);
  padding: 2.1875rem;
}
.confirm-dialog::backdrop {
  background: #0008;
}
.confirm-dialog .actions {
  display: flex;
  justify-content: end;
  gap: 0.9375rem;
  margin-top: 1.5625rem;
}
.cookie-banner {
  position: fixed;
  z-index: 60;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(73.75rem, calc(100% - 2rem));
  padding: 1.75rem 2.1875rem;
  background: white;
  border: 1px solid #bbb;
  box-shadow: 0 0.5rem 1.5625rem #0002;
  border-radius: 0.375rem;
  display: flex;
  gap: 1.875rem;
  align-items: center;
}
.cookie-banner h2 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.cookie-banner p {
  font-size: 0.8125rem;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex: none;
}
.cookie-actions .btn {
  font-size: 0.75rem;
}
.cookie-settings {
  margin-top: 0.9375rem;
  font-size: 0.8125rem;
}
.split > *,
.feature-cards > *,
.experience-grid > *,
.review-grid > * {
  min-width: 0;
}
