:root {
  --green: #173e31;
  --orange: #bf5b32;
  --cream: #faf7f0;
  --muted: #787c71;
  --line: #e7e6db;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: Alexandria, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.9;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
img {
  display: block;
  max-width: 100%;
}
p {
  color: var(--muted);
  font-weight: 300;
  margin: 14px 0 24px;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
}
h2 {
  font-size: 38px;
  letter-spacing: -1.6px;
}
h2 span {
  color: var(--orange);
}
h3 {
  font-size: 18px;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
.container {
  width: min(1180px, calc(100% - 100px));
  margin-inline: auto;
}
.section {
  padding-block: 92px;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  background: var(--green);
  color: white;
  z-index: 200;
  padding: 12px;
}
.skip-link:focus {
  top: 5px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 94px;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled,
.menu-open {
  background: #faf7f0ed;
  backdrop-filter: blur(18px);
  box-shadow: 0 5px 25px #173e3108;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 25px;
  border-bottom: 1px solid #173e3110;
}
.brand {
  display: block;
  width: 75px;
  height: 78px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 23px;
}
nav a {
  font-size: 11px;
  font-weight: 400;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--orange);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--green);
  color: white;
  padding: 13px 24px;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #24583f;
  transform: translateY(-2px);
}
.button svg {
  width: 18px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 660px;
  gap: 45px;
  padding-block: 30px 55px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px #bf5b320d;
}
.hero h1 {
  font-size: clamp(46px, 4.7vw, 66px);
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1.4;
  position: relative;
}
.hero h1 > span {
  color: var(--orange);
}
.hand-heart {
  width: 48px;
  height: 48px;
  stroke-width: 1.1;
  color: var(--orange);
  margin-right: 22px;
  transform: rotate(-18deg);
}
.hero-copy > p {
  font-size: 14px;
  max-width: 430px;
  line-height: 2.2;
  margin-top: 22px;
}
.store-buttons {
  display: flex;
  gap: 12px;
  margin-top: 29px;
  flex-wrap: wrap;
}
.store {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 10px;
  min-width: 157px;
  padding: 10px 15px;
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 10px;
  color: white;
  text-align: left;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.store:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #173e3120;
}
.store svg {
  width: 31px;
  height: 31px;
}
.store small {
  font-size: 8px;
  display: block;
  font-weight: 300;
  direction: rtl;
  text-align: left;
  line-height: 1.6;
}
.store b {
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 24px;
}
.text-link span {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  text-align: center;
}
.hero-note {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 26px;
  max-width: 370px;
}
.hero-note strong {
  font-size: 12px;
  font-weight: 500;
}
.hero-note small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}
.note-icon {
  width: 40px;
  height: 40px;
  background: #edece2;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.note-icon svg {
  width: 19px;
}
.hero-art {
  position: relative;
  height: 560px;
  direction: ltr;
  transform: translateY(var(--parallax, 0px));
}
.hero-orbit {
  position: absolute;
  width: 465px;
  height: 465px;
  left: 25px;
  top: 70px;
  border-radius: 50%;
  background: #eae9db;
}
.hero-orbit:before {
  content: "";
  position: absolute;
  inset: -26px;
  border: 1px solid #dedfce;
  border-radius: 50%;
}
.phone {
  position: relative;
  filter: drop-shadow(0 18px 17px #173e3126);
  flex-shrink: 0;
}
.phone img {
  width: 100%;
  height: auto;
}
.phone-home img {
  clip-path: inset(2.7% 3% 0.7% 12% round 15%);
}
.phone-product img {
  clip-path: inset(3.9% 5.6% 1.3% 5.5% round 16%);
}
.hero-home {
  position: absolute;
  width: 291px;
  left: 190px;
  top: 6px;
  transform: rotate(8deg);
  z-index: 3;
}
.hero-product {
  position: absolute;
  width: 242px;
  left: 1px;
  top: 105px;
  transform: rotate(-10deg);
  z-index: 2;
}
.photo {
  background-image: url("/landing/assets/sofra-stories.png");
  background-size: 200% 200%;
  background-repeat: no-repeat;
}
.kabsa {
  background-position: 0 0;
}
.leaves {
  background-position: 100% 0;
}
.cook {
  background-position: 0 100%;
}
.family {
  background-position: 100% 100%;
}
.hero-food {
  position: absolute;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  left: -25px;
  top: 9px;
  box-shadow: 0 15px 25px #4d302c20;
  transform: rotate(-12deg);
}
.float-card {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fffdf6ed;
  border: 1px solid #fff;
  padding: 13px 17px;
  border-radius: 13px;
  position: absolute;
  z-index: 5;
  box-shadow: 0 12px 30px #173e3110;
  direction: rtl;
  animation: float 6s ease-in-out infinite;
}
.fresh {
  top: 112px;
  right: -26px;
}
.fresh b {
  font-size: 11px;
  font-weight: 500;
}
.fresh small {
  display: block;
  font-size: 8px;
  color: var(--muted);
}
.orange-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f9e9dd;
  color: var(--orange);
}
.nearby {
  bottom: 38px;
  left: 25px;
  font-size: 11px;
  animation-delay: -3s;
}
.nearby svg {
  color: var(--orange);
  width: 20px;
}
.nearby i {
  width: 6px;
  height: 6px;
  background: #6e906c;
  border-radius: 50%;
  margin-right: 13px;
}
.art-caption {
  position: absolute;
  bottom: 4px;
  right: 33px;
  transform: rotate(-7deg);
  color: var(--orange);
  font-size: 13px;
}
.sparkle {
  position: absolute;
  left: -35px;
  bottom: 126px;
  color: var(--orange);
  font-size: 50px;
  font-weight: 300;
}
.values-strip {
  background: #eeeee4;
  border-block: 1px solid #e8e9dd;
}
.values-strip > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
}
.values-strip span {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.values-strip svg {
  width: 20px;
  color: #6f806a;
}
.values-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #bdbfaa;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
  gap: 30px;
}
.section-heading p {
  max-width: 380px;
  font-size: 12px;
  margin-bottom: 8px;
}
.section-heading .eyebrow,
.center-heading .eyebrow {
  margin-bottom: 12px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  scroll-margin-top: 110px;
}
.benefit {
  padding: 27px 23px 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  position: relative;
  background: #ffffff35;
  transition:
    transform 0.3s,
    background 0.3s;
}
.benefit:hover {
  transform: translateY(-6px);
  background: #fffdf7;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eceee4;
  margin-bottom: 23px;
}
.icon-box svg {
  width: 23px;
}
.benefit:nth-child(even) .icon-box {
  background: #f5e9de;
  color: var(--orange);
}
.benefit h3 {
  font-size: 15px;
}
.benefit p {
  font-size: 11px;
  margin-bottom: 0;
  line-height: 2.1;
}
.card-number {
  position: absolute;
  left: 22px;
  top: 31px;
  color: #bec1b2;
  font-family: Georgia, serif;
  font-size: 14px;
}
.showcase {
  background: #efefe5;
  overflow: hidden;
  position: relative;
}
.center-heading {
  text-align: center;
}
.center-heading p {
  font-size: 12px;
}
.app-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 590px;
  direction: ltr;
  margin-top: 35px;
}
.stage-circle {
  position: absolute;
  width: 640px;
  height: 480px;
  bottom: 15px;
  border-radius: 50% 50% 0 0;
  background: #e3e5d5;
}
.stage-circle:after {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px solid #d9ddcb;
  border-radius: 50% 50% 0 0;
}
.center-phone {
  width: 310px;
  z-index: 3;
  margin-inline: -25px;
  align-self: flex-start;
}
.side-phone {
  width: 235px;
  transform: rotate(-9deg);
}
.side-phone.second {
  transform: rotate(9deg);
}
.stage-label {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fffef9;
  border: 1px solid white;
  border-radius: 11px;
  padding: 13px 19px;
  font-size: 11px;
  z-index: 4;
  box-shadow: 0 8px 30px #173e3109;
  direction: rtl;
}
.stage-label svg {
  color: var(--orange);
  width: 20px;
}
.label-one {
  left: 12%;
  top: 115px;
  transform: rotate(-5deg);
}
.label-two {
  right: 12%;
  bottom: 110px;
  transform: rotate(4deg);
}
.showcase-bottom {
  display: flex;
  justify-content: center;
  gap: 65px;
  font-size: 11px;
  position: relative;
}
.showcase-bottom span:before {
  content: "✓";
  margin-left: 9px;
  color: var(--orange);
}
.food-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}
.food-tile {
  min-height: 350px;
  border-radius: 19px;
  position: relative;
  overflow: hidden;
}
.food-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, #14271be6);
}
.food-tile > div {
  position: absolute;
  bottom: 27px;
  right: 26px;
  left: 20px;
  z-index: 1;
  color: white;
}
.food-tile span {
  font-size: 10px;
  color: #e6dfc9;
}
.food-tile h3 {
  font-size: 21px;
  margin-top: 5px;
}
.food-tile p {
  color: #e2e0d4;
  font-size: 11px;
  margin: 7px 0 0;
}
.food-story {
  border-radius: 19px;
  background: #eaece0;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.food-story > svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
  transform: rotate(-15deg);
  margin-bottom: 18px;
}
.food-story > span {
  font-size: 11px;
  color: var(--muted);
}
.food-story h3 {
  font-size: 26px;
  margin-top: 8px;
}
.food-story p {
  font-size: 12px;
  margin-bottom: 0;
}
.food-story .text-link {
  font-size: 10px;
}
.how {
  padding-top: 15px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  text-align: center;
  position: relative;
  margin-top: 55px;
}
.steps:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 16%;
  left: 16%;
  border-top: 1px dashed #cdd2c0;
}
.steps article {
  position: relative;
}
.step-number {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid #d5daca;
  border-radius: 50%;
  font-size: 20px;
  background: var(--cream);
  margin: 0 auto 25px;
  font-family: Georgia, serif;
  color: var(--orange);
}
.steps article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}
.steps h3 {
  font-size: 20px;
}
.steps p {
  font-size: 12px;
  max-width: 250px;
  margin: 13px auto 0;
}
.cooks-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #efece1;
  border-radius: 24px;
  overflow: hidden;
  direction: ltr;
}
.cook-photo {
  min-height: 540px;
  position: relative;
}
.photo-note {
  position: absolute;
  bottom: 22px;
  right: 22px;
  left: 22px;
  padding: 17px;
  background: #fffdf3e8;
  border: 1px solid #fff6;
  border-radius: 12px;
  text-align: center;
  direction: rtl;
  font-size: 12px;
}
.cooks-copy {
  padding: 54px 48px;
  direction: rtl;
  align-self: center;
}
.cooks-copy h2 {
  font-size: 35px;
}
.cooks-copy p {
  font-size: 12px;
}
.checks {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 11px;
  margin: 27px 0 30px;
}
.checks li:before {
  content: "✓";
  margin-left: 8px;
  color: var(--orange);
}
.sub-note {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 14px;
}
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
  padding-top: 5px;
}
.community h2 {
  font-size: 32px;
}
.community-copy > p {
  font-size: 12px;
  max-width: 440px;
}
.community-photo {
  height: 455px;
  border-radius: 160px 160px 20px 20px;
  position: relative;
}
.community-photo > span {
  position: absolute;
  bottom: 24px;
  right: 25px;
  color: white;
  font-size: 21px;
  line-height: 1.7;
  text-shadow: 0 2px 15px #000;
  background: #173e3170;
  border-radius: 10px;
  padding: 12px 20px;
}
.community-photo svg {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.community-message {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  position: relative;
}
.quote-mark {
  font-size: 70px;
  color: #cfb297;
  font-family: Georgia, serif;
  position: absolute;
  left: 10px;
  top: 0;
  line-height: 1;
}
.community-message h3 {
  font-size: 17px;
}
.community-message p {
  font-size: 12px;
  margin: 10px 0;
}
.story-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  direction: ltr;
  justify-content: flex-end;
}
.story-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid #d6dccc;
  border-radius: 50%;
  background: transparent;
}
.story-controls button:hover {
  background: var(--green);
  color: white;
}
.story-controls span {
  font-size: 10px;
  color: var(--muted);
}
.review-note {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 14px;
}
.download {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--green);
  color: var(--cream);
  border-radius: 26px;
  overflow: hidden;
  padding: 55px 65px 0;
  min-height: 430px;
  position: relative;
  margin-bottom: 75px;
}
.download:before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid #ffffff12;
  border-radius: 50%;
  left: -90px;
  top: 0;
}
.download h2 {
  font-size: 46px;
  line-height: 1.4;
}
.download .eyebrow {
  color: #ddae80;
  margin-bottom: 12px;
}
.download p {
  color: #c5d0c1;
  font-size: 12px;
  max-width: 360px;
}
.download .store {
  background: var(--cream);
  color: var(--green);
  border: 0;
}
.download-copy {
  padding-bottom: 50px;
  z-index: 1;
}
.download-copy > small {
  display: block;
  color: #b9c6b5;
  font-size: 8px;
  margin-top: 15px;
}
.download-art {
  position: relative;
  min-height: 380px;
}
.download-art .phone {
  position: absolute;
  width: 283px;
  left: 0;
  top: 15px;
  transform: rotate(-10deg);
}
.download-art > span {
  position: absolute;
  right: -10px;
  top: 100px;
  transform: rotate(10deg);
  font-size: 19px;
  color: #e7c9a6;
  z-index: 2;
}
footer {
  background: #13382c;
  color: #e3e7d8;
  padding-top: 50px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 45px;
  padding-bottom: 42px;
}
footer .brand {
  background: #f7f2e7;
  border-radius: 13px;
  width: 75px;
  height: 75px;
}
.footer-brand p {
  color: #e1e6d8;
  font-size: 12px;
  margin: 15px 0 3px;
}
.footer-brand small {
  font-size: 9px;
  color: #a3b49f;
}
footer h3 {
  font-size: 12px;
  margin: 12px 0 18px;
}
footer a:not(.brand),
footer button {
  display: block;
  font-size: 10px;
  margin: 8px 0;
  color: #b7c4b0;
}
footer button {
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 2;
}
footer a:hover,
footer button:hover {
  color: white;
}
.socials {
  direction: ltr;
  text-align: right;
}
.socials button {
  margin-left: auto;
}
.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid #ffffff15;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #a3b49f;
}
.footer-bottom svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  color: var(--green);
  padding: 40px;
  width: min(450px, calc(100% - 32px));
  text-align: right;
}
dialog::backdrop {
  background: #102e26a8;
  backdrop-filter: blur(7px);
}
dialog h2 {
  font-size: 23px;
  letter-spacing: -0.7px;
}
dialog p {
  font-size: 13px;
}
.dialog-close {
  position: absolute;
  left: 16px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 28px;
}
.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.will-reveal.visible {
  opacity: 1;
  transform: none;
}
.benefit:nth-child(2),
.steps article:nth-child(2) {
  transition-delay: 0.08s;
}
.benefit:nth-child(3),
.steps article:nth-child(3) {
  transition-delay: 0.16s;
}
@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}
@media (min-width: 1450px) {
  .hero {
    min-height: 730px;
  }
  .hero-art {
    scale: 1.06;
  }
  .hero h1 {
    font-size: 70px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  nav {
    gap: 13px;
  }
  nav a {
    font-size: 10px;
  }
  .hero {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-art {
    scale: 0.87;
    transform-origin: center;
  }
  .hero-home {
    left: 145px;
  }
  .hero-product {
    left: -20px;
  }
  .fresh {
    right: -50px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-copy > p {
    font-size: 12px;
  }
  .hero .store {
    min-width: 142px;
  }
  .cooks-copy {
    padding: 35px 30px;
  }
  .cooks-copy h2 {
    font-size: 30px;
  }
  .community {
    gap: 45px;
  }
  .section {
    padding-block: 70px;
  }
  .download {
    padding-inline: 40px;
  }
}
@media (max-width: 850px) {
  nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--green);
  }
  .nav-download {
    margin-right: auto;
  }
  .menu-open nav {
    display: flex;
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    flex-direction: column;
    box-shadow: 0 20px 30px #173e3112;
    gap: 7px;
  }
  .menu-open nav a {
    width: 100%;
    font-size: 13px;
    padding: 7px;
  }
  .nav {
    height: 80px;
  }
  .hero {
    gap: 0;
  }
  .hero-art {
    scale: 0.72;
    transform-origin: left center;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-copy {
    z-index: 6;
  }
  .hero-note {
    margin-top: 22px;
  }
  .hero .store {
    min-width: 135px;
    padding: 8px 12px;
  }
  .hero .store b {
    font-size: 16px;
  }
  .hero .store-buttons {
    gap: 7px;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-strip span {
    font-size: 10px;
    gap: 7px;
  }
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .food-story {
    grid-column: span 2;
    display: block;
    padding: 25px 30px;
    position: relative;
  }
  .food-story > svg {
    float: left;
  }
  .food-story p {
    display: none;
  }
  .food-story .text-link {
    position: absolute;
    left: 30px;
    bottom: 24px;
  }
  .cooks-panel {
    grid-template-columns: 1fr 1fr;
  }
  .cook-photo {
    min-height: 480px;
  }
  .checks {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .community h2 {
    font-size: 26px;
  }
  .community-photo {
    height: 410px;
  }
  .download h2 {
    font-size: 36px;
  }
  .download-art .phone {
    left: -45px;
  }
  .download-art > span {
    display: none;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .section-heading p {
    max-width: 300px;
  }
  .footer-main {
    gap: 20px;
  }
  .app-stage {
    scale: 0.9;
    margin-block: 0 -30px;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav-inner {
    gap: 14px;
  }
  .brand,
  .brand img {
    width: 64px;
    height: 64px;
  }
  .nav-download {
    font-size: 10px;
    padding: 10px 16px;
    gap: 12px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 25px;
    gap: 0;
  }
  .hero-copy {
    width: 100%;
    text-align: center;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2.5px;
    line-height: 1.4;
  }
  .hand-heart {
    width: 33px;
    height: 33px;
    margin-right: 14px;
  }
  .hero-copy > p {
    font-size: 12px;
    line-height: 2.1;
    max-width: 330px;
    margin: 19px auto;
  }
  .store-buttons {
    justify-content: center;
  }
  .hero .store {
    min-width: 143px;
    padding: 10px 13px;
  }
  .hero .store b {
    font-size: 18px;
  }
  .hero .text-link {
    margin-top: 18px;
  }
  .hero-note {
    display: none;
  }
  .hero-art {
    width: 340px;
    height: 410px;
    scale: 1;
    transform: none !important;
    margin-top: 24px;
  }
  .hero-orbit {
    width: 285px;
    height: 285px;
    left: 20px;
    top: 67px;
  }
  .hero-orbit:before {
    inset: -15px;
  }
  .hero-home {
    width: 205px;
    left: 122px;
    top: 3px;
  }
  .hero-product {
    width: 175px;
    left: 4px;
    top: 74px;
  }
  .hero-food {
    width: 98px;
    height: 98px;
    left: 7px;
    top: 7px;
  }
  .float-card {
    padding: 9px 11px;
    border-radius: 10px;
    gap: 7px;
  }
  .fresh {
    right: -2px;
    top: 100px;
  }
  .fresh b {
    font-size: 8px;
  }
  .fresh small {
    font-size: 6px;
  }
  .orange-icon {
    width: 26px;
    height: 26px;
  }
  .orange-icon svg {
    width: 16px;
  }
  .nearby {
    bottom: 20px;
    left: 3px;
    font-size: 8px;
  }
  .nearby svg {
    width: 15px;
  }
  .nearby i {
    margin-right: 0;
  }
  .art-caption {
    font-size: 9px;
    right: 10px;
    bottom: 0;
  }
  .sparkle {
    font-size: 34px;
    left: 0;
    bottom: 85px;
  }
  .values-strip > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    padding-block: 22px;
  }
  .values-strip i {
    display: none;
  }
  .values-strip span {
    justify-content: center;
    font-size: 9px;
  }
  .values-strip svg {
    width: 18px;
  }
  .section {
    padding-block: 52px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2,
  h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .section-heading p {
    font-size: 11px;
    max-width: 330px;
    margin-top: 12px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .benefits {
    gap: 11px;
  }
  .benefit {
    padding: 21px 16px;
  }
  .benefit h3 {
    font-size: 12px;
  }
  .benefit p {
    font-size: 10px;
    line-height: 2;
  }
  .icon-box {
    width: 38px;
    height: 38px;
    margin-bottom: 17px;
  }
  .card-number {
    left: 15px;
    top: 25px;
    font-size: 12px;
  }
  .center-heading p {
    font-size: 11px;
    max-width: 290px;
    margin: 15px auto;
  }
  .app-stage {
    height: 380px;
    scale: 1;
    width: 100%;
    margin: 25px auto 0;
    gap: 0;
  }
  .center-phone {
    width: 204px;
    margin-inline: -42px;
  }
  .side-phone {
    width: 142px;
    margin-top: 25px;
  }
  .stage-circle {
    width: 300px;
    height: 280px;
    bottom: 10px;
  }
  .stage-circle:after {
    inset: -12px;
  }
  .stage-label {
    padding: 8px 10px;
    font-size: 8px;
    gap: 6px;
  }
  .stage-label svg {
    width: 14px;
  }
  .label-one {
    left: -5px;
    top: 90px;
  }
  .label-two {
    right: -5px;
    bottom: 45px;
  }
  .showcase-bottom {
    gap: 15px;
    font-size: 7px;
    white-space: nowrap;
  }
  .showcase-bottom span:before {
    margin-left: 4px;
  }
  .food-grid {
    gap: 12px;
  }
  .food-tile {
    min-height: 260px;
    border-radius: 14px;
  }
  .food-tile.large {
    grid-column: span 2;
    min-height: 310px;
  }
  .food-tile > div {
    right: 18px;
    bottom: 20px;
    left: 10px;
  }
  .food-tile h3 {
    font-size: 17px;
  }
  .food-story {
    grid-column: auto;
    display: flex;
    padding: 20px;
    justify-content: center;
  }
  .food-story > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
  }
  .food-story h3 {
    font-size: 21px;
  }
  .food-story > span {
    font-size: 9px;
  }
  .food-story .text-link {
    position: static;
    font-size: 8px;
    margin-top: 18px;
    gap: 8px;
  }
  .food-story .text-link svg {
    width: 16px;
  }
  .how {
    padding-top: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: right;
    margin-top: 30px;
  }
  .steps:before {
    top: 20px;
    right: 27px;
    bottom: 30px;
    left: auto;
    border-top: 0;
    border-right: 1px dashed #cdd2c0;
  }
  .steps article {
    padding-right: 84px;
    min-height: 90px;
  }
  .step-number {
    position: absolute;
    right: 0;
    top: 0;
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
  .steps article > svg {
    display: none;
  }
  .steps h3 {
    font-size: 18px;
  }
  .steps p {
    font-size: 11px;
    margin: 9px 0 0;
    max-width: none;
  }
  .cooks-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .cook-photo {
    min-height: 320px;
  }
  .cooks-copy {
    padding: 30px 25px;
  }
  .cooks-copy h2 {
    font-size: 31px;
  }
  .checks {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    font-size: 10px;
  }
  .community {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    padding-top: 10px;
  }
  .community-photo {
    width: 100%;
    height: 330px;
    border-radius: 100px 100px 18px 18px;
  }
  .community-copy {
    width: 100%;
  }
  .community h2 {
    font-size: 28px;
  }
  .community-photo > span {
    font-size: 17px;
  }
  .download {
    padding: 35px 25px 0;
    display: block;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 45px;
  }
  .download h2 {
    font-size: 37px;
  }
  .download p {
    font-size: 11px;
  }
  .download .store {
    min-width: 135px;
    padding: 9px 10px;
    gap: 8px;
  }
  .download .store b {
    font-size: 16px;
  }
  .download .store svg {
    width: 25px;
  }
  .download-copy {
    padding-bottom: 0;
  }
  .download-art {
    min-height: 270px;
    margin-top: 22px;
  }
  .download-art .phone {
    width: 230px;
    left: calc(50% - 115px);
    top: 0;
  }
  .download-copy > small {
    font-size: 7px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    padding-bottom: 30px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-brand .brand {
    float: right;
    margin-left: 18px;
  }
  .footer-brand p {
    padding-top: 10px;
  }
  footer h3 {
    font-size: 11px;
  }
  footer button,
  footer a:not(.brand) {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 15px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
  .socials {
    text-align: right;
    direction: rtl;
  }
  .socials button {
    margin-left: 0;
  }
  .review-note {
    font-size: 8px;
  }
  dialog {
    padding: 32px 25px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-art {
    scale: 0.9;
    margin-block: 0 -25px;
  }
  .store-buttons {
    gap: 7px;
  }
  .hero .store {
    min-width: 132px;
  }
  .showcase-bottom {
    font-size: 6px;
    gap: 8px;
  }
  .nav-download {
    padding-inline: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .will-reveal {
    opacity: 1;
    transform: none;
  }
  .hero-art {
    transform: none !important;
  }
}
/* Keep rotated decorative phone frames inside the page's scrolling surface. */
body {
  overflow-x: clip;
}
@media (max-width: 620px) {
  .hero-art {
    max-width: 100%;
  }
}
html {
  overflow-x: hidden;
}
main {
  overflow: clip;
}

/* Egyptian home cooking visual */
.egyptian-food { background-image: url('/landing/assets/egyptian-molokhia.png'); background-size: cover; background-position: center; }
