.theme-catering-feast {
  --feast-black: #050806;
  --feast-ink: #111814;
  --feast-muted: #69736b;
  --feast-paper: #fffefa;
  --feast-mint: #eef5f0;
  --feast-green: #3f8246;
  --feast-green-dark: #2a6534;
  --feast-line: rgba(17, 24, 20, 0.14);
  --feast-shadow: 0 24px 60px rgba(17, 24, 20, 0.16);
  --accent: var(--feast-green);
  --dark: var(--feast-black);
  --text: var(--feast-ink);
  --muted: var(--feast-muted);
  --body-font: "Inter", system-ui, sans-serif;
  --heading-font: "Oswald", Impact, sans-serif;
  --bg: var(--feast-paper);
  --card-bg: #ffffff;
  --card-border: var(--feast-line);
  background: var(--feast-paper);
  color: var(--feast-ink);
  font-family: var(--body-font);
}

.theme-catering-feast .container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.theme-catering-feast h1,
.theme-catering-feast h2,
.theme-catering-feast h3 {
  margin: 0;
  color: var(--feast-ink);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: uppercase;
}

.theme-catering-feast p {
  margin: 0;
}

.catering-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--feast-line);
  backdrop-filter: blur(18px);
}

.catering-header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.catering-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--feast-ink);
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 46px;
  height: 46px;
  color: var(--feast-ink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catering-header .site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.5vw, 34px);
  padding: 0;
}

.catering-header .site-nav a {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--feast-ink);
  font-weight: 900;
  text-decoration: none;
}

.catering-header .site-nav a:hover,
.catering-header .site-nav a:focus-visible {
  color: var(--feast-green);
}

.catering-header .site-nav .reservation-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--feast-green);
  background: var(--feast-green);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.theme-catering-feast .nav-toggle {
  display: none;
  justify-self: end;
  border-color: var(--feast-line);
  background: #fff;
  color: var(--feast-ink);
}

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

.hero-section {
  position: relative;
  min-height: min(620px, calc(100vh - 118px));
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-section > img {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(76vw, 1180px);
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  opacity: 0.9;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 23%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 80% 28%, rgba(63, 130, 70, 0.32), transparent 28%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: min(620px, calc(100vh - 118px));
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.34fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(38px, 5vw, 62px) 0;
}

.hero-copy {
  max-width: 650px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--feast-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero-copy .section-kicker {
  color: #a9d9ac;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(3.6rem, 7vw, 5.95rem);
  text-wrap: balance;
}

.hero-copy p:not(.section-kicker) {
  max-width: 570px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.68;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.theme-catering-feast .button {
  min-height: 54px;
  border-radius: 0;
  padding: 0 30px;
  font-weight: 900;
  text-decoration: none;
}

.button-green {
  border-color: var(--feast-green);
  background: var(--feast-green);
  color: #fff;
}

.button-white {
  border-color: #fff;
  background: #fff;
  color: var(--feast-ink);
}

.button-full {
  width: 100%;
}

.hero-card {
  align-self: end;
  margin-bottom: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--feast-ink);
  box-shadow: var(--feast-shadow);
}

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

.hero-card strong {
  margin-bottom: 12px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.hero-card span {
  padding: 12px 0;
  border-top: 1px solid var(--feast-line);
  color: var(--feast-muted);
  font-weight: 800;
}

.service-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--feast-green);
  color: #fff;
  box-shadow: var(--feast-shadow);
}

.ribbon-grid article {
  min-height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  text-align: center;
}

.ribbon-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.ribbon-grid h2 {
  margin-top: 18px;
  color: #fff;
  font-size: 1.55rem;
}

.ribbon-grid p {
  max-width: 290px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
}

.line-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}

.icon-leaf::before {
  left: 16px;
  top: 15px;
  width: 24px;
  height: 15px;
  border-radius: 70% 0 70% 0;
  transform: rotate(-24deg);
}

.icon-leaf::after {
  left: 27px;
  top: 27px;
  width: 2px;
  height: 15px;
  transform: rotate(34deg);
}

.icon-bowl::before {
  left: 13px;
  top: 28px;
  width: 30px;
  height: 13px;
  border-radius: 0 0 999px 999px;
}

.icon-bowl::after {
  left: 18px;
  top: 15px;
  width: 20px;
  height: 9px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: transparent;
}

.icon-mushroom::before {
  left: 14px;
  top: 15px;
  width: 29px;
  height: 22px;
  border-radius: 999px 999px 8px 8px;
}

.icon-mushroom::after {
  left: 23px;
  top: 32px;
  width: 11px;
  height: 14px;
  border-radius: 0 0 4px 4px;
}

.section {
  padding: clamp(76px, 8.5vw, 128px) 0;
}

.center-heading {
  max-width: 780px;
  text-align: center;
}

.center-heading h2,
.story-copy h2,
.sample-menu-grid h2,
.contact-copy h2,
.newsletter-panel h2 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  text-wrap: balance;
}

.center-heading p:not(.section-kicker),
.story-copy p,
.occasion-card p,
.sample-menu-grid > div > p,
.testimonials-section p,
.newsletter-panel p,
.contact-copy p,
.catering-footer p {
  color: var(--feast-muted);
  font-size: 1.02rem;
  line-height: 1.76;
}

.center-heading p:not(.section-kicker) {
  margin-top: 18px;
}

.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}

.menu-card {
  display: grid;
  justify-items: center;
  padding: clamp(30px, 4vw, 46px);
  background: var(--feast-mint);
  text-align: center;
}

.menu-card img {
  display: block;
  width: min(72%, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 35px rgba(17, 24, 20, 0.12);
}

.menu-card h3 {
  margin-top: 26px;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.menu-card p {
  margin-top: 15px;
  color: var(--feast-muted);
  line-height: 1.72;
}

.menu-card a {
  display: inline-flex;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--feast-green);
  color: var(--feast-green-dark);
  font-weight: 900;
  text-decoration: none;
}

.dark-story {
  position: relative;
  overflow: hidden;
  background: var(--feast-black);
  color: #fff;
}

.food-outline {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 52% 48% 40% 60%;
  pointer-events: none;
}

.food-outline::before,
.food-outline::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.food-outline::before {
  inset: 22px;
  transform: rotate(28deg);
}

.food-outline::after {
  inset: 48px;
  transform: rotate(-24deg);
}

.outline-one {
  left: -54px;
  top: 110px;
  transform: rotate(22deg);
}

.outline-two {
  right: -40px;
  bottom: 80px;
  transform: rotate(-12deg);
}

.story-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

.story-media {
  position: relative;
}

.story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: var(--feast-green);
  color: transparent;
  transform: translate(-50%, -50%);
  cursor: default;
}

.play-button::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 28px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #fff;
}

.story-copy h2,
.dark-story .section-kicker {
  color: #fff;
}

.story-copy p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.story-copy .button {
  margin-top: 30px;
}

.occasion-section {
  background: #fff;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}

.occasion-card {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.occasion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.occasion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.62));
}

.occasion-card div {
  position: relative;
  z-index: 1;
  margin: 24px;
  padding: 28px;
  background: #fff;
  text-align: center;
}

.occasion-card h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.occasion-card p {
  margin-top: 14px;
  color: var(--feast-muted);
}

.occasion-card:hover img {
  transform: scale(1.035);
}

.sample-menu-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.76)),
    url("https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.sample-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.sample-menu-grid h2,
.sample-menu-grid .section-kicker {
  color: #fff;
}

.sample-menu-grid > div > p {
  max-width: 470px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.menu-list {
  display: grid;
  gap: 28px;
}

.menu-list article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
}

.menu-list article::before {
  content: "";
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.36);
  grid-column: 2;
  grid-row: 1;
}

.menu-list span,
.menu-list strong {
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.menu-list strong {
  justify-self: end;
}

.menu-list p {
  grid-column: 1 / -1;
  margin-top: -12px;
  color: rgba(255, 255, 255, 0.66);
}

.testimonials-section {
  background: var(--feast-paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 54px;
}

.testimonial-grid article {
  position: relative;
  min-height: 320px;
  padding: 54px 38px 38px;
  background: var(--feast-mint);
  text-align: center;
}

.testimonial-grid span {
  position: absolute;
  right: 34px;
  top: 18px;
  color: rgba(63, 130, 70, 0.12);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-grid p {
  color: var(--feast-ink);
}

.testimonial-grid strong,
.testimonial-grid small {
  display: block;
}

.testimonial-grid strong {
  margin-top: 34px;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.testimonial-grid small {
  margin-top: 7px;
  color: var(--feast-muted);
  font-size: 0.95rem;
}

.newsletter-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: #fff;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(36px, 5vw, 62px);
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)),
    url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: #fff;
}

.newsletter-panel h2,
.newsletter-panel .section-kicker {
  color: #fff;
}

.newsletter-panel p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.newsletter-panel label {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 900;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.newsletter-row input {
  min-height: 54px;
  border: 0;
  padding: 0 18px;
}

.contact-section {
  background: var(--feast-mint);
}

.contact-copy {
  max-width: 510px;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.contact-copy li {
  display: flex;
  gap: 12px;
}

.contact-copy li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--feast-green);
  flex: 0 0 auto;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  box-shadow: var(--feast-shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field,
.contact-form {
  display: grid;
  gap: 9px;
}

.contact-form label {
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--feast-line);
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: var(--feast-ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--feast-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.catering-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 48px;
  background: var(--feast-black);
  color: #fff;
}

.catering-footer::before,
.catering-footer::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.07);
  border-radius: 48% 52% 42% 58%;
  pointer-events: none;
}

.catering-footer::before {
  left: -70px;
  top: 80px;
  width: 210px;
  height: 210px;
}

.catering-footer::after {
  right: -55px;
  bottom: -55px;
  width: 260px;
  height: 260px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: clamp(36px, 8vw, 92px);
}

.footer-brand,
.catering-footer h2 {
  color: #fff;
}

.footer-brand .brand-mark {
  color: #fff;
}

.catering-footer p {
  max-width: 360px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.catering-footer nav,
.catering-footer div:last-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.catering-footer h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.catering-footer a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-decoration: none;
}

.catering-footer a:hover,
.catering-footer a:focus-visible {
  color: #fff;
}

@media (max-width: 980px) {
  .catering-header-row {
    grid-template-columns: 1fr auto;
  }

  .theme-catering-feast .nav-toggle {
    display: inline-flex;
  }

  .catering-header .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 0 18px;
  }

  .catering-header .site-nav.open {
    display: grid;
    gap: 0;
  }

  .catering-header .site-nav a,
  .catering-header .site-nav .reservation-link {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 16px;
    border: 1px solid var(--feast-line);
    border-bottom: 0;
    background: #fff;
    color: var(--feast-ink);
  }

  .catering-header .site-nav a:last-child {
    border-bottom: 1px solid var(--feast-line);
  }

  .hero-grid,
  .story-grid,
  .sample-menu-grid,
  .contact-grid,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    align-self: auto;
    margin-bottom: 0;
  }

  .ribbon-grid,
  .menu-card-grid,
  .occasion-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ribbon-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .occasion-card {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .theme-catering-feast .container {
    width: min(100% - 24px, 520px);
  }

  .catering-header-row {
    min-height: 74px;
    gap: 12px;
  }

  .catering-brand {
    gap: 9px;
    font-size: 1.52rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-section,
  .hero-grid {
    min-height: auto;
  }

  .hero-section > img {
    width: 100%;
    opacity: 0.72;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.68)),
      radial-gradient(circle at 82% 24%, rgba(63, 130, 70, 0.32), transparent 30%);
  }

  .hero-grid {
    padding: 40px 0 72px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 16vw, 3.65rem);
  }

  .hero-copy p:not(.section-kicker) {
    font-size: 0.96rem;
  }

  .button-row,
  .theme-catering-feast .button {
    width: 100%;
  }

  .hero-card {
    display: none;
    padding: 20px;
  }

  .service-ribbon {
    margin-top: -44px;
  }

  .ribbon-grid article {
    min-height: auto;
    padding: 28px 22px;
  }

  .section {
    padding: 64px 0;
  }

  .center-heading h2,
  .story-copy h2,
  .sample-menu-grid h2,
  .contact-copy h2,
  .newsletter-panel h2 {
    font-size: clamp(2.3rem, 13vw, 3.2rem);
  }

  .menu-card-grid,
  .occasion-grid,
  .testimonial-grid {
    margin-top: 34px;
    gap: 22px;
  }

  .menu-card {
    padding: 28px 22px;
  }

  .occasion-card {
    min-height: 370px;
  }

  .occasion-card div {
    margin: 14px;
    padding: 22px;
  }

  .menu-list article {
    grid-template-columns: 1fr auto;
  }

  .menu-list article::before {
    display: none;
  }

  .newsletter-panel {
    padding: 28px 20px;
  }

  .newsletter-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .mobile-contact-bar {
    display: grid;
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: 8px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(5, 8, 6, 0.9);
    box-shadow: 0 16px 38px rgba(5, 8, 6, 0.26);
  }

  .mobile-contact-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--feast-green);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    background: #fff;
    color: var(--feast-ink);
  }
}
