:root {
  --bg-cream: #FBF5ED;
  --bg-dark: #1E120A;
  --text-primary: #1E120A;
  --text-secondary: #7A6B5D;
  --text-on-dark: #FBF5ED;
  --accent-amber: #C67A3C;
  --accent-terracotta: #BF4A2B;
  --accent-green: #6B8C5A;
  --light-warm: #F0E4D4;
  --card-bg: #FFFFFF;
  --border-light: #E8DDD0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 1.125rem 2.25rem; border-radius: 12px;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn--primary { background: var(--accent-amber); color: #fff; }
.btn--primary:hover { background: #b56d30; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,122,60,0.3); }
.btn--outline { background: transparent; color: var(--accent-amber); border: 2px solid var(--accent-amber); }
.btn--outline:hover { background: var(--accent-amber); color: #fff; }
.btn--white { background: #fff; color: var(--accent-terracotta); font-weight: 700; }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }
.btn--sm { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ── Section shared ── */
.section-label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  color: var(--accent-amber); letter-spacing: 3px; text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.2;
}
.section-title--light { color: var(--text-on-dark); }
.section-sub { font-size: 1rem; color: var(--text-secondary); max-width: 540px; }
.section-header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.section-header--light .section-label { color: var(--accent-amber); }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(251,245,237,0.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,18,10,0.06);
  transition: box-shadow 0.3s ease;
  height: var(--header-h);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(30,18,10,0.08); }
.header__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); z-index: 201; white-space: nowrap;
}
.header__nav { display: flex; align-items: center; gap: 2.5rem; }
.header__link {
  font-size: 0.9375rem; color: var(--text-primary);
  transition: color 0.2s; position: relative;
}
.header__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent-amber);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.header__link:hover, .header__link--active { color: var(--accent-amber); }
.header__link:hover::after, .header__link--active::after { transform: scaleX(1); transform-origin: left; }
.header__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; z-index: 201;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.header__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* ── Hero ── */
.hero {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(240,228,212,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(224,201,171,0.4) 0%, transparent 50%),
    var(--bg-cream);
}
.hero__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 5rem;
  display: flex; align-items: center; gap: 3.75rem;
  min-height: 680px;
}
.hero__text { flex: 1; display: flex; flex-direction: column; gap: 1.75rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--light-warm); padding: 0.5rem 1rem;
  border-radius: 20px; width: fit-content;
  font-size: 0.8125rem; font-weight: 600; color: var(--accent-amber);
}
.hero__badge-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent-amber); }
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: var(--text-primary);
}
.hero__sub { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.6; max-width: 540px; }
.hero__ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero__image { flex-shrink: 0; }
.hero__image img {
  width: 520px; height: 520px; object-fit: cover;
  border-radius: 24px;
}

/* ── Trust ── */
.trust { background: var(--bg-dark); }
.trust__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 1.5rem 5rem;
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
}
.trust__item { display: flex; align-items: center; gap: 0.625rem; color: var(--text-on-dark); font-size: 0.875rem; font-weight: 600; }
.trust__icon { width: 20px; height: 20px; flex-shrink: 0; }
.trust__icon--green { color: var(--accent-green); }
.trust__icon--terra { color: var(--accent-terracotta); }
.trust__icon--amber { color: var(--accent-amber); }
.trust__dot { color: var(--accent-amber); font-size: 1.5rem; line-height: 1; }

/* ── Story ── */
.story { background: var(--bg-dark); overflow: hidden; }
.story__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center;
  min-height: 600px;
}
.story__image { flex-shrink: 0; width: 640px; height: 600px; }
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__text {
  flex: 1; display: flex; flex-direction: column; gap: 1.75rem;
  padding: 3.75rem 5rem 3.75rem 2.5rem;
}
.story__title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700; color: var(--text-on-dark); line-height: 1.2;
}
.story__desc { font-size: 1rem; color: var(--text-on-dark); opacity: 0.8; line-height: 1.7; }
.story__quote {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  color: var(--accent-amber); line-height: 1.5;
  border: none; padding: 0; margin: 0;
  display: flex; gap: 0.75rem;
}
.story__quote-mark { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.4; margin-top: 2px; }

/* ── Menu ── */
.menu-section { padding: 5rem 0; }
.menu-section__inner { max-width: 1440px; margin: 0 auto; padding: 0 5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; width: 100%; }
.dish-card {
  background: var(--card-bg); border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,18,10,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: 1px solid var(--card-bg); outline-offset: -1px;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,18,10,0.12); }
.dish-card__image { height: 220px; overflow: hidden; }
.dish-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-card__image img { transform: scale(1.05); }
.dish-card { cursor: pointer; }
.dish-card__info { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.dish-card__name { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; }
.dish-card__desc {
  font-size: 0.8125rem; color: var(--text-secondary);
  line-height: 1.45; margin: 0.25rem 0 0.375rem;
}
.dish-card__ingredients {
  font-size: 0.75rem; color: var(--text-secondary);
  line-height: 1.35; margin: 0 0 0.375rem;
  font-style: italic; opacity: 0.85;
}
.dish-card__price { font-size: 1.125rem; font-weight: 700; color: var(--accent-amber); }

/* ── Skeleton Loading ── */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0e4d4 25%, #faf3ea 50%, #f0e4d4 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite ease-in-out;
  border-radius: 8px;
}
.skeleton--img { height: 220px; border-radius: 16px 16px 0 0; }
.skeleton--badge { width: 60px; height: 18px; margin-bottom: 0.25rem; }
.skeleton--title { width: 80%; height: 22px; margin-bottom: 0.25rem; }
.skeleton--text { width: 100%; height: 14px; }
.skeleton--price { width: 50px; height: 20px; margin-top: 0.25rem; }
.dish-card--skeleton { pointer-events: none; }

/* ── Dish Detail Modal ── */
.dish-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(30,18,10,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.dish-modal-overlay.open { opacity: 1; }
.dish-modal {
  background: #fff; border-radius: 24px 24px 0 0;
  max-width: 560px; width: 100%; max-height: 90vh;
  overflow-y: auto; transform: translateY(100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: 1px solid #fff; outline-offset: -1px;
}
.dish-modal::-webkit-scrollbar { display: none;
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  -webkit-overflow-scrolling: touch;
}
.dish-modal-overlay.open .dish-modal { transform: translateY(0); }
.dish-modal__close {
  position: sticky; top: 0; z-index: 1;
  display: flex; justify-content: center; padding: 12px 0 4px;
  background: #fff; border-radius: 24px 24px 0 0;
}
.dish-modal__handle {
  width: 40px; height: 4px; background: #d0c8be;
  border-radius: 2px; cursor: pointer;
}
.dish-modal__img {
  display: block; width: 100%; height: 280px; object-fit: cover;
}
.dish-modal__body { padding: 1.25rem 1.5rem 2rem; }
.dish-modal__cat {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 12px; margin-bottom: 0.5rem;
}
.dish-modal__name {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 0.375rem;
}
.dish-modal__desc {
  font-size: 0.9375rem; color: var(--text-secondary);
  line-height: 1.5; margin-bottom: 1rem;
}
.dish-modal__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid #f0e4d4;
  font-size: 0.9375rem;
}
.dish-modal__row:last-child { border-bottom: none; }
.dish-modal__row-label { color: var(--text-secondary); }
.dish-modal__row-value { font-weight: 600; }
.dish-modal__section {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid #f0e4d4;
}
.dish-modal__section-title {
  font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-secondary); margin-bottom: 0.75rem;
}
.dish-modal__nutrition {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem; text-align: center;
}
.dish-modal__nut-box {
  background: var(--light-warm); border-radius: 12px; padding: 0.75rem 0.25rem;
}
.dish-modal__nut-num {
  font-size: 1.125rem; font-weight: 700; color: var(--text-primary);
}
.dish-modal__nut-label {
  font-size: 0.6875rem; color: var(--text-secondary); margin-top: 0.125rem;
}
.dish-modal__allergens {
  background: rgba(191,74,43,0.08); border-radius: 12px;
  padding: 0.75rem 1rem; font-size: 0.875rem;
  color: var(--accent-terracotta); font-weight: 500;
}
.dish-modal__ingredients-list {
  font-size: 0.875rem; color: var(--text-primary);
  line-height: 1.6;
}
.dish-modal__storage {
  font-size: 0.8125rem; color: var(--text-secondary);
  line-height: 1.5;
}
.dish-modal__price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.25rem; padding: 1rem; background: var(--light-warm);
  border-radius: 14px;
}
.dish-modal__price-big {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 700; color: var(--accent-amber);
}
.dish-modal__price-weight {
  font-size: 0.875rem; color: var(--text-secondary);
}
.dish-modal__cta {
  display: block; width: 100%; margin-top: 1rem;
  padding: 1rem; border: none; border-radius: 14px;
  background: var(--accent-amber); color: #fff;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-align: center; text-decoration: none;
  transition: background 0.2s;
}
.dish-modal__cta:hover { background: #b56d33; }

@media (min-width: 600px) {
  .dish-modal { border-radius: 24px; margin-bottom: 2rem; }
  .dish-modal__img { border-radius: 0; }
}

/* ── How ── */
.how { background: var(--light-warm); padding: 5rem 0; }
.how__inner { max-width: 1440px; margin: 0 auto; padding: 0 5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.how__steps { display: flex; gap: 2.5rem; width: 100%; }
.how__step { flex: 1; text-align: center; padding: 2.5rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.how__num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700; color: #fff;
}
.how__num--amber { background: var(--accent-amber); }
.how__num--terra { background: var(--accent-terracotta); }
.how__num--green { background: var(--accent-green); }
.how__step-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.how__step-desc { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Benefits ── */
.benefits { padding: 5rem 0; }
.benefits__inner { max-width: 1440px; margin: 0 auto; padding: 0 5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.benefits__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; width: 100%; }
.benefit-card {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,18,10,0.06); }
.benefit-card__icon { width: 32px; height: 32px; flex-shrink: 0; }
.benefit-card__icon--green { color: var(--accent-green); }
.benefit-card__icon--amber { color: var(--accent-amber); }
.benefit-card__icon--terra { color: var(--accent-terracotta); }
.benefit-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.benefit-card__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Reviews ── */
.reviews { background: var(--bg-dark); padding: 5rem 0; }
.reviews__inner { max-width: 1440px; margin: 0 auto; padding: 0 5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.reviews__cards { display: flex; gap: 1.5rem; width: 100%; }
.review-card {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 16px;
  padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
.review-card__stars { display: flex; gap: 4px; }
.star-icon { width: 18px; height: 18px; color: var(--accent-amber); }
.review-card__text { font-size: 1rem; color: var(--text-on-dark); font-style: italic; line-height: 1.6; }
.review-card__author { font-size: 0.875rem; font-weight: 600; color: var(--text-on-dark); opacity: 0.7; }

/* ── Pricing ── */
.pricing { padding: 5rem 0; }
.pricing__inner { max-width: 1440px; margin: 0 auto; padding: 0 5rem; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.pricing__cards { display: flex; gap: 1.5rem; width: 100%; align-items: flex-start; }
.price-card {
  flex: 1; background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: 20px; padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.price-card--featured { border: 2px solid var(--accent-amber); box-shadow: 0 8px 32px rgba(198,122,60,0.15); }
.price-card__badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.375rem 1rem; border-radius: 20px; width: fit-content;
  font-size: 0.75rem; font-weight: 700;
  background: var(--light-warm); color: var(--accent-amber);
}
.price-card__badge--hidden { visibility: hidden; }
.price-card__badge--green { background: rgba(107,140,90,0.15); color: var(--accent-green); }
.price-card__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; }
.price-card__amount { font-size: 2.5rem; font-weight: 700; }
.price-card__period { font-size: 0.875rem; color: var(--text-secondary); }
.price-card__features { display: flex; flex-direction: column; gap: 0.75rem; }
.price-card__features li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.625rem; }
.check-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent-green); margin-top: 1px; }

/* ── Final CTA ── */
.final-cta {
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-terracotta) 50%, #8B3520 100%);
  padding: 6.25rem 5rem; text-align: center;
}
.final-cta__inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.final-cta__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff; line-height: 1.15;
}
.final-cta__desc { font-size: 1.125rem; color: #fff; opacity: 0.9; line-height: 1.6; max-width: 600px; }
.final-cta__alt { display: flex; align-items: center; gap: 0.5rem; color: #fff; opacity: 0.7; font-size: 0.875rem; }
.final-cta__alt-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--bg-dark); }
.footer__inner { max-width: 1440px; margin: 0 auto; padding: 3.75rem 5rem 2.5rem; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.footer__brand { max-width: 320px; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__logo-img {
  height: 72px; width: 72px; border-radius: 12px;
  flex-shrink: 0; object-fit: contain;
}
.footer__tagline { font-size: 0.875rem; color: var(--text-on-dark); opacity: 0.6; line-height: 1.5; }
.footer__col { display: flex; flex-direction: column; gap: 1rem; }
.footer__col-title { font-size: 0.875rem; font-weight: 700; color: var(--text-on-dark); }
.footer__link { font-size: 0.875rem; color: var(--text-on-dark); opacity: 0.6; transition: opacity 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer__link:hover { opacity: 1; }
.footer__link-icon { width: 16px; height: 16px; flex-shrink: 0; }
.footer__line { height: 1px; background: rgba(255,255,255,0.08); margin: 2.5rem 0 1.5rem; }
.footer__bottom { display: flex; justify-content: center; font-size: 0.75rem; color: var(--text-on-dark); opacity: 0.4; }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .header__inner { padding: 0 2rem; }
  .hero__inner { padding: 3rem 2rem; flex-direction: column; gap: 2rem; min-height: auto; }
  .hero__image img { width: 100%; height: auto; max-height: 400px; }
  .trust__inner { padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; }
  .trust__dot { display: none; }
  .story__inner { flex-direction: column; }
  .story__image { width: 100%; height: 300px; }
  .story__text { padding: 2rem; }
  .menu-section__inner, .how__inner, .benefits__inner, .reviews__inner, .pricing__inner { padding: 0 2rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { flex-direction: column; gap: 1.5rem; }
  .benefits__grid { grid-template-columns: 1fr; }
  .reviews__cards { flex-direction: column; }
  .pricing__cards { flex-direction: column; }
  .final-cta { padding: 4rem 2rem; }
  .footer__inner { padding: 2.5rem 2rem 1.5rem; }
  .footer__top { flex-wrap: wrap; }
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 150;
  background: var(--bg-cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav__link {
  font-size: 1.5rem; font-family: var(--font-display); font-weight: 700;
  color: var(--text-primary); transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--accent-amber); }
.mobile-nav .btn { font-size: 1.125rem; padding: 1rem 3rem; margin-top: 0.5rem; }

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .header__nav--desktop { display: none; }
  .header__burger { display: flex; }
  .header__burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .header__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .header__burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero__inner { padding: 2rem 1.5rem; }
  .hero__title { font-size: 2.25rem; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }

  .menu-section { padding: 3rem 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .dish-card__image { height: 200px; }

  .how { padding: 3rem 0; }
  .how__step { padding: 1.5rem 1rem; }
  .how__num { width: 56px; height: 56px; font-size: 1.375rem; }

  .benefits { padding: 3rem 0; }
  .pricing { padding: 3rem 0; }

  .reviews { padding: 3rem 0; }
  .reviews__cards { gap: 1rem; }

  .footer__top { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
  .footer__inner { padding: 2rem 1.5rem 1.5rem; }
}

/* ── Page Hero (sub-pages banner) ── */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(240,228,212,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(224,201,171,0.4) 0%, transparent 50%),
    var(--bg-cream);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero__inner {
  max-width: 800px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
}
.page-hero__sub { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.6; max-width: 600px; }
.page-hero--pantry {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(139,111,71,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(107,140,90,0.10) 0%, transparent 50%),
    var(--bg-cream);
}

/* ── Content blocks (shared for sub-pages) ── */
.content-section { padding: 4rem 0; }
.content-section--alt { background: var(--light-warm); }
.content-section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.content-section__inner {
  max-width: 960px; margin: 0 auto; padding: 0 2rem;
}

/* ── Weekly Menu Page ── */
.week-tabs {
  display: flex; gap: 0.25rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.week-tab {
  padding: 0.625rem 1.25rem; border: 2px solid var(--border-light);
  border-radius: 12px; background: var(--card-bg);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  color: var(--text-secondary); cursor: pointer; transition: all 0.2s;
}
.week-tab:hover { border-color: var(--accent-amber); color: var(--accent-amber); }
.week-tab--active {
  background: var(--accent-amber); color: #fff;
  border-color: var(--accent-amber);
}
.week-tab--today { position: relative; }
.week-tab--today::after {
  content: ''; position: absolute; top: 4px; right: 4px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-terracotta);
}
.week-day { display: none; }
.week-day--active { display: block; }
.week-day__empty {
  text-align: center; padding: 3rem 1rem;
  font-size: 1.0625rem; color: var(--text-secondary);
}
.week-disclaimer {
  text-align: center; padding: 2rem 1rem; margin-top: 2rem;
  font-size: 0.875rem; color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
}
.week-disclaimer strong { color: var(--accent-amber); }

/* ── About Page ── */
.about-section {
  display: flex; align-items: center; gap: 3rem;
}
.about-section--reverse { flex-direction: row-reverse; }
.about-section__img {
  flex-shrink: 0; width: 400px; height: 320px;
  border-radius: 20px; overflow: hidden;
}
.about-section__img img { width: 100%; height: 100%; object-fit: cover; }
.about-section__text { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.about-section__title {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
}
.about-section__desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.about-value {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.about-value__icon { width: 36px; height: 36px; color: var(--accent-amber); }
.about-value__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.about-value__desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

/* ── Delivery Page ── */
.delivery-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.delivery-card {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.delivery-card__icon { width: 36px; height: 36px; color: var(--accent-amber); }
.delivery-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.delivery-card__text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }
.delivery-card__text strong { color: var(--text-primary); }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(30,18,10,0.06); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--text-primary);
  background: none; border: none; width: 100%;
  font-family: var(--font-body); text-align: left;
}
.faq-q__icon {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-amber);
  transition: transform 0.3s;
}
.faq-item--open .faq-q__icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item--open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a__text {
  font-size: 0.9375rem; color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Legal Pages (Privacy, Offer) ── */
.legal-content { line-height: 1.7; }
.legal-content h2 {
  font-family: var(--font-display); font-size: 1.375rem;
  font-weight: 700; margin: 2rem 0 0.75rem; color: var(--text-primary);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 0.75rem; color: var(--text-secondary); font-size: 0.9375rem; }
.legal-content ul {
  list-style: disc; padding-left: 1.5rem; margin-bottom: 0.75rem;
}
.legal-content ul li {
  font-size: 0.9375rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 0.375rem;
}
.legal-content strong { color: var(--text-primary); }
.legal-updated {
  font-size: 0.8125rem; color: var(--text-secondary);
  opacity: 0.7; margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* ── Full Catalog (menu page) ── */
.catalog { padding: 4rem 0; }
.catalog__inner { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.catalog__group { margin-bottom: 3rem; }
.catalog__group:last-child { margin-bottom: 0; }
.catalog__group-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
  display: flex; align-items: center; gap: 0.75rem;
}
.catalog__group-icon { width: 28px; height: 28px; flex-shrink: 0; }
.catalog__group-icon--red { color: var(--accent-terracotta); }
.catalog__group-icon--amber { color: var(--accent-amber); }
.catalog__group-icon--green { color: var(--accent-green); }
.catalog__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.catalog__card {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.catalog__card:hover {
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,18,10,0.1);
}
.catalog__card-img { aspect-ratio: 4/3; overflow: hidden; }
.catalog__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.catalog__card:hover .catalog__card-img img { transform: scale(1.05); }
.catalog__card-img--empty {
  display: flex; align-items: center; justify-content: center;
  background: var(--light-warm); aspect-ratio: 4/3;
}
.catalog__card-body { padding: 1rem 1.25rem 1.25rem; }
.catalog__card-name {
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
  margin-bottom: 0.375rem; line-height: 1.3;
}
.catalog__card-desc {
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.catalog__card-meta { display: flex; align-items: center; gap: 0.75rem; }
.catalog__card-price { font-weight: 700; font-size: 1.125rem; color: var(--accent-amber); }
.catalog__card-weight { font-size: 0.8125rem; color: var(--text-secondary); }

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.catalog__card {
  opacity: 0;
  animation: cardFadeIn 0.45s ease forwards;
}
.catalog__card--skeleton {
  pointer-events: none;
  animation: none;
  opacity: 1;
}
.catalog__card--skeleton .catalog__card-img {
  background: linear-gradient(90deg, #f0e4d4 25%, #faf3ea 50%, #f0e4d4 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite ease-in-out;
}
.catalog__card--skeleton .skeleton-line {
  background: linear-gradient(90deg, #f0e4d4 25%, #faf3ea 50%, #f0e4d4 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite ease-in-out;
  border-radius: 6px;
  height: 14px;
}
.catalog__card--skeleton .skeleton-line--title { width: 70%; height: 18px; margin-bottom: 0.5rem; }
.catalog__card--skeleton .skeleton-line--desc { width: 100%; margin-bottom: 0.375rem; }
.catalog__card--skeleton .skeleton-line--price { width: 40%; height: 16px; }

@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .catalog__grid { grid-template-columns: 1fr; gap: 1rem; }
  .catalog__group-title { font-size: 1.25rem; }
}

/* ── Responsive: Small ── */
@media (max-width: 480px) {
  .hero__badge { font-size: 0.75rem; padding: 0.375rem 0.75rem; }
  .section-title { font-size: 1.75rem; }
  .price-card__amount { font-size: 2rem; }
  .trust__inner { padding: 1.25rem 1.5rem; gap: 0.75rem; }
  .trust__item { font-size: 0.8125rem; }
}

/* ── Responsive: sub-pages ── */
@media (max-width: 1024px) {
  .about-section { flex-direction: column; }
  .about-section--reverse { flex-direction: column; }
  .about-section__img { width: 100%; height: 240px; }
  .about-values { grid-template-columns: 1fr; }
  .delivery-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 3rem 0 2rem; }
  .content-section { padding: 3rem 0; }
  .week-tabs { gap: 0.375rem; }
  .week-tab { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
}
