/* ================================================
   IN A PICKLE — Brand Stylesheet
   Design system derived from Catering Menu 2025
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Caveat:wght@400;600;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ========================
   TOKENS
   ======================== */

:root {
  --cream:         #F2EDD7;
  --cream-dark:    #E8E0C0;
  --cream-mid:     #EDE5CB;
  --yellow:        #F5C400;
  --yellow-light:  #FFD740;
  --pink:          #E03C8A;
  --black:         #1C1C1C;
  --muted:         #5A5648;
  --text-subtle-on-dark: #AAA;

  --font-display:  'Lilita One', cursive;
  --font-hand:     'Caveat', cursive;
  --font-mono:     'Courier Prime', monospace;
  --font-body:     'DM Sans', sans-serif;

  --border:        2px solid var(--yellow);
  --border-thick:  3px solid var(--yellow);
  --radius:        4px;
  --radius-lg:     10px;

  --max-w:         1200px;
  --pad-x:         clamp(1.25rem, 5vw, 4rem);
  --pad-y:         clamp(3.5rem, 7vw, 6.5rem);
}

/* ========================
   BASE RESET
   ======================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ========================
   LOGO
   ======================== */

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
}

/* ========================
   NAV
   ======================== */

.nav {
  background: var(--cream);
  border-bottom: var(--border-thick);
  padding: 0 var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--black);
  transition: color 0.18s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--pink); }

.nav-links a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav-links a.nav-cta {
  background: var(--yellow);
  color: var(--black);
  line-height: 1;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
}

.nav-links a.nav-cta:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.25s;
}

/* ========================
   BUTTONS
   ======================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.btn-black {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-black:hover { background: var(--pink); border-color: var(--pink); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-light); border-color: var(--yellow-light); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--cream); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--black); }

/* ========================
   LAYOUT HELPERS
   ======================== */

.section {
  padding: var(--pad-y) var(--pad-x);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section--alt { background: var(--cream-dark); }

.section-label {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.125rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.section-desc {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 1rem;
}

.section-header { margin-bottom: 2.5rem; }

.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-left: auto; margin-right: auto; }

/* ========================
   HERO
   ======================== */

.hero {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(85vh - 72px);
}

.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--pink);
  margin-bottom: 0.875rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5.25rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-title .accent { color: var(--pink); }

.hero-desc {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-contact-hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 1.25rem;
}

.hero-contact-hint a {
  color: var(--black);
  font-weight: 700;
  border-bottom: 1px solid var(--yellow);
  text-decoration: none;
  transition: border-color 0.18s;
}

.hero-contact-hint a:hover { border-color: var(--pink); color: var(--pink); }

.hero-visual {
  position: relative;
}

.image-box {
  background: var(--cream-dark);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-box-label {
  font-family: var(--font-hand);
  font-size: 1.125rem;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  line-height: 1.5;
}

.hero-image-box {
  aspect-ratio: 4/3;
}

.hero-badge {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  width: 116px;
  height: 116px;
  background: var(--yellow);
  border: var(--border-thick);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero-badge p {
  font-family: var(--font-hand);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

/* ========================
   YELLOW BAND
   ======================== */

.yellow-band {
  background: var(--yellow);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 0.875rem var(--pad-x);
}

.yellow-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.yellow-band p {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
}

.yellow-band .sep {
  color: var(--black);
  opacity: 0.4;
}

/* ========================
   SERVICE CARDS
   ======================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28,28,28,0.1);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1.125rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.375rem;
}

.text-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
  transition: all 0.18s;
}

.text-link:hover { color: var(--pink); border-color: var(--pink); }

/* ========================
   STATS
   ======================== */

.stats-bar {
  background: var(--cream-dark);
  border-bottom: var(--border);
  padding: 2.25rem var(--pad-x);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ========================
   MENU PREVIEW (homepage)
   ======================== */

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}

.menu-cat-card {
  background: var(--cream-dark);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.menu-cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.menu-cat-items {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 2.1;
}

.menu-cat-items li::before {
  content: "→ ";
  color: var(--pink);
}

.menu-cat-more {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  display: block;
}

/* ========================
   TESTIMONIALS
   ======================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--cream-dark);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
}

.t-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.875rem;
}

.t-text {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--black);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.t-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

/* Featured pullquote */
.featured-quote {
  border-left: 4px solid var(--yellow);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  background: var(--cream-dark);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.featured-quote p {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 1rem;
}

.featured-quote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.featured-quote .t-stars {
  margin-bottom: 0.75rem;
}

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

@media (max-width: 640px) {
  .featured-quote { padding: 1.5rem; }
  .testimonials-grid--two { grid-template-columns: 1fr; }
}

/* ========================
   CTA BANNER
   ======================== */

.cta-banner {
  background: var(--black);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  border-top: 4px solid var(--yellow);
}

.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner .hand {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.cta-banner p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--text-subtle-on-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-banner .btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================
   PAGE HERO (inner pages)
   ======================== */

.page-hero {
  background: var(--cream-dark);
  border-bottom: var(--border-thick);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  text-align: center;
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  font-family: var(--font-hand);
  font-size: 1.125rem;
  color: var(--pink);
  margin-bottom: 0.625rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.125rem;
}

.page-hero p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ========================
   MENU PAGE — TABS
   ======================== */

.tabs-wrap {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--border-thick);
  padding: 0 var(--pad-x);
}

.tabs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  padding-top: 1rem;
}

.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  background: var(--cream-dark);
  border: var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  bottom: -2px;
}

.tab-btn:hover { background: var(--yellow-light); }
.tab-btn.active { background: var(--yellow); border-color: var(--yellow); }

.tab-content { display: none; scroll-margin-top: 8rem; }
.tab-content.active { display: block; }

/* ========================
   MENU MODE SWITCH (Catering / Cafe)
   ======================== */

.menu-mode-switch {
  display: flex;
  justify-content: center;
  padding: 2.25rem var(--pad-x) 0.5rem;
}

.menu-mode-switch-inner {
  display: inline-flex;
  border: var(--border-thick);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream-dark);
}

.menu-mode-btn {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  background: transparent;
  border: none;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.menu-mode-btn:hover { background: var(--yellow-light); }
.menu-mode-btn.active { background: var(--pink); color: #fff; }

.menu-mode { display: none; }
.menu-mode.active { display: block; }

.menu-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.25rem var(--pad-x) 2.25rem;
}

.menu-item .price {
  margin-left: auto;
  padding-left: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: nowrap;
}

.price-disclaimer {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.5rem var(--pad-x) 0;
}

.event-poster {
  width: 100%;
  height: auto;
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  display: block;
}

.framed-img {
  width: 100%;
  height: auto;
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

/* ========================
   FAQ ACCORDION
   ======================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.15s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--pink);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { background: var(--cream-dark); }
.faq-item[open] summary { background: var(--cream-dark); }

.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.faq-answer p + p { margin-top: 0.75rem; }
.faq-answer a { color: var(--black); border-bottom: 1px solid var(--yellow); text-decoration: none; }

/* ========================
   CAFE / BOOKING CALLOUT
   ======================== */

.cafe-callout {
  background: var(--yellow);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
}

.cafe-callout-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2.5rem;
  flex-wrap: wrap;
}

.cafe-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0.35rem 0 0.6rem;
}

.cafe-callout p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 46ch;
}

.cafe-callout-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ========================
   TYPOGRAPHY CORRECTION
   All-caps monospace labels inherit the body's line-height (1.6), which floats
   the glyphs high in their box. Tighten line-height so they sit centred.
   ======================== */

.badge { line-height: 1; }

.nav-links a,
.menu-subheading,
.menu-pricing-box strong,
.menu-pricing-box .pp,
.stat-label,
.t-author,
.featured-quote cite,
.footer-col h4,
.footer-social a,
.form-group label,
.contact-hours strong,
.menu-cat-more,
.blog-date,
.yellow-band p,
.pricing-row.header,
.field-error {
  line-height: 1.15;
}

/* ========================
   MENU ITEMS
   ======================== */

.menu-category {
  padding: 2.25rem var(--pad-x) var(--pad-y);
}

.menu-category-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.menu-cat-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  border-bottom: var(--border-thick);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}

.menu-pricing-box {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--cream-dark);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  margin-bottom: 2.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.menu-pricing-box strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.375rem;
  color: var(--muted);
}

.menu-pricing-box .pp {
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
}

.menu-item {
  border: var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: var(--cream);
}

.menu-item-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Dietary badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 5px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.03em;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.badge-gf  { background: #EBF5EB; color: #2A6B2A; border: 1px solid #9FCF9F; }
.badge-v   { background: #FEF6E4; color: #7D4F00; border: 1px solid #F5CC7A; }
.badge-vg  { background: #EAF4E8; color: #1C5C1C; border: 1px solid #80C080; }
.badge-df  { background: #E8F0FB; color: #1A3A7A; border: 1px solid #8EAEE4; }

.menu-note {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding: 0.875rem 1.125rem;
  border-left: 3px solid var(--yellow);
  background: var(--cream-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
}

.menu-subheading {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--yellow);
}

/* ========================
   ABOUT PAGE
   ======================== */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-img-box {
  aspect-ratio: 3/4;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1.375rem;
}

.story-content p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-sig {
  font-family: var(--font-hand);
  font-size: 1.75rem;
  color: var(--pink);
  margin-top: 0.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--cream);
}

.value-icon { font-size: 2rem; margin-bottom: 0.875rem; }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.value-card p {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================
   CATERING PAGE
   ======================== */

.how-steps {
  display: flex;
  flex-direction: column;
}

.how-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: var(--border);
  align-items: start;
}

.how-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  text-align: center;
}

.how-step h3 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.how-step p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

.catering-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-card {
  background: var(--cream-dark);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.event-icon { font-size: 1.875rem; margin-bottom: 0.75rem; }

.event-card h3 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-table {
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: var(--border);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row.header {
  background: var(--yellow);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-cell {
  padding: 0.875rem 1.25rem;
  border-right: var(--border);
}

.pricing-cell:last-child { border-right: none; }

.pricing-row:not(.header):nth-child(even) {
  background: var(--cream-dark);
}

/* ========================
   CONTACT PAGE
   ======================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.125rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.65;
}

.contact-icon { font-size: 1.125rem; flex-shrink: 0; padding-top: 1px; }

.contact-detail a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  transition: all 0.18s;
}

.contact-detail a:hover { color: var(--pink); border-color: var(--pink); }

.contact-hours {
  background: var(--cream-dark);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.contact-hours strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.625rem;
  color: var(--muted);
}

.contact-hours p { line-height: 2; }

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.7188rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius);
  color: var(--black);
  outline: none;
  transition: border-color 0.18s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.35);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.75;
}

/* Form states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

.field-error {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #C0392B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.form-success {
  display: none;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
}

.form-success p {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.form-success p + p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.btn[aria-busy="true"] {
  opacity: 0.65;
  pointer-events: none;
  cursor: wait;
}

/* ========================
   FOOTER
   ======================== */

.footer {
  background: var(--black);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--pad-x) 2.5rem;
  border-top: 4px solid var(--yellow);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-circle { width: 56px; height: 56px; margin-bottom: 1.125rem; }
.footer-brand .logo-img { margin-bottom: 1.5rem; }
.footer-brand .logo-circle .lt { font-size: 13px; }

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #999;
  line-height: 1.75;
  margin-bottom: 1.375rem;
  max-width: 280px;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #ccc;
  line-height: 2.1;
}

.footer-contact a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-contact a:hover { color: var(--pink); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
  color: #999;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-social a:hover { color: var(--pink); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: #555;
}

.site-credit a {
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-credit a:hover {
  color: var(--cream);
  border-bottom-color: var(--yellow);
}

/* ========================
   RESPONSIVE
   ======================== */

@media (max-width: 1024px) {
  .services-grid,
  .menu-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: var(--border-thick);
    padding: 1.5rem var(--pad-x);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.125rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-badge { display: none; }

  .services-grid,
  .menu-preview-grid,
  .testimonials-grid,
  .events-grid,
  .menu-grid { grid-template-columns: 1fr; }

  .story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .how-step { grid-template-columns: 52px 1fr; gap: 1.25rem; }
  .step-num { font-size: 2.5rem; }

  .catering-how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .catering-how-media { order: -1; }
  .catering-how-media .framed-img { aspect-ratio: 4 / 3; }

  .tabs-wrap { top: 0; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .yellow-band-inner { gap: 0.875rem; }
  .yellow-band .sep { display: none; }
}

/* ========================
   BLOG PAGE
   ======================== */

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 760px;
}

.blog-post {
  border-bottom: var(--border);
  padding-bottom: 3rem;
}

.blog-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post-header {
  margin-bottom: 1.25rem;
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-post-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  text-transform: uppercase;
  line-height: 1.05;
}

.blog-post-body p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.blog-post-body p:last-child { margin-bottom: 0; }

/* ========================
   TIMELINE (Our Story)
   ======================== */

.timeline {
  position: relative;
  max-width: 720px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4.5rem;
  top: 0.375rem;
  bottom: 0;
  width: 2px;
  background: var(--yellow);
}

.timeline-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0;
  padding-bottom: 2.25rem;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::after {
  content: '';
  position: absolute;
  left: calc(4.5rem - 5px);
  top: 0.375rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--black);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  text-align: right;
  padding-right: 1rem;
  padding-top: 0.125rem;
  line-height: 1;
}

.timeline-text {
  padding-left: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 600px) {
  .timeline::before { left: 3.5rem; }
  .timeline-item { grid-template-columns: 3.5rem 1fr; }
  .timeline-item::after { left: calc(3.5rem - 5px); }
  .timeline-year { font-size: 0.6875rem; padding-right: 0.75rem; }
  .timeline-text { padding-left: 1.25rem; }
}
