:root {
  --navy: #173a5c;
  --navy-deep: #0f2c46;
  --navy-soft: #dce9ef;
  --orange: #e98524;
  --orange-deep: #c96712;
  --sun: #f4bd3f;
  --green: #8fb848;
  --green-deep: #6d942e;
  --cream: #fbf8ef;
  --paper: #f6f5ef;
  --white: #fffef9;
  --blue-pale: #eaf3f6;
  --olive-pale: #eef1df;
  --orange-pale: #fff0df;
  --ink: #17324a;
  --muted: #60707a;
  --border: rgba(23, 58, 92, 0.14);
  --border-strong: rgba(23, 58, 92, 0.24);
  --shadow-sm: 0 12px 32px rgba(20, 54, 83, 0.08);
  --shadow-lg: 0 28px 80px rgba(20, 54, 83, 0.15);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(244, 189, 63, 0.14), transparent 25rem),
    radial-gradient(circle at 92% 12%, rgba(143, 184, 72, 0.11), transparent 25rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  font-weight: 850;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: white;
  background: var(--navy-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(233, 133, 36, 0.58);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 58, 92, 0.1);
  background: rgba(248, 247, 241, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(23, 58, 92, 0.1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #385166;
  font-size: 0.94rem;
  font-weight: 720;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
  background: rgba(23, 58, 92, 0.07);
}

.nav-cta {
  margin-left: 0.45rem;
  padding-inline: 1.15rem;
  color: white;
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(23, 58, 92, 0.18);
}

.nav-cta:hover {
  color: white;
  background: var(--navy-deep);
}

.nav-cta svg,
.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
}

.hero {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 1.45rem;
  color: #526775;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.launch-note {
  display: flex;
  max-width: 640px;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 1.65rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(233, 133, 36, 0.22);
  border-radius: var(--radius-sm);
  background: var(--orange-pale);
}

.launch-note svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-top: 0.08rem;
  color: var(--orange-deep);
}

.launch-note p {
  margin: 0;
  color: #76502c;
  font-size: 0.94rem;
  line-height: 1.55;
}

.store-badges {
  display: flex;
  min-height: 60px;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  margin-bottom: 1rem;
}

.store-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.app-store-badge,
.google-play-badge {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(23, 58, 92, 0.28);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--orange-deep);
  text-decoration-color: currentColor;
}

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

.shape {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
}

.shape-one {
  width: 540px;
  height: 540px;
  background: linear-gradient(145deg, var(--blue-pale), #f2f5e8);
  box-shadow: inset 0 0 0 1px rgba(23, 58, 92, 0.05);
}

.shape-two {
  right: 4%;
  bottom: 4%;
  width: 165px;
  height: 165px;
  background: rgba(244, 189, 63, 0.26);
  filter: blur(1px);
}

.app-preview {
  position: relative;
  width: min(100%, 390px);
  min-height: 610px;
  padding: 1.25rem;
  border: 7px solid var(--navy);
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.preview-brand img {
  border-radius: 50%;
}

.preview-brand div {
  display: grid;
}

.preview-brand strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.preview-brand span {
  color: #77858d;
  font-size: 0.71rem;
}

.preview-pin {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-pale);
}

.preview-pin svg {
  width: 19px;
  height: 19px;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.day-tab {
  padding: 0.5rem 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #74828b;
  font-size: 0.7rem;
  font-weight: 750;
  text-align: center;
}

.day-tab.is-selected {
  border-color: var(--orange);
  color: white;
  background: var(--orange);
}

.preview-caption {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lunch-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  padding: 0.85rem;
  border: 1px solid rgba(23, 58, 92, 0.1);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 58, 92, 0.055);
}

.restaurant-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: white;
  font-size: 0.87rem;
  font-weight: 850;
}

.mark-orange { background: linear-gradient(145deg, var(--sun), var(--orange)); }
.mark-blue { background: linear-gradient(145deg, #2f638b, var(--navy)); }
.mark-green { background: linear-gradient(145deg, #a9cc60, var(--green-deep)); }

.lunch-card-copy {
  min-width: 0;
  flex: 1;
}

.restaurant-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.restaurant-row strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.restaurant-row span {
  flex: 0 0 auto;
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 850;
}

.lunch-card p {
  margin: 0.2rem 0 0.15rem;
  color: #60717b;
  font-size: 0.7rem;
  line-height: 1.45;
}

.lunch-card small {
  color: #93a0a7;
  font-size: 0.63rem;
}

.preview-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(23, 58, 92, 0.09);
}

.preview-footer span {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  color: #7b8991;
  font-size: 0.62rem;
  font-weight: 720;
}

.preview-footer span:first-child {
  color: var(--orange-deep);
}

.preview-footer svg {
  width: 18px;
  height: 18px;
}

.illustration-note {
  display: block;
  margin-top: 0.65rem;
  color: #9aa5aa;
  font-size: 0.58rem;
  text-align: center;
}

.floating-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(23, 58, 92, 0.09);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 254, 249, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  font-weight: 800;
}

.floating-label-one {
  top: 14%;
  left: -1%;
}

.floating-label-two {
  right: -1%;
  bottom: 21%;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-green { background: var(--green); }
.dot-orange { background: var(--orange); }

.feature-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

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

.feature-card {
  min-height: 260px;
  padding: 1.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 36px rgba(23, 58, 92, 0.045);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 2.4rem;
  place-items: center;
  border-radius: 16px;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.icon-orange { color: var(--orange-deep); background: var(--orange-pale); }
.icon-blue { color: var(--navy); background: var(--blue-pale); }
.icon-green { color: var(--green-deep); background: var(--olive-pale); }
.icon-sun { color: #a86606; background: #fff5cf; }

.steps-section {
  padding: 7rem 0;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 189, 63, 0.2), transparent 22rem),
    linear-gradient(140deg, var(--navy-deep), var(--navy));
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.steps-intro h2 {
  max-width: 10ch;
  color: white;
}

.steps-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow-on-dark,
.steps-section .eyebrow {
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-light {
  margin-top: 1rem;
  color: var(--navy);
  background: white;
}

.button-light:hover {
  color: var(--navy-deep);
  background: var(--cream);
}

.button-orange {
  color: white;
  background: var(--orange);
}

.button-orange:hover {
  background: var(--orange-deep);
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.steps-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.step-number {
  color: var(--sun);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.steps-list h3 {
  color: white;
}

.steps-list p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.restaurant-section {
  padding: 6rem 0;
}

.restaurant-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  min-height: 470px;
  align-items: center;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 16% 35%, rgba(244, 189, 63, 0.28), transparent 18rem),
    linear-gradient(135deg, #173b5d, #0f2d48);
  box-shadow: var(--shadow-lg);
}

.restaurant-copy {
  position: relative;
  z-index: 2;
  padding: 4rem 4.5rem 4rem 2rem;
}

.restaurant-copy h2 {
  max-width: 12ch;
  color: white;
}

.restaurant-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
}

.restaurant-illustration {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
}

.plate {
  position: relative;
  display: grid;
  width: 240px;
  height: 240px;
  place-items: center;
  border: 16px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.19), inset 0 0 0 2px rgba(23, 58, 92, 0.16);
}

.plate::before,
.plate::after,
.plate span {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--sun);
}

.plate::before {
  width: 105px;
  height: 34px;
  transform: translateY(-35px) rotate(-8deg);
}

.plate::after {
  width: 128px;
  height: 38px;
  background: var(--green);
  transform: translateY(34px) rotate(8deg);
}

.plate span {
  z-index: 2;
  width: 64px;
  height: 64px;
  background: var(--orange);
  box-shadow: 35px -10px 0 -10px #fff0c7, -35px 8px 0 -13px #e6f0c9;
}

.leaf {
  position: absolute;
  width: 82px;
  height: 82px;
  color: var(--green);
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
}

.leaf-left {
  bottom: 14%;
  left: 11%;
  transform: rotate(-20deg);
}

.leaf-right {
  top: 13%;
  right: 7%;
  transform: scaleX(-1) rotate(-14deg);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(23, 58, 92, 0.1);
  background: #eff1ec;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-brand p {
  max-width: 380px;
  margin: 1rem 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 3.5rem;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-links h2 {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-links a:hover {
  color: var(--orange-deep);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23, 58, 92, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
}

.legal-copy {
  max-width: 760px;
  justify-self: end;
  text-align: right;
}

/* Contact page */
.contact-hero {
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 4.5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(143, 184, 72, 0.18), transparent 24rem),
    radial-gradient(circle at 10% 70%, rgba(244, 189, 63, 0.16), transparent 22rem);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 4rem;
}

.contact-hero h1 {
  margin-bottom: 1.15rem;
}

.contact-logo-wrap {
  position: relative;
  display: grid;
  min-height: 370px;
  place-items: center;
}

.contact-logo-wrap img {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  filter: drop-shadow(0 24px 38px rgba(23, 58, 92, 0.14));
}

.contact-logo-halo {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-pale), var(--olive-pale));
}

.contact-section {
  padding: 6rem 0 7rem;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.3rem;
  align-items: start;
}

.contact-main-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.contact-main-card h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.contact-main-card > p:not(.eyebrow) {
  max-width: 650px;
}

.email-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.15rem;
  padding: 1rem;
  border: 1px solid rgba(233, 133, 36, 0.24);
  border-radius: 20px;
  background: var(--orange-pale);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.email-link:hover {
  border-color: rgba(233, 133, 36, 0.48);
  background: #ffe9d0;
}

.email-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  color: white;
  background: var(--orange);
}

.email-icon svg {
  width: 25px;
  height: 25px;
}

.email-link > span:nth-child(2) {
  display: grid;
}

.email-link small {
  color: #8b6a4d;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.email-link strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.email-arrow {
  width: 24px;
  height: 24px;
  color: var(--orange-deep);
}

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

.social-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  min-height: 90px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.social-card:hover {
  border-color: var(--border-strong);
  background: var(--blue-pale);
}

.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy);
  background: var(--blue-pale);
}

.social-icon svg {
  width: 23px;
  height: 23px;
}

.social-card > span:last-child {
  display: grid;
  min-width: 0;
}

.social-card strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.social-card small {
  overflow: hidden;
  color: #7b8991;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.audience-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.audience-blue {
  background: var(--blue-pale);
}

.audience-olive {
  background: var(--olive-pale);
}

.audience-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: var(--navy);
}

.audience-olive .audience-icon {
  background: var(--green-deep);
}

.audience-icon svg {
  width: 24px;
  height: 24px;
}

.audience-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.audience-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.side-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.side-cta:hover {
  background: var(--navy-deep);
}

.side-cta span {
  display: grid;
}

.side-cta small {
  color: rgba(255, 255, 255, 0.66);
}

.side-cta strong {
  font-size: 1.22rem;
}

.side-cta svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
  }

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

  .shape-one {
    width: 450px;
    height: 450px;
  }

  .app-preview {
    width: 350px;
    min-height: 570px;
  }

  .floating-label-one {
    left: -6%;
  }

  .floating-label-two {
    right: -6%;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .feature-icon {
    margin-bottom: 1.8rem;
  }

  .restaurant-card {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .restaurant-copy {
    padding-right: 3rem;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 0.7rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(23, 58, 92, 0.09);
    padding-top: 0.55rem;
  }

  .nav-link {
    min-height: 40px;
    flex: 1;
    padding: 0.55rem 0.55rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-grid,
  .steps-layout,
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .shape-one {
    width: min(560px, 92vw);
    height: min(560px, 92vw);
  }

  .app-preview {
    width: min(390px, 86vw);
  }

  .floating-label-one {
    left: 2%;
  }

  .floating-label-two {
    right: 2%;
  }

  .steps-intro h2 {
    max-width: 14ch;
  }

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

  .restaurant-illustration {
    min-height: 330px;
  }

  .restaurant-copy {
    padding: 0 2rem 3.5rem;
  }

  .restaurant-copy h2 {
    max-width: 16ch;
  }

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

  .legal-copy {
    justify-self: start;
    text-align: left;
  }

  .contact-logo-wrap {
    order: -1;
    min-height: 310px;
  }

  .contact-logo-halo {
    width: 310px;
    height: 310px;
  }

  .contact-logo-wrap img {
    width: 270px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .site-header {
    position: relative;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .main-nav {
    gap: 0.2rem;
  }

  .nav-link {
    padding-inline: 0.35rem;
    font-size: 0.78rem;
  }

  .nav-cta svg {
    display: none;
  }

  .hero {
    padding: 2.75rem 0 4.5rem;
  }

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

  .app-preview {
    min-height: 0;
    padding: 1rem;
    border-width: 6px;
    border-radius: 34px;
  }

  .floating-label {
    display: none;
  }

  .lunch-card:nth-of-type(5) {
    display: none;
  }

  .app-store-badge,
  .google-play-badge {
    height: 50px;
  }

  .store-badges {
    gap: 0.5rem 0.75rem;
  }

  .feature-section,
  .steps-section,
  .restaurant-section,
  .contact-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .feature-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 1.4rem;
  }

  .steps-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .restaurant-card {
    border-radius: 26px;
  }

  .restaurant-illustration {
    min-height: 285px;
  }

  .plate {
    width: 190px;
    height: 190px;
    border-width: 13px;
  }

  .leaf {
    width: 62px;
    height: 62px;
  }

  .restaurant-copy {
    padding: 0 1.35rem 2.4rem;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .contact-hero {
    padding-top: 2.75rem;
  }

  .contact-main-card {
    border-radius: 26px;
  }

  .email-link {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .email-icon {
    width: 50px;
    height: 50px;
  }

  .email-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
