:root {
  --bg: #f8edef;
  --surface: #ffffff;
  --surface-soft: #f2f2f2;
  --ink: #2d1418;
  --ink-soft: #6f5257;
  --brand: #ff2d2d;
  --brand-dark: #e01f1f;
  --accent: #7a43a7;
  --cta-dark: #381018;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 22px 45px rgba(71, 20, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

.fudy-landing {
  overflow-x: clip;
}

.shell {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.section-space {
  padding-block: 4.8rem;
}

.fudy-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 237, 239, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(108, 84, 86, 0.12);
}

.fudy-header .shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.5rem;
  display: block;
  object-fit: contain;
  background: #ff1f24;
  box-shadow: 0 3px 9px rgba(255, 45, 45, 0.2);
}

.brand-name {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.01em;
}

.fudy-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
  color: #543f43;
}

.fudy-nav a {
  transition: color 0.25s ease;
}

.fudy-nav a:hover,
.fudy-nav a.is-active {
  color: var(--brand);
}

.header-actions {
  display: flex;
  gap: 0.6rem;
}

.btn-pill {
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 600;
  font-size: 0.87rem;
}

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #f4452f 100%);
  box-shadow: 0 10px 24px rgba(255, 45, 45, 0.26);
}

.btn-soft {
  background: #ece8e9;
  color: #7f6b70;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  background: rgba(255, 45, 45, 0.12);
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
}

.hero-copy h1 > span {
  display: block;
  color: var(--ink);
}

.hero-copy h1:not(span) {
  color: var(--brand);
}

.hero-copy p {
  max-width: 38ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  border-radius: 0.78rem;
  padding: 0.56rem 0.9rem;
  min-width: 168px;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f9f9f9;
  background: #171717;
}

.store-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.store-copy {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}

.store-copy small {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.store-btn strong {
  font-size: 0.9rem;
  line-height: 1.1;
  letter-spacing: normal;
  font-weight: 600;
}

.store-btn.light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(29, 16, 16, 0.16);
}

.store-btn.light .store-icon {
  filter: none;
}

.search-card {
  margin-top: 1.7rem;
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  max-width: 520px;
}

.pin {
  color: var(--brand);
  margin-left: 0.6rem;
  font-size: 0.9rem;
}

.search-card input {
  border: none;
  outline: none;
  font-size: 0.96rem;
  color: #7a5e62;
  background: transparent;
  font-family: "Outfit", "Segoe UI", sans-serif;
}

.search-card button {
  border: none;
  border-radius: 0.82rem;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
}

.hero-visual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.food-showcase {
  position: relative;
  width: min(500px, 92%);
  aspect-ratio: 1.08;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: 1.8rem;
  background: linear-gradient(150deg, #ffffff 0%, #f2efef 100%);
  box-shadow: var(--shadow);
  transform: rotate(0deg);
}

.hero-main-logo {
  width: min(380px, 88%);
  max-height: 88%;
  height: auto;
  object-fit: contain;
}

.hero-food-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plate {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 14%;
  top: 25%;
  background: radial-gradient(circle at 30% 30%, #fdfff4 0%, #c8d8d8 60%, #8aa2a2 100%);
  box-shadow: inset 0 -12px 35px rgba(37, 77, 77, 0.22);
}

.food {
  position: absolute;
}

.food.tomato {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #ff6d4d 0%, #d62525 80%);
  top: 27%;
  left: 26%;
}

.food.leaf {
  width: 92px;
  height: 72px;
  border-radius: 90% 10% 90% 10%;
  background: linear-gradient(145deg, #43c461 0%, #1f6e2e 100%);
  top: 39%;
  left: 42%;
  transform: rotate(-18deg);
}

.food.burger {
  width: 160px;
  height: 80px;
  border-radius: 44px;
  background:
    linear-gradient(#f7c06c 0 21%, transparent 21% 29%, #91b43f 29% 42%, transparent 42% 53%, #954f23 53% 68%, transparent 68% 79%, #f5bd69 79% 100%);
  left: 30%;
  top: 58%;
  box-shadow: 0 12px 16px rgba(8, 22, 25, 0.24);
}

.food.toast {
  width: 90px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffe9b9 0%, #d79e4f 100%);
  left: 18%;
  top: 60%;
  transform: rotate(-12deg);
}

.food.sauce {
  width: 58px;
  height: 58px;
  border-radius: 30% 70% 56% 44%;
  background: linear-gradient(145deg, #ffc15a 0%, #e48a2f 100%);
  right: 15%;
  top: 20%;
  transform: rotate(-20deg);
}

.eta-pill {
  position: absolute;
  left: 4%;
  bottom: 13%;
  background: #fff;
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  padding: 0.72rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
}

.eta-pill .dot {
  color: #30c86e;
}

.eta-pill small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a767a;
  font-size: 0.6rem;
}

.eta-pill strong {
  font-size: 1rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.partners {
  background: var(--surface-soft);
}

.partners h2,
.section-head h2,
.benefits h2,
.cta-app h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.partners h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.partners p {
  margin: 0.45rem auto 2rem;
  color: var(--ink-soft);
  text-align: center;
}

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

.partner-grid > span {
  border-radius: 0.7rem;
  border: 1px solid #d8d1d2;
  background: linear-gradient(145deg, #fafafa, #d8d8d8);
  color: #7d7d7d;
  min-height: 54px;
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.partner-item {
  border-radius: 0.7rem;
  border: 1px solid #e4d9d9;
  background: #fff;
  min-height: 168px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  box-shadow: 0 9px 20px rgba(112, 29, 29, 0.08);
}

.partner-item img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.partner-item span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.45rem;
  color: #ffffff;
  background: linear-gradient(120deg, #ff6b1a 0%, #ff2d2d 100%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(95, 23, 19, 0.35);
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-head p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.section-head a {
  color: var(--brand);
  font-weight: 600;
}

.category-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.category-grid article {
  background: var(--surface);
  border-radius: 1.25rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(58, 26, 31, 0.07);
}

.thumb {
  width: min(168px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  border: 5px solid #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.thumb-photo {
  object-fit: cover;
  display: block;
  background: #eee;
}

.thumb.pizza {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35) 0 13%, transparent 14% 100%),
    conic-gradient(from 40deg, #de6f1e 0 25%, #f4be47 25% 50%, #de6f1e 50% 75%, #f4be47 75% 100%);
}

.thumb.burger {
  background:
    linear-gradient(#f6bc67 0 22%, transparent 22% 31%, #71a546 31% 43%, transparent 43% 56%, #8c4d23 56% 70%, transparent 70% 80%, #f4bc66 80% 100%),
    #212121;
}

.thumb.sushi {
  background:
    radial-gradient(circle at 30% 50%, #f3f3f3 0 13%, transparent 14%),
    radial-gradient(circle at 50% 50%, #f3f3f3 0 13%, transparent 14%),
    radial-gradient(circle at 70% 50%, #f3f3f3 0 13%, transparent 14%),
    linear-gradient(135deg, #050505 0%, #272727 100%);
}

.category-grid h3 {
  margin: 0;
  font-size: 1.05rem;
}

.benefits-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.benefit-card {
  border-radius: 1.15rem;
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.card-main {
  min-height: 290px;
  background:
    radial-gradient(circle at 80% 96%, rgba(255, 142, 142, 0.18), transparent 44%),
    linear-gradient(135deg, #ff2424 0%, #ff3939 100%);
}

.card-main::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 14px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  right: -62px;
  bottom: -90px;
}

.card-side {
  min-height: 290px;
  background: linear-gradient(155deg, #7f4ab2 0%, #6a3e95 100%);
}

.icon-box {
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  margin: 1rem 0 0.7rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.benefit-card p {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.86);
}

.progress-pill {
  margin-top: 1.45rem;
  display: inline-flex;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.43rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
}

.cta-app {
  color: #fff;
  background:
    linear-gradient(118deg, rgba(117, 17, 38, 0.84) 0%, rgba(66, 12, 22, 0.95) 55%),
    radial-gradient(circle at 85% 16%, rgba(255, 58, 58, 0.25), transparent 45%),
    var(--cta-dark);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 1rem;
}

.cta-app h2 {
  font-size: clamp(1.9rem, 4.1vw, 3.25rem);
  line-height: 1.08;
}

.cta-app h2 span {
  color: var(--brand);
}

.cta-app p {
  margin: 1rem 0 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.78);
}

.phone-stack {
  min-height: 520px;
  position: relative;
}

.phone-mockup {
  width: 220px;
  height: 452px;
  border-radius: 2.1rem;
  border: 3px solid #101010;
  background: #0f0f10;
  position: absolute;
  box-shadow: 0 18px 30px rgba(8, 8, 8, 0.34);
  padding: 0.55rem;
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 17px;
  border-radius: 0 0 0.85rem 0.85rem;
  background: #101010;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  object-fit: cover;
  background: #ececef;
}

.phone-one {
  left: -2%;
  top: 58px;
  transform: rotate(-8deg);
  z-index: 1;
}

.phone-two {
  left: 27%;
  top: 8px;
  transform: rotate(-1deg);
  z-index: 3;
}

.phone-three {
  left: 56%;
  top: 62px;
  transform: rotate(8deg);
  z-index: 2;
}

.landing-footer {
  background: #efefef;
  padding-block: 3.6rem 1.7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-grid p {
  margin: 1rem 0 0;
  color: #6f6f6f;
  max-width: 30ch;
}

.footer-grid h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
}

.footer-grid a {
  display: block;
  margin-top: 0.6rem;
  color: #6b6566;
  font-size: 0.94rem;
}

.footer-copy {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #d4d1d1;
  color: #898989;
  font-size: 0.88rem;
}

.floating-app-btn {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 40;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(255, 45, 45, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise-in 0.78s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partner-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.partner-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(112, 29, 29, 0.14);
}

.restaurant-menu-page {
  --restaurant-brand: #ff3b30;
}

.restaurant-menu-hero {
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 39%),
    linear-gradient(135deg, color-mix(in srgb, var(--restaurant-brand), #ffffff 76%) 0%, #fdf6f7 100%);
  border-bottom: 1px solid rgba(117, 68, 72, 0.18);
}

.restaurant-menu-back {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #67232b;
  font-weight: 600;
}

.restaurant-mobile-banner-top {
  display: block;
  width: 100%;
  height: clamp(220px, 32vw, 320px);
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 12px 24px rgba(45, 20, 24, 0.18);
}

.restaurant-mobile-banner-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-menu-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(116, 66, 64, 0.15);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(117, 48, 54, 0.12);
}

.restaurant-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.restaurant-city {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7d4f57;
}

.restaurant-identity h1 {
  margin: 0.25rem 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.restaurant-address,
.restaurant-phone {
  margin: 0.25rem 0 0;
  color: #68484d;
}

.restaurant-readonly-card {
  display: grid;
  justify-items: start;
  gap: 0.6rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px dashed color-mix(in srgb, var(--restaurant-brand), #000000 18%);
  padding: 1rem;
}

.restaurant-readonly-logo {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  object-fit: contain;
  background: #ff1f24;
  box-shadow: 0 5px 13px rgba(255, 45, 45, 0.24);
}

.restaurant-readonly-card h2 {
  margin: 0;
  font-size: 1.1rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.restaurant-readonly-card p {
  margin: 0;
  color: #6c5156;
}

.restaurant-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--restaurant-brand) 0%, #f4452f 100%);
  box-shadow: 0 10px 24px rgba(255, 45, 45, 0.24);
}

.restaurant-mobile-order-btn {
  display: none;
}

@keyframes mobile-order-drop-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.restaurant-facts {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.restaurant-facts span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: #fff;
  border: 1px solid rgba(122, 61, 60, 0.22);
  font-size: 0.8rem;
  font-weight: 600;
  color: #60353b;
}

.restaurant-facts .fact-warning {
  border-color: rgba(175, 17, 17, 0.28);
  color: #a31212;
}

.restaurant-closure-note {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #77252c;
}

.restaurant-category-nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.restaurant-category-nav a {
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: #fff;
  background: color-mix(in srgb, var(--restaurant-brand), #000000 12%);
  font-size: 0.82rem;
  font-weight: 600;
}

.restaurant-category-sticky {
  position: fixed;
  inset-inline: 0;
  top: 0.72rem;
  z-index: 54;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.restaurant-category-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.restaurant-category-nav--sticky {
  margin-top: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.42rem;
  padding: 0.44rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 76, 78, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(51, 20, 24, 0.16);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.restaurant-category-nav--sticky::-webkit-scrollbar {
  display: none;
}

.restaurant-category-nav--sticky a {
  white-space: nowrap;
  color: #5f3840;
  background: #fff;
  border: 1px solid rgba(129, 80, 81, 0.18);
}

.restaurant-category-nav--sticky a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--restaurant-brand) 0%, #f4452f 100%);
  border-color: transparent;
}

.restaurant-menu-list {
  background: #fffafb;
}

.restaurant-empty {
  background: #fff;
  border: 1px solid rgba(122, 69, 68, 0.2);
  border-radius: 1rem;
  padding: 1.2rem;
}

.restaurant-empty h2 {
  margin: 0 0 0.4rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.restaurant-empty p {
  margin: 0;
  color: #70555a;
}

.restaurant-category-block + .restaurant-category-block {
  margin-top: 2rem;
}

.restaurant-category-block header h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.restaurant-category-block header p {
  margin: 0.3rem 0 0;
  color: #6f5458;
}

.restaurant-products-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.restaurant-product-card {
  border: 1px solid rgba(123, 74, 75, 0.2);
  background: #fff;
  border-radius: 0.9rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.restaurant-product-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.restaurant-product-copy {
  padding: 0.85rem 0.9rem 0.6rem;
}

.restaurant-product-copy h3 {
  margin: 0;
  font-size: 1rem;
}

.restaurant-product-copy p {
  margin: 0.38rem 0 0;
  color: #6a4e53;
  font-size: 0.9rem;
}

.restaurant-product-card strong {
  margin: 0.2rem 0.9rem 0.85rem;
  color: color-mix(in srgb, var(--restaurant-brand), #3f0f13 25%);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .hero,
  .cta-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

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

  .phone-stack {
    min-height: 490px;
  }

  .phone-mockup {
    width: 206px;
    height: 422px;
  }

  .phone-one {
    left: 4%;
  }

  .phone-two {
    left: 29%;
  }

  .phone-three {
    left: 54%;
  }

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

  .restaurant-menu-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .fudy-nav {
    display: none;
  }

  .section-space {
    padding-block: 3.3rem;
  }

  .search-card {
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .pin {
    display: none;
  }

  .search-card button {
    width: 100%;
  }

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

  .category-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-identity {
    align-items: start;
  }

  .restaurant-menu-hero.section-space {
    padding-block: 0 1.2rem;
    background: #fff;
    border-bottom: none;
  }

  .restaurant-menu-hero .shell {
    position: relative;
  }

  .restaurant-mobile-banner-top {
    display: block;
    width: 100vw;
    height: 232px;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    border-bottom-left-radius: 1.3rem;
    border-bottom-right-radius: 1.3rem;
    box-shadow: 0 10px 20px rgba(45, 20, 24, 0.18);
  }

  .restaurant-mobile-banner-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .restaurant-menu-back {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
    left: 0.95rem;
    z-index: 7;
    margin: 0;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #4a2328;
    box-shadow: 0 8px 16px rgba(31, 16, 18, 0.16);
  }

  .restaurant-menu-head {
    margin-top: -1.6rem;
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 1.15rem;
  }

  .restaurant-category-sticky {
    top: calc(env(safe-area-inset-top, 0px) + 3.35rem);
  }

  .restaurant-category-nav--sticky {
    border-radius: 0.9rem;
    padding: 0.36rem;
  }

  .restaurant-readonly-card {
    display: none;
  }

  .restaurant-menu-list {
    padding-bottom: 6.4rem;
  }

  .restaurant-mobile-order-btn {
    position: fixed;
    right: 0.95rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.95rem);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--restaurant-brand) 0%, #f4452f 100%);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(255, 45, 45, 0.34);
    animation: mobile-order-drop-in 0.28s ease-out;
  }

  .restaurant-mobile-order-btn img {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 0.36rem;
    object-fit: contain;
    background: #ff1f24;
  }
}

@media (max-width: 640px) {
  .header-actions {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 10vw, 2.3rem);
  }

  .partners p,
  .section-head p,
  .cta-app p {
    font-size: 0.95rem;
  }

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

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

  .benefit-card {
    padding: 1.4rem;
  }

  .phone-stack {
    min-height: 460px;
  }

  .phone-mockup {
    width: 182px;
    height: 376px;
  }

  .phone-one {
    left: -3%;
    top: 72px;
  }

  .phone-two {
    left: 22%;
  }

  .phone-three {
    left: 47%;
    top: 74px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-identity {
    flex-direction: column;
  }

  .restaurant-products-grid {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  background: radial-gradient(circle at 8% 10%, #fbeff1 0%, transparent 42%), var(--bg);
  min-height: 100vh;
}

.legal-shell {
  width: min(980px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.legal-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.legal-head h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.4rem);
  color: #2f1116;
}

.legal-head p {
  margin: 0.8rem 0 0;
  color: #624a4f;
  max-width: 76ch;
}

.legal-meta {
  margin-top: 1rem;
  color: #7a5d62;
  font-size: 0.9rem;
}

.legal-section {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid #f0e6e8;
}

.legal-section h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: #3a171d;
}

.legal-section p {
  margin: 0.65rem 0 0;
  color: #5f484d;
}

.legal-section ul {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  color: #5f484d;
}

.legal-section li + li {
  margin-top: 0.45rem;
}

.legal-section a {
  color: #b0162a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 820px) {
  .legal-card {
    border-radius: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
