/* ================================================================
   GTG v4 — Coastal Gourmet · Warm, Premium, Approachable
   Palette: Warm ivory base · Deep emerald · Warm gold CTA
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Forest green system ── */
  --forest-dark:  #10382E;
  --forest:       #174A3A;
  --forest-text:  #173A30;

  /* Brand aliases (keep existing references working) */
  --emerald:      #174A3A;
  --emerald-mid:  #1D5C47;
  --emerald-light:#2E6B50;

  /* Gold */
  --gold:         #D2AD43;
  --gold-light:   #E7C96F;

  /* Ivory / warm whites */
  --ivory:        #F8F5EC;
  --ivory-light:  #FCFAF5;
  --cream:        #FCFAF5;
  --soft-cream:   #FCFAF5;
  --warm-ivory:   #F8F5EC;

  /* Warm neutrals */
  --oat:          #EEE6D6;
  --oatmeal:      #EEE6D6;
  --sage-soft:    #DDE8DB;
  --border-warm:  #DDD5C6;
  --muted-sage:   #5B8064;

  /* Redirected slate → forest (removes cool blue) */
  --slate:        #174A3A;
  --slate-dark:   #10382E;

  /* Typography colors */
  --body-text:    #5B645E;
  --footer-text:  #D2DBD5;
  --footer-muted: #AEBBB4;

  /* Neutral grays (kept for compatibility, warmed) */
  --white:        #FCFAF5;
  --gray-50:      #F8F5EC;
  --gray-100:     #EEE6D6;
  --gray-200:     #DDD5C6;
  --gray-500:     #5B645E;
  --gray-600:     #4E5751;
  --gray-700:     #183D31;
  --gray-900:     #173A30;

  /* Typography */
  --font-head:    'Fraunces', Georgia, serif;
  --font-body:    'Inter', Arial, system-ui, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-sans:    'Inter', Arial, system-ui, sans-serif;

  /* Radii */
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(23,74,58,.06);
  --shadow:       0 3px 14px rgba(23,74,58,.09);
  --shadow-md:    0 6px 24px rgba(23,74,58,.13);
  --shadow-lg:    0 12px 40px rgba(23,74,58,.14);

  /* v3 compat */
  --text-dark:    #173A30;
  --text-mid:     #5B645E;
  --text-light:   #7A8580;
  --border:       #DDD5C6;

  --transition:   .2s ease;
  --max-w:        1160px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.1vw, 1.125rem);
  color: var(--gray-900);
  background: var(--soft-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
h1,h2,h3,h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.1;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
img { display: block; max-width: 100%; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: clamp(3rem, 5vw, 5.5rem) 0; }
.section--light  { background: var(--soft-cream); }
.section--ivory  { background: var(--warm-ivory); }
.section--oatmeal{ background: var(--oatmeal); }
.section--warm   { background: #fdf8ee; }
.section--dark   { background: var(--slate); color: var(--cream); }
.section--dark h2 { color: var(--gold-light); }
.section--dark p  { color: rgba(250,247,242,.8); }

/* ── Labels ── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: .75rem;
}
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .2s;
  border: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn:active { transform: none; }

.btn-gold    { background: #D2AD43; color: #153F32; }
.btn-gold:hover { background: #C49D35; }
.btn-dark    { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-dark); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); padding: .8rem 1.9rem; }
.btn-outline:hover { background: #EDF4EA; color: var(--forest); }
.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* ── Diet category badges ── */
.diet-badge {
  display: inline-block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  vertical-align: middle;
}
.menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
  align-items: center;
  position: absolute;
  top: -76px;
  left: 12px;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}

/* ── NAV ── */
.nav {
  background: #FCFAF5;
  border-bottom: 1px solid #E5DED0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  height: 80px;
  width: 80px;
  min-width: 80px;
  flex-shrink: 0;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.2; overflow: hidden; }
.nav-brand-main {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--emerald);
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-brand-sub {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--gray-700);
  padding: .3rem .65rem;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition);
}
.nav-hamburger:hover { border-color: var(--emerald); color: var(--emerald); }

/* Nav links — always one line on desktop */
.nav-order-mobile { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li { padding: 0 .85rem; }
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--emerald); }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  white-space: nowrap;
  padding: .5rem .9rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  transition: border-color var(--transition), color var(--transition);
}
.nav-cart:hover { border-color: var(--emerald); color: var(--emerald); }
.cart-count {
  background: var(--gold);
  color: var(--emerald);
  font-size: .6rem;
  font-weight: 800;
  border-radius: 50%;
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Order Now pill — desktop only */
.nav-order-desktop {
  background: #D2AD43;
  color: #153F32;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition), transform .15s;
  border: none;
}
.nav-order-desktop:hover {
  background: #C49D35;
  transform: translateY(-1px);
  color: #153F32;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('images/hero-meals.png?v=2');
  background-size: 135% auto;
  background-position: 30% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248,245,236,0.98)  0%,
    rgba(248,245,236,0.90) 30%,
    rgba(248,245,236,0.45) 50%,
    rgba(248,245,236,0)    68%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 5rem 2rem;
  max-width: 520px;
  margin-left: clamp(1rem, 6vw, 8rem);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #EDF4EA;
  color: #315F49;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 20px;
  border: 1px solid #BCD2B8;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--emerald-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: #4F5A53;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 420px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.hero-trust-pill {
  display: inline-block;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(45, 90, 61, 0.07);
  border: 1px solid rgba(45, 90, 61, 0.15);
  border-radius: 20px;
  padding: .27rem .6rem;
  white-space: nowrap;
}


/* ── STATS BAR ── */
.stats-bar {
  background: var(--warm-ivory);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border-warm);
}
.stat-item:last-child { border-right: none; }
.stat-line {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: .01em;
  line-height: 1.3;
}
.stat-line + .stat-line { margin-top: .1rem; }

/* ── DIETARY FIT STRIP ── */
.diet-fit-strip {
  background: var(--emerald);
  padding: 1.1rem 0;
  scroll-margin-top: 80px;
}
.diet-fit-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.diet-fit-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light, var(--gold));
  white-space: nowrap;
}
.diet-fit-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.diet-fit-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--cream, #fff);
  border-radius: 999px;
  padding: .35rem 1.1rem .35rem .4rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}
.diet-fit-badge img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .diet-fit-strip .container { flex-direction: column; gap: .6rem; }
}

/* ── PROGRAM TRACKS ── */
.program-section { background: var(--white); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.program-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.program-card.gold::before    { background: var(--gold); }
.program-card.green::before   { background: #2d6a4f; }
.program-card.amber::before   { background: #b45309; }
.program-card.navy::before    { background: #1a3a5c; }
.program-card:hover { border-color: var(--gray-400); box-shadow: var(--shadow); }
.program-icon { font-size: 2rem; margin-bottom: 1rem; }
.program-card h3 { font-size: 1.5rem; font-weight: 600; color: var(--gray-900); margin-bottom: .5rem; line-height: 1.15; }
.program-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.25rem; }
.program-steps  { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.program-steps li { font-size: .8rem; color: var(--gray-700); display: flex; align-items: flex-start; gap: .5rem; }
.program-steps li::before { content: '→'; color: var(--gray-400); flex-shrink: 0; margin-top: .05rem; }
.program-cta { font-size: .82rem; font-weight: 700; color: var(--emerald); display: flex; align-items: center; gap: .25rem; }
.program-cta:hover { color: var(--emerald-light); }
.program-wan-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 6px;
  margin-bottom: .75rem;
}

/* ── THIS WEEK'S MENU ── */
.menu-section {
  position: relative;
  background: var(--warm-ivory);
  isolation: isolate;
}
.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/menu-collage-bg.png");
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: -1;
}
.menu-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--warm-ivory);
  opacity: .35;
  z-index: -1;
}
.menu-section .container { position: relative; z-index: 1; }
.menu-section-intro {
  background: rgba(253, 250, 244, .88);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem 2.5rem 1.5rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.menu-section-headline { text-align: center; font-size: clamp(2.6rem, 3.5vw, 3.4rem); font-weight: 600; color: var(--gray-900); margin: .4rem 0 .9rem; letter-spacing: -.015em; }
.menu-section-sub { text-align: center; color: var(--gray-500); margin: 0 auto; max-width: 520px; font-size: .95rem; line-height: 1.7; }

.menu-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  align-items: stretch;
}
.menu-cat-card {
  background: var(--soft-cream);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.menu-cat-card:hover {
  box-shadow: var(--shadow);
  border-color: #c8bfb4;
  transform: translateY(-2px);
}
.menu-cat-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--emerald);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.menu-cat-card p {
  font-size: .9rem;
  color: var(--gray-600, #4b5563);
  line-height: 1.7;
  flex: 1;
}
.menu-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.menu-collage-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow-sm);
  background: var(--soft-cream);
  grid-column: span 2;
}
.menu-collage-item--lg {
  grid-column: span 3;
  grid-row: span 2;
}
.menu-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.menu-collage-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .menu-collage { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px; }
  .menu-collage-item { grid-column: span 2; }
  .menu-collage-item--lg { grid-column: span 4; grid-row: span 2; }
}
@media (max-width: 560px) {
  .menu-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .menu-collage-item, .menu-collage-item--lg { grid-column: span 1; grid-row: span 1; }
}
.menu-cats-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  letter-spacing: .01em;
}
.menu-cats-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .menu-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .menu-cats { grid-template-columns: 1fr; }
}

.carousel-wrap { position: relative; display: flex; align-items: center; gap: 1rem; }
.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track { display: flex; gap: 1.25rem; transition: transform .38s cubic-bezier(.4,0,.2,1); will-change: transform; }
.carousel-slide {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.carousel-slide:hover { box-shadow: var(--shadow); border-color: var(--gray-300); }
.carousel-slide-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
}
.carousel-slide-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.carousel-slide-body { padding: 1.25rem; }
.carousel-slide-body h4 { font-size: 1.35rem; font-weight: 600; color: var(--gray-900); margin: .5rem 0 .35rem; line-height: 1.2; }
.carousel-slide-body p  { font-size: .825rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.55; }
.slide-footer { display: flex; align-items: center; justify-content: space-between; }
.slide-price { font-size: 1.15rem; font-weight: 800; color: var(--emerald); }

.carousel-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.carousel-btn:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.carousel-btn:disabled { opacity: .3; pointer-events: none; }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.carousel-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.carousel-dot.active { background: var(--emerald); transform: scale(1.35); }

/* ── GIFT SECTION ── */
.gift-section { background: var(--cream); }
.gift-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.gift-copy .label { color: var(--gold); }
.gift-copy h2 { font-size: clamp(2.6rem, 3.5vw, 3.4rem); font-weight: 600; margin-bottom: 1rem; letter-spacing: -.015em; }
.gift-copy p { color: var(--gray-500); margin-bottom: 1rem; line-height: 1.75; }
.gift-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.gift-steps { display: flex; flex-direction: column; gap: 0; }
.gift-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--gray-200);
}
.gift-step-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.gift-step strong { display: block; font-size: .95rem; color: var(--gray-900); margin-bottom: .2rem; }
.gift-step p { font-size: .835rem; color: var(--gray-500); margin: 0; line-height: 1.55; }
.gift-connector { width: 2px; height: 1.25rem; background: var(--gray-200); margin-left: calc(1.5rem + .8rem); }

/* ── SUBSCRIPTION CTA ── */
.sub-cta { text-align: center; }
.sub-cta h2 { font-size: clamp(2.6rem, 3.5vw, 3.4rem); font-weight: 600; margin-bottom: 1rem; letter-spacing: -.015em; }
.sub-cta p  { font-size: 1.05rem; opacity: .85; max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.7; }

/* ── Availability Pills (key bar) ── */
.avail-pill {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 20px;
  font-family: var(--font-sans);
  vertical-align: middle;
  flex-shrink: 0;
}
.avail-pill.avail-now    { background: #e2f0e8; color: #2d6a4f; }
.avail-pill.avail-preorder { background: #f5edda; color: #7a5c1e; }
.avail-pill.avail-fresh  { background: #d1fae5; color: #065f46; }
.avail-pill.avail-frozen { background: #dbeafe; color: #1e40af; }

/* ── Availability Key Bar ── */
/* ── Wagyu Banner ── */
.wagyu-banner {
  background: #1c3a2a;
  border-top: 3px solid #C9A646;
  border-bottom: 3px solid #C9A646;
  padding: 1rem 0;
}
.wagyu-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wagyu-banner-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
  line-height: 1;
}
.wagyu-banner-text {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  color: #fff;
}
.wagyu-banner-text strong {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.wagyu-banner-text span {
  font-size: .82rem;
  line-height: 1.55;
  opacity: .85;
}
.wagyu-banner-text a {
  color: #C9A646;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 600px) {
  .wagyu-banner-icon { font-size: 1.75rem; }
  .wagyu-banner-text strong { font-size: .88rem; }
  .wagyu-banner-text span { font-size: .78rem; }
}

/* ── Wagyu CTA button ── */
.wagyu-btn,
.wagyu-banner-text a.wagyu-btn {
  display: inline-block;
  margin-top: .5rem;
  padding: .45rem 1rem;
  background: #C9A646;
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background .15s;
  white-space: nowrap;
  align-self: flex-start;
}
.wagyu-btn:hover,
.wagyu-banner-text a.wagyu-btn:hover { background: #dfc06a; color: #fff !important; }

/* ── Wagyu chip on beef cards ── */
.wagyu-chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: #eef6f0;
  color: #1a4a2e;
  border: 1px solid #9fccb0;
  border-radius: 20px;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  margin-bottom: .35rem;
  white-space: nowrap;
}

.avail-key-bar {
  background: var(--soft-cream);
  border-bottom: 1px solid var(--border-warm);
  padding: 1.25rem 0;
}
.avail-key-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: .85rem;
}
@media (max-width: 640px) { .avail-key-grid { grid-template-columns: 1fr; } }
.avail-key-card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.avail-key-card p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}
.avail-key-now  { border-left: 3px solid #2d6a4f; }
.avail-key-preorder { border-left: 3px solid var(--gold); }
.avail-key-note {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.6;
  background: var(--oatmeal);
  border-radius: 6px;
  padding: .6rem .9rem;
  margin: 0;
}
.avail-key-more-toggle {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: .35rem .5rem;
  border-radius: 4px;
  transition: color var(--transition);
}
.avail-key-more-toggle:hover { color: var(--emerald-dark, #1a4a30); }
.avail-key-more-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  text-decoration: none;
}
.avail-key-more-expanded { display: none; }
.avail-key-more-toggle[aria-expanded="true"] .avail-key-more-collapsed { display: none; }
.avail-key-more-toggle[aria-expanded="true"] .avail-key-more-expanded  { display: inline; }
.avail-key-more-content { margin-top: .75rem; }

/* ── Availability Badges (on product cards) ── */
.avail-badge {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}
.avail-badge-label {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.avail-badge-sub {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.35;
  opacity: .75;
}
.avail-badge.avail-now .avail-badge-label {
  background: #e2f0e8;
  color: #2d6a4f;
}
.avail-badge.avail-now .avail-badge-sub  { color: #2d6a4f; }
.avail-badge.avail-preorder .avail-badge-label {
  background: #f5edda;
  color: #7a5c1e;
}
.avail-badge.avail-preorder .avail-badge-sub { color: #7a5c1e; }
.avail-badge.avail-low-stock .avail-badge-label {
  background: #fef3c7;
  color: #92400e;
}
.avail-badge.avail-low-stock .avail-badge-sub { color: #92400e; }
.avail-badge.avail-fresh .avail-badge-label {
  background: #d1fae5;
  color: #065f46;
}
.avail-badge.avail-fresh .avail-badge-sub { color: #065f46; }
.avail-badge.avail-frozen .avail-badge-label {
  background: #dbeafe;
  color: #1e40af;
}
.avail-badge.avail-frozen .avail-badge-sub { color: #1e40af; }

/* ── Pre-Order button variant ── */
.add-to-cart-btn.btn-preorder {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.add-to-cart-btn.btn-preorder:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Pickup Timing Banner (order page) ── */
.pickup-timing-banner {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .9rem 1rem;
  border-radius: .6rem;
  font-size: .84rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.pickup-timing-banner .timing-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.pickup-timing-banner strong { display: block; margin-bottom: .15rem; font-size: .85rem; }
.timing-now {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}
.timing-preorder {
  background: #fef3c7;
  color: #78350f;
  border: 1px solid #fcd34d;
}

/* ── FOOTER LOGO ── */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background: #F8F5EC;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  margin-bottom: 1rem;
  overflow: hidden;
}
.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── FOOTER ── */
.footer { background: #10382E; color: #D2DBD5; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 2.5rem 3rem; margin-bottom: 3rem; }
.footer-byline { font-size:.78rem; color:var(--footer-muted); margin-top:.2rem; margin-bottom:.75rem; }
.footer-desc { font-size:.875rem; line-height:1.7; margin-bottom:1.25rem; }
.footer-address { font-style:normal; font-size:.875rem; line-height:2; }
.footer-address a { color:var(--footer-text); transition:color var(--transition); }
.footer-address a:hover { color:#D8B44C; }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: .95rem; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: .03em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; font-size: .875rem; }
.footer ul li a { color: #D2DBD5; transition: color var(--transition); }
.footer ul li a:hover { color: #D8B44C; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 1rem; }

/* ── Add to Cart Button ── */
.atc-btn {
  display: inline-block;
  padding: .5rem 1rem;
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform .15s;
}
.atc-btn:hover { background: var(--emerald-mid); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { min-height: 70vh; background-size: 160% auto; background-position: 30% center; }
  .hero-copy { padding: 3.5rem 2rem; margin: 0; max-width: 100%; }
  .hero-overlay { background: linear-gradient(90deg, rgba(248,245,236,0.95) 0%, rgba(248,245,236,0.85) 40%, rgba(248,245,236,0.5) 65%, rgba(248,245,236,0) 85%); }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--gray-200); padding: 1.5rem; }
  .gift-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .carousel-slide { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 860px) {
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 2rem 1.5rem;
    border-bottom: 2px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    gap: 0;
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links > li { padding: .65rem 0; border-bottom: 1px solid var(--gray-100); width: 100%; }
  .nav-links > li:last-child { border-bottom: none; padding-top: 1rem; }
  .nav-order-mobile { display: block !important; }
  .nav-order-desktop { display: none !important; }
  .hero h1 { font-size: clamp(2.65rem, 8.5vw, 3rem); letter-spacing: -.01em; }
  .program-grid { grid-template-columns: 1fr; }
  .carousel-slide { flex: 0 0 86%; }
  .carousel-btn { display: none; }
  .stats-inner { flex-direction: column; }
  .stat-item { border-bottom: 1px solid var(--gray-200); border-right: none; }
}


/* ═══ COMPONENT STYLES (menu, order, subscribe, partners) ═══ */
/* ── Menu Cards ── */
.menu-category { margin-bottom: 0; }
/* Tighter vertical rhythm between menu category sections */
#entrees, #refrigerator, #soups, #sides, #desserts { padding: clamp(1.5rem, 2.5vw, 2.5rem) 0; }
.menu-category h2 { color: var(--emerald); font-size: clamp(2.6rem, 3.5vw, 3.4rem); font-weight: 600; letter-spacing: -.015em; border-bottom: 2px solid var(--gold); padding-bottom: .5rem; margin-bottom: 2rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.menu-card { background: var(--warm-ivory); border-radius: var(--radius); border: 1.5px solid var(--border-warm); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); display: flex; flex-direction: column; }
.menu-card:hover { box-shadow: 0 6px 24px rgba(201,166,70,.18); border-color: var(--gold); transform: translateY(-2px); }
.menu-card:focus-within { outline: none; box-shadow: 0 0 0 2px var(--gold); }
.menu-card-img { width: 100%; height: 180px; object-fit: cover; }
.menu-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; position: relative; }
.menu-card-body h4 { color: var(--emerald); margin-bottom: .3rem; font-size: 1.4rem; font-weight: 600; line-height: 1.2; }
.menu-card-body p { font-size: .875rem; color: var(--text-mid); margin-bottom: .75rem; flex: 1; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-top: auto; }
.menu-card-price { font-weight: 800; font-size: 1.1rem; color: var(--emerald); white-space: nowrap; }

/* Add to Cart Button */
.add-to-cart-btn {
  background: var(--emerald);
  color: #fff;
  border: none;
  padding: .45rem 1rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.add-to-cart-btn:hover { background: var(--emerald-mid); transform: scale(1.04); }
.add-to-cart-btn.added { background: #1a7a3a; }

/* Floating Cart Widget */
.floating-cart {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: none;
}
.floating-cart.visible { display: block; }
.floating-cart-btn {
  background: var(--emerald);
  color: #fff;
  border: none;
  padding: .9rem 1.4rem;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .6rem;
  transition: background var(--transition), transform var(--transition);
}
.floating-cart-btn:hover { background: var(--emerald-mid); transform: translateY(-2px); }
.floating-cart-btn .fc-badge {
  background: var(--gold);
  color: var(--emerald);
  font-size: .75rem;
  font-weight: 800;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.floating-cart-btn .fc-total { font-size: .88rem; color: var(--gold); }

/* ── Order Page ── */
.order-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.order-cart-table { width: 100%; border-collapse: collapse; }
.order-cart-table th { text-align: left; padding: .6rem .8rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); border-bottom: 2px solid var(--border); }
.order-cart-table td { padding: .75rem .8rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.order-cart-table .item-name { font-weight: 600; color: var(--emerald); font-size: .95rem; }
.order-cart-table .item-tier { font-size: .72rem; }
.qty-control { display: flex; align-items: center; gap: .5rem; }
.qty-btn { background: var(--border); border: none; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--gold); color: var(--emerald); }
.qty-num { font-weight: 700; min-width: 20px; text-align: center; }
.remove-btn { background: none; border: none; color: #c00; cursor: pointer; font-size: .85rem; padding: .2rem .4rem; border-radius: 4px; transition: background var(--transition); }
.remove-btn:hover { background: #fee; }

.order-totals { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.order-totals h3 { color: var(--emerald); margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 600; }
.totals-line { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.totals-line:last-of-type { border: none; }
.totals-line.total-final { font-weight: 800; font-size: 1.1rem; color: var(--emerald); }
.totals-line.free-delivery { color: #1a7a3a; font-weight: 700; }
.min-order-warning {
  background: #fff8e6; border: 1.5px solid var(--gold); border-radius: var(--radius);
  padding: .75rem 1rem; font-size: .875rem; color: var(--text-dark); margin-bottom: 1.2rem;
}

/* Checkout Form */
.checkout-form { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-section-title { font-size: 1rem; font-weight: 700; color: var(--emerald); margin: 1.5rem 0 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: .4rem; }
.form-group label .req { color: #c00; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .65rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; font-family: var(--font-sans); color: var(--text-dark); background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group input.error, .form-group select.error { border-color: #c00; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Radio cards */
.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.radio-card input[type=radio] { display: none; }
.radio-card label {
  display: block; padding: 1rem; border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; text-align: center; transition: border-color var(--transition), background var(--transition);
}
.radio-card label strong { display: block; color: var(--emerald); margin-bottom: .25rem; }
.radio-card label span { font-size: .82rem; color: var(--text-light); }
.radio-card input:checked + label { border-color: var(--gold); background: #fffbf0; }
.radio-card-sm label { padding: .6rem .5rem; font-size: .85rem; font-weight: 600; color: var(--text-mid); }

/* Success state */
.order-success { text-align: center; padding: 4rem 2rem; }
.order-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.order-success h2 { color: var(--emerald); margin-bottom: 1rem; }
.order-success p { max-width: 500px; margin: 0 auto 1.5rem; }
.order-success .order-ref { font-size: 1.1rem; font-weight: 700; color: var(--gold); background: #fffbf0; padding: .5rem 1.5rem; border-radius: 30px; display: inline-block; margin-bottom: 2rem; }

/* Empty cart */
.empty-cart { text-align: center; padding: 4rem 2rem; }
.empty-cart .ec-icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-cart p { color: var(--text-light); margin-bottom: 2rem; }

/* ── Subscription Cards ── */
.sub-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.sub-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-md); position: relative; border: 2px solid transparent; transition: border-color var(--transition), transform var(--transition); }
.sub-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.sub-card.featured { border-color: var(--gold); }
.sub-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--emerald); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .8rem; border-radius: 20px; white-space: nowrap; }
.sub-card-price { font-size: 2.2rem; font-weight: 800; color: var(--emerald); font-family: var(--font-serif); }
.sub-card-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.sub-card ul { list-style: none; text-align: left; margin: 1.2rem 0; }
.sub-card ul li { font-size: .88rem; color: var(--text-mid); padding: .3rem 0; border-bottom: 1px solid var(--border); }
.sub-card ul li:last-child { border: none; }
.sub-card ul li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* ── Partner Cards ── */
.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.partner-card { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); }
.partner-card h3 { color: var(--emerald); font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.partner-card .partner-price { font-size: 1.1rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.partner-card ul { list-style: none; }
.partner-card ul li { padding: .4rem 0; font-size: .9rem; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.partner-card ul li:last-child { border: none; }
.partner-card ul li::before { content: '→ '; color: var(--gold); }

/* ── Dr. Drew Callout ── */
.dr-drew { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.dr-drew-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.dr-drew-badge { display: inline-block; background: var(--cream); color: var(--emerald); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 20px; border: 1px solid var(--border); margin-bottom: 1.25rem; }
.dr-drew-text h3 { font-size: clamp(1.65rem, 2.5vw, 2rem); font-weight: 500; color: var(--emerald); line-height: 1.35; margin-bottom: 1.1rem; font-style: italic; }
.dr-drew-text p { font-size: .95rem; color: var(--text-mid); max-width: 620px; margin: 0 auto 1.75rem; line-height: 1.75; }

/* ── VRBO / Pre-Arrival Banner ── */
.vrbo-banner { background: var(--emerald); color: #fff; padding: 4rem 0; text-align: center; }
.vrbo-banner h2 { color: var(--gold); margin-bottom: 1rem; }
.vrbo-banner p { color: rgba(255,255,255,.8); font-size: .95rem; max-width: 560px; margin: 0 auto 1.75rem; line-height: 1.75; }

/* ── Comfort Food / 3P Way ── */
.the3p-section { background: var(--oatmeal); }
.the3p-header {
  text-align: center;
  margin-bottom: 2rem;
}
.the3p-headline {
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 600;
  color: var(--emerald);
  margin: .4rem 0 .9rem;
  letter-spacing: -.015em;
}
.the3p-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: .975rem;
  line-height: 1.75;
}
.the3p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}
.the3p-card {
  background: var(--soft-cream);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.the3p-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.the3p-card-num {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.the3p-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.the3p-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.72;
  flex: 1;
}
.the3p-closing {
  text-align: center;
  font-size: 1.05rem;
  color: var(--emerald);
  max-width: 580px;
  margin: 0 auto;
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.7;
  opacity: .85;
}
@media (max-width: 900px) {
  .the3p-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .the3p-grid { grid-template-columns: 1fr; }
}

/* ── How It Works ── */
.how-header {
  text-align: center;
  margin-bottom: 2rem;
}
.how-headline {
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 600;
  color: var(--gray-900);
  margin: .4rem 0 .9rem;
  letter-spacing: -.015em;
}
.how-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--gray-500);
  font-size: .975rem;
  line-height: 1.75;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.how-step {
  background: var(--soft-cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.how-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.how-step-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-sans);
}
.how-step h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: .6rem;
}
.how-step p {
  color: var(--gray-500);
  font-size: .875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.how-step-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: auto;
}
.how-step-link:hover { color: var(--emerald-light); }
.delivery-callout {
  background: var(--warm-ivory);
  border: 1.5px solid var(--border-warm);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.75rem;
  font-size: .875rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.delivery-callout a { color: var(--emerald); font-weight: 600; }
.delivery-callout a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* About split layout — stack on mobile */
@media (max-width: 768px) {
  #about .container > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  #about .container > div > div:last-child {
    aspect-ratio: unset !important;
    padding: 2.5rem 1.5rem !important;
    min-height: 220px;
  }
}

/* ── Availability text contrast improvements ── */
.avail-key-card p { color: var(--text-mid); }
.avail-key-note   { color: var(--text-mid); }
.avail-badge-sub  { opacity: 1; }
.avail-badge.avail-now .avail-badge-sub      { color: #1e5c3c; }
.avail-badge.avail-preorder .avail-badge-sub { color: #6b4d15; }
.avail-badge.avail-low-stock .avail-badge-sub{ color: #7c3309; }

/* ── Dietary label guide ── */
.diet-guide {
  background: var(--warm-ivory);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-warm);
}
.diet-guide-kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.diet-guide-title {
  color: var(--emerald);
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  margin: 0 0 .6rem;
}
.diet-guide-sub {
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: .95rem;
}
.diet-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.diet-guide-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.diet-guide-grid--compact .diet-guide-card {
  padding: 1rem .6rem .9rem;
  gap: .5rem;
}
.diet-guide-grid--compact .diet-guide-card {
  justify-content: flex-start;
  text-align: center;
}
.diet-guide-grid--compact .diet-guide-card img {
  width: 84px;
  height: 84px;
  margin: 0 auto;
}
.diet-guide-grid--compact .diet-guide-card h3 {
  font-size: .95rem;
  text-align: center;
}
.diet-guide-grid--compact .diet-guide-card p {
  font-size: .78rem;
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .diet-guide-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}
.diet-guide-card {
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  padding: 2rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.diet-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(201,166,70,.18);
  border-color: var(--gold);
}
.diet-guide-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.12));
}
.diet-guide-card h3 {
  font-size: 1.05rem;
  color: var(--emerald);
  margin: 0;
}
.diet-guide-card p {
  font-size: .85rem;
  color: var(--text-mid);
  margin: 0;
  max-width: 200px;
  text-align: center;
  line-height: 1.5;
}

/* ── Sticky category nav ── */
.cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 90;
}
.cat-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link {
  display: inline-block;
  padding: .75rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--emerald);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.cat-nav-link:hover  { color: var(--emerald); border-bottom-color: rgba(201,166,70,.4); }
.cat-nav-link.active { color: var(--emerald); border-bottom-color: var(--gold); background: rgba(201,166,70,.06); }
.cat-nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* ── Dietary filter bar ── */
.diet-filter-bar {
  background: var(--warm-ivory);
  border-bottom: 1px solid var(--border-warm);
  padding: 1rem 0;
}
.diet-filter-bar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.diet-filter-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  flex-shrink: 0;
}
.diet-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.diet-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  background: #fff;
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: .4rem .9rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.diet-filter-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.diet-filter-chip:hover { border-color: var(--gold); }
.diet-filter-chip.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.diet-filter-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.diet-filter-empty {
  width: 100%;
  font-size: .85rem;
  color: var(--text-light);
  margin: .5rem 0 0;
}

/* ── Category heading serving note ── */
.menu-cat-serves {
  font-family: var(--font-body);
  font-size: clamp(.85rem, 1.2vw, 1rem);
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0;
  margin-left: .5rem;
}

/* ── Coming Soon cards ── */
/* ── Admin preview banner ── */
.admin-preview-banner {
  display: none;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #1a3a2a;
  color: #c8ddd4;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}
body.admin-preview .admin-preview-banner { display: block; }

/* In preview mode: unlock coming-soon cards */
body.admin-preview .menu-card--coming-soon {
  opacity: 1;
  pointer-events: auto;
}
body.admin-preview .coming-soon-badge {
  background: #e8f3ee;
  color: var(--emerald);
  border: 1px solid #a3c4b3;
}

.menu-card--coming-soon {
  opacity: 1;
  pointer-events: auto;
}
.menu-card--coming-soon .add-to-cart-btn:disabled {
  display: none;
}
.coming-soon-badge {
  display: none;
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--border-warm);
  color: var(--text-mid);
  border-radius: 20px;
  padding: .18rem .65rem;
  margin-bottom: .5rem;
}
.preorder-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: #D2AD43;
  color: #fff;
  border-radius: 20px;
  padding: .18rem .65rem;
  margin-bottom: .5rem;
}
.menu-card-price--tbd {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ── Clickable product image / name ── */
.menu-card-img-link {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.menu-card-img-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.menu-card-img-link img { transition: transform .25s ease; }
.menu-card-img-link:hover img { transform: scale(1.03); }
.menu-card-name-link {
  color: inherit;
  text-decoration: none;
}
.menu-card-name-link:hover { text-decoration: underline; text-underline-offset: 2px; }
.menu-card-name-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

/* ── Product detail modal ── */
body.modal-open { overflow: hidden; }
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.product-modal-overlay[hidden] { display: none; }
.product-modal {
  background: var(--warm-ivory);
  border-radius: 1.25rem;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
}
.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}
.product-modal-close:hover { background: rgba(0,0,0,.18); }
.product-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.product-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.product-modal-img-col {
  border-radius: 1.25rem 0 0 1.25rem;
  overflow: hidden;
  background: #e8e3d8;
}
.product-modal-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.product-modal-info {
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.product-modal-badges {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.product-modal-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--emerald);
  margin: 0;
  line-height: 1.15;
}
.product-modal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-modal-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--emerald);
}
.product-modal-serves {
  font-size: .875rem;
  color: var(--text-mid);
  background: var(--soft-cream);
  padding: .2rem .7rem;
  border-radius: 20px;
  font-weight: 500;
}
.product-modal-desc {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.macro-strip {
  display: flex;
  gap: .5rem;
  margin: .85rem 0 .25rem;
  background: var(--oatmeal);
  border-radius: .75rem;
  padding: .65rem .5rem;
}
.macro-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}
.macro-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.1;
}
.macro-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-mid);
}
.macro-note {
  font-size: .72rem;
  color: var(--text-light);
  margin: .2rem 0 .6rem;
  font-style: italic;
}
.product-modal-boilerplate {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
  border-top: 1px solid var(--border-warm);
  padding-top: .85rem;
  margin-top: auto;
}
.product-modal-boilerplate p { margin: 0 0 .4rem; }
.product-modal-footer { padding-top: .5rem; }
.product-modal-atc { width: 100%; justify-content: center; }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .product-modal-inner { grid-template-columns: 1fr; }
  .product-modal-img-col { border-radius: 1.25rem 1.25rem 0 0; }
  .product-modal-img { min-height: 200px; max-height: 240px; }
  .product-modal-info { padding: 1.5rem 1.25rem; }
  .cat-nav { top: 60px; }
}

/* ── CONTENT SPACING DEFAULTS (full reset means these must be explicit) ── */
h2 { margin-bottom: .85rem; }
h3 { margin-bottom: .7rem; }
h4 { margin-bottom: .45rem; }
p + p { margin-top: .85rem; }

/* ── ABOUT PAGE LAYOUT ── */
.about-split {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}
.about-split-text {
  flex: 1 1 380px;
}
.about-split-text h2 { margin-bottom: 1.1rem; }
.about-split-text p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.about-split-text p + p { margin-top: .9rem; }
.about-split-img {
  flex: 0 1 380px;
  min-width: 260px;
}
.about-creds {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.about-creds li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.about-creds li svg { flex-shrink: 0; margin-top: .2rem; }
@media (max-width: 760px) {
  .about-split { flex-direction: column; gap: 2rem; }
  .about-split-img { width: 100%; max-width: 480px; margin: 0 auto; }
}

/* ── HOMEPAGE RHYTHM UPDATES ── */

/* Slim stat bar text */
.stat-line { font-size: 1rem; }

/* How It Works process strip */
.hiw-process { display: flex; align-items: flex-start; }
.hiw-step { flex: 1; text-align: center; padding: 1.2rem 1rem; background: #fff; border: 1px solid var(--border-warm); border-radius: 10px; }
.hiw-num { width: 28px; height: 28px; border-radius: 50%; background: var(--emerald); color: #fff; font-size: .72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto .6rem; font-family: var(--font-sans); }
.hiw-step h4 { font-size: .9rem; font-weight: 700; margin: 0 0 .35rem; color: var(--gray-900); font-family: var(--font-sans); }
.hiw-step p { font-size: .8rem; color: var(--text-mid); margin: 0; line-height: 1.5; }
.hiw-arrow { flex: 0 0 auto; align-self: center; padding: 0 .55rem; color: var(--gold); font-size: 1.35rem; user-select: none; line-height: 1; }
@media (max-width: 640px) {
  .hiw-process { flex-direction: column; gap: .6rem; }
  .hiw-arrow { transform: rotate(90deg); align-self: center; display: block; text-align: center; padding: .1rem 0; }
}

/* Category cards — Shop the Menu */
.cat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.75rem 0 2rem; }
.cat-card { display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-warm); background: #fff; text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.cat-card-img { height: 200px; background-size: cover; background-position: center; background-color: var(--warm-ivory); }
.cat-card-body { padding: 1rem 1.1rem 1.2rem; }
.cat-card-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .3rem; color: var(--gray-900); }
.cat-card-body p { font-size: .8rem; color: var(--text-mid); margin: 0; line-height: 1.5; }
@media (max-width: 680px) { .cat-cards { grid-template-columns: 1fr; } }
@media (max-width: 900px) and (min-width: 681px) { .cat-cards { grid-template-columns: repeat(2,1fr); } .cat-card:last-child { grid-column: span 2; } }

/* 3P Difference — contained section (not full-bleed split) */
.tdiff-wrap { display: flex; gap: 2.5rem; align-items: stretch; }
.tdiff-left { flex: 1 1 400px; display: flex; flex-direction: column; justify-content: center; padding: 0; background: none; }
.tdiff-left .label { display: block; margin-bottom: .4rem; }
.tdiff-left h2 { font-size: clamp(1.5rem,2.4vw,2rem); margin: .35rem 0 1rem; color: var(--gray-900); }
.tdiff-left p { font-size: .92rem; color: var(--text-mid); line-height: 1.7; margin: 0 0 .7rem; max-width: 460px; }
.tdiff-ctas { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.5rem; }
.tdiff-right { flex: 0 1 340px; min-width: 270px; background: var(--emerald); padding: 2rem 1.75rem; border-radius: 14px; display: flex; flex-direction: column; justify-content: center; }
.tdiff-row { padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.tdiff-row:first-child { padding-top: 0; }
.tdiff-row:last-child { border-bottom: none; padding-bottom: 0; }
.tdiff-row-title { font-size: .75rem; font-weight: 700; color: var(--gold-light); margin-bottom: .2rem; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-sans); }
.tdiff-row-desc { font-size: .87rem; color: rgba(255,255,255,.85); line-height: 1.5; }
@media (max-width: 780px) {
  .tdiff-wrap { flex-direction: column; gap: 1.75rem; }
  .tdiff-right { min-width: unset; }
}

/* Who We Serve slim band */
.who-band { background: var(--emerald-mid); padding: 2.5rem 0; }
.who-band .container { display: flex; flex-direction: column; align-items: flex-start; }
@media (max-width: 640px) { .who-band .container { align-items: center; text-align: center; } }

/* ── Footer email signup ── */
.footer-signup { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2rem; padding: 1.8rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-signup h4 { margin-bottom: .3rem; }
.footer-signup p { font-size: .875rem; color: rgba(255,255,255,.6); margin: 0; max-width: 420px; }
.footer-signup-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-signup-form input[type="email"] { padding: .65rem .9rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: .9rem; min-width: 240px; }
.footer-signup-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.footer-signup-thanks { color: var(--gold); font-weight: 700; font-size: .95rem; margin: 0; }
@media (max-width: 640px) { .footer-signup { flex-direction: column; align-items: flex-start; } .footer-signup-form input[type="email"] { min-width: 0; flex: 1; } }
