/* prepmymeal AT Soft Multiwhite */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --brand: #3d6b5a;
  --brand-dark: #2a4d40;
  --brand-soft: #e6f0eb;
  --accent: #c4a35a;
  --accent-hover: #a8883f;
  --ink: #1e2a26;
  --muted: #5a6b64;
  --paper: #f7f9f8;
  --white: #ffffff;
  --line: #d5e0db;
  --warm: #f3efe6;
  --shadow: 0 18px 48px rgba(30, 42, 38, 0.08);
  --radius: 18px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(ellipse 120% 80% at 10% -10%, #e8f2ed 0%, transparent 55%), radial-gradient(ellipse 90% 60% at 100% 0%, #f3efe6 0%, transparent 45%), linear-gradient(180deg, #fafcfb 0%, var(--paper) 40%, #eef4f1 100%);
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Header */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213, 224, 219, 0.8);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo:hover {
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-right: 12px;
  background: linear-gradient(145deg, var(--brand) 0%, #5d9a7f 100%);
  position: relative;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
}
.logo-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}
.logo-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.locale-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 7px 12px;
  border-radius: 999px;
  margin-right: 10px;
}
.search-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background 0.25s ease, border-color 0.25s ease;
  -moz-transition: background 0.25s ease, border-color 0.25s ease;
  -o-transition: background 0.25s ease, border-color 0.25s ease;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.search-btn:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
}
/* Nav */
.site-nav {
  background: var(--brand-dark);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nav-inner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 560;
  padding: 12px 0;
  margin-right: 22px;
  border-bottom: 2px solid transparent;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  -moz-transition: color 0.2s ease, border-color 0.2s ease;
  -o-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-inner a:last-child {
  margin-right: 0;
}
.nav-inner a:hover,
.nav-inner a.active {
  color: #fff;
  border-bottom-color: var(--accent);
  text-decoration: none;
}
/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  background: #1e2a26;
}
.hero-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-animation: heroDrift 18s ease-in-out infinite alternate;
  -moz-animation: heroDrift 18s ease-in-out infinite alternate;
  -o-animation: heroDrift 18s ease-in-out infinite alternate;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@-webkit-keyframes heroDrift {
  from {
    -webkit-transform: scale(1.04) translateY(0);
    transform: scale(1.04) translateY(0);
  }
  to {
    -webkit-transform: scale(1.1) translateY(-12px);
    transform: scale(1.1) translateY(-12px);
  }
}
@keyframes heroDrift {
  from {
    -webkit-transform: scale(1.04) translateY(0);
    transform: scale(1.04) translateY(0);
  }
  to {
    -webkit-transform: scale(1.1) translateY(-12px);
    transform: scale(1.1) translateY(-12px);
  }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 42, 38, 0.2) 0%, rgba(30, 42, 38, 0.55) 45%, rgba(30, 42, 38, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 56px;
  color: #fff;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  opacity: 0;
  -webkit-animation: riseIn 0.9s ease 0.15s forwards;
  -moz-animation: riseIn 0.9s ease 0.15s forwards;
  -o-animation: riseIn 0.9s ease 0.15s forwards;
  animation: riseIn 0.9s ease 0.15s forwards;
}
.hero-headline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  max-width: 560px;
  margin-bottom: 12px;
  opacity: 0;
  -webkit-animation: riseIn 0.9s ease 0.35s forwards;
  -moz-animation: riseIn 0.9s ease 0.35s forwards;
  -o-animation: riseIn 0.9s ease 0.35s forwards;
  animation: riseIn 0.9s ease 0.35s forwards;
}
.hero-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0;
  -webkit-animation: riseIn 0.9s ease 0.5s forwards;
  -moz-animation: riseIn 0.9s ease 0.5s forwards;
  -o-animation: riseIn 0.9s ease 0.5s forwards;
  animation: riseIn 0.9s ease 0.5s forwards;
}
.hero-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  opacity: 0;
  -webkit-animation: riseIn 0.9s ease 0.65s forwards;
  -moz-animation: riseIn 0.9s ease 0.65s forwards;
  -o-animation: riseIn 0.9s ease 0.65s forwards;
  animation: riseIn 0.9s ease 0.65s forwards;
}
@-webkit-keyframes riseIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(22px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes riseIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(22px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease, box-shadow 0.25s ease;
  -moz-transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  -o-transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--accent);
  color: #1e2a26;
  margin-right: 12px;
  margin-bottom: 10px;
  box-shadow: 0 10px 28px rgba(196, 163, 90, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
}
/* Layout */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 64px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--brand-dark);
}
.section-lead {
  color: var(--muted);
  font-size: 17px;
}
/* Niche grid */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.niche-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  background: #1e2a26;
  text-decoration: none;
  color: #fff;
  display: block;
  box-shadow: var(--shadow);
  -webkit-transition: -webkit-transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
}
.niche-card:hover {
  text-decoration: none;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}
.niche-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.72;
  -webkit-transition: -webkit-transform 0.6s ease, opacity 0.35s ease;
  -moz-transition: transform 0.6s ease, opacity 0.35s ease;
  -o-transition: transform 0.6s ease, opacity 0.35s ease;
  transition: transform 0.6s ease, opacity 0.35s ease;
}
.niche-card:hover img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
  opacity: 0.85;
}
.niche-card-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  height: 100%;
  min-height: 260px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 20%, rgba(20, 30, 26, 0.92) 100%);
}
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
}
.niche-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
/* Boxes */
.boxes-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.box-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 28px;
}
.toggle-group {
  background: var(--brand-soft);
  padding: 5px;
  border-radius: 999px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  -webkit-transition: background 0.25s ease, color 0.25s ease;
  -moz-transition: background 0.25s ease, color 0.25s ease;
  -o-transition: background 0.25s ease, color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease;
}
.toggle-btn.active {
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(61, 107, 90, 0.12);
}
.box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.meal-box {
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 22px 18px;
  background: #fbfcfb;
  position: relative;
  cursor: pointer;
  -webkit-transition: border-color 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease;
  -moz-transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  -o-transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  text-align: center;
}
.meal-box:hover,
.meal-box.selected {
  border-color: var(--brand);
  background: #fff;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}
.meal-box.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
}
.box-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: var(--accent);
  color: #1e2a26;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.box-size {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--brand-dark);
  margin: 8px 0 4px;
}
.box-save {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
  min-height: 18px;
}
.box-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.box-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.box-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 16px;
}
.box-cta {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--brand);
  color: #fff !important;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.box-cta:hover {
  background: var(--brand-dark);
  text-decoration: none;
}
.price-note {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
/* Meals showcase */
.meal-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.meal-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.meal-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.meal-item-body {
  padding: 18px;
}
.meal-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--brand-dark);
}
.meal-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
  margin-left: -4px;
}
.meal-meta span {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 8px;
  border-radius: 999px;
  margin: 0 4px 6px;
}
.meal-item p {
  font-size: 14px;
  color: var(--muted);
}
/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
}
/* Article / legal */
.page-hero {
  padding: 48px 0 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--muted);
  max-width: 640px;
}
.content-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.content-panel h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--brand-dark);
  margin: 28px 0 12px;
}
.content-panel h2:first-child {
  margin-top: 0;
}
.content-panel h3 {
  font-size: 18px;
  margin: 20px 0 8px;
  color: var(--brand);
}
.content-panel p,
.content-panel li {
  color: var(--muted);
  margin-bottom: 12px;
}
.content-panel ul,
.content-panel ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
.meta-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.meta-row > * {
  margin-right: 10px;
}
.ad-tag {
  background: #fff3cd;
  color: #7a5b00;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
}
.lead {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 18px;
}
.inline-cta {
  background: linear-gradient(135deg, var(--brand-soft), #f3efe6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}
.inline-cta h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.inline-cta p {
  color: var(--muted);
  margin-bottom: 16px;
}
.refs {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 36px;
}
.refs h4 {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.refs ul {
  list-style: none;
  margin-left: 0;
}
.refs li {
  font-size: 14px;
  margin-bottom: 8px;
}
/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.trust-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--brand-dark);
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 12px;
  color: var(--muted);
}
/* Footer */
.site-footer {
  background: var(--brand-dark);
  color: #c5d6ce;
  padding: 48px 24px 28px;
  margin-top: 40px;
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-grid p,
.footer-grid a {
  color: #c5d6ce;
  font-size: 14px;
  line-height: 1.8;
}
.footer-grid a {
  display: block;
  text-decoration: none;
}
.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-links {
  max-width: 1120px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  margin-left: auto;
}
.footer-links a {
  color: #dce8e2;
  text-decoration: none;
  font-size: 13px;
  margin-right: 16px;
  margin-bottom: 8px;
}
.footer-links a:hover {
  color: #fff;
}
.disclaimer {
  max-width: 1120px;
  margin: 0 auto 14px;
  font-size: 12px;
  line-height: 1.65;
  color: #9bb5a8;
}
.copy {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 13px;
  color: #9bb5a8;
}
/* Cookie */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: #1e2a26;
  color: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  display: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-width: 920px;
  margin: 0 auto;
}
.cookie-bar.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cookie-bar p {
  font-size: 14px;
  margin-right: 16px;
  margin-bottom: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 220px;
}
.cookie-bar a {
  color: var(--accent);
}
.cookie-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.cookie-actions button {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
}
.cookie-accept {
  background: var(--accent);
  color: #1e2a26;
}
.cookie-decline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
/* Search modal */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(20, 30, 26, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 10vh 20px 20px;
}
.search-modal.open {
  display: block;
}
.search-panel {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.search-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  margin-bottom: 14px;
}
.search-results a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
}
.search-close {
  float: right;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
}
/* Exit popup */
.exit-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(20, 30, 26, 0.55);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal.open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.exit-panel {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
}
.exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}
.exit-panel h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.exit-panel p {
  color: var(--muted);
  margin-bottom: 18px;
}
/* Reveal */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(28px);
  -moz-transform: translateY(28px);
  -ms-transform: translateY(28px);
  -o-transform: translateY(28px);
  transform: translateY(28px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  -moz-transition: opacity 0.7s ease, transform 0.7s ease;
  -o-transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.payment-badges {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -6px;
}
.payment-badges span {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 6px 8px;
}
@media (max-width: 960px) {
  .niche-grid, .box-grid, .meal-rail, .steps, .trust-strip, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .niche-grid, .box-grid, .meal-rail, .steps, .trust-strip, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 88vh;
  }
  .boxes-panel {
    padding: 22px 16px;
  }
  .content-panel {
    padding: 24px 18px;
  }
  .header-inner {
    padding: 12px 16px;
  }
  .logo-name {
    font-size: 18px;
  }
  .nav-inner a {
    margin-right: 14px;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media, .reveal, .btn, .niche-card, .meal-box {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
  .reveal {
    opacity: 1;
  }
  html {
    scroll-behavior: auto;
  }
}
