/* ================================================
   SOFI'S CORNER CAFE — styles.css
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display+SC:wght@400;700&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* === CUSTOM PROPERTIES === */
:root {
  /* Brand palette */
  --primary:     #2D4A3E;   /* dark forest green */
  --secondary:   #4A7C59;   /* medium green */
  --accent:      #C9A96E;   /* warm gold */
  --accent-dark: #B8924A;   /* gold hover */
  --bg:          #FFFFFF;   /* main background */
  --bg-alt:      #F8F5F0;   /* soft cream alt */
  --text:        #1A1A1A;   /* near-black */
  --text-muted:  #666666;   /* secondary text */
  --border:      #E2DDD6;   /* subtle divider */
  --border-light:#EEE9E2;   /* very light border */
  --white:       #FFFFFF;

  /* Legacy aliases (keeps existing selectors working) */
  --cream:       var(--bg);
  --cream-alt:   var(--bg-alt);
  --beige:       var(--border);
  --sand:        var(--border-light);
  --coffee:      var(--primary);
  --latte:       var(--text-muted);
  --espresso:    var(--text);
  --gold:        var(--accent);
  --amber:       var(--accent-dark);

  --font-heading: 'Playfair Display SC', Georgia, serif;
  --font-body:    'Karla', 'Helvetica Neue', Arial, sans-serif;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --max-width:   1200px;
  --nav-height:  72px;
  --section-pad: clamp(3rem, 8vw, 6rem);

  --shadow-sm:  0 1px 4px rgba(45,74,62,.08);
  --shadow-md:  0 4px 16px rgba(45,74,62,.12);
  --shadow-lg:  0 8px 32px rgba(45,74,62,.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --ease:   cubic-bezier(.4,0,.2,1);
  --fast:   150ms;
  --normal: 250ms;
  --slow:   420ms;

  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-50: 50;
}

/* === BASE TYPOGRAPHY === */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
p  { line-height: 1.72; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-3);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}
.section { padding-block: var(--section-pad); }
.section--alt { background-color: var(--bg-alt); }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-50);
  transition:
    background-color var(--normal) var(--ease),
    box-shadow var(--normal) var(--ease);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}
.nav__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: filter var(--fast) var(--ease);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.18));
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding-block: var(--space-2);
  border-bottom: 1px solid transparent;
  transition:
    color var(--fast) var(--ease),
    border-color var(--fast) var(--ease);
  cursor: pointer;
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--accent);
}
.nav__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--fast) var(--ease);
}

/* Scrolled state */
.nav--scrolled {
  background-color: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav--scrolled .nav__logo-img { filter: drop-shadow(0 1px 3px rgba(0,0,0,.08)); }
.nav--scrolled .nav__link     { color: rgba(26,26,26,.65); }
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link[aria-current="page"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.nav--scrolled .nav__toggle   { color: var(--text); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background-color: var(--bg);
  padding: var(--space-4) clamp(1.25rem, 5vw, 2rem) var(--space-6);
  box-shadow: var(--shadow-md);
}
.nav__mobile.is-open { display: block; }
.nav__mobile .nav__link {
  display: block;
  color: var(--text);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.nav__mobile .nav__link:last-child { border-bottom: none; }

/* === HERO === */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45,74,62,.88) 0%,
    rgba(45,74,62,.70) 50%,
    rgba(45,74,62,.50) 100%
  );
}
.hero__content {
  position: relative;
  z-index: var(--z-10);
  text-align: center;
  padding-inline: var(--space-6);
  max-width: 820px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-5);
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: var(--space-6);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  font-weight: 300;
  margin-bottom: var(--space-10);
  letter-spacing: .02em;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}
.hero__cta {
  display: inline-block;
  padding: var(--space-4) var(--space-10);
  background-color: var(--accent);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background-color var(--normal) var(--ease),
    transform var(--normal) var(--ease),
    box-shadow var(--normal) var(--ease);
}
.hero__cta:hover {
  background-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,74,62,.35);
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,.5);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%,70% { opacity: 1; }
  100%     { transform: scaleY(1); transform-origin: top; }
}

/* === OUR STORY === */
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
.story__title { margin-bottom: var(--space-6); }
.story__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: var(--space-4);
}
.story__divider {
  width: 48px;
  height: 2px;
  background-color: var(--accent);
  margin-top: var(--space-10);
}
.story__img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* === MENU PREVIEW === */
.menu-preview__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.menu-preview__header h2 { margin-bottom: var(--space-3); }
.menu-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.menu-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform var(--normal) var(--ease),
    box-shadow var(--normal) var(--ease);
}
.menu-card > a { display: block; }
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.menu-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.menu-card:hover .menu-card__image img {
  transform: scale(1.05);
}
.menu-card__body { padding: var(--space-6); }
.menu-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.menu-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
}
.menu-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition:
    color var(--fast) var(--ease),
    border-color var(--fast) var(--ease);
}
.menu-card__link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.menu-preview__cta { text-align: center; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: var(--space-4) var(--space-10);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--normal) var(--ease);
}
.btn--primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background-color: #1f3429;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,74,62,.28);
}

/* === HOURS & LOCATION === */
.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}
.location__heading { margin-bottom: var(--space-6); }
.hours__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.hours__item:last-child { border-bottom: none; }
.hours__day  { font-weight: 600; color: var(--text); }
.hours__time { font-size: 0.9rem; color: var(--text-muted); }
.location__contact {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.location__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.location__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
.location__contact-item a {
  transition: color var(--fast) var(--ease);
}
.location__contact-item a:hover { color: var(--primary); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* === FOOTER === */
.footer {
  background-color: var(--primary);
  padding-block: var(--space-16);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer__logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: none;
  display: block;
  margin-bottom: var(--space-4);
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.footer__social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all var(--normal) var(--ease);
}
.footer__social-link:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}
.footer__col-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: color var(--fast) var(--ease);
  display: block;
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
}
.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,.28);
}

/* ================================================
   MENU PAGE
   ================================================ */
.menu-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
  text-align: center;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.menu-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,74,62,.90) 0%, rgba(45,74,62,.75) 100%);
}
.menu-hero__content {
  position: relative;
  z-index: var(--z-10);
  width: 100%;
}
.menu-hero__title { color: var(--white); margin-bottom: var(--space-4); }
.menu-hero__subtitle {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Menu sections */
.menu-section {
  padding-block: var(--space-16) var(--space-12);
  border-bottom: 1px solid var(--border);
}
.menu-section:last-child { border-bottom: none; }
.menu-section__header { margin-bottom: var(--space-10); }
.menu-section__title { margin-bottom: var(--space-2); }
.menu-section__note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Menu item cards */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5);
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: block;
  transition:
    transform var(--normal) var(--ease),
    box-shadow var(--normal) var(--ease);
  cursor: default;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.menu-item__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--slow) var(--ease);
}
.menu-item:hover .menu-item__img {
  transform: scale(1.04);
}
.menu-item__body {
  padding: var(--space-4) var(--space-5) var(--space-5);
}
.menu-item__info { flex: 1; }
.menu-item__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.25;
  display: block;
}
.menu-item__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
  margin-top: var(--space-1);
  line-height: 1.45;
}
.menu-item__price {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-3);
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--slow) var(--ease),
    transform var(--slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
}

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

/* 768px+ */
@media (min-width: 768px) {
  .nav__links  { display: flex; }
  .nav__toggle { display: none; }
  .location__grid  { grid-template-columns: 1fr 1fr; }
  .footer__grid    { grid-template-columns: 2fr 1fr 1fr; }
  .story__grid     { grid-template-columns: 1fr 1fr; }
  .footer__bottom  {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* 600px+ */
@media (min-width: 600px) {
  .menu-preview__grid { grid-template-columns: repeat(2, 1fr); }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .menu-preview__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile only */
@media (max-width: 767px) {
  .nav__links { display: none; }
}

/* ================================================
   NAV — 5 LINKS + BRAND WRAPPER
   ================================================ */
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
/* Tighter gap for 5 nav links */
.nav__links { gap: var(--space-5); }
@media (min-width: 768px) and (max-width: 1100px) {
  .nav__links { gap: var(--space-4); }
  .nav__link  { font-size: 0.72rem; }
}

/* ================================================
   STATUS BADGE — OPEN / CLOSED
   ================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  transition: background var(--normal) var(--ease), color var(--normal) var(--ease);
}
/* On transparent nav (over hero) */
.status-badge--open   { background: rgba(111,207,151,.22); color: rgba(255,255,255,.95); }
.status-badge--closed { background: rgba(235,87,87,.22);   color: rgba(255,255,255,.90); }
/* On white/scrolled nav */
.nav--scrolled .status-badge--open   { background: rgba(45,74,62,.1);  color: #2D4A3E; }
.nav--scrolled .status-badge--closed { background: rgba(180,48,48,.1); color: #b83030; }
/* Dot indicator */
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge--open   .status-dot { background: #6FCF97; }
.status-badge--closed .status-dot { background: #EB5757; }
/* In hours section */
.hours__title-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.hours__title-row h2 { margin: 0; }
.hours__title-row .status-badge {
  font-size: 0.72rem;
  padding: 5px 13px;
}
.hours__title-row .status-badge--open   { background: rgba(45,74,62,.1);  color: #2D4A3E; }
.hours__title-row .status-badge--closed { background: rgba(180,48,48,.08);color: #b83030; }
.hours__title-row .status-badge--open   .status-dot { background: #4A7C59; }
.hours__title-row .status-badge--closed .status-dot { background: #c03030; }

/* ================================================
   MENU FILTER BUTTONS
   ================================================ */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-8) 0 var(--space-6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-2);
}
.menu-filter__btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  background: none;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--normal) var(--ease);
}
.menu-filter__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.menu-filter__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.menu-filter__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
/* Section fade transition for filter */
.menu-section { transition: opacity 280ms ease; }

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-grid {
  columns: 1;
  column-gap: var(--space-4);
  padding-block: var(--space-12);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--slow) var(--ease);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,74,62,0);
  transition: background var(--normal) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.gallery-item__overlay svg {
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--normal) var(--ease), transform var(--normal) var(--ease);
}
.gallery-item:hover img                { transform: scale(1.04); }
.gallery-item:hover .gallery-item__overlay { background: rgba(45,74,62,.35); }
.gallery-item:hover .gallery-item__overlay svg { opacity: 1; transform: scale(1); }
@media (min-width: 600px)  { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.93);
  cursor: zoom-out;
}
.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  z-index: 210;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background var(--fast) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.28); }
.lightbox__inner {
  position: relative;
  z-index: 205;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 96vw;
  max-height: 92vh;
}
.lightbox__img {
  max-width: calc(96vw - 128px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox__arrow {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.lightbox__arrow:hover { background: rgba(255,255,255,.28); transform: scale(1.05); }
.lightbox__caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 210;
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  text-align: center;
  max-width: 80vw;
}
.lightbox__counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 210;
  color: rgba(255,255,255,.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ================================================
   PAGE HERO (charcuterie, catering, gallery)
   ================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  padding-top: calc(var(--nav-height) + var(--space-16));
}
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45,74,62,.95) 0%,
    rgba(45,74,62,.68) 50%,
    rgba(45,74,62,.42) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: var(--z-10);
  width: 100%;
  max-width: 700px;
}
.page-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-3);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.page-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  font-weight: 300;
  line-height: 1.72;
  max-width: 560px;
}
.page-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-8);
  background: var(--accent);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--normal) var(--ease);
}
.page-hero__cta:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,74,62,.3);
}

/* ================================================
   CHARCUTERIE PAGE
   ================================================ */
.boards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.board-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background: var(--white);
  position: relative;
  transition: border-color var(--normal) var(--ease),
              box-shadow var(--normal) var(--ease),
              transform var(--normal) var(--ease);
}
.board-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.board-card--featured {
  border-color: var(--primary);
  background: var(--bg-alt);
}
.board-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.board-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.board-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.board-card__serves {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}
.board-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.board-card__includes li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.board-card__includes li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Perfect For */
.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.perfect-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: border-color var(--normal) var(--ease), box-shadow var(--normal) var(--ease);
}
.perfect-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}
.perfect-card__icon {
  width: 52px; height: 52px;
  background: rgba(45,74,62,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  color: var(--primary);
}
.perfect-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.perfect-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ================================================
   CATERING PAGE
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  border-left: 3px solid var(--primary);
  transition: box-shadow var(--normal) var(--ease), transform var(--normal) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 44px; height: 44px;
  background: rgba(45,74,62,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--primary);
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
/* Provides grid */
.provides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.provide-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.provide-item__check {
  width: 26px; height: 26px;
  background: rgba(45,74,62,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
}
.provide-item__text {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  padding-top: 3px;
}

/* ================================================
   CATERING FORM
   ================================================ */
.form-wrap {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,74,62,.1);
}
.form-group textarea  { resize: vertical; min-height: 120px; }
.form-group select    { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit-row { padding-top: var(--space-2); }
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-16);
}
.form-success__icon {
  width: 60px; height: 60px;
  background: rgba(45,74,62,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  color: var(--primary);
}
.form-success__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.form-success__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ================================================
   RESPONSIVE — NEW COMPONENTS
   ================================================ */
@media (min-width: 600px) {
  .boards-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .boards-grid        { grid-template-columns: repeat(3, 1fr); }
  .services-grid      { grid-template-columns: repeat(3, 1fr); }
  .perfect-for-grid   { grid-template-columns: repeat(4, 1fr); }
  .provides-grid      { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 599px) {
  .lightbox__img   { max-width: 92vw; }
  .lightbox__inner { gap: var(--space-2); }
  .lightbox__arrow { width: 40px; height: 40px; }
}

/* === FLOATING ORDER BUTTON === */
@keyframes fab-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.order-fab-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}


.order-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  background: linear-gradient(135deg, #92400E 0%, #B45309 60%, #D97706 100%);
  color: #FEF3C7;
  font-family: var(--font-body, 'Karla', sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: none;
  animation: fab-float 3s ease-in-out infinite;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}


.order-fab:hover {
  filter: brightness(1.1);
  box-shadow: none;
  animation-play-state: paused;
}
.order-fab:active {
  filter: brightness(0.95);
  transform: scale(0.97);
}

.order-fab__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .order-fab          { animation: none; }
}

@media (max-width: 599px) {
  .order-fab-wrap { bottom: 20px; right: 20px; }
  .order-fab { padding: 16px 26px; font-size: 1rem; gap: 8px; }
  .order-fab__icon { width: 20px; height: 20px; }
}


/* ================================================
   DOORDASH-STYLE MENU PAGE
   ================================================ */

/* Hero */
.dd-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.dd-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dd-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.72) 70%, rgba(0,0,0,.85) 100%);
}
.dd-hero__content {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  gap: var(--space-5);
  padding-bottom: var(--space-8);
}
.dd-hero__logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.dd-hero__name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.dd-hero__meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  margin-bottom: var(--space-1);
}
.dd-hero__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  font-style: italic;
}

/* ================================================
   TOAST-STYLE STICKY CATEGORY NAV
   ================================================ */
.dd-topnav {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.dd-topnav::-webkit-scrollbar { display: none; }
.dd-topnav__track {
  display: flex;
  gap: 0;
  padding: 0 var(--space-4);
  white-space: nowrap;
}
.dd-topnav__btn {
  flex-shrink: 0;
  padding: var(--space-4) var(--space-5);
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--fast) var(--ease), border-color var(--fast) var(--ease);
  margin-bottom: -1px;
}
.dd-topnav__btn:hover { color: var(--primary); }
.dd-topnav__btn.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ================================================
   MENU PAGE BACKGROUND & INNER CONTAINER
   ================================================ */
.dd-page-bg {
  background: #f2f2f2;
  min-height: 60vh;
  padding: var(--space-6) var(--space-4);
}
@media (min-width: 680px) {
  .dd-page-bg { padding: var(--space-8) var(--space-6); }
}
.dd-page-inner {
  max-width: 860px;
  margin-inline: auto;
}

/* ================================================
   MENU SECTION
   ================================================ */
.dd-section {
  margin-bottom: 0;
}
.dd-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text);
  margin-bottom: var(--space-4);
  padding-top: var(--space-6);
}

/* Section separator */
.dd-sep {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-8) 0;
}

/* ================================================
   MENU ITEMS — TOAST-STYLE CARDS
   ================================================ */
.dd-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.dd-item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 2px 12px rgba(0,0,0,.04);
  cursor: default;
  transition: box-shadow var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.dd-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transform: translateY(-1px);
}

.dd-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  justify-content: center;
}
.dd-item__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.dd-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.dd-item__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-top: var(--space-1);
}

/* Item thumbnail — direct child img, right side */
.dd-item__img {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  display: block;
  order: 2;
  align-self: center;
  transition: transform var(--normal) var(--ease);
}
.dd-item__info { order: 1; }
@media (min-width: 500px) {
  .dd-item__img { width: 120px; height: 120px; }
}
@media (min-width: 860px) {
  .dd-item__img { width: 137px; height: 137px; }
  .dd-item { padding: var(--space-5); }
}

/* ================================================
   MONTHLY SPECIAL ITEM
   ================================================ */
.dd-item--special {
  position: relative;
  background: linear-gradient(135deg, #fffdf7 0%, #fff9ee 100%);
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 8px rgba(201,169,110,.18), 0 4px 20px rgba(201,169,110,.10);
}
.dd-item--special:hover {
  box-shadow: 0 6px 24px rgba(201,169,110,.28);
  transform: translateY(-2px);
}
.dd-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px 3px 6px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: var(--space-1);
}
.dd-item__badge svg {
  flex-shrink: 0;
}

/* ================================================
   TODAY'S PICKS / SPECIALS SECTION
   ================================================ */
.specials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.specials__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: var(--space-2);
  max-width: 460px;
}
.specials__header-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 220px;
  text-align: right;
  flex-shrink: 0;
}
.specials__header-note svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-dark); }
.specials__footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.specials__footer-note svg { flex-shrink: 0; color: var(--accent-dark); }
.specials__footer-note a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.specials__footer-note a:hover { color: var(--secondary); }

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 11px var(--space-6);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn--outline:hover { background: var(--primary); color: var(--white); }

/* Bento grid */
.specials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 860px) {
  .specials__grid { grid-template-columns: 1fr 380px; align-items: stretch; }
}

/* Featured card */
.special-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--normal) var(--ease), transform var(--normal) var(--ease);
}
.special-featured:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.special-featured__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (min-width: 600px) {
  .special-featured__inner { flex-direction: row; }
  .special-featured__image { width: 52%; flex-shrink: 0; }
}
.special-featured__image {
  overflow: hidden;
  min-height: 240px;
}
.special-featured__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--slow) var(--ease);
}
.special-featured:hover .special-featured__image img { transform: scale(1.04); }
.special-featured__content {
  padding: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.special-featured__name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  color: var(--text);
  line-height: 1.2;
}
.special-featured__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.special-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}
.panini-photos {
  display: flex;
  gap: var(--space-3);
  width: 100%;
}
.panini-photos img {
  flex: 1;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.special-featured__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}
.special-featured__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  transition: gap var(--fast) var(--ease);
}
.special-featured:hover .special-featured__link { gap: var(--space-3); }

/* ── Specials: 3-card bento grid ── */
.specials__three-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media (min-width: 640px) {
  .specials__three-grid {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1.4fr 1.4fr 1.2fr 1.2fr;
  }
  .specials__three-grid .spc-card--tall {
    grid-row: 1 / 4;
    grid-column: 1;
  }
  .specials__three-grid .spc-card--horchata {
    grid-row: 3 / 5;
    grid-column: 2;
  }
}
@media (min-width: 1024px) {
  .specials__three-grid {
    gap: 1.25rem;
  }
}

/* ── Specials: image card ── */
.spc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--normal) var(--ease), transform var(--normal) var(--ease);
  background: var(--text);
}
.spc-card--tall {
  min-height: 420px;
}
@media (min-width: 640px) {
  .spc-card { min-height: 220px; }
  .spc-card--tall { min-height: 0; } /* height driven by grid rows */
}
.spc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.spc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform var(--slow) var(--ease);
}
.spc-card:hover .spc-card__img {
  transform: scale(1.05);
}
.spc-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(10,20,15,0.82) 0%, rgba(10,20,15,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.spc-card--tall .spc-card__overlay {
  padding: 2rem 1.5rem 1.5rem;
}
.spc-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}
.spc-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.spc-card--tall .spc-card__name {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}
.spc-card__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
}

/* Natural-fit card: image shows fully, card height adapts */
.spc-card--natural {
  min-height: 0;
}
.spc-card--natural .spc-card__img {
  position: relative;
  inset: auto;
  height: auto;
  width: 100%;
  object-fit: fill;
}

/* Side cards stack */
.specials__side {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.special-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: box-shadow var(--normal) var(--ease), transform var(--normal) var(--ease);
}
.special-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.special-card__inner {
  display: flex;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.special-card__image {
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 480px) { .special-card__image { width: 140px; } }
.special-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--slow) var(--ease);
}
.special-card:hover .special-card__image img { transform: scale(1.05); }
.special-card__content {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
}
.special-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.25;
}
.special-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.special-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-1);
  display: block;
}

/* Badges */
.special-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  width: fit-content;
}
.special-badge--gold   { background: rgba(201,169,110,.18); color: var(--accent-dark); }
.special-badge--green  { background: rgba(45,74,62,.1);     color: var(--primary); }
.special-badge--cream  { background: var(--border-light);    color: var(--text-muted); }
.special-badge--red    { background: rgba(180,50,50,.1);     color: #a83232; }

/* ================================================
   MISSION & VISION CARDS
   ================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 680px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
}
.mv-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,169,110,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  margin-bottom: var(--space-4);
}
.mv-card__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-3);
}
.mv-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ================================================
   CATERING QUOTE WIZARD
   ================================================ */
.wizard { max-width: 700px; margin-inline: auto; }

/* Progress bar */
.wizard__progress {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-10);
  list-style: none;
  padding: 0;
}
.wizard__step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}
.wizard__step-item::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: -1;
  transition: background var(--normal) var(--ease);
}
.wizard__step-item:last-child::after { display: none; }
.wizard__step-item.is-done::after { background: var(--primary); }

.wizard__step-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-muted);
  transition: all var(--normal) var(--ease);
}
.wizard__step-item.is-active .wizard__step-dot,
.wizard__step-item.is-done .wizard__step-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.wizard__step-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  transition: color var(--normal) var(--ease);
}
.wizard__step-item.is-active .wizard__step-label { color: var(--primary); }

/* Panels */
.wizard__panel { display: none; }
.wizard__panel.is-active {
  display: block;
  animation: wiz-in var(--normal) var(--ease) forwards;
}
.wizard__panel.slide-back {
  animation: wiz-in-back var(--normal) var(--ease) forwards;
}
@keyframes wiz-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wiz-in-back {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard__step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: var(--space-5);
  color: var(--text);
}

/* Event type radio cards */
.wizard__event-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
@media (min-width: 520px) {
  .wizard__event-cards { grid-template-columns: repeat(3, 1fr); }
}
.wizard__event-card { position: relative; cursor: pointer; }
.wizard__event-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.wizard__event-card-body {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  background: var(--white);
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  transition: all var(--fast) var(--ease);
}
.wizard__event-card-body:hover { border-color: var(--secondary); background: rgba(45,74,62,.03); }
.wizard__event-card input[type="radio"]:checked + .wizard__event-card-body {
  border-color: var(--primary);
  background: rgba(45,74,62,.06);
  box-shadow: 0 0 0 3px rgba(45,74,62,.1);
}
.wizard__event-card input[type="radio"]:focus-visible + .wizard__event-card-body {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.wizard__event-card-icon { color: var(--accent); display: flex; }
.wizard__event-card-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text); }

/* Nav buttons */
.wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  gap: var(--space-4);
}
.wizard__nav-back {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px var(--space-6);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--fast) var(--ease);
}
.wizard__nav-back:hover { border-color: var(--primary); color: var(--primary); }
.wizard__nav-next {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px var(--space-8);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  transition: background var(--fast) var(--ease);
  display: flex; align-items: center; gap: var(--space-2);
  margin-left: auto;
}
.wizard__nav-next:hover { background: var(--secondary); }

/* ================================================
   CHARCUTERIE QUOTE FORM — ARTISAN SPLIT LAYOUT
   ================================================ */
.charc-quote-wrap {
  max-width: 680px;
  margin-inline: auto;
}

/* Left sidebar */
.charc-quote__sidebar {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.charc-quote__sidebar-eyebrow {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: var(--space-3);
}
.charc-quote__sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.55rem; color: var(--white);
  margin-bottom: var(--space-4); line-height: 1.2;
}
.charc-quote__sidebar-desc {
  font-size: 0.88rem; color: rgba(255,255,255,.7);
  line-height: 1.65; margin-bottom: var(--space-6);
}
.charc-sidebar-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.15);
  margin: var(--space-6) 0;
}
.charc-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.88rem; color: rgba(255,255,255,.78);
  padding: var(--space-2) 0;
}
.charc-summary-row span:last-child { font-weight: 700; color: var(--white); }
.charc-summary-total {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: var(--space-4); margin-top: var(--space-2);
  display: flex; justify-content: space-between;
  font-size: 1.05rem; font-weight: 700; color: var(--accent);
}
.charc-summary-total span:first-child { color: var(--white); }
.charc-sidebar-hint {
  margin-top: var(--space-6);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: 0.79rem; color: rgba(255,255,255,.65);
  display: flex; gap: var(--space-3); align-items: flex-start;
  line-height: 1.55;
}
.charc-sidebar-hint svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* Right form panel */
.charc-quote__form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 2.75rem);
  border: 1px solid var(--border);
}
.charc-form-section { margin-bottom: var(--space-7); }
.charc-form-section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-dark);
  display: block; margin-bottom: var(--space-4);
}

/* Board size visual selector */
.board-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.board-option { position: relative; cursor: pointer; }
.board-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.board-option__body {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  background: var(--bg-alt);
  cursor: pointer;
  transition: all var(--fast) var(--ease);
}
.board-option__size {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--text);
  display: block; margin-bottom: var(--space-2);
}
.board-option__price {
  font-size: 1.15rem; font-weight: 700;
  color: var(--accent-dark); display: block; margin-bottom: var(--space-2);
}
.board-option__serves { font-size: 0.7rem; color: var(--text-muted); display: block; }
.board-option__body:hover { border-color: var(--accent-dark); }
.board-option input[type="radio"]:checked + .board-option__body {
  border-color: var(--accent);
  background: rgba(201,169,110,.09);
  box-shadow: 0 0 0 3px rgba(201,169,110,.22);
}
.board-option input[type="radio"]:checked + .board-option__body .board-option__size { color: var(--primary); }
.board-option input[type="radio"]:focus-visible + .board-option__body {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Quantity control */
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden; width: fit-content;
}
.qty-btn {
  background: var(--bg-alt); border: none;
  width: 42px; height: 44px;
  font-size: 1.25rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  transition: background var(--fast) var(--ease);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--border); }
.qty-value {
  width: 54px; text-align: center;
  font-weight: 700; font-size: 1rem;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  height: 44px;
  font-family: var(--font-body); color: var(--text);
  outline: none;
  -moz-appearance: textfield;
  background: var(--white);
}
.qty-value::-webkit-inner-spin-button,
.qty-value::-webkit-outer-spin-button { -webkit-appearance: none; }

.charc-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 480px) {
  .charc-form-row-2 { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   MENU REDESIGN — Café Board + Hero hybrid
   ================================================ */

/* --- Hero --- */
.mnu-hero {
  background: #FEF3C7;
  text-align: center;
  padding: 120px 24px 56px;
  border-bottom: 1px solid #E8D5B0;
}
.mnu-hero__title {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #78350F;
  line-height: 1.1;
  margin: 8px 0 16px;
}
.mnu-hero__sub {
  font-size: 1.05rem;
  color: #92400E;
  letter-spacing: 0.04em;
}
.mnu-hero__hours {
  font-size: 0.85rem;
  color: #B45309;
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Tabs --- */
.mnu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #FEF3C7;
  border-bottom: 1px solid #E8D5B0;
  position: sticky;
  top: 64px;
  z-index: 10;
}
.mnu-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 18px 28px;
  font-family: var(--font-body, 'Karla', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92400E;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.mnu-tab:hover        { color: #78350F; }
.mnu-tab.is-active    { color: #78350F; border-bottom-color: #B45309; }

/* --- Main area --- */
.mnu-body {
  background: #FFFBF0;
  padding-bottom: 80px;
}

/* --- Section --- */
.mnu-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

/* --- Decorative divider --- */
.mnu-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mnu-divider::before,
.mnu-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #D4B896;
}
.mnu-divider__ornament {
  color: #B45309;
  font-size: 0.75rem;
  line-height: 1;
}

.mnu-section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B45309;
  text-align: center;
  margin-bottom: 6px;
}
.mnu-section__title {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #78350F;
  text-align: center;
  margin-bottom: 40px;
}

/* --- Featured item (hero card) --- */
.mnu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #E8D5B0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #fff;
}
.mnu-featured__content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mnu-featured__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #B45309;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.mnu-featured__name {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #78350F;
  margin-bottom: 12px;
  line-height: 1.2;
}
.mnu-featured__desc {
  font-size: 0.92rem;
  color: #92400E;
  line-height: 1.6;
  margin-bottom: 24px;
}
.mnu-featured__price {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1.5rem;
  color: #B45309;
}
.mnu-featured__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.mnu-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mnu-featured:hover .mnu-featured__img {
  transform: scale(1.04);
}

/* --- List items --- */
.mnu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mnu-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #EDE0C8;
}
.mnu-row:last-child { border-bottom: none; }
.mnu-row__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.mnu-row__name {
  font-size: 0.97rem;
  font-weight: 600;
  color: #78350F;
  white-space: nowrap;
}
.mnu-row__desc {
  font-size: 0.8rem;
  color: #A16207;
  margin-top: 2px;
}
.mnu-row__info { flex-shrink: 0; }
.mnu-row__dots {
  flex: 1;
  border-bottom: 2px dotted #D4B896;
  align-self: flex-end;
  margin-bottom: 5px;
  min-width: 20px;
}
.mnu-row__price {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1rem;
  color: #B45309;
  flex-shrink: 0;
  white-space: nowrap;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .mnu-featured {
    grid-template-columns: 1fr;
  }
  .mnu-featured__img-wrap {
    aspect-ratio: 16 / 9;
    order: -1;
  }
  .mnu-featured__content {
    padding: 24px 20px;
  }
  .mnu-tab { padding: 16px 16px; font-size: 0.8rem; }
  .mnu-row__img { width: 48px; height: 48px; }
  .mnu-row__name { font-size: 0.9rem; white-space: normal; }
}

/* === MENU PAGE — card grid (3-col variant) === */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
@media (min-width: 560px) {
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .menu-items-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================
   SPLIT HERO — Catering & Charcuterie
   ================================================ */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background: var(--primary);
}
.split-hero__content {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  padding-top: calc(var(--nav-height) + clamp(2.5rem, 6vw, 5rem));
}
.split-hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.split-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.split-hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: var(--space-10);
}
.split-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  align-self: flex-start;
  padding: var(--space-4) var(--space-8);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--normal) var(--ease);
}
.split-hero__cta:hover {
  background: var(--accent);
  color: var(--white);
}
.split-hero__image {
  position: relative;
  overflow: hidden;
}
.split-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--slow) var(--ease);
}
.split-hero__image:hover img {
  transform: scale(1.03);
}

/* Charcuterie hero slider */
.charc-hero-slider {
  position: relative;
  overflow: hidden;
}
.charc-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.charc-slide--active {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
}
.charc-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.charc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.charc-dot--active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-hero__image {
    height: 52vw;
    min-height: 240px;
    order: -1;
  }
  .split-hero__content {
    padding: clamp(2rem, 6vw, 3rem) var(--space-6);
  }
  .split-hero__title { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ── Lightbox ──────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden]  { display: none !important; }

.lb-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 130px);
  max-height: calc(100vh - 80px);
  margin: 0;
}
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: block;
  cursor: default;
  transition: opacity 0.12s ease;
}
.lb-img.is-loading { opacity: 0.3; }

.lb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s ease;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s ease;
  z-index: 1;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.26); }

.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .lb-figure { max-width: 100vw; padding: 0 3.5rem; }
  .lb-prev { left: 0.25rem; }
  .lb-next { right: 0.25rem; }
}
