:root {
  --bg: #f4f1ea;
  --surface: #fbfaf6;
  --hero-bg: #efebe1;
  --ink: #23211c;
  --muted: #6f6a5e;
  --support: #57534a;
  --faint: #8a8474;
  --border: #e2ddd0;
  --olive: #5d6b36;
  --olive-hover: #4c5730;
  --olive-wash: #e3e6d5;
  --olive-soft: #edefe1;
  --on-olive: #f7f6f0;
  --amber-bg: #f3e6ce;
  --amber-border: #e5d2a6;
  --amber-ink: #6b531b;
  --footer: #14130e;
  --footer-muted: #a29b8a;
  --footer-line: #2c2a22;
  --footer-dot: #9cad66;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --max: 1240px;
  --pad: max(24px, calc((100vw - var(--max)) / 2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--olive);
  text-decoration: none;
}

a:hover {
  color: var(--olive-hover);
}

::selection {
  background: var(--olive-wash);
}

.dot {
  color: var(--olive);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}

.eyebrow--olive {
  color: var(--olive);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  /* Full-bleed bar; --pad gutters keep content aligned to the 1240px column.
     Do not combine max-width with --pad — on wide viewports padding would shrink the row. */
  width: 100%;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.wordmark-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wordmark-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--olive);
  color: var(--on-olive);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.wordmark--hero {
  font-size: clamp(62px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.wordmark--footer {
  font-size: 28px;
  color: var(--on-olive);
}

.wordmark--footer .dot {
  color: var(--footer-dot);
}

.wordmark--cta {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 28px;
}

.wordmark--cta .dot {
  color: var(--olive);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lang {
  position: relative;
}

.lang__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.lang__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 20px 40px -16px rgba(35, 33, 28, 0.28);
  min-width: 180px;
  max-height: 320px;
  overflow: auto;
}

.lang.is-open .lang__menu {
  display: block;
}

.lang__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 9px;
  padding: 9px 12px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.lang__item:hover,
.lang__item.is-active {
  background: var(--olive-wash);
  color: var(--ink);
  font-weight: 700;
}

.lang__item.is-active::after {
  content: "✓";
  color: var(--olive);
  font-weight: 700;
}

.nav-web {
  font-size: 15px;
  font-weight: 600;
  color: var(--olive);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
}

.hero__blobs {
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__blob--peach {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 35% 35%, #e8c9b0, #d9a98a);
  opacity: 0.5;
  top: -160px;
  right: -120px;
}

.hero__blob--green {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 60% 40%, #d6debb, #9db06e);
  opacity: 0.42;
  bottom: -200px;
  left: -140px;
}

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 76px) clamp(24px, 2vw, 40px) clamp(40px, 5vw, 64px);
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}

.hero__copy {
  flex: 1 1 460px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: heroUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 33px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  color: var(--olive);
  text-wrap: balance;
  max-width: 22ch;
}

.hero__support {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--support);
  margin: 0;
  max-width: 40ch;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: badgeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s both;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-ink);
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: 999px;
  padding: 5px 12px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-badge:hover {
  opacity: 0.85;
}

.store-badge.is-coming-soon {
  cursor: default;
  opacity: 0.85;
}

.store-badge__img {
  display: block;
  height: 40px;
  width: auto;
}

.hero__web {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.hero__web span {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__visual {
  flex: 1 1 300px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  animation: heroPhoto 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__phone-wrap {
  position: relative;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 1023 / 2010;
  margin-bottom: clamp(-32px, -2vw, -12px);
  flex-shrink: 0;
  overflow: hidden;
  filter: drop-shadow(-26px 44px 50px rgba(35, 33, 28, 0.34));
}

.hero__phone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroPhoto {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes badgeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Phone chrome ——— */
.phone {
  position: relative;
  width: 300px;
  background: #1b1a16;
  border-radius: 46px;
  padding: 11px;
  box-shadow: inset 0 0 0 2px #33312a, 0 30px 60px -24px rgba(35, 33, 28, 0.4);
}

.phone--screenshot {
  transform: none;
}

.phone__screen {
  background: var(--surface);
  border-radius: 36px;
  overflow: hidden;
  height: 620px;
}

.phone__screen--dark {
  background: #14130e;
}

.phone__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ——— Sections ——— */
.section {
  width: 100%;
  padding: clamp(64px, 8vw, 112px) var(--pad);
}

.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
  padding: 0;
}

.section--surface > .section__inner {
  width: 100%;
  padding: clamp(64px, 8vw, 112px) var(--pad);
}

.section__inner.section__inner--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.section__head-title {
  max-width: 34ch;
}

.section__head-support {
  font-size: 17px;
  line-height: 1.55;
  color: var(--support);
  max-width: 38ch;
  margin: 0;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
}

.proof-phone {
  display: flex;
  justify-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--olive);
  color: var(--on-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 22px 0 10px;
  color: var(--ink);
}

.step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--support);
  margin: 0;
}

.features {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
}

.feature {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  flex-wrap: wrap;
}

.feature--flip {
  flex-direction: row-reverse;
}

.feature__text {
  flex: 1;
  min-width: 280px;
}

.feature__text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  max-width: 18ch;
}

.feature__text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--support);
  margin: 0;
  max-width: 40ch;
}

.feature__media {
  flex: 1;
  min-width: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.feature__media--import {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.import-mock {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.import-mock__source {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid #e7e1d3;
  border-radius: 14px;
  padding: 14px 15px;
}

.import-mock__thumb {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.import-mock__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.import-mock__sub {
  font-size: 13px;
  color: var(--faint);
}

.import-mock__icon {
  flex-shrink: 0;
  color: var(--olive);
  margin-left: auto;
}

.import-mock__review {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--amber-ink);
}

.import-mock__review b {
  color: #4e3d12;
}

.import-mock__warn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #b4791f;
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.feature__media--collections {
  padding: 24px;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.meal-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid #e7e1d3;
}

.meal-card img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: cover;
}

.meal-card__body {
  padding: 8px 9px 10px;
}

.meal-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.meal-card__meta {
  font-size: 10.5px;
  color: var(--faint);
  margin-top: 4px;
}

.feature__media--cook {
  background: #14130e;
  border-color: #2c2a22;
  padding: 30px;
  color: #f1ede2;
}

.cook-mock__recipe {
  font-size: 14px;
  color: #a29b8a;
  font-weight: 600;
}

.cook-mock__step-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #9cad66;
  margin-top: 6px;
}

.cook-mock__progress {
  height: 6px;
  border-radius: 99px;
  background: #2c2a22;
  margin: 12px 0 22px;
  overflow: hidden;
}

.cook-mock__progress span {
  display: block;
  width: 60%;
  height: 100%;
  background: #9cad66;
  border-radius: 99px;
}

.cook-mock__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 10vw, 84px);
  line-height: 1;
  color: #34322a;
}

.cook-mock__text {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 4px;
  color: var(--bg);
}

.cook-mock__timer {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #201e17;
  border: 1px solid #34322a;
  border-radius: 12px;
  padding: 11px 15px;
}

.cook-mock__timer svg {
  stroke: #d9a54a;
}

.cook-mock__timer span {
  font-size: 18px;
  font-weight: 700;
}

.feature__media--langs {
  padding: 0;
  background: var(--surface);
}

.lang-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid #efebe1;
  font-size: 15px;
  color: var(--ink);
}

.lang-list__row:last-child {
  border-bottom: none;
}

.lang-list__row.is-active {
  background: var(--bg);
}

.lang-list__selected {
  font-size: 14px;
  font-weight: 700;
  color: var(--olive);
  display: none;
}

.lang-list__row.is-active .lang-list__selected {
  display: inline;
}

.lifestyle {
  position: relative;
  min-height: clamp(340px, 46vw, 560px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
}

.lifestyle__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.lifestyle__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(35, 33, 28, 0.62) 0%, rgba(35, 33, 28, 0.34) 38%, rgba(35, 33, 28, 0.04) 70%);
}

.lifestyle__content {
  position: relative;
  width: 100%;
  padding: clamp(40px, 6vw, 72px) var(--pad);
}

.lifestyle__content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--surface);
  max-width: 22ch;
  text-shadow: 0 2px 20px rgba(35, 33, 28, 0.3);
}

.compare-table {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  margin-top: 40px;
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.compare-table__cell {
  padding: 22px 28px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.compare-table__row:last-child .compare-table__cell {
  border-bottom: none;
}

.compare-table__cell + .compare-table__cell {
  border-left: 1px solid var(--border);
}

.compare-table__cell--head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--faint);
  padding-top: 20px;
  padding-bottom: 20px;
}

.compare-table__cell--head-with {
  background: var(--olive-wash);
  color: var(--olive-hover);
}

.compare-table__cell--label {
  font-weight: 700;
  color: var(--ink);
}

.compare-table__cell--old {
  color: var(--faint);
}

.compare-table__cell--new {
  background: var(--olive-soft);
  color: var(--ink);
  font-weight: 500;
}

.compare-check {
  color: var(--olive);
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 720px) {
  .compare-table__row {
    grid-template-columns: 1fr;
  }

  .compare-table__cell + .compare-table__cell {
    border-left: none;
  }

  .compare-table__cell--head:first-child {
    display: none;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--olive-wash);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.faq-item[open] .faq-item__icon {
  background: var(--olive);
  color: var(--on-olive);
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 8px 26px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

.final-cta {
  text-align: center;
  padding: clamp(72px, 9vw, 128px) var(--pad);
  width: 100%;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 auto 20px;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}

.final-cta p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 46ch;
}

.final-cta .store-row {
  justify-content: center;
}

.final-cta .hero__web {
  display: inline-block;
  margin-top: 22px;
}

.site-footer {
  background: var(--footer);
  color: var(--on-olive);
}

.site-footer__inner {
  width: 100%;
  padding: clamp(48px, 6vw, 72px) var(--pad);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer__tagline {
  font-size: 15px;
  color: var(--footer-muted);
  margin: 14px 0 0;
  max-width: 30ch;
  line-height: 1.5;
}

.lang--footer .lang__btn {
  background: #201e17;
  border-color: #34322a;
  color: #f1ede2;
}

.lang--footer .lang__menu {
  top: auto;
  bottom: calc(100% + 8px);
  right: auto;
  left: 0;
  background: #201e17;
  border-color: #34322a;
  box-shadow: 0 -12px 40px -16px rgba(0, 0, 0, 0.5);
}

.lang--footer .lang__item {
  color: #b7b0a0;
}

.lang--footer .lang__item:hover,
.lang--footer .lang__item.is-active {
  background: #2a281f;
  color: #f1ede2;
}

.lang--footer .lang__item.is-active::after {
  color: var(--footer-dot);
}

.site-footer__rule {
  height: 1px;
  background: var(--footer-line);
  margin: 40px 0 20px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--footer-muted);
}

.site-footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: #c9c4b4;
}

.site-footer__links a:hover {
  color: var(--on-olive);
}

@media (max-width: 720px) {
  .hero__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__phone-wrap {
    margin-bottom: 0;
    width: clamp(180px, 52vw, 260px);
  }

  .meal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
