:root {
  --berry: #d20f45;
  --berry-dark: #9f0632;
  --cobalt: #0849d8;
  --ink: #17110f;
  --cream: #fff4df;
  --paper: #fffaf0;
  --gold: #ffbd18;
  --pink: #ff7ca1;
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(50, 12, 22, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body::selection { background: var(--gold); color: var(--ink); }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1440px, 100%);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 72px);
  color: var(--white);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.06em;
}
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 700; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a { position: relative; text-decoration: none; font-size: 14px; font-weight: 700; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.button-small { min-height: 46px; padding: 10px 20px; border-color: var(--white); box-shadow: none; }
.button-small:hover { box-shadow: none; background: var(--white); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 4px 4px 0 var(--gold); }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  background: var(--berry);
  color: var(--white);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(28px, 6vw, 96px) 64px max(28px, calc((100vw - 1440px) / 2 + 72px));
}
.hero-copy::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -120px;
  top: 180px;
  border: 56px solid rgba(255, 189, 24, .22);
  border-radius: 50%;
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .process h2, .payment-copy h2, .request-intro h2, .faq-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: .91;
  letter-spacing: -.055em;
}
.hero h1 { max-width: 760px; font-size: clamp(66px, 8.2vw, 126px); }
.hero h1 em { color: var(--gold); font-weight: 400; }
.hero-intro { max-width: 600px; margin: 34px 0 30px; font-size: clamp(18px, 1.6vw, 22px); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { font-weight: 800; text-underline-offset: 6px; }
.text-link span { display: inline-block; margin-left: 6px; color: var(--gold); }
.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 54px; }
.hero-note p { margin: 0; font-size: 14px; line-height: 1.35; }
.note-seal { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid currentColor; border-radius: 50%; color: var(--gold); }
.hero-visual { position: relative; min-height: 700px; background: var(--berry-dark); }
.hero-image-wrap { width: 100%; height: 100%; overflow: hidden; clip-path: ellipse(105% 96% at 100% 50%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.image-caption {
  position: absolute;
  left: -22px;
  bottom: 45px;
  margin: 0;
  padding: 14px 22px;
  transform: rotate(-3deg);
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 99px;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--gold);
}

.marquee { overflow: hidden; border-block: 2px solid var(--ink); background: var(--gold); }
.marquee div { display: flex; align-items: center; justify-content: center; gap: 28px; min-width: max-content; padding: 17px 28px; }
.marquee span { font-size: 14px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.marquee b { color: var(--berry); }

.section-shell { width: min(1280px, calc(100% - 48px)); margin: 0 auto; padding: 118px 0; }
.section-heading { display: grid; grid-template-columns: minmax(260px, 1fr) 1.2fr; align-items: end; gap: 28px 80px; margin-bottom: 58px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -8px; color: var(--berry); }
.section-heading h2 { font-size: clamp(46px, 6vw, 82px); }
.section-heading > p:last-child { max-width: 520px; margin: 0 0 6px; font-size: 18px; }
.offering-grid { display: grid; grid-template-columns: .75fr 1.25fr; grid-template-rows: 490px 520px; gap: 22px; }
.offering-card { position: relative; overflow: hidden; min-width: 0; border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 7px 7px 0 var(--ink); }
.offering-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(33px, 3vw, 48px); line-height: 1; letter-spacing: -.04em; }
.offering-card p { margin: 0; }
.offering-card a { font-weight: 900; text-underline-offset: 5px; }
.card-kicker { font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.offering-cake { display: flex; flex-direction: column; justify-content: space-between; padding: 36px; background: var(--cobalt); color: var(--white); }
.offering-cake::after {
  content: "";
  position: absolute;
  right: -75px;
  top: 15px;
  width: 240px;
  height: 240px;
  border: 52px solid var(--pink);
  border-radius: 50%;
  opacity: .9;
}
.card-number { position: relative; z-index: 1; font-family: Georgia, serif; font-size: 74px; line-height: 1; color: var(--gold); }
.card-copy { position: relative; z-index: 1; display: grid; gap: 16px; }
.card-copy > p:last-of-type { max-width: 360px; }
.offering-treats img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  background: rgba(255, 250, 240, .94);
  border: 2px solid var(--ink);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.card-overlay h3 { margin: 8px 0 14px; }
.offering-meals { grid-column: 1 / -1; }
.offering-meals img { width: 100%; height: 100%; object-fit: cover; }
.meal-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 28px;
  padding: 24px 28px;
  color: var(--white);
  background: rgba(17, 46, 33, .92);
  border: 2px solid var(--white);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.meal-copy h3 { margin-top: 8px; }
.meal-copy > p { max-width: 380px; }


.menu-teaser { padding-top: 34px; }
.menu-teaser-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px 80px;
  align-items: end;
  margin-bottom: 44px;
}
.menu-teaser-heading .eyebrow { color: var(--berry); }
.menu-teaser-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .91;
  letter-spacing: -.055em;
}
.menu-teaser-heading h2 em { color: var(--berry); font-weight: 400; }
.menu-teaser-heading > div:last-child { max-width: 520px; justify-self: end; }
.menu-teaser-heading > div:last-child p { margin: 0 0 26px; font-size: 18px; }
.menu-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 20px;
  align-items: end;
}
.menu-teaser-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
}
.menu-teaser-card-tall { min-height: 480px; }
.menu-teaser-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(23, 17, 15, .9));
}
.menu-teaser-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.menu-teaser-card:hover img { transform: scale(1.03); }
.menu-teaser-card span {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
}
.menu-teaser-card small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.menu-teaser-card strong { font-family: Georgia, serif; font-size: 30px; line-height: 1; }

.menu-catalog {
  overflow: hidden;
  color: var(--ink);
  background: #ffe9ef;
  border-block: 2px solid var(--ink);
}
.menu-catalog-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 72px;
}
.menu-catalog-intro .eyebrow { color: var(--berry); }
.menu-catalog-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 100px);
  line-height: .9;
  letter-spacing: -.055em;
}
.menu-catalog-intro h2 em { color: var(--berry); font-weight: 400; }
.menu-intro-copy { max-width: 520px; justify-self: end; }
.menu-intro-copy p { margin: 0 0 28px; font-size: 18px; }
.menu-category-nav {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 18px max(24px, calc((100vw - 1280px) / 2));
  background: var(--gold);
  border-block: 2px solid var(--ink);
  scrollbar-width: none;
}
.menu-category-nav::-webkit-scrollbar { display: none; }
.menu-category-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}
.menu-category-list { display: grid; gap: 110px; padding-top: 96px; padding-bottom: 90px; }
.menu-category { scroll-margin-top: 24px; }
.menu-category-heading {
  display: grid;
  grid-template-columns: 72px 1fr minmax(220px, .6fr);
  gap: 24px 40px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}
.menu-category-heading > span {
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}
.menu-category-heading h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.04em;
}
.menu-category-heading p,
.menu-category-heading small { margin: 0; }
.menu-category-heading small {
  justify-self: end;
  max-width: 280px;
  font-size: 13px;
  font-weight: 800;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
}
.menu-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.menu-card:hover .menu-card-image img { transform: scale(1.025); }
.menu-card-copy { min-height: 225px; padding: 24px; }
.menu-card-meta {
  margin: 0 0 14px;
  color: var(--berry-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-card h4 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.035em;
}
.menu-card-copy > p:last-child { margin: 0; color: #584a45; }
.menu-grid-single { grid-template-columns: 1fr; }
.menu-card-featured { display: grid; grid-template-columns: minmax(340px, .9fr) 1.1fr; }
.menu-card-featured .menu-card-image {
  aspect-ratio: 4 / 3;
  border-right: 2px solid var(--ink);
  border-bottom: 0;
}
.menu-card-featured .menu-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(32px, 6vw, 80px);
}
.menu-card-featured h4 { font-size: clamp(46px, 5vw, 70px); }
.menu-finale {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 40px;
  align-items: end;
  margin-bottom: 110px;
  padding: 48px;
  color: var(--white);
  background: var(--cobalt);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--gold);
}
.menu-finale .eyebrow { grid-column: 1 / -1; color: var(--gold); }
.menu-finale h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .9;
  letter-spacing: -.05em;
}
.menu-finale p { grid-column: 1; max-width: 640px; margin: 8px 0 0; font-size: 18px; }
.menu-finale .button {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  background: var(--gold);
  color: var(--ink);
}

.menu-page-header {
  position: relative;
  left: auto;
  width: 100%;
  max-width: none;
  transform: none;
  background: var(--berry);
  border-bottom: 2px solid var(--ink);
}
.menu-page .menu-catalog { border-top: 0; }

.local-services { padding-top: 34px; }
.local-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px 80px; align-items: end; margin-bottom: 50px; }
.local-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; color: var(--berry); }
.local-intro h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(44px, 5vw, 72px); line-height: .98; letter-spacing: -.045em; }
.local-intro > p:last-child { margin: 0; font-size: 18px; }
.service-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-link-grid a { display: flex; flex-direction: column; min-height: 320px; padding: 28px; border: 2px solid var(--ink); border-radius: 22px; color: var(--ink); background: var(--white); text-decoration: none; box-shadow: 5px 5px 0 var(--ink); transition: transform .18s ease, box-shadow .18s ease; }
.service-link-grid a:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.service-link-grid a:nth-child(2) { background: #ffd0de; }
.service-link-grid a:nth-child(3) { color: var(--white); background: #17401b; }
.service-link-grid span { color: var(--berry); font-size: 13px; font-weight: 900; }
.service-link-grid a:nth-child(3) span { color: var(--gold); }
.service-link-grid h3 { margin: 45px 0 12px; font-family: Georgia, serif; font-size: 30px; line-height: 1.05; }
.service-link-grid p { margin: 0 0 26px; }
.service-link-grid strong { margin-top: auto; text-decoration: underline; text-underline-offset: 5px; }

.process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  padding: 110px max(24px, calc((100vw - 1280px) / 2));
  background: var(--cobalt);
  color: var(--white);
}
.process-title-wrap { align-self: center; }
.process h2 { font-size: clamp(55px, 6.5vw, 92px); }
.process .eyebrow { color: var(--gold); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.5); }
.process-list li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.5); }
.process-list li > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); background: var(--gold); border-radius: 50%; font-weight: 900; }
.process-list h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 27px; }
.process-list p { margin: 0; color: rgba(255,255,255,.84); }

.payment-section {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1280px) / 2));
  background: var(--gold);
  border-bottom: 2px solid var(--ink);
}
.payment-copy .eyebrow { color: var(--berry-dark); }
.payment-copy h2 { max-width: 760px; font-size: clamp(52px, 6.2vw, 86px); }
.payment-copy > p { max-width: 690px; margin: 28px 0 34px; font-size: 18px; }
.payment-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-flow div { display: grid; gap: 4px; padding: 17px; border: 2px solid var(--ink); border-radius: 16px; background: rgba(255,255,255,.38); }
.payment-flow span { color: var(--berry); font-size: 13px; font-weight: 900; }
.payment-flow strong { font-family: Georgia, serif; font-size: 23px; }
.payment-flow small { font-size: 13px; }
.checkout-preview { padding: clamp(24px, 4vw, 42px); background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 9px 9px 0 var(--berry); }
.checkout-topline, .checkout-line { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.checkout-topline { padding-bottom: 18px; border-bottom: 2px solid var(--ink); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.secure-badge { padding: 7px 10px; color: #17401b; background: #e9f8e9; border-radius: 999px; font-size: 12px; letter-spacing: 0; text-transform: none; }
.checkout-placeholder { display: grid; gap: 7px; margin: 24px 0; padding: 22px; background: var(--cream); border-radius: 16px; }
.checkout-placeholder span { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.checkout-placeholder strong { font-family: Georgia, serif; font-size: 26px; line-height: 1.1; }
.checkout-line { padding: 15px 0; border-bottom: 1px solid #d9ccbc; }
.checkout-line strong { color: var(--berry-dark); }
.checkout-button { width: 100%; margin-top: 28px; }
.checkout-preview > p { margin: 20px 0 0; color: #66564d; font-size: 13px; text-align: center; }

.request-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(50px, 8vw, 120px);
  padding: 120px max(24px, calc((100vw - 1280px) / 2));
  background: var(--cream);
}
.request-intro .eyebrow { color: var(--berry); }
.request-intro h2 { font-size: clamp(52px, 6.1vw, 84px); }
.request-intro > p { max-width: 480px; margin: 28px 0; font-size: 18px; }
.request-promise { display: flex; align-items: center; gap: 14px; max-width: 390px; margin-top: 44px; padding-top: 24px; border-top: 2px solid var(--ink); }
.request-promise span { color: var(--berry); font-size: 24px; }
.request-promise p { margin: 0; font-family: Georgia, serif; font-style: italic; font-size: 18px; }
.request-form { padding: clamp(24px, 4vw, 48px); background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 9px 9px 0 var(--berry); }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px !important; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.request-form label { display: grid; gap: 8px; margin-bottom: 22px; font-size: 14px; font-weight: 900; }
.optional-label { display: inline-block; margin-left: 6px; color: #67636a; font-size: 12px; font-weight: 700; }
.request-form input, .request-form select, .request-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid #b9a997;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
}
.request-form textarea { resize: vertical; min-height: 130px; }
.request-form .consent-field { grid-template-columns: 22px 1fr; align-items: start; gap: 12px; font-weight: 700; line-height: 1.5; }
.request-form .consent-field input { width: 20px; height: 20px; min-height: 0; margin: 1px 0 0; accent-color: var(--berry); }
.request-form input:hover, .request-form select:hover, .request-form textarea:hover { border-color: var(--ink); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.form-footer p { max-width: 430px; margin: 0; color: #66564d; font-size: 13px; }
.form-footer .button { flex: 0 0 auto; }
.form-success { align-items: center; gap: 14px; margin-top: 24px; padding: 18px; background: #e9f8e9; border: 2px solid #17401b; border-radius: 14px; color: #17401b; }
.form-success:not([hidden]) { display: flex; }
.form-success > span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; background: #17401b; color: white; border-radius: 50%; }
.form-success p { margin: 2px 0 0; }
.form-error { align-items: center; gap: 14px; margin-top: 24px; padding: 18px; background: #fff0f0; border: 2px solid #8a1f2b; border-radius: 14px; color: #8a1f2b; }
.form-error:not([hidden]) { display: flex; }
.form-error > span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; background: #8a1f2b; color: white; border-radius: 50%; font-weight: 900; }
.form-error p { margin: 2px 0 0; }
.request-form button[disabled] { cursor: wait; opacity: .72; transform: none; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(48px, 8vw, 110px); }
.faq-heading .eyebrow { color: var(--berry); }
.faq-heading h2 { font-size: clamp(48px, 5.6vw, 76px); }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 2px solid var(--ink); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 22px; padding: 24px 0; cursor: pointer; font-family: Georgia, serif; font-size: 23px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; color: var(--white); background: var(--berry); border-radius: 50%; font-family: Arial, sans-serif; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -4px 52px 24px 0; color: #66564d; }

.instagram-callout { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 490px; color: var(--white); background: var(--berry); border-top: 2px solid var(--ink); }
.instagram-collage { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 490px; overflow: hidden; }
.instagram-collage img { width: 100%; height: 100%; min-width: 0; object-fit: cover; }
.instagram-collage img:first-child { object-position: 52% 42%; }
.instagram-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(42px, 6vw, 90px); }
.instagram-copy .eyebrow { color: var(--gold); }
.instagram-copy h2 { max-width: 620px; margin: 0; font-family: Georgia, serif; font-size: clamp(45px, 5vw, 72px); line-height: .98; letter-spacing: -.045em; }
.instagram-copy > p:last-of-type { max-width: 560px; margin: 24px 0 28px; font-size: 18px; }
.instagram-link { gap: 11px; }
.instagram-link svg { flex: 0 0 auto; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px max(24px, calc((100vw - 1280px) / 2));
  background: var(--ink);
  color: var(--white);
}
footer p { margin: 0; font-family: Georgia, serif; font-style: italic; }
.footer-actions { display: flex; justify-self: end; gap: 24px; font-weight: 800; }
.footer-actions a { text-underline-offset: 5px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-teaser-heading { grid-template-columns: 1fr; }
  .menu-teaser-heading > div:last-child { justify-self: start; }
  .menu-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
  .menu-teaser-card,
  .menu-teaser-card-tall { min-height: 420px; }
  .menu-teaser-card:last-child { grid-column: 1 / -1; }
  .menu-catalog-intro { grid-template-columns: 1fr; }
  .menu-intro-copy { justify-self: start; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-category-heading { grid-template-columns: 64px 1fr; }
  .menu-category-heading small { grid-column: 2; justify-self: start; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 710px; padding-top: 140px; padding-bottom: 72px; }
  .hero-visual { min-height: 520px; }
  .hero-image-wrap { clip-path: ellipse(105% 92% at 52% 100%); }
  .image-caption { left: 28px; bottom: 34px; }
  .section-heading { grid-template-columns: 1fr; }
  .local-intro { grid-template-columns: 1fr; }
  .service-link-grid { grid-template-columns: 1fr; }
  .service-link-grid a { min-height: 260px; }
  .offering-grid { grid-template-columns: 1fr; grid-template-rows: 430px 580px 560px; }
  .offering-meals { grid-column: auto; }
  .meal-copy { grid-template-columns: 1fr; gap: 12px; }
  .process, .payment-section, .request-section, .faq-section { grid-template-columns: 1fr; }
  .instagram-callout { grid-template-columns: 1fr; }
  .instagram-collage { min-height: 360px; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

@media (max-width: 640px) {
  .site-header { padding: 20px 18px; }
  .site-header .brand-name { display: none; }
  .menu-teaser-heading { gap: 24px; }
  .menu-teaser-heading h2 { font-size: 50px; }
  .menu-teaser-grid { grid-template-columns: 1fr; gap: 16px; }
  .menu-teaser-card,
  .menu-teaser-card-tall { min-height: 390px; }
  .menu-teaser-card:last-child { grid-column: auto; }
  .menu-catalog-intro { gap: 30px; }
  .menu-catalog-intro h2 { font-size: 54px; }
  .menu-category-nav { padding-inline: 16px; }
  .menu-category-list { gap: 78px; padding-top: 72px; }
  .menu-category-heading { grid-template-columns: 48px 1fr; gap: 16px; }
  .menu-category-heading > span { font-size: 40px; }
  .menu-category-heading h3 { font-size: 38px; }
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }
  .menu-card-copy { min-height: 0; }
  .menu-card-featured { grid-template-columns: 1fr; }
  .menu-card-featured .menu-card-image { border-right: 0; border-bottom: 2px solid var(--ink); }
  .menu-finale { grid-template-columns: 1fr; margin-bottom: 84px; padding: 34px 24px; }
  .menu-finale .button { grid-column: 1; grid-row: auto; justify-self: start; }
  .button-small { min-height: 42px; padding: 9px 14px; font-size: 14px; }
  .hero-copy { min-height: 660px; padding: 126px 22px 54px; }
  .hero h1 { font-size: clamp(56px, 19vw, 82px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-note { margin-top: 38px; }
  .hero-visual { min-height: 390px; }
  .hero-image-wrap { clip-path: none; }
  .hero-image-wrap img { object-position: 56% center; }
  .image-caption { left: 16px; right: 16px; width: max-content; max-width: calc(100% - 32px); }
  .marquee div { justify-content: flex-start; }
  .section-shell { width: min(100% - 32px, 1280px); padding: 84px 0; }
  .section-heading { gap: 22px; margin-bottom: 38px; }
  .section-heading h2, .request-intro h2 { font-size: 50px; }
  .local-intro h2 { font-size: 48px; }
  .offering-grid { grid-template-rows: 430px 480px 520px; gap: 16px; }
  .offering-card { border-radius: 21px; box-shadow: 5px 5px 0 var(--ink); }
  .offering-cake { padding: 26px; }
  .card-overlay, .meal-copy { left: 14px; right: 14px; bottom: 14px; padding: 18px; }
  .meal-copy > p { display: none; }
  .process, .payment-section, .request-section { padding: 82px 20px; }
  .process h2 { font-size: 58px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: 24px 18px; box-shadow: 6px 6px 0 var(--berry); }
  .form-footer { align-items: stretch; flex-direction: column; }
  .payment-copy h2 { font-size: 50px; }
  .payment-flow { grid-template-columns: 1fr; }
  .checkout-preview { padding: 24px 18px; box-shadow: 6px 6px 0 var(--berry); }
  .checkout-topline { align-items: flex-start; flex-direction: column; gap: 10px; }
  .faq-section { gap: 38px; }
  .faq-heading h2 { font-size: 48px; }
  .faq-list summary { font-size: 20px; }
  .instagram-collage { grid-template-columns: 1fr 1fr; min-height: 300px; }
  .instagram-collage img { min-height: 300px; }
  .instagram-collage img:last-child { display: none; }
  .instagram-copy { padding: 64px 22px; }
  .instagram-copy h2 { font-size: 48px; }
  footer { padding: 32px 20px; }
  .footer-brand .brand-name { display: none; }
  .footer-actions { align-items: flex-end; flex-direction: column; gap: 8px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Search-friendly service pages */
.service-page { background: var(--paper); }
.service-header { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px max(24px, calc((100vw - 1280px) / 2)); color: var(--white); background: var(--berry); border-bottom: 2px solid var(--ink); }
.service-header nav { display: flex; align-items: center; gap: 28px; }
.service-header nav a { font-size: 14px; font-weight: 800; text-underline-offset: 5px; }
.service-main { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.breadcrumbs { padding: 24px 0 18px; font-size: 14px; font-weight: 700; }
.breadcrumbs ol { display: flex; gap: 9px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs a { color: var(--berry-dark); text-underline-offset: 4px; }
.service-hero { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 640px; overflow: hidden; color: var(--white); background: var(--cobalt); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 8px 8px 0 var(--ink); }
.service-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 76px); }
.service-hero-copy .eyebrow { color: var(--gold); }
.service-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(54px, 6.3vw, 90px); line-height: .92; letter-spacing: -.055em; }
.service-hero-copy > p:last-of-type { max-width: 620px; margin: 28px 0; font-size: 19px; }
.service-hero figure { position: relative; min-height: 560px; margin: 0; overflow: hidden; }
.service-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.service-hero figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 13px 18px; color: var(--ink); background: rgba(255,250,240,.94); border: 2px solid var(--ink); border-radius: 999px; font-family: Georgia, serif; font-style: italic; text-align: center; }
.service-treats { background: var(--berry); }
.service-meals { background: #17401b; }
.service-details { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 8vw, 110px); padding: 100px 0; }
.service-details article .eyebrow { color: var(--berry); }
.service-details h2, .related-services h2 { margin: 0 0 24px; font-family: Georgia, serif; font-size: clamp(38px, 4vw, 58px); line-height: 1; letter-spacing: -.04em; }
.service-details article > p { max-width: 760px; font-size: 18px; }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0 0; padding: 0; list-style: none; }
.detail-list li { padding: 18px; background: var(--white); border: 2px solid var(--ink); border-radius: 14px; font-weight: 700; }
.service-facts { align-self: start; padding: 30px; color: var(--white); background: var(--ink); border-radius: 22px; box-shadow: 7px 7px 0 var(--gold); }
.service-facts h2 { font-size: 32px; }
.service-facts dl { margin: 0; }
.service-facts div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.34); }
.service-facts dt { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.service-facts dd { margin: 5px 0 0; }
.related-services { margin-bottom: 100px; padding: 50px; background: var(--cream); border: 2px solid var(--ink); border-radius: var(--radius); }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-links a { display: grid; gap: 8px; padding: 20px; background: var(--white); border: 2px solid var(--ink); border-radius: 14px; text-decoration: none; }
.related-links strong { font-family: Georgia, serif; font-size: 22px; }
.related-links span { color: var(--berry-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.service-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 36px max(24px, calc((100vw - 1280px) / 2)); color: var(--white); background: var(--ink); }
.service-footer p { margin: 0; }

@media (max-width: 820px) {
  .service-header nav a:not(.button) { display: none; }
  .service-hero, .service-details { grid-template-columns: 1fr; }
  .service-hero figure { min-height: 480px; }
  .related-links { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .service-header .brand-name { display: none; }
  .service-main { width: min(100% - 28px, 1280px); }
  .breadcrumbs { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .service-hero { border-radius: 20px; box-shadow: 5px 5px 0 var(--ink); }
  .service-hero-copy { padding: 42px 24px; }
  .service-hero h1 { font-size: 50px; }
  .service-hero figure { min-height: 380px; }
  .service-details { padding: 72px 0; }
  .detail-list { grid-template-columns: 1fr; }
  .related-services { margin-bottom: 72px; padding: 30px 20px; }
  .service-footer { align-items: flex-start; flex-direction: column; }
}

.service-footer-links { display: flex; gap: 24px; font-weight: 800; }
.service-footer-links a { text-underline-offset: 4px; }
