:root {
  --bg: #08141f;
  --surface: #12263a;
  --ink: #fff8ea;
  --muted: #d8d0c5;
  --accent: #f3c331;
  --accent-dark: #d49d14;
  --line: rgba(243, 195, 49, 0.18);
  --dark: #061018;
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(244, 209, 67, 0.16), transparent 20%),
    radial-gradient(circle at right, rgba(27, 153, 92, 0.18), transparent 24%),
    linear-gradient(180deg, #0b1b2c 0%, #0f3152 42%, #162032 100%);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.section-pad { padding: clamp(2rem, 4.2vw, 4.8rem) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: linear-gradient(90deg, rgba(247, 202, 33, 0.92) 0 26%, rgba(15, 55, 112, 0.95) 26% 69%, rgba(15, 128, 78, 0.95) 69% 100%);
  border-bottom: 1px solid rgba(243, 195, 49, 0.2);
  backdrop-filter: blur(8px);
}

.main-header {
  width: min(1140px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.9rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 19, 14, 0.9), rgba(52, 31, 21, 0.88));
  border: 1px solid rgba(255, 221, 170, 0.14);
  box-shadow: 0 16px 42px rgba(21, 10, 6, 0.24);
  position: sticky;
  top: 0.85rem;
  z-index: 70;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fffef4;
}

.brand-text {
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 232, 196, 0.18);
  background: linear-gradient(135deg, rgba(205, 126, 53, 0.34), rgba(87, 46, 22, 0.28));
  color: #fff2de;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 234, .38);
  object-fit: contain;
  background: transparent;
  padding: 1px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: .45rem .68rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 230, 191, 0.18);
  background: rgba(255, 244, 223, 0.06);
  justify-content: center;
  align-items: center;
  gap: 0.22rem;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff1dd;
}

.site-nav {
  display: inline-flex;
  justify-self: end;
  gap: 1rem;
  margin-right: .8rem;
}

.nav-links {
  display: inline-flex;
  justify-self: end;
  gap: 1rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fff4df;
  font-weight: 700;
  opacity: 0.92;
}

.site-nav a {
  color: #fff9ef;
  font-weight: 600;
  opacity: .9;
}

.site-nav a[aria-current="page"] { opacity: 1; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: .84rem 1.15rem;
  min-height: 46px;
}

.btn-primary {
  background: linear-gradient(135deg, #e1af1d 0%, #f3c331 45%, #d2a814 100%);
  color: #132840;
  box-shadow: 0 12px 28px rgba(243, 195, 49, .24);
}

.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid rgba(217, 197, 157, 0.16);
}

.btn-light {
  background: rgba(255,255,255,0.05);
  color: var(--ink);
  border: 1px solid rgba(217, 197, 157, 0.16);
}

.btn-chip {
  background: var(--accent);
  color: #fff;
  min-width: 124px;
}

.hero {
  background:
    linear-gradient(135deg, #0e2a48 0%, #123b67 44%, #17754d 100%);
  color: #fff;
}

.hero-grid,
.split-card,
.footer-grid,
.review-grid,
.food-grid,
.why-grid,
.list-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 .65rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #e6d0a1;
  font-size: .79rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.02;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

h3 { margin: .3rem 0 .35rem; font-size: 1.15rem; }

.hero-sub {
  margin-top: .9rem;
  color: #ddd3c9;
  max-width: 62ch;
}

.hero-section,
.story-section,
.stats-grid,
.cta-group {
  display: grid;
  gap: 1rem;
}

.hero-section {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.story-section {
  grid-template-columns: 1.2fr 0.8fr;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid article {
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(121, 78, 43, 0.12);
  box-shadow: 0 16px 34px rgba(53, 28, 12, 0.08);
}

.stats-grid strong {
  display: block;
  color: #2f2117;
  font-size: 1.02rem;
  margin-bottom: 0.32rem;
}

.stats-grid span {
  color: #65584b;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
}

.hero h1,
.hero h2,
.hero p,
.hero .eyebrow {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.15rem;
}

.hero-image-wrap,
.split-media,
.food-card,
.review-card,
.why-card,
.menu-list-card,
.final-card,
.split-content {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-wrap {
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.destination-hook,
.location-section {
  background: transparent;
}

.split-card {
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-content {
  padding: 1.4rem;
}

.split-content p { color: var(--muted); }
.contact-block { color: var(--ink) !important; }

.food-card,
.why-card,
.review-card,
.ordering-card,
.menu-list-card,
.final-card,
.split-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.04));
  border: 1px solid rgba(217, 197, 157, 0.12);
}

.food-card h3,
.why-card h3,
.ordering-card h3,
.review-card span {
  color: #f3d79c;
}

.review-shot-strip img,
.food-card img,
.split-media img {
  filter: saturate(0.92) contrast(1.02);
}

.contact-layout { display: grid; gap: 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-card,
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.map-card p,
.contact-form-card p { color: #63574d; }

.map-placeholder {
  margin: 0.9rem 0;
  min-height: 200px;
  border-radius: 12px;
  border: 1px dashed #c8b59d;
  background: repeating-linear-gradient(
    -45deg,
    #f5ecdf,
    #f5ecdf 14px,
    #f1e4d2 14px,
    #f1e4d2 28px
  );
  display: grid;
  place-items: center;
  color: #756659;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 650;
  color: #2e2925;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9c9b4;
  border-radius: 10px;
  background: #fffdf9;
  color: #1f1a17;
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.trust-section {
  background: var(--bg);
}

.ordering-options {
  background: var(--bg);
}

.ordering-sub {
  color: var(--muted);
  margin-top: -0.25rem;
  margin-bottom: 1rem;
}

.ordering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ordering-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.ordering-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.ordering-card h3 {
  margin-top: 0.75rem;
}

.ordering-card p {
  color: var(--muted);
}

.toast-connect-link {
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}

.toast-connect-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.ordering-brand-logo {
  width: 96px !important;
  height: 96px;
  object-fit: cover;
  border-radius: 18px !important;
  margin-bottom: 0.5rem;
}

.payment-note {
  margin-top: .6rem;
  font-size: .9rem;
}

.review-grid { grid-template-columns: repeat(3, 1fr); margin-top: .8rem; }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.review-card p { margin: 0; }
.review-card span { display: block; margin-top: .7rem; font-weight: 600; color: #6f6258; }

.review-shot-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.review-shot-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e5d3bf;
}

.featured-food { background: var(--bg); }
.food-grid { grid-template-columns: repeat(2, 1fr); }

.food-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .7rem;
  box-shadow: var(--shadow);
}

.food-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.food-card p { color: #60554d; }
.center-cta { text-align: center; margin-top: 1rem; }

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

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.why-card p { color: #665a51; }

.final-cta { background: #151217; color: #fff; }
.final-card {
  text-align: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  padding: 1.35rem;
}

.final-card p { color: #f2ddd0; }
.final-card h2 { color: #fff; }

.bonus-cta {
  background: var(--bg);
}

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  text-align: center;
}

.bonus-card p {
  color: var(--muted);
}

.menu-page h1 { margin: 0; }
.menu-lead { color: #65584f; margin-top: .6rem; }
.menu-images {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.menu-images img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dfcfb8;
  cursor: zoom-in;
}

.menu-lists h2 { margin: 1.5rem 0 .6rem; }

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

.menu-list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.price {
  color: var(--accent);
  font-weight: 800;
  margin: .4rem 0 .7rem;
}

.site-footer {
  background: #121212;
  color: #f4e3cf;
  padding: 2rem 0 1rem;
}

.footer-grid {
  grid-template-columns: 1fr auto auto;
  align-items: start;
}

.footer-grid a {
  display: block;
  color: #f7e8d6;
  margin-bottom: .4rem;
}

.footer-brand {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.copyright {
  margin: 1rem 0 0;
  text-align: center;
  color: #d7c2ab;
  font-size: .92rem;
}

.direct-only[hidden] { display: none !important; }

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.menu-lightbox[hidden] {
  display: none !important;
}

.menu-lightbox img {
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  transform-origin: center center;
  transition: transform .12s ease;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  cursor: zoom-in;
}

.menu-lightbox.is-zoomed img {
  cursor: grab;
}

.menu-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.catering-home {
  background:
    radial-gradient(circle at top left, rgba(198, 136, 46, 0.16), transparent 20%),
    radial-gradient(circle at right, rgba(73, 106, 58, 0.14), transparent 24%),
    linear-gradient(180deg, #120d0b 0%, #2a1712 22%, #f4efe6 22%, #f4efe6 100%);
}

.catering-home main {
  display: grid;
  gap: clamp(1.2rem, 2vw, 2rem);
  padding-bottom: 3rem;
}

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

.catering-hero {
  width: min(1200px, calc(100% - 2rem));
  margin: 1.15rem auto 0;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border-radius: 32px;
  border: 1px solid rgba(255, 225, 174, 0.12);
  background: linear-gradient(135deg, rgba(20, 13, 11, 0.96) 0%, rgba(49, 29, 22, 0.94) 52%, rgba(91, 46, 24, 0.92) 100%);
  box-shadow: 0 24px 60px rgba(20, 9, 6, 0.34);
}

.hero-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-note-row span,
.intake-notes span,
.panel-chip,
.cuisine-tag,
.package-kicker,
.trust-badge span {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-note-row span,
.intake-notes span {
  padding: 0.5rem 0.8rem;
  background: rgba(255, 243, 218, 0.08);
  border: 1px solid rgba(255, 224, 175, 0.12);
  color: #ead8bb;
  font-size: 0.92rem;
}

.hero-microcopy {
  margin: 0.9rem 0 0;
  color: #ceb899;
  font-size: 0.95rem;
}

.collage-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 174, 0.14);
  background: rgba(255, 250, 239, 0.05);
  box-shadow: 0 20px 45px rgba(6, 3, 1, 0.34);
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: minmax(230px, 1fr) minmax(140px, auto);
  gap: 0.8rem;
  padding: 0.8rem;
}

.collage-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 160px;
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.14), rgba(255, 249, 238, 0.04));
}

.collage-main {
  grid-row: 1 / span 2;
}

.dish-placeholder {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 205, 124, 0.22), transparent 24%),
    linear-gradient(140deg, rgba(52, 28, 17, 0.98), rgba(94, 47, 23, 0.96));
}

.dish-jerk::before,
.dish-bbq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 28%, rgba(204, 108, 52, 0.65), transparent 18%),
    radial-gradient(circle at 58% 44%, rgba(120, 71, 31, 0.55), transparent 22%),
    radial-gradient(circle at 74% 26%, rgba(231, 191, 122, 0.45), transparent 14%),
    radial-gradient(circle at 68% 72%, rgba(70, 108, 51, 0.42), transparent 16%),
    radial-gradient(circle at 40% 76%, rgba(230, 172, 76, 0.26), transparent 22%);
  filter: blur(0.5px);
}

.dish-bbq {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 180, 94, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(36, 20, 15, 0.98), rgba(80, 38, 27, 0.95));
}

.dish-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(16, 9, 6, 0.82));
  z-index: 1;
}

.dish-copy h3,
.dish-copy strong {
  color: #fff3df;
}

.dish-copy span {
  display: block;
  color: #e3d0b0;
  margin-top: 0.3rem;
}

.text-panel {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.text-panel h3 {
  margin: 0;
  color: #fff4e3;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.22;
}

.panel-chip {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  background: rgba(21, 11, 7, 0.72);
  border: 1px solid rgba(255, 219, 159, 0.16);
  color: #fff3df;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.section-intro {
  max-width: 62ch;
  color: #6b5a4a;
}

.story-card,
.cuisine-card,
.service-card,
.trust-badge,
.package-card,
.intake-form,
.intake-copy {
  border-radius: 24px;
  border: 1px solid rgba(121, 78, 43, 0.12);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(248, 241, 231, 0.94));
  box-shadow: 0 18px 40px rgba(53, 28, 12, 0.08);
}

.story-card {
  padding: 1.4rem;
}

.story-card p:last-child {
  margin-bottom: 0;
  color: #625345;
}

.support-stats article {
  background: rgba(255, 249, 239, 0.88);
}

.cuisine-grid,
.service-grid,
.trust-badge-grid,
.package-grid,
.intake-layout {
  display: grid;
  gap: 1rem;
}

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

.cuisine-card,
.service-card,
.package-card,
.trust-badge {
  padding: 1.15rem;
}

.cuisine-tag,
.package-kicker {
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.72rem;
  background: rgba(165, 83, 35, 0.1);
  border: 1px solid rgba(165, 83, 35, 0.14);
  color: #8a431c;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.cuisine-card h3 {
  font-size: 1.32rem;
  color: #281a14;
}

.cuisine-card p,
.service-card p,
.package-card p,
.trust-badge strong + span {
  color: #67584a;
}

.cuisine-card ul,
.package-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: #3d3027;
}

.cuisine-card li,
.package-card li {
  margin-bottom: 0.32rem;
}

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

.service-card h3,
.package-card h3 {
  color: #2b1b15;
}

.trust-section {
  background: transparent;
}

.trust-badge-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-badge {
  text-align: center;
  background: linear-gradient(180deg, rgba(44, 28, 18, 0.96), rgba(71, 42, 25, 0.92));
  border-color: rgba(255, 220, 161, 0.12);
  box-shadow: 0 20px 42px rgba(28, 13, 7, 0.24);
}

.trust-badge strong {
  display: block;
  color: #fff4df;
  margin-bottom: 0.45rem;
}

.trust-badge span {
  justify-content: center;
  color: #dbc8ad;
  font-size: 0.92rem;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-package {
  background: linear-gradient(180deg, rgba(255, 249, 239, 1), rgba(250, 236, 214, 0.98));
  border-color: rgba(167, 93, 43, 0.18);
  box-shadow: 0 20px 44px rgba(101, 48, 17, 0.12);
}

.package-card {
  position: relative;
}

.package-card ul {
  margin-bottom: 1rem;
}

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

.gallery-strip {
  padding-top: 0.25rem;
}

.gallery-grid,
.quick-start-group {
  display: grid;
  gap: 0.85rem;
}

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

.gallery-card,
.next-steps-card,
.form-success {
  border-radius: 22px;
  border: 1px solid rgba(121, 78, 43, 0.12);
  box-shadow: 0 18px 40px rgba(53, 28, 12, 0.08);
}

.gallery-card {
  min-height: 180px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(155deg, rgba(53, 28, 17, 0.96), rgba(133, 72, 34, 0.92));
  color: #fff2dd;
  font-weight: 700;
}

.gallery-one {
  background:
    radial-gradient(circle at 28% 28%, rgba(225, 136, 73, 0.52), transparent 18%),
    radial-gradient(circle at 70% 62%, rgba(87, 125, 62, 0.42), transparent 18%),
    linear-gradient(155deg, rgba(53, 28, 17, 0.96), rgba(133, 72, 34, 0.92));
}

.gallery-two {
  background:
    radial-gradient(circle at 24% 22%, rgba(239, 188, 92, 0.48), transparent 16%),
    radial-gradient(circle at 76% 44%, rgba(91, 59, 29, 0.44), transparent 22%),
    linear-gradient(155deg, rgba(38, 22, 16, 0.96), rgba(104, 59, 32, 0.92));
}

.gallery-three {
  background:
    radial-gradient(circle at 35% 30%, rgba(182, 78, 46, 0.44), transparent 18%),
    radial-gradient(circle at 74% 70%, rgba(226, 173, 80, 0.32), transparent 18%),
    linear-gradient(155deg, rgba(50, 24, 16, 0.96), rgba(120, 64, 36, 0.92));
}

.gallery-four {
  background:
    radial-gradient(circle at 28% 22%, rgba(202, 154, 88, 0.42), transparent 18%),
    radial-gradient(circle at 76% 66%, rgba(83, 116, 62, 0.38), transparent 18%),
    linear-gradient(155deg, rgba(43, 26, 18, 0.96), rgba(111, 66, 38, 0.92));
}

.intake-section {
  padding-bottom: 0.2rem;
}

.intake-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.intake-copy,
.intake-form {
  padding: 1.25rem;
}

.source-helper {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 246, 228, 0.92);
  border: 1px solid rgba(156, 104, 61, 0.12);
  color: #6a4b32;
  font-weight: 700;
}

.quick-start-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.quick-start-chip {
  border: 1px solid rgba(148, 96, 55, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.96);
  color: #5d4637;
  font: inherit;
  font-weight: 700;
  padding: 0.78rem 0.95rem;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.quick-start-chip:hover,
.quick-start-chip:focus-visible,
.package-cta:hover,
.package-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(84, 42, 18, 0.1);
  border-color: rgba(164, 95, 50, 0.22);
}

.next-steps-card {
  margin-top: 1rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(247, 237, 222, 0.96));
}

.next-steps-card ol {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: #5e4b3d;
}

.next-steps-card li + li {
  margin-top: 0.4rem;
}

.service-area-note {
  margin: 1rem 0 0;
  color: #6d5a4a;
}

.premium-form {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 238, 225, 0.98));
  border-color: rgba(136, 84, 46, 0.14);
  box-shadow: 0 24px 50px rgba(73, 34, 15, 0.12);
}

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

.intake-form label {
  display: grid;
  gap: 0.4rem;
  color: #2f241d;
  font-weight: 700;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid #dbc7b1;
  border-radius: 14px;
  background: #fffdf9;
  color: #201914;
  font: inherit;
  padding: 0.78rem 0.86rem;
}

.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: #8b7768;
}

.form-success {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(249, 255, 244, 0.98), rgba(237, 247, 226, 0.96));
  border-color: rgba(97, 139, 76, 0.2);
}

.form-success strong {
  display: block;
  color: #26461d;
  margin-bottom: 0.35rem;
}

.form-success p,
.form-success span {
  color: #4b653f;
}

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

.event-types {
  padding-top: 0.2rem;
}

.event-chip-grid,
.faq-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}

.event-chip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-chip-grid span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(137, 90, 55, 0.12);
  color: #5d4738;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(58, 28, 12, 0.06);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card,
.faq-card {
  border-radius: 22px;
  border: 1px solid rgba(121, 78, 43, 0.12);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(248, 241, 231, 0.94));
  box-shadow: 0 18px 40px rgba(53, 28, 12, 0.08);
  padding: 1.15rem;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #efc061, #d2863c);
  color: #2a1c12;
  font-weight: 800;
}

.step-card p,
.faq-card p {
  color: #65584b;
}

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

.faq-card h3 {
  font-size: 1.08rem;
  color: #2c1d16;
}

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

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

.final-cta {
  background: transparent;
}

.final-card {
  background: linear-gradient(135deg, rgba(37, 22, 16, 0.96) 0%, rgba(63, 36, 23, 0.94) 64%, rgba(112, 66, 33, 0.92) 100%);
  border-color: rgba(255, 221, 170, 0.12);
  box-shadow: 0 24px 56px rgba(22, 10, 5, 0.26);
}

.site-footer {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 19, 14, 0.96), rgba(52, 31, 21, 0.94));
}

@media (max-width: 1020px) {
  .hero-grid,
  .split-card,
  .footer-grid,
  .food-grid,
  .why-grid,
  .review-grid,
  .ordering-grid,
  .list-grid,
  .menu-images,
  .contact-grid { grid-template-columns: 1fr 1fr; }

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

  .collage-grid,
  .intake-layout,
  .service-grid,
  .package-grid,
  .trust-badge-grid,
  .steps-grid,
  .event-chip-grid,
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .collage-main { grid-row: auto; }

  .cuisine-grid,
  .intake-form,
  .faq-grid,
  .quick-start-group { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "brand toggle cta"
      "nav nav nav";
    gap: .6rem;
    padding: .58rem 0;
  }
  .brand { grid-area: brand; }
  .nav-toggle { display: inline-flex; grid-area: toggle; }
  .header-inner > .order-link { grid-area: cta; justify-self: end; }

  .main-header {
    width: min(100%, calc(100% - 1rem));
    grid-template-columns: auto auto;
    padding: 0.8rem;
    top: 0.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-area: nav;
    display: none;
    margin: 0;
    justify-self: start;
    width: 100%;
    gap: .85rem;
    flex-wrap: wrap;
  }
  .site-nav.is-open { display: inline-flex; }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-top: 0.2rem;
  }

  .nav-links.open { display: inline-flex; }

  .hero-grid,
  .hero-section,
  .story-section,
  .split-card,
  .contact-grid,
  .food-grid,
  .why-grid,
  .review-grid,
  .ordering-grid,
  .list-grid,
  .menu-images,
  .review-shot-strip,
  .collage-grid,
  .cuisine-grid,
  .service-grid,
  .trust-badge-grid,
  .package-grid,
  .intake-layout,
  .intake-form,
  .stats-grid,
  .steps-grid,
  .event-chip-grid,
  .faq-grid,
  .gallery-grid,
  .quick-start-group { grid-template-columns: 1fr; }

  .hero-image-wrap img,
  .split-media img,
  .review-shot-strip img,
  .food-card img { height: auto; min-height: 0; }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name { font-size: .92rem; }

  .catering-hero,
  .section-block,
  .site-footer {
    width: min(100%, calc(100% - 1rem));
  }

  .hero-note-row,
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .catering-hero {
    padding: 1rem;
    border-radius: 24px;
  }

  .story-card,
  .cuisine-card,
  .service-card,
  .package-card,
  .trust-badge,
  .intake-copy,
  .intake-form {
    border-radius: 20px;
  }

  .panel-chip {
    left: 0.7rem;
    right: 0.7rem;
    width: fit-content;
    max-width: calc(100% - 1.4rem);
  }

  .event-chip-grid span,
  .hero-microcopy {
    font-size: 0.94rem;
  }

  .mobile-cta-bar {
    position: sticky;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.8rem;
    background: linear-gradient(180deg, rgba(20, 12, 8, 0.84), rgba(34, 18, 12, 0.96));
    backdrop-filter: blur(10px);
  }

  .mobile-cta-bar .btn {
    min-height: 48px;
  }
}
