/* =====================================================================
   Michelle's Brown Bag Cafe — modernized site stylesheet
   Brand colors preserved: signature orange (#ff9900) + warm "brown bag"
   kraft-paper palette. Display type kept in the Overlock family so the
   refreshed site still feels like Michelle's.
   ===================================================================== */

:root {
  --orange: #ff9900;
  --orange-dark: #e67c00;
  --brown: #3a2a1c;
  --brown-soft: #5a4334;
  --cream: #faf5ec;
  --cream-deep: #f1e7d4;
  --card: #ffffff;
  --ink: #2c2520;
  --muted: #6f6358;
  --line: #e7dcc6;
  --shadow: 0 14px 38px -16px rgba(58, 42, 28, 0.35);
  --shadow-soft: 0 8px 24px -12px rgba(58, 42, 28, 0.28);
  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1160px;
  --font-display: "Overlock SC", "Overlock", Georgia, serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: .5px; line-height: 1.15; color: var(--brown); }

section { padding: 78px 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 10px;
}

.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-ghost:hover { background: var(--brown); color: #fff; }
.btn-light { background: #fff; color: var(--brown); }
.btn-light:hover { background: var(--cream-deep); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--brown);
  letter-spacing: .5px;
}
.brand-text span { font-size: .72rem; color: var(--orange-dark); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-weight: 600;
  color: var(--brown);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .96rem;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--cream-deep); text-decoration: none; }
.nav-links a.active { color: var(--orange-dark); }
.nav-links .nav-cta { background: var(--orange); color: #fff; }
.nav-links .nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--line);
  border-radius: 10px;
  width: 44px; height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--brown);
  position: relative;
  transition: .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 0;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(58,42,28,.92) 0%, rgba(58,42,28,.64) 55%, rgba(58,42,28,.36) 100%),
    url("img/food_sandwich_deli.jpg") center/cover no-repeat;
}
.hero-inner { padding: 90px 0; max-width: 660px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  margin-bottom: 8px;
}
.hero .tagline {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin-bottom: 18px;
}
.hero p.lead { font-size: 1.12rem; color: #f3e9d8; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.page-hero {
  background:
    linear-gradient(120deg, rgba(58,42,28,.90), rgba(58,42,28,.74)),
    url("img/food_veggie_stack.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 66px 0 60px;
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
.page-hero p { color: #f1e7d4; margin-top: 10px; font-size: 1.06rem; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--brown);
  color: #f3e9d8;
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 42px;
  text-align: center;
}
.trust .stars { color: var(--orange); font-size: 1.2rem; letter-spacing: 3px; }
.trust strong { color: #fff; }
.trust-item { font-size: .98rem; }

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.card-body p { color: var(--muted); flex: 1; }
.card-body .card-link {
  margin-top: 16px;
  font-weight: 700;
  color: var(--orange-dark);
  align-self: flex-start;
}

/* ---------- Split / story ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.cream { background: var(--cream-deep); }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.split-body p { color: var(--muted); margin-bottom: 14px; }
.split-body .btn { margin-top: 10px; }

.band-cream { background: var(--cream-deep); }

/* ---------- Info / facts row ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.fact .ic { font-size: 1.7rem; margin-bottom: 8px; }
.fact h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--brown); }
.fact p { color: var(--muted); font-size: .98rem; margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.cta-band p { margin: 12px auto 26px; max-width: 560px; font-size: 1.08rem; color: #fff8ee; }

/* ---------- Menu page ---------- */
.menu-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.menu-sheet {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.menu-sheet img { border-radius: 8px; }
.menu-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 48px;
}
.menu-cat h3 {
  font-size: 1.5rem;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
  margin-bottom: 14px;
}
.menu-cat ul { list-style: none; }
.menu-cat li { padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--ink); }
.menu-cat li:last-child { border-bottom: none; }
.menu-cat li span { display: block; color: var(--muted); font-size: .92rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-grid a:hover img { transform: scale(1.07); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 13, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.lightbox-close {
  position: absolute;
  top: 22px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2.4rem;
  cursor: pointer; line-height: 1;
}

/* ---------- Contact / hours ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.info-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  font-size: 1.2rem;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}
.info-row .lbl { font-weight: 700; color: var(--brown); display: block; }
.info-row .val { color: var(--muted); }
.info-row .val a { color: var(--muted); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed { color: #b9ab95; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown);
  color: #d8c9b3;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}
.site-footer a { color: #d8c9b3; }
.site-footer a:hover { color: var(--orange); }
.footer-brand img { height: 64px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .95rem; }
.footer-links { list-style: none; }
.footer-links li { padding: 5px 0; }
.footer-contact p { padding: 4px 0; font-size: .95rem; }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: background .15s ease;
}
.social-row a:hover { background: var(--orange); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  text-align: center;
  font-size: .85rem;
  color: #b9ab95;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .cards, .facts, .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .menu-board, .menu-highlights, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split-media { order: -1; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    display: none;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 14px;
    border-radius: 10px;
    text-align: left;
    font-size: 1.02rem;
  }
  .nav-links .nav-cta {
    text-align: center;
    margin-top: 10px;
    padding: 14px 16px;
    font-weight: 700;
    background: var(--orange);
    color: #fff;
  }
  .nav-links .nav-cta:hover { background: var(--orange-dark); color: #fff; }
  .cards, .facts, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 0; }
  .hero-inner { padding: 64px 0; }
  .brand-text span { display: none; }
}

/* =====================================================================
   Redesign additions — reviews, catering steps, page-hero variants
   ===================================================================== */

.page-hero.ph-catering {
  background:
    linear-gradient(120deg, rgba(58,42,28,.92), rgba(58,42,28,.74)),
    url("img/catering_pastry_platter.jpg") center/cover no-repeat;
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: var(--orange); letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.review-card p { color: var(--ink); font-size: 1.06rem; font-style: italic; flex: 1; line-height: 1.6; }
.review-card .who { margin-top: 16px; font-weight: 700; color: var(--brown); font-size: .95rem; }
.review-card .who span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ---------- Numbered steps (reuses .facts grid) ---------- */
.facts .step-num {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Catering checklist ---------- */
.checklist { list-style: none; column-count: 2; column-gap: 44px; }
.checklist li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--ink);
  break-inside: avoid;
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: #4A6B3A;
  font-weight: 800;
}
.checklist li span { display: block; color: var(--muted); font-size: .9rem; }

/* ---------- Misc ---------- */
.lead-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  color: var(--brown);
  line-height: 1.4;
  margin-top: 6px;
}
.menu-intro-note {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: -26px auto 40px;
  font-size: 1.02rem;
}
.menu-cat li b { color: var(--orange-dark); font-weight: 800; float: right; margin-left: 14px; }
.center-cta { text-align: center; margin-top: 38px; }

@media (max-width: 920px) {
  .reviews { grid-template-columns: 1fr; }
  .checklist { column-count: 1; }
}

/* =====================================================================
   v3 additions — history-led hero, menu callout, reviews carousel,
   produce-backdrop info card, tighter Visit
   ===================================================================== */

/* ---------- Hero: history-led (bag logo on marble food backdrop) ---------- */
.hero.hero-story {
  background:
    linear-gradient(120deg, rgba(58,42,28,.88) 0%, rgba(58,42,28,.60) 55%, rgba(58,42,28,.40) 100%),
    url("img/hero_marble_spread.jpg") center/cover no-repeat;
  min-height: 82vh;
}
.hero-story-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 84px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero-story .hero-copy { max-width: 620px; }
.hero-story .hero-copy h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  margin-bottom: 8px;
}
.hero-story .hero-copy .tagline {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  margin-bottom: 18px;
}
.hero-story .hero-copy .lead { font-size: 1.12rem; color: #f3e9d8; margin-bottom: 28px; }

.hero-brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px 32px 30px;
  box-shadow: 0 34px 70px -22px rgba(0,0,0,.55);
  max-width: 380px;
  width: 100%;
  text-align: center;
  transform: rotate(-1.2deg);
  transition: transform .25s ease;
}
.hero-logo-card:hover { transform: rotate(0); }
.hero-logo-card img { width: 100%; height: auto; display: block; }

.btn-ghost-onDark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost-onDark:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Menu callout (replaces the old mini menu) ---------- */
.menu-callout { text-align: center; padding: 70px 0; }
.menu-callout .eyebrow { text-align: center; }
.menu-callout h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  max-width: 780px; margin: 0 auto 14px;
}
.menu-callout p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ---------- Reviews carousel ---------- */
.reviews-carousel {
  position: relative;
  margin-top: 8px;
}
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 2px 12px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 280px;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.reviews-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(58,42,28,.22);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.reviews-dots button.active {
  background: var(--orange);
  transform: scale(1.25);
}
@media (max-width: 920px) {
  .reviews-track > .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .reviews-track > .review-card { flex: 0 0 90%; }
}

/* ---------- Visit — tighter + produce-backdrop info card ---------- */
.visit-section { padding: 56px 0 64px; }
.visit-head { margin-bottom: 28px; }
.contact-grid-tight {
  grid-template-columns: 1.05fr 1.35fr;
  gap: 26px;
  align-items: stretch;
}
.info-card--produce {
  position: relative;
  background: url("img/produce_rainbow.jpg") center/cover;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 26px;
  border-radius: var(--radius);
}
.info-card--produce::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,253,247,.86);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}
.info-card--produce > * { position: relative; z-index: 1; }
.info-card--produce h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.info-card--produce .info-row {
  padding: 10px 0;
}
.info-card--produce .info-row .lbl { font-size: .95rem; }
.info-card--produce .info-row .val { font-size: .95rem; }
.map-embed-tight iframe { height: 320px; }

/* =====================================================================
   v4 additions — mobile-first hero refresh, Visit flip, menu intro
   (these override the v3 hero + Visit styles above)
   ===================================================================== */

/* --- Hero (v4): lighter overlay, food backdrop, chalkboard-framed logo ---
   Mobile-first: text stacks, framed logo appears only on wider screens. */
.hero.hero-story {
  background:
    linear-gradient(115deg, rgba(58,42,28,.70) 0%, rgba(58,42,28,.42) 55%, rgba(58,42,28,.22) 100%),
    url("img/hero_food.jpg") center/cover no-repeat;
  min-height: auto;
  padding: 58px 0 66px;
}
.hero-story-inner {
  display: block;
  padding: 0 22px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  grid-template-columns: none;
  gap: 0;
}
.hero-story .hero-copy { max-width: 620px; }
.hero-story .hero-brand-tile { display: none; }

/* Chalkboard frame around the logo — dark slate with orange double-line frame */
.hero-logo-frame {
  background: #d4763c;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.55);
  max-width: 320px;
  width: 100%;
}
.hero-logo-inner {
  background: #1c140c;
  padding: 14px;
  border: 2px solid #d4763c;
  border-radius: 3px;
}
.hero-logo-inner img { display: block; width: 100%; height: auto; border-radius: 2px; }

/* Desktop: bring the framed logo into a two-column hero */
@media (min-width: 900px) {
  .hero.hero-story { min-height: 78vh; padding: 0; }
  .hero-story-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 46px;
    align-items: center;
    padding: 84px 22px;
  }
  .hero-story .hero-brand-tile { display: flex; align-items: center; justify-content: center; }
  .hero-logo-frame { max-width: 340px; }
}

/* --- Visit section (v4): produce photo is now the SECTION background;
   the Hours & Location card goes back to a clean cream/white. --- */
.visit-section--produce {
  position: relative;
  background:
    linear-gradient(rgba(250,245,236,.62), rgba(250,245,236,.72)),
    url("img/produce_rainbow.jpg") center/cover;
  padding: 54px 0 66px;
}
.visit-section--produce .info-card {
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
}
/* Neutralize the older info-card--produce treatment in case markup switches back */
.info-card--produce::before { display: none; }

/* --- Menu intro paragraph (v4): full-width, bigger, stronger color --- */
.menu-intro-note {
  max-width: none;
  text-align: center;
  color: var(--ink);
  font-size: 1.10rem;
  line-height: 1.55;
  margin: 6px auto 44px;
  padding: 16px 18px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
@media (min-width: 720px) {
  .menu-intro-note { font-size: 1.22rem; padding: 22px 40px 28px; }
}

/* Three-tile gallery variant (used by menu.html) */
.gallery-grid.gallery-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) {
  .gallery-grid.gallery-grid--three { grid-template-columns: 1fr; }
  .gallery-grid.gallery-grid--three a { aspect-ratio: 16/10; }
}

/* Menu highlights — masonry-style packing so short sections fit next to long ones */
.menu-highlights {
  display: block;
  column-count: 2;
  column-gap: 48px;
}
.menu-highlights .menu-cat {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 32px;
  display: block;
}
@media (max-width: 720px) {
  .menu-highlights { column-count: 1; }
  .menu-highlights .menu-cat { margin-bottom: 24px; }
}

/* =====================================================================
   v5 additions — trust badges, hero 20-yr chip, mobile logo,
   mobile sticky action bar, review chevrons, focus styles,
   founder story, menu chip nav, catering form
   ===================================================================== */

/* Global accessibility: visible focus state on keyboard nav */
*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Hero 20-year chip + mobile-only small logo above H1 --- */
.hero-year-chip {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: 1.4px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.4);
}
.hero-mobile-logo {
  display: block;
  max-width: 300px;
  width: min(80vw, 300px);
  margin: 0 auto 24px;
}
.hero-mobile-logo-frame {
  background: var(--orange);
  padding: 4px;
  border-radius: 6px;
  box-shadow: 0 14px 28px -12px rgba(0,0,0,.55);
}
.hero-mobile-logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  border: 2px solid #1c140c;
}
@media (min-width: 900px) {
  .hero-mobile-logo { display: none; }
}
.hero-story .hero-copy .eyebrow { display: none; }
.hero-story .hero-copy .hero-year-chip { margin-top: 0; }

/* --- Trust strip → four badges (mobile-first 2x2, desktop 4-across) --- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 24px 22px; }
}
.trust-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 12px 10px;
  border-radius: 12px;
  text-align: center;
  min-height: 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.trust-badge .tb-value {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.15;
}
.trust-badge .tb-label {
  color: #d8c9b3;
  font-size: .74rem;
  margin-top: 4px;
  line-height: 1.35;
}
.trust-badge--delivery {
  background: var(--orange);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.35);
}
.trust-badge--delivery .tb-value,
.trust-badge--delivery .tb-label { color: #fff; }
.trust-badge .stars { color: var(--butter, #E8C547); letter-spacing: 2px; }

/* --- Info card: tap-through link rows --- */
.info-row-link {
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
  border-radius: 10px;
}
.info-row-link:hover { background: rgba(212,118,60,.08); text-decoration: none; }
.info-row .val a { color: var(--orange-dark); font-weight: 700; }
.info-row .val-strong { color: var(--brown); font-weight: 700; font-size: 1.02rem; }

/* --- Mobile sticky action bar (Call · Directions · Order) --- */
.mobile-action-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  background: rgba(28,20,12,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
  gap: 6px;
  box-shadow: 0 -6px 20px -6px rgba(0,0,0,.4);
}
.mab-btn {
  flex: 1 1 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px 4px;
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 52px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  gap: 2px;
}
.mab-btn:hover, .mab-btn:focus { text-decoration: none; color: #fff; background: rgba(255,255,255,.14); }
.mab-btn--primary { background: var(--orange); }
.mab-btn--primary:hover, .mab-btn--primary:focus { background: var(--orange-dark); }
.mab-ic { font-size: 1.2rem; line-height: 1; }
@media (max-width: 720px) {
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* --- Bump nav-hamburger breakpoint from 720 → 900 (tablets get hamburger too) --- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    display: none;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; width: 100%; }
  .nav-links a {
    display: block; width: 100%;
    padding: 14px 14px; border-radius: 10px;
    text-align: left; font-size: 1.02rem;
  }
  .nav-links .nav-cta {
    text-align: center; margin-top: 10px;
    padding: 14px 16px; font-weight: 700;
    background: var(--orange); color: #fff;
  }
}

/* --- Review carousel: chevron arrows + larger dot hit areas --- */
.reviews-carousel { position: relative; padding: 0 8px; }
.reviews-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--brown);
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, background .15s ease;
}
.reviews-arrow:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.06); }
.reviews-arrow--prev { left: -6px; }
.reviews-arrow--next { right: -6px; }
.reviews-dots button {
  padding: 12px 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; min-height: 44px;
}
.reviews-dots button::before {
  content: "";
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(58,42,28,.24);
  transition: background .2s ease, transform .2s ease;
}
.reviews-dots button.active::before { background: var(--orange); transform: scale(1.35); }
@media (max-width: 640px) {
  .reviews-arrow--prev { left: -4px; }
  .reviews-arrow--next { right: -4px; }
}

/* --- Founder story: text-dominant with a small classy portrait avatar --- */
.founder-story .split {
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  text-align: center;
}
.founder-story .split-body { text-align: left; }
.founder-story .split-body p strong { color: var(--brown); }

.founder-portrait {
  max-width: 180px;
  margin: 0 auto;
  text-align: center;
}
.founder-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px -12px rgba(58,42,28,.35);
  display: block;
}
.founder-caption {
  margin-top: 14px;
  font-family: var(--font-display);
  color: var(--brown);
  font-size: 1.05rem;
  letter-spacing: .4px;
  line-height: 1.15;
}
.founder-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
  font-weight: 700;
  margin-top: 4px;
}

@media (min-width: 720px) {
  .founder-story .split {
    grid-template-columns: 200px 1fr;
    gap: 44px;
    text-align: left;
  }
  .founder-portrait { max-width: 200px; }
}

/* Short "story-strip" fallback style (kept in case any page still uses it) */
.story-strip { padding: 46px 0; text-align: center; }
.story-strip-text {
  max-width: 720px; margin: 8px auto 0;
  color: var(--muted); font-size: 1.02rem; line-height: 1.7;
}

/* --- Menu category chip nav (sticky under header) --- */
.menu-chips {
  position: sticky;
  top: 62px;
  z-index: 40;
  background: rgba(250,245,236,.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-chips::-webkit-scrollbar { display: none; }
.menu-chips-inner {
  display: flex;
  gap: 8px;
  padding: 10px 22px;
  white-space: nowrap;
  max-width: var(--maxw);
  margin: 0 auto;
}
.menu-chips a {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(212,118,60,.10);
  color: var(--brown);
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  flex-shrink: 0;
}
.menu-chips a:hover { background: var(--orange); color: #fff; text-decoration: none; }
html { scroll-padding-top: 130px; }

/* --- Catering request form --- */
.catering-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}
.catering-form label {
  display: block;
  font-weight: 700;
  color: var(--brown);
  font-size: .92rem;
  margin-bottom: 4px;
}
.catering-form input,
.catering-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  margin-top: 4px;
  margin-bottom: 14px;
  background: #fff;
  min-height: 44px;
}
.catering-form textarea { min-height: 100px; resize: vertical; }
.catering-form input:focus,
.catering-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }

/* --- Social row: SVG icon color --- */
.social-row a svg { display: block; }

/* --- Stroke-icon set (thin-line, rounded, warm) --- */
.ic svg, .mab-ic svg, .fact .ic svg, .delivery-callout-ic svg, .step-num svg {
  display: block;
}
.info-row .ic {
  color: var(--orange-dark);
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
}
.info-row .ic svg { width: 22px; height: 22px; }
.mab-ic { color: currentColor; }
.mab-ic svg { width: 22px; height: 22px; }
.fact .ic {
  color: var(--orange-dark);
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.fact .ic svg { width: 32px; height: 32px; }
.delivery-callout-ic { color: var(--orange-dark); display: inline-flex; align-items: center; justify-content: center; }
.delivery-callout-ic svg { width: 34px; height: 34px; }
.step-num svg { width: 22px; height: 22px; }

/* --- Menu page: free-delivery callout box --- */
.delivery-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 40px;
  padding: 18px 22px;
  background: #fff8ee;
  border: 2px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 6px 18px -10px rgba(212,118,60,.45);
}
.delivery-callout-ic {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.delivery-callout-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.delivery-callout-text strong {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .3px;
}
.delivery-callout-text span {
  color: var(--brown);
  font-weight: 600;
  font-size: 1.02rem;
}
@media (max-width: 640px) {
  .delivery-callout { padding: 16px 18px; gap: 12px; margin-bottom: 32px; }
  .delivery-callout-ic { font-size: 1.6rem; }
  .delivery-callout-text strong { font-size: 1.06rem; }
  .delivery-callout-text span { font-size: .96rem; }
}

/* Mobile-first cleanup for adjacent components */
@media (max-width: 720px) {
  section { padding: 48px 0; }
  .menu-callout { padding: 46px 0; }
  .visit-section--produce { padding: 44px 0 52px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; min-width: 44%; }
}
