:root {
  --ink: hsl(153, 52%, 9%);
  --text: hsl(150, 18%, 24%);
  --muted: hsl(150, 10%, 46%);
  --bg: hsl(140, 20%, 97%);
  --surface: hsl(0, 0%, 100%);
  --soft: hsl(143, 22%, 93%);
  --soft-glow: hsl(150, 43%, 95%);
  --line: hsla(150, 15%, 85%, 0.5);
  --brand: hsl(153, 48%, 20%);
  --brand-glow: hsl(154, 65%, 38%);
  --brand-light: hsl(154, 45%, 95%);
  --accent: hsl(28, 75%, 45%);
  --accent-light: hsl(28, 80%, 96%);
  --shadow-sm: 0 2px 8px -2px hsla(150, 30%, 15%, 0.05);
  --shadow-md: 0 12px 34px -8px hsla(150, 30%, 15%, 0.08), 0 4px 12px -4px hsla(150, 30%, 15%, 0.04);
  --shadow-lg: 0 24px 48px -12px hsla(150, 30%, 15%, 0.12), 0 8px 24px -8px hsla(150, 30%, 15%, 0.06);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --wrap: min(1200px, calc(100% - 40px));
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  max-width: 820px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 20px;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.header-inner {
  width: var(--wrap);
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--brand-glow);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-mark {
  transform: rotate(15deg) scale(1.1);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.header-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.header-nav a:hover {
  background: var(--soft-glow);
  color: var(--brand-glow);
}

.header-nav .nav-cta {
  margin-left: 8px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.header-nav .nav-cta:hover {
  background: var(--brand-glow);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1px;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Shared Containers */
.breadcrumbs,
.page-shell,
.stats-bar,
.plans-section,
.faq-section,
.footer-inner,
.footer-bottom {
  width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
}

.breadcrumbs {
  padding: 20px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--brand-glow);
}

.breadcrumbs span {
  color: var(--ink);
  font-weight: 600;
}

.page-shell {
  padding-bottom: 64px;
}

/* Hero Sections */
.home-hero,
.plan-hero,
.hero {
  width: var(--wrap);
  margin: 16px auto 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top right, hsl(143, 30%, 94%) 0%, #ffffff 100%);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: clamp(32px, 6vw, 64px);
}

.plan-hero,
.hero {
  padding: clamp(32px, 5vw, 64px);
}

.hero-small {
  min-height: 0;
  background: linear-gradient(135deg, hsl(143, 20%, 95%) 0%, #ffffff 100%);
}

.hero-content,
.hero-copy {
  max-width: 720px;
}

.home-hero p,
.plan-hero p,
.hero p {
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-preview {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-preview::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(154, 65%, 38%, 0.12) 0%, transparent 70%);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preview-sheet {
  width: 100%;
  max-width: 360px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg) translateY(-8px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 1;
}

.preview-sheet:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.02);
}

.preview-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-glow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-sheet strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.preview-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--soft);
}

.preview-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.preview-row b {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

/* Button UI */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px -4px hsla(153, 48%, 20%, 0.35);
}

.btn-primary:hover {
  background: var(--brand-glow);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px hsla(154, 65%, 38%, 0.4);
}

.btn-secondary,
.btn-outline {
  background: var(--surface);
  border-color: var(--line);
  color: var(--brand);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--brand-glow);
  color: var(--brand-glow);
  background: var(--brand-light);
  transform: translateY(-2px);
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--brand-glow);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  color: var(--brand-glow);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Sections & Filters */
.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.plans-section {
  margin-bottom: 64px;
}

.category-filter {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  margin-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.category-filter::-webkit-scrollbar {
  height: 6px;
}

.category-filter::-webkit-scrollbar-track {
  background: transparent;
}

.category-filter::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}

.category-btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  padding: 20px 24px;
  min-height: 128px;
  width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: all 0.25s ease;
}

.category-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand-glow);
  box-shadow: var(--shadow-md);
}

.category-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cat-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.category-btn.active .cat-name {
  color: #fff;
}

.cat-description {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.category-btn.active .cat-description {
  color: hsla(150, 20%, 90%, 0.8);
}

.cat-count {
  align-self: flex-start;
  color: var(--brand-glow);
  background: var(--brand-light);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-btn.active .cat-count {
  color: var(--brand);
  background: #fff;
}

/* Grids & Cards */
.card-grid,
.meal-grid,
.feature-grid,
.related-list {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.meal-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.related-list {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.section-box,
.card,
.meal-card,
.feature-card,
.related-list a,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-box {
  padding: clamp(24px, 5vw, 48px);
  margin-bottom: 32px;
}

.content-block,
.intro-text {
  max-width: 800px;
  line-height: 1.7;
}

.content-block p,
.intro-text p {
  margin-bottom: 1.25rem;
}

.content-block h3,
.intro-text h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.content-block a {
  color: var(--brand);
  text-decoration: underline;
}

.content-block a:hover {
  color: var(--brand-glow);
}

.card,
.meal-card,
.feature-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.card:hover,
.meal-card:hover,
.feature-card:hover,
.related-list a:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--brand-glow);
  box-shadow: var(--shadow-md);
}

.card-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  min-height: 2.2em;
}

.card h3 a:hover {
  color: var(--brand-glow);
}

.card p {
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.card-footer .btn {
  flex: 1;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 8px 8px 0;
  padding: 6px 14px;
  background: var(--brand-light);
  color: var(--brand-glow);
  border: 1px solid hsla(154, 65%, 38%, 0.15);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-list li {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

/* Meal Preview Cards */
.meal-card h3 {
  font-size: 1.2rem;
  color: var(--brand-glow);
  border-bottom: 2px solid var(--soft);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.meal-card p {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.meal-card p strong {
  color: var(--ink);
  font-weight: 700;
}

/* Interactivity: Checked Groceries */
.grocery-group {
  margin-bottom: 28px;
}

.grocery-group h4 {
  font-size: 1.1rem;
  text-transform: capitalize;
  color: var(--ink);
  margin-bottom: 16px;
  border-left: 3px solid var(--brand-glow);
  padding-left: 10px;
}

.grocery-list-ul {
  display: grid;
  gap: 10px;
}

.grocery-item-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
}

.grocery-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.grocery-checkbox-custom {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  background-color: var(--surface);
  border: 2px solid var(--line);
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.grocery-item-label:hover .grocery-checkbox-custom {
  border-color: var(--brand-glow);
  background-color: var(--brand-light);
}

.grocery-checkbox:checked + .grocery-checkbox-custom {
  background-color: var(--brand-glow);
  border-color: var(--brand-glow);
}

.grocery-checkbox-custom::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.grocery-checkbox:checked + .grocery-checkbox-custom::after {
  display: block;
}

.grocery-text {
  color: var(--text);
  transition: all 0.2s ease;
}

.grocery-checkbox:checked ~ .grocery-text {
  text-decoration: line-through;
  color: var(--muted);
  opacity: 0.55;
}

/* Tips list */
.tips-list li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid var(--soft);
  position: relative;
  font-size: 1.05rem;
}

.tips-list li:last-child {
  border-bottom: 0;
}

.tips-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 20px;
  height: 20px;
  background: var(--brand-light);
  color: var(--brand-glow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* How to steps timeline */
.how-to-steps {
  display: grid;
  gap: 28px;
  position: relative;
  padding-left: 20px;
  margin-top: 16px;
}

.how-to-steps::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  border-left: 2px dashed var(--line);
  z-index: 0;
}

.how-to-step {
  position: relative;
  padding-left: 56px;
  z-index: 1;
}

.how-to-step h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.how-to-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 0 6px var(--bg);
}

/* FAQs Accordion */
.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}

.faq-item:hover {
  border-color: var(--brand-glow);
}

.faq-question {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus {
  outline: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
  color: var(--text);
  font-size: 0.96rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-arrow {
  color: var(--brand-glow);
  font-weight: bold;
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  transform: rotate(0deg);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

/* Related Links */
.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 1.05rem;
}

.related-list a::after {
  content: "→";
  color: var(--brand-glow);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.related-list a:hover::after {
  transform: translateX(4px);
}

/* CTA Download Panel */
.cta-box {
  padding: clamp(32px, 6vw, 64px);
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, hsl(153, 52%, 18%) 0%, hsl(153, 55%, 10%) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(154, 65%, 45%, 0.15) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.cta-box h2,
.cta-box p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.cta-box .btn-primary:hover {
  background: var(--brand-light);
  color: var(--brand-glow);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Footer Section */
.site-footer {
  margin-top: 64px;
  padding: 64px 0 24px;
  background: hsl(153, 52%, 6%);
  color: hsla(150, 20%, 90%, 0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr 0.9fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: hsla(150, 20%, 85%, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-links a {
  color: hsla(150, 20%, 85%, 0.65);
}

.footer-links a:hover {
  color: var(--brand-glow);
}

.disclaimer {
  font-size: 0.82rem;
  color: hsla(150, 20%, 85%, 0.45);
  line-height: 1.4;
  margin: 0;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: hsla(150, 20%, 85%, 0.45);
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    min-height: auto;
  }

  .home-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .button-group {
    justify-content: center;
  }

  .hero-preview {
    margin-top: 16px;
  }

  .preview-sheet {
    transform: none !important;
  }

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

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

  .two-column {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .site-header {
    height: 72px;
    display: flex;
    align-items: center;
  }

  .header-inner {
    height: 100%;
    min-height: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .header-nav.open {
    transform: translateX(0);
  }

  .header-nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1.15rem;
  }

  .header-nav .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    border-radius: var(--radius);
  }

  .home-hero,
  .plan-hero,
  .hero {
    margin-top: 12px;
    padding: 32px 20px;
    border-radius: var(--radius);
  }

  .stats-bar {
    gap: 12px;
    margin-bottom: 32px;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .category-filter {
    padding-bottom: 12px;
  }

  .category-btn {
    width: 220px;
    padding: 16px;
    min-height: 110px;
  }

  .cat-name {
    font-size: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .btn {
    width: 100%;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-group,
  .breadcrumbs,
  .category-filter {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .page-shell,
  .home-hero,
  .plan-hero,
  .hero {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
  }

  .section-box,
  .meal-card {
    border: 1px solid #bbb;
    box-shadow: none;
    break-inside: avoid;
  }
}
