:root {
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  color: #111827;
  background-color: #f5f5f7;
}

body {
  margin: 0;
  background: #f5f5f7;
  color: #111827;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text,
.hero-note,
p,
span,
li {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

.hero-card-title,
.hero-card-kcal,
.box-title,
.box-meta {
  font-family: var(--font-body);
}

button,
input,
label {
  font-family: var(--font-body);
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(245, 245, 247, 0.9);
  border-bottom: 1px solid #e5e7eb;
}

.nav-inner {
  max-width: 1120px;
  margin: auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 0.8rem;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.nav-links .nav-link {
  color: #111827;
}

.nav-links a:hover,
.nav-links .nav-link:focus {
  color: #111827;
}

.navbar-toggler {
  border-color: rgba(17, 24, 39, 0.2);
  padding: 0.35rem 0.5rem;
  border-radius: 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.15);
}

.navbar-toggler-icon {
  filter: invert(12%) sepia(7%) saturate(1936%) hue-rotate(190deg) brightness(96%) contrast(88%);
}

@media (max-width: 992px) {
  .nav-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 0;
    width: 100%;
    padding: 0.75rem 0 0.5rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    gap: 0.75rem;
  }

  .nav-links .nav-link {
    padding: 0.35rem 0;
  }

  .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    width: 100%;
  }

  .nav .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

.btn {
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: #111827;
  color: #f9fafb;
}

.btn-primary:hover {
  background: #000;
  color: #fff;
}

.btn-outline {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn-outline:hover {
  background: #f3f4f6;
}

.hero {
  position: relative;
  padding: 4.5rem 0 3.6rem;
  min-height: 66vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-meal-prep.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.18)
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-box {
  background: #ffece2;
  border-radius: 2rem;
  padding: 2.5rem 2.8rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.hero-copy {
  max-width: 36rem;
}

@media (max-width: 900px) {
  .hero {
    padding: 3.15rem 0 2.45rem;
    min-height: auto;
  }

  .hero-box {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.6rem;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  background: #fef9c3;
  color: #854d0e;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 1.1rem 0 0.75rem;
}

.hero-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.85rem;
}

.hero-grid {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.hero-card {
  border-radius: 1.25rem;
  padding: 0.9rem;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.planner-benefits-box {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 1.75rem 1.9rem;
}

.benefits-title {
  margin: 0 0 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  background: #f6eee9;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #111827;
  white-space: nowrap;
  text-align: left;
  line-height: 1.3;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
}

@media (max-width: 640px) {
  .planner-benefits-box {
    padding: 1.35rem 1.15rem;
  }

  .benefits-list {
    width: 100%;
  }

  .benefit-item {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }
}

.planner-steps-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.steps-inline-box {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 1.6rem 1.75rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  justify-content: center;
}

.step-inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: #faf6f4;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  font-size: 0.85rem;
}

.step-inline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3e8e3;
  font-size: 1rem;
}

.step-inline-arrow {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d0bcb2;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-kcal {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
  background: #ecfdf3;
  color: #166534;
  margin-top: 0.15rem;
}

.section {
  padding: 2.5rem 0;
}

.section-header {
  max-width: 1120px;
  margin: 0 auto 1.75rem auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.section-kicker {
  font-size: 0.8rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle-wide {
  max-width: 60rem;
}

.section-note {
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: 720px;
  margin: 1.25rem auto 0 auto;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: auto;
  padding: 0 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: auto;
  padding: 0 1.5rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.box {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.3rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.box-pill {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.box-title {
  font-size: 1rem;
  font-weight: 600;
}

.box-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.box-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.2rem;
}

.pill-small {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  background: #f3f4f6;
  color: #4b5563;
  margin-right: 0.25rem;
  margin-top: 0.2rem;
}

.week-box {
  max-width: 1120px;
  margin: auto;
  background: #111827;
  color: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
}

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

.week-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .week-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.week-day {
  border-radius: 0.9rem;
  padding: 0.5rem 0.55rem;
  background: rgba(15, 23, 42, 0.8);
}

.week-day-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e5e7eb;
}

.week-meal-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #78350f;
  margin-bottom: 0.15rem;
}

.week-meal-text {
  font-size: 0.73rem;
  color: #e5e7eb;
}

.week-text-with-image {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.week-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.week-heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.week-description {
  font-size: 0.9rem;
  margin: 0;
  color: #d1d5db;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
}

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

.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-a {
  font-size: 0.88rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.faq-a p {
  margin: 0 0 0.6rem 0;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.footer-cta {
  background: linear-gradient(120deg, #fff1e4 0%, #ffd8b5 55%, #ffb88a 100%);
  border-radius: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 2.5rem;
}

.footer-cta .badge {
  letter-spacing: 0.08em;
}

.footer-cta .btn-lg {
  border-radius: 999px;
}

.landing-footer {
  background: #050505;
  color: #f9fafb;
  padding: 2.8rem 1.5rem 2rem;
  margin-top: 2rem;
  font-family: var(--font-heading);
}

.landing-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand-block {
  flex: 1 1 320px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8ebe0;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.footer-brand-name {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-heading);
}

.footer-tagline {
  margin: 0.15rem 0 0 0;
  color: #cbd5f5;
  font-family: var(--font-heading);
}

.footer-description {
  margin-top: 0.9rem;
  color: #d1d5db;
  max-width: 420px;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex: 1 1 280px;
}

.footer-heading {
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #cbd5f5;
  font-family: var(--font-heading);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: #f9fafb;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fcd34d;
}

.footer-bottom {
  max-width: 1120px;
  margin: 1.8rem auto 0 auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #cbd5f5;
  font-family: var(--font-heading);
}

.footer-note {
  margin: 0;
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
  font-family: var(--font-heading);
}

.footer-bottom a {
  color: #fcd34d;
  font-family: var(--font-heading);
}

@media (max-width: 640px) {
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.section-recipes {
  padding: 3rem 0 3.5rem;
  background: #f3f4f6;
}

.section-recipes-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-recipes .section-header {
  margin: 0 auto 1.4rem auto;
  text-align: center;
}

.section-recipes .section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.2rem;
}

.section-recipes .section-title {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.section-recipes .section-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.recipes-scroller {
  margin-top: 0.8rem;
  padding-bottom: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.recipes-scroller::-webkit-scrollbar {
  height: 6px;
}

.recipes-scroller::-webkit-scrollbar-track {
  background: transparent;
}

.recipes-scroller::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 999px;
}

.recipes-track {
  display: flex;
  gap: 1.2rem;
  padding: 0.2rem 0 0.6rem;
  min-width: max-content;
}

.recipe-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 0.9rem 0.9rem 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

@media (max-width: 640px) {
  .recipe-card {
    flex-basis: 260px;
  }
}

.recipe-card-media {
  border-radius: 1.15rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
}

.recipe-card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.recipe-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.recipe-card-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.92);
}

.recipe-badge-free {
  color: #047857;
  border-color: #bbf7d0;
  background: rgba(220, 252, 231, 0.94);
}

.recipe-badge-locked {
  color: #9a3412;
  border-color: #fed7aa;
  background: rgba(255, 237, 213, 0.96);
}

.recipe-card-title {
  font-size: 0.98rem;
  margin: 0;
}

.recipe-card-text {
  font-size: 0.85rem;
  color: #6b7280;
}

.recipe-card-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.3rem;
}

.landing-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.landing-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.landing-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}

.landing-modal-dialog {
  position: relative;
  width: min(920px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: hidden auto;
  border-radius: 1.75rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 0;
}

.landing-modal-content {
  padding: 1.75rem;
}

.landing-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.landing-modal-header .recipe-card-badge {
  position: static;
  margin-bottom: 0.4rem;
}

.landing-modal-header h3 {
  margin: 0.1rem 0;
  font-size: 1.45rem;
}

.landing-modal-header p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.landing-modal-header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.landing-modal-header-actions a {
  font-size: 0.85rem;
  color: #111827;
  border-bottom: 1px solid rgba(17, 24, 39, 0.2);
}

.landing-modal-close {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f9fafb;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.landing-modal-media {
  border-radius: 1.3rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.landing-modal-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.landing-modal-body h4 {
  margin: 0 0 0.5rem;
}

.landing-modal-description {
  margin-top: 0;
  color: #4b5563;
}

.landing-modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  padding: 1rem 0;
}

.landing-modal-meta-block {
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.landing-modal-meta-block span {
  font-size: 0.8rem;
  color: #9ca3af;
}

.landing-modal-meta-block strong {
  font-size: 0.95rem;
  color: #111827;
}

.landing-modal-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.landing-modal-columns ul,
.landing-modal-columns ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #374151;
  line-height: 1.6;
}

.landing-modal-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.landing-modal-preview {
  margin: 0;
  color: #4b5563;
}

.landing-modal-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.landing-modal-cta-note {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .landing-modal-content {
    padding: 1.1rem;
  }

  .landing-modal-header {
    flex-direction: column;
  }

  .landing-modal-header-actions {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .landing-modal-media img {
    height: 220px;
  }
}

.section-planner-preview {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  background: #f5f5f7;
}

.section-planner-preview .section-subtitle {
  max-width: 48rem;
  padding: 0rem 0rem 0rem;
}

.section-planner-preview .section-header {
  max-width: 1120px;
  margin: 0 auto 1.5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.planner-preview {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: 1.75rem;
  background: #f8ebe0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.planner-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.chip {
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  background: #fef3e7;
  color: #7a5a33;
  cursor: pointer;
}

.chip.active {
  background: #e89b52;
  color: #fff7ed;
}

.planner-days-row {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: #f8dfc9;
  margin-bottom: 1.4rem;
}

.day-pill {
  border-radius: 999px;
  border: none;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  background: transparent;
  color: #7a5a33;
  cursor: pointer;
}

.day-pill-active {
  background: #ffffff;
  color: #111827;
}

.planner-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.planner-title {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.planner-subtitle {
  font-size: 0.86rem;
  color: #6b7280;
  max-width: 26rem;
}

.planner-head-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-ghost-sm,
.btn-primary-sm {
  border-radius: 999px;
  border: none;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-family: var(--font-body, system-ui);
}

.btn-ghost-sm {
  background: #fdf3ea;
  color: #7a5a33;
}

.btn-primary-sm {
  background: #e89b52;
  color: #fff7ed;
}

.planner-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1024px) {
  .planner-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .planner-cards {
    grid-template-columns: 1fr;
  }

  .planner-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.planner-card {
  background: #ffffff;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.planner-card-media {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.planner-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.planner-badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.planner-kcal {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  font-size: 0.72rem;
  color: #f9fafb;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.planner-card-body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.planner-card-title {
  font-size: 0.98rem;
  margin: 0;
}

.planner-macros {
  font-size: 0.78rem;
  color: #6b7280;
}

.planner-portion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.portion-select {
  border-radius: 999px;
  border: 1px solid #f0d3b6;
  padding: 0.25rem 0.7rem;
  background: #fff7ef;
  font-size: 0.8rem;
  cursor: pointer;
}

.planner-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.btn-pill-ghost,
.btn-pill-solid {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 0.35rem 0.4rem;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font-body, system-ui);
}

.btn-pill-ghost {
  background: #fff6ef;
  color: #7a5a33;
}

.btn-pill-solid {
  background: #e89b52;
  color: #fff7ed;
}

.section-photo {
  padding: 0.5rem 0 2.5rem;
}

.full-photo-wrap {
  max-width: 1120px;
  margin: auto;
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.full-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.full-photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(17, 24, 39, 0.88);
  color: #f9fafb;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.recipe-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  margin: -0.4rem -0.4rem 0.7rem;
}

.recipe-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.section#faq {
  margin-top: -6rem;
  padding-top: 1.5rem;
}

.faq-wrapper {
  max-width: 1120px;
  margin: auto;
  padding: 0 1.5rem;
}

.vision {
  padding: 6rem 1.5rem;
  background: #f5f5f7;
  margin-top: -5rem;
}

.vision__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  padding: clamp(2.5rem, 4vw, 4rem);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.vision__inner::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 26px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: -1;
}

.vision__kicker {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.vision__title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 1rem 0;
}

.vision__intro,
.vision__text {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
}

.vision__intro {
  font-size: 1.05rem;
  font-weight: 500;
}

.vision__blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.vision-block {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vision-block .vision__text {
  margin: 0;
  color: #374151;
}

.vision__status {
  margin: 0 0 1.75rem 0;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
  text-align: center;
  justify-content: center;
}

.vision__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.vision__tag {
  border-radius: 999px;
  border: 1px solid rgba(240, 172, 98, 0.5);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  background: rgba(246, 184, 59, 0.08);
  color: #372f1f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

.vision__tag:hover {
  transform: translateY(-2px);
  background: rgba(246, 168, 59, 0.14);
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.15);
}

.vision__tag-icon {
  font-size: 1rem;
}

.vision__note {
  margin: 0;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: rgba(246, 184, 59, 0.08);
  color: #8a5d1f;
  font-size: 0.95rem;
  border: 1px solid rgba(210, 157, 41, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 480px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.4;
}

.vision__note::before {
  content: 'ℹ️';
  font-size: 1rem;
}

@media (max-width: 768px) {
  .vision__inner {
    padding: 2rem;
  }

  .vision__title {
    font-size: 1.75rem;
  }

  .vision__blocks {
    gap: 1rem;
  }

  .vision__tags {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .vision__status {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .vision__note {
    border-radius: 18px;
    width: 100%;
  }
}
