/* ==========================================================================
   SufraBox - shared design system
   Used across every page in /docs. Keep in sync with index.html hero/why
   patterns; page-specific rules live in the "Inner pages" block at the end.
   ========================================================================== */

:root {
  --navy: #0D47A1;
  --navy-2: #0A3880;
  --marigold: #2196F3;
  --accent-light: #64B5F6;
  --paprika: #2196F3;
  --cardamom: #43A047;
  --ivory: #F5FAFF;
  --ivory-2: #E3F2FD;
  --charcoal: #172B4D;
  --soft-grey: #607D8B;
  --hair: rgba(13, 71, 161, 0.12);
  --shadow-soft: 0 14px 34px rgba(13, 71, 161, 0.12);
  --shadow-strong: 0 20px 44px rgba(13, 71, 161, 0.22);
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

a { color: inherit; }

.display { font-family: 'Fraunces', serif; }
.mono { font-family: 'IBM Plex Mono', monospace; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--ivory);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--marigold);
  outline-offset: 3px;
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 6vw;
}

.eyebrow {
  font-family: 'IBM Plex Mono';
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paprika);
  margin: 0 0 14px 0;
  font-weight: 500;
}

h2.title {
  font-family: 'Fraunces';
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 18px 0;
  color: var(--navy);
  line-height: 1.08;
}

p.lede {
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
  color: #4a4d52;
  margin: 0 0 40px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--marigold);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(33, 150, 243, 0.35);
}
.btn-primary:hover { background: #42A5F5; box-shadow: 0 14px 30px rgba(33, 150, 243, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 250, 255, 0.4);
}
.btn-ghost:hover { background: rgba(245, 250, 255, 0.1); border-color: rgba(245,250,255,.7); }

.btn-dark {
  background: var(--navy);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--navy-2); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--hair);
}
.btn-outline:hover { background: var(--ivory-2); border-color: var(--navy); }

section {
  padding: 96px 6vw;
  max-width: 1220px;
  margin: 0 auto;
}

section + section { border-top: 1px solid var(--hair); }

section.no-border { border-top: none; }
section.tight { padding-top: 64px; padding-bottom: 64px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view .stagger-item { opacity: 1; transform: translateY(0); }
.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger-item:nth-child(1) { transition-delay: .05s; }
.stagger-item:nth-child(2) { transition-delay: .12s; }
.stagger-item:nth-child(3) { transition-delay: .19s; }
.stagger-item:nth-child(4) { transition-delay: .26s; }
.stagger-item:nth-child(5) { transition-delay: .33s; }
.stagger-item:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .stagger-item { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Header ---------- */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 250, 255, 0.94);
  backdrop-filter: blur(8px);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid var(--hair);
}
body.home header.site { background: transparent; border-bottom-color: transparent; }
body.home header.site.scrolled {
  background: rgba(245, 250, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 12px 6vw;
  box-shadow: 0 4px 20px rgba(13,71,161,.08);
  border-bottom: 1px solid var(--hair);
}
header.site.scrolled { padding: 12px 6vw; box-shadow: 0 4px 20px rgba(13,71,161,.08); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 3;
}
.brand img { height: 30px; width: auto; }
.footer-brand .brand img,
body.home header.site:not(.scrolled) .brand img {
  background: var(--ivory);
  border-radius: 50%;
  padding: 5px;
  box-shadow: var(--shadow-soft);
}
.brand span {
  font-family: 'Fraunces';
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  transition: color .35s var(--ease);
}
body.home .brand span { color: var(--ivory); }
body.home header.site.scrolled .brand span { color: var(--navy); }

nav.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
nav.primary-nav a {
  color: var(--navy);
  opacity: .78;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .35s var(--ease), opacity .2s;
  position: relative;
  padding-bottom: 4px;
}
nav.primary-nav a:hover { opacity: 1; }
nav.primary-nav a.is-active { opacity: 1; }
body.home nav.primary-nav a { color: rgba(245, 250, 255, 0.85); opacity: 1; }
body.home header.site.scrolled nav.primary-nav a { color: var(--navy); opacity: .78; }
body.home header.site.scrolled nav.primary-nav a:hover { opacity: 1; }
nav.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--marigold);
  transition: right .3s var(--ease);
}
nav.primary-nav a:hover::after, nav.primary-nav a.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-primary { padding: 11px 20px; font-size: 13.5px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--navy);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
body.home .hamburger span { background: var(--ivory); }
body.home header.site.scrolled .hamburger span { background: var(--navy); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open .hamburger span { background: var(--navy); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  font-family: 'Fraunces';
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  text-align: center;
}
.mobile-menu .btn { margin-top: 10px; }

@media (max-width: 900px) {
  nav.primary-nav, .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--ivory);
  padding: 168px 6vw 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -160px; top: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(33,150,243,.20), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -120px; bottom: -180px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(100,181,246,.18), transparent 70%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--accent-light); }
.hero-copy h1 {
  font-family: 'Fraunces';
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1.06;
  margin: 0 0 22px;
}
.hero-copy h1 em { color: var(--accent-light); font-style: normal; }
.hero-copy p.sub {
  font-size: 18px;
  line-height: 1.65;
  max-width: 480px;
  color: rgba(245,250,255,.78);
  margin: 0 0 38px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 54px; }

.hero-trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245,250,255,.16);
  padding-top: 26px;
}
.hero-trust div { font-family: 'IBM Plex Mono'; font-size: 12px; color: rgba(245,250,255,.6); }
.hero-trust strong { display: block; font-family: 'Fraunces'; font-size: 22px; color: var(--ivory); font-weight: 600; margin-bottom: 2px; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.box-card {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1/1;
  border-radius: 28px;
  background: linear-gradient(155deg, var(--navy-2), #04173D);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero-img-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
}
.hero-meal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(13,71,161,0) 45%, rgba(6,20,46,.55) 100%);
  pointer-events: none;
}
.box-badge {
  position: absolute;
  top: -18px; left: -18px;
  background: var(--ivory);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
  animation: float 5s ease-in-out infinite .4s;
}
.box-badge img { height: 26px; width: auto; }
.steam { position: absolute; top: -34px; left: 50%; transform: translateX(-50%); width: 60px; height: 40px; opacity: .55; }
.steam path { animation: steam 3.2s ease-in-out infinite; transform-origin: bottom; }
.steam path:nth-child(2) { animation-delay: .4s; }
.steam path:nth-child(3) { animation-delay: .8s; }
.chip-float {
  position: absolute;
  background: var(--ivory);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: 'IBM Plex Mono';
  font-size: 11px;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.chip-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cardamom); }
.chip-lunch { bottom: 10%; right: -8%; animation: float 5.5s ease-in-out infinite .8s; }
.chip-dinner { top: 12%; right: -10%; animation: float 6.5s ease-in-out infinite 1.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scaleY(1); }
  30% { opacity: .8; }
  100% { opacity: 0; transform: translateY(-16px) scaleY(1.3); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p.sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .chip-lunch, .chip-dinner { display: none; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  background: var(--ivory-2);
  border-radius: 24px;
  padding: 24px;
  position: relative;
}
.story-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}
.story-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,71,161,.5) 0%, rgba(13,71,161,0) 32%);
  pointer-events: none;
}
.story-photo-tag {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  padding: 9px 12px;
  box-shadow: var(--shadow-soft);
}
.story-photo-tag .label {
  font-family: 'IBM Plex Mono';
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
  white-space: nowrap;
}
.story-photo-tag svg { flex: none; width: 13px; height: 13px; color: var(--marigold); }
.story-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.story-feature { display: flex; align-items: flex-start; gap: 12px; }
.story-feature-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-feature-icon svg { width: 16px; height: 16px; }
.story-feature h5 { font-family: 'Fraunces'; font-size: 14.5px; margin: 0 0 3px; color: var(--navy); }
.story-feature p { font-size: 12px; color: #6b6e73; margin: 0; line-height: 1.45; }

.about-copy p { font-size: 16.5px; line-height: 1.75; color: #4a4d52; margin: 0 0 18px; }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .about-visual { padding: 18px; }
  .story-features { grid-template-columns: 1fr; }
}

/* ---------- Why cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(33,150,243,.4);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--paprika);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.why-card:hover .why-icon { background: var(--marigold); color: var(--ivory); transform: scale(1.06) rotate(-4deg); }
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-family: 'Fraunces'; font-size: 19px; color: var(--navy); margin: 0 0 10px; font-weight: 600; }
.why-card p { font-size: 14.5px; color: #5a5d62; line-height: 1.6; margin: 0; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Meals ---------- */
.meal-tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.meal-tabs button {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.meal-tabs button.active,
.meal-tabs button:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

.meals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.meal-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hair);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.meal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.meal-visual {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.meal-visual.morning { background: linear-gradient(150deg, #BBDEFB, var(--ivory-2)); }
.meal-visual.evening { background: linear-gradient(150deg, #90CAF9, var(--ivory-2)); }
.meal-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meal-tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-family: 'IBM Plex Mono'; font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(13,71,161,.85); color: var(--ivory);
  padding: 6px 10px; border-radius: 999px;
}
.meal-body { padding: 22px 22px 26px; }
.meal-body h3 { font-family: 'Fraunces'; font-size: 18px; color: var(--navy); margin: 0 0 8px; font-weight: 600; }
.meal-body p { font-size: 13.5px; color: #5a5d62; line-height: 1.55; margin: 0 0 18px; min-height: 62px; }
.meal-body .btn { width: 100%; padding: 11px; font-size: 13px; }

@media (max-width: 980px) { .meals-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .meals-grid { grid-template-columns: 1fr; } }

/* ---------- Meal Details Dialog ---------- */
.meal-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 71, 161, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.meal-dialog-overlay[hidden] { display: none; }
.meal-dialog-overlay.is-open { opacity: 1; }
.meal-dialog {
  position: relative;
  background: var(--ivory);
  border-radius: 22px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.meal-dialog-overlay.is-open .meal-dialog { transform: translateY(0) scale(1); opacity: 1; }
.meal-dialog-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s var(--ease);
}
.meal-dialog-close:hover { background: var(--marigold); transform: rotate(90deg); }
.meal-dialog-tag { position: static; display: inline-block; margin-bottom: 16px; }
.meal-dialog h3 { font-family: 'Fraunces'; font-size: 24px; color: var(--navy); margin: 0 0 14px; font-weight: 600; }
.meal-dialog p { font-size: 15px; line-height: 1.65; color: #4a4d52; margin: 0 0 22px; }
.meal-dialog-highlights { list-style: none; margin: 0 0 28px; padding: 0; }
.meal-dialog-highlights li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--charcoal); font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
}
.meal-dialog-highlights li:last-child { border-bottom: none; }
.meal-dialog-highlights li::before {
  content: "✓";
  flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cardamom); color: var(--ivory);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.meal-dialog .btn { width: 100%; }

@media (max-width: 560px) {
  .meal-dialog { padding: 32px 24px; border-radius: 18px; }
}

/* ---------- Quality ---------- */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quality-visual {
  background: var(--navy);
  border-radius: 24px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.quality-visual::after {
  content: "";
  position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(33,150,243,.22), transparent 70%);
}
.quality-visual .qbadge {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  background: var(--ivory);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.quality-visual .qbadge:last-child { margin-bottom: 0; }
.qbadge .qicon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cardamom); flex: none;
}
.qbadge .qicon svg { width: 20px; height: 20px; }
.qbadge h5 { font-family: 'Fraunces'; font-size: 15px; margin: 0 0 2px; color: var(--navy); font-weight: 600; }
.qbadge p { font-size: 12px; color: #6b6e73; margin: 0; }

.quality-checklist { list-style: none; margin: 0 0 34px; padding: 0; }
.quality-checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 15.5px;
  color: var(--charcoal);
  font-weight: 600;
}
.quality-checklist li:last-child { border-bottom: none; }
.quality-checklist .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cardamom);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  flex: none; font-size: 13px;
  transform: scale(0);
  transition: transform .4s var(--ease);
}
.reveal-stagger.in-view .quality-checklist .check { transform: scale(1); }
.quality-checklist li:nth-child(1) .check { transition-delay: .1s; }
.quality-checklist li:nth-child(2) .check { transition-delay: .22s; }
.quality-checklist li:nth-child(3) .check { transition-delay: .34s; }
.quality-checklist li:nth-child(4) .check { transition-delay: .46s; }
.quality-checklist li:nth-child(5) .check { transition-delay: .58s; }

@media (max-width: 900px) { .quality-grid { grid-template-columns: 1fr; } }

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  border-radius: 22px;
  padding: 40px 34px;
}
.mv-card.mission { background: var(--navy); color: var(--ivory); }
.mv-card.vision { background: var(--ivory-2); color: var(--charcoal); border: 1px solid var(--hair); }
.mv-card .mv-eyebrow { font-family: 'IBM Plex Mono'; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.mv-card.mission .mv-eyebrow { color: var(--accent-light); }
.mv-card.vision .mv-eyebrow { color: var(--paprika); }
.mv-card blockquote {
  font-family: 'Fraunces'; font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.35; margin: 0 0 16px;
}
.mv-card p.mv-sub { font-size: 14.5px; line-height: 1.6; margin: 0; }
.mv-card.mission p.mv-sub { color: rgba(245,250,255,.7); }
.mv-card.vision p.mv-sub { color: #5a5d62; }

@media (max-width: 820px) { .mv-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews-wrap { position: relative; overflow: hidden; touch-action: pan-y; }
.reviews-track {
  display: flex;
  width: 100%;
  transition: transform .5s var(--ease);
}
.review-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.review-stars { color: var(--marigold); font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; }
.review-text { font-family: 'Fraunces'; font-size: clamp(18px, 2vw, 22px); font-weight: 500; color: var(--navy); line-height: 1.5; margin: 0 0 24px; }
.review-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces'; font-weight: 700; font-size: 15px;
}
.review-person .rname { font-weight: 700; font-size: 14px; color: var(--navy); display: block; }
.review-person .rloc { font-size: 12px; color: #6b6e73; }

.review-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.review-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--hair); cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.review-dots button.active { background: var(--marigold); transform: scale(1.2); }

@media (max-width: 560px) {
  .review-card { padding: 28px 22px; border-radius: 16px; }
  .review-person { flex-wrap: wrap; }
}

/* ---------- Service Areas ---------- */
.areas-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.area-chip {
  font-family: 'IBM Plex Mono';
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  background: var(--ivory-2);
  border: 1px solid var(--hair);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .25s, transform .25s var(--ease);
}
.area-chip:hover { background: var(--marigold); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--hair);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Fraunces';
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.faq-q .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .3s var(--ease), background .3s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--navy);
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .plus { background: var(--marigold); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p { font-size: 15px; line-height: 1.65; color: #4a4d52; margin: 0 0 24px; max-width: 620px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.contact-list .cicon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--paprika); flex: none;
}
.contact-list .cicon svg { width: 20px; height: 20px; }
.contact-list .clabel { font-size: 12px; color: #6b6e73; margin: 0 0 2px; font-family: 'IBM Plex Mono'; text-transform: uppercase; letter-spacing: .06em; }
.contact-list .cvalue { font-size: 15.5px; font-weight: 700; color: var(--navy); text-decoration: none; }
.contact-list .cvalue:hover { color: var(--paprika); }

.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s var(--ease);
}
.contact-social a:hover { background: var(--marigold); color: var(--ivory); transform: translateY(-3px); }
.contact-social svg { width: 18px; height: 18px; }

.contact-panel {
  background: var(--navy);
  color: var(--ivory);
  border-radius: 24px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-panel h3 { font-family: 'Fraunces'; font-size: 24px; margin: 0 0 14px; font-weight: 600; }
.contact-panel p { font-size: 15px; color: rgba(245,250,255,.72); line-height: 1.65; margin: 0 0 30px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: var(--ivory); padding: 64px 6vw 30px; }
.footer-grid {
  max-width: 1220px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(245,250,255,.14);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand span { color: var(--ivory); }
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(245,250,255,.65); max-width: 300px; margin: 0; }
.footer-col h5 { font-family: 'IBM Plex Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-light); margin: 0 0 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(245,250,255,.75); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  max-width: 1220px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px;
  font-family: 'IBM Plex Mono'; font-size: 12px; color: rgba(245,250,255,.45);
}
.footer-bottom .footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom .footer-legal a { color: rgba(245,250,255,.45); text-decoration: none; }
.footer-bottom .footer-legal a:hover { color: var(--ivory); }
.footer-bottom .footer-social { display: flex; gap: 10px; }
.footer-bottom .footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(245,250,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
}
.footer-bottom .footer-social svg { width: 15px; height: 15px; }

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  footer.site-footer { padding: 56px 6vw 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 420px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 70px 6vw; }
}
@media (max-width: 480px) {
  footer.site-footer { padding: 48px 6vw 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 32px; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .footer-social { order: -1; }
}

/* ==========================================================================
   Inner pages - page hero, breadcrumbs, prose, plan/service cards, blog
   ========================================================================== */

.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--ivory);
  padding: 152px 6vw 64px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(33,150,243,.18), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1220px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Fraunces';
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.page-hero p.sub {
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 640px;
  color: rgba(245,250,255,.78);
  margin: 0;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  font-family: 'IBM Plex Mono';
  font-size: 11.5px;
  color: rgba(245,250,255,.5);
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs a { color: rgba(245,250,255,.7); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-light); }
.breadcrumbs li[aria-current] { color: rgba(245,250,255,.9); }

.prose { max-width: 760px; }
.prose h2 { font-family: 'Fraunces'; font-weight: 600; font-size: 26px; color: var(--navy); margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'Fraunces'; font-weight: 600; font-size: 19px; color: var(--navy); margin: 28px 0 12px; }
.prose p { font-size: 16px; line-height: 1.75; color: #4a4d52; margin: 0 0 18px; }
.prose ul, .prose ol { font-size: 16px; line-height: 1.75; color: #4a4d52; margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--paprika); text-decoration: underline; text-decoration-color: rgba(33,150,243,.3); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--paprika); }
.prose strong { color: var(--navy); }
.prose .updated { font-family: 'IBM Plex Mono'; font-size: 12px; color: #8a8d92; margin-bottom: 30px; display: block; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .info-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .info-cards { grid-template-columns: 1fr; } }
.info-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 28px 24px;
}
.info-card .why-icon { margin-bottom: 16px; }
.info-card h3 { font-family: 'Fraunces'; font-size: 17px; color: var(--navy); margin: 0 0 8px; font-weight: 600; }
.info-card p { font-size: 14px; color: #5a5d62; line-height: 1.6; margin: 0; }

/* Plan / pricing style cards for menu & meal-plan pages */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .plan-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.plan-card.featured { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.plan-card .plan-tag { font-family: 'IBM Plex Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--paprika); margin-bottom: 12px; }
.plan-card.featured .plan-tag { color: var(--accent-light); }
.plan-card h3 { font-family: 'Fraunces'; font-size: 21px; margin: 0 0 10px; color: var(--navy); font-weight: 600; }
.plan-card.featured h3 { color: var(--ivory); }
.plan-card p.plan-desc { font-size: 14px; line-height: 1.6; color: #5a5d62; margin: 0 0 20px; }
.plan-card.featured p.plan-desc { color: rgba(245,250,255,.75); }
.plan-card ul { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.plan-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; padding: 8px 0; border-bottom: 1px solid var(--hair); color: var(--charcoal); }
.plan-card.featured li { border-bottom-color: rgba(245,250,255,.14); color: var(--ivory); }
.plan-card li:last-child { border-bottom: none; }
.plan-card li::before { content: "✓"; color: var(--cardamom); font-weight: 700; flex: none; }
.plan-card.featured li::before { color: var(--accent-light); }
.plan-card .btn { width: 100%; }

/* Weekly / daily menu table */
.menu-table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--hair); }
table.menu-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 640px; }
table.menu-table th, table.menu-table td { text-align: left; padding: 16px 18px; font-size: 14px; border-bottom: 1px solid var(--hair); }
table.menu-table th { font-family: 'IBM Plex Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--paprika); background: var(--ivory-2); }
table.menu-table td.day { font-family: 'Fraunces'; font-weight: 600; color: var(--navy); }
table.menu-table tr:last-child td { border-bottom: none; }

/* Step list for delivery / how-it-works */
.step-list { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 20px; }
.step-list li {
  counter-increment: step;
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 22px 24px;
}
.step-list li::before {
  content: counter(step);
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  font-family: 'Fraunces'; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step-list h3 { font-family: 'Fraunces'; font-size: 17px; color: var(--navy); margin: 0 0 6px; font-weight: 600; }
.step-list p { font-size: 14px; color: #5a5d62; line-height: 1.6; margin: 0; }

/* Feature persona showcase (Features page) */
.feature-persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.feature-persona {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature-persona-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.feature-persona-icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: var(--ivory-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.feature-persona-icon svg { width: 22px; height: 22px; }
.feature-persona h3 { font-family: 'Fraunces'; font-size: 19px; color: var(--navy); margin: 0 0 3px; font-weight: 600; }
.feature-persona p.persona-desc { font-size: 13px; color: #5a5d62; margin: 0 0 20px; line-height: 1.55; }
.feature-pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-pill {
  font-family: 'IBM Plex Mono';
  font-size: 11.5px;
  font-weight: 500;
  color: var(--navy);
  background: var(--ivory-2);
  border: 1px solid var(--hair);
  padding: 7px 12px;
  border-radius: 999px;
}

.cta-band {
  background: var(--navy);
  color: var(--ivory);
  border-radius: 24px;
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h3 { font-family: 'Fraunces'; font-size: 24px; margin: 0 0 8px; font-weight: 600; }
.cta-band p { font-size: 14.5px; color: rgba(245,250,255,.72); margin: 0; max-width: 460px; }
.cta-band .btn { flex: none; }
