:root {
  --orange: #ef5b00;
  --orange-dark: #cf4700;
  --green: #2f641f;
  --green-dark: #14351f;
  --green-soft: #ecf4e9;
  --ink: #2d2a27;
  --muted: #6d675f;
  --line: #e8dfd4;
  --paper: #fffaf2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(54, 39, 20, 0.1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

address {
  font-style: normal;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(55, 34, 16, 0.11);
}

.topbar {
  display: none;
  background: var(--orange);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

.topbar__inner,
.topbar__meta,
.navbar__inner,
.menu,
.hero__actions,
.apps,
.footer__inner,
.delivery__actions {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 20px;
}

.topbar__meta {
  gap: 22px;
}

.navbar__inner {
  min-height: 78px;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: 190px;
  flex: 0 0 auto;
}

.brand img {
  mix-blend-mode: multiply;
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 78px 0 auto;
  display: grid;
  gap: 2px;
  padding: 18px 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-130%);
  visibility: hidden;
  transition: transform 0.25s ease, visibility 0.25s ease;
}

.menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.menu a {
  padding: 14px 10px;
  color: #37332f;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid #f3ece3;
}

.menu a.is-active,
.menu a:hover {
  color: var(--orange);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(47, 100, 31, 0.1), transparent 240px),
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.74)),
    var(--paper);
}

.hero__grid {
  display: grid;
  gap: 28px;
  padding: 46px 0 52px;
}

.hero__copy {
  max-width: 600px;
}

.hero h1,
.section-heading h2,
.restaurant__copy h2,
.delivery h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 13vw, 4.8rem);
  line-height: 0.96;
  max-width: 690px;
}

.hero h1 span,
.eyebrow,
.menu-card h3,
.menu-card h4 {
  color: var(--green);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  max-width: 440px;
  margin: 20px 0 0;
  color: #3e3a35;
  font-size: 1.08rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.15;
  transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.button--green {
  background: #4c9a34;
}

.button--green:hover {
  background: #377a25;
}

.button--red {
  background: #ee3224;
}

.button--yellow {
  background: #ffc62c;
  color: #1e2418;
}

.apps {
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.apps strong {
  font-size: 1.35rem;
  line-height: 1;
}

.ifood {
  color: #e51919;
  font-style: italic;
}

.food99 {
  color: #151515;
}

.food99::before {
  content: "99";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 6px;
  border-radius: 5px;
  background: #ffd21b;
  font-size: 0.8rem;
}

.hero__media {
  position: relative;
  justify-self: center;
  width: min(88vw, 420px);
  aspect-ratio: 1;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 999px;
  background: rgba(53, 42, 32, 0.08);
  filter: blur(18px);
}

.hero__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.features {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.features__grid,
.benefits__grid {
  display: grid;
  gap: 0;
}

.features article {
  padding: 28px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.features article:last-child {
  border-bottom: 0;
}

.features svg,
.benefits svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features h2,
.benefits h3 {
  margin: 0;
  color: var(--green);
  font-size: 1rem;
}

.features p,
.benefits p {
  max-width: 260px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 64px 0;
}

.restaurant {
  background: var(--paper);
}

.restaurant__grid {
  display: grid;
  gap: 22px;
  width: min(100%, 1568px);
  margin: 0 auto;
}

.restaurant__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.restaurant__copy {
  width: min(100% - 32px, 540px);
  margin: 0 auto;
  align-self: center;
  padding: 14px 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.restaurant__copy h2,
.delivery h2,
.contact h2,
.section-heading h2 {
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.06;
}

.restaurant__copy p:not(.eyebrow),
.contact p,
.contact address {
  color: var(--muted);
}

.restaurant__copy .button {
  margin-top: 10px;
}

.menu-week {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.menu-week__inner {
  display: grid;
  gap: 22px;
}

.section-heading span {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading--center {
  text-align: center;
}

.day-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: thin;
}

.day-tab {
  min-width: 96px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: #3f3b36;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.day-tab strong,
.day-tab span {
  display: block;
}

.day-tab span {
  margin-top: 2px;
  font-size: 0.8rem;
}

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

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.menu-card__title,
.menu-card__grid {
  padding: 24px;
}

.menu-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.menu-card__title span {
  color: var(--muted);
}

.menu-card__grid {
  display: grid;
  gap: 20px;
  padding-top: 0;
}

.menu-card h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.menu-card p {
  margin: 0;
  color: #3b3833;
}

.menu-card__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 24px;
  background: #f8f3ec;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-card__note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery {
  background: var(--green-dark);
  color: var(--white);
}

.delivery__grid {
  display: grid;
  gap: 26px;
  padding: 42px 0;
}

.delivery .eyebrow {
  color: var(--white);
}

.delivery h2 {
  max-width: 520px;
  font-size: clamp(1.9rem, 8vw, 2.6rem);
}

.delivery__actions {
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  max-width: 380px;
}

.delivery__actions .button {
  justify-content: space-between;
}

.delivery__actions .button::after {
  content: "→";
}

.delivery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

.benefits {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(47, 100, 31, 0.15);
  border-radius: 999px;
  pointer-events: none;
}

.benefits::before {
  left: -90px;
  bottom: 24px;
}

.benefits::after {
  right: -80px;
  top: 42px;
}

.benefits__grid {
  position: relative;
  gap: 28px;
  margin-top: 36px;
  text-align: center;
}

.contact {
  padding: 64px 0;
  background: #f4ede3;
}

.contact__grid {
  display: grid;
  gap: 28px;
}

.contact a {
  color: var(--green);
  font-weight: 700;
}

.contact iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: var(--line);
}

.footer {
  background: #10251a;
  color: rgba(255, 255, 255, 0.82);
  padding: 26px 0;
}

.footer__inner {
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer img {
  mix-blend-mode: screen;
}

.footer p {
  margin: 0;
}

.footer a {
  margin: 0 7px;
  color: var(--white);
  font-weight: 700;
}

@media (min-width: 640px) {
  .features__grid,
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .menu-card__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 880px) {
  .topbar {
    display: block;
  }

  .navbar__inner {
    min-height: 84px;
  }

  .brand {
    width: 255px;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    gap: 26px;
    padding: 0;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
    background: transparent;
  }

  .menu a {
    position: relative;
    padding: 32px 0;
    border-bottom: 0;
    font-size: 0.9rem;
  }

  .menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.18s ease;
  }

  .menu a.is-active::after,
  .menu a:hover::after {
    width: 100%;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    min-height: 520px;
    padding: 56px 0;
  }

  .hero__media {
    width: min(44vw, 520px);
  }

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

  .features article {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .features article:last-child {
    border-right: 0;
  }

  .restaurant__grid {
    grid-template-columns: minmax(230px, 0.75fr) minmax(360px, 1fr) minmax(260px, 0.85fr);
    align-items: stretch;
  }

  .restaurant__image {
    height: 100%;
    min-height: 300px;
  }

  .restaurant__copy {
    padding: 58px 22px;
  }

  .menu-week__inner {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
  }

  .day-tabs,
  .menu-card {
    grid-column: 2;
  }

  .section-heading {
    grid-row: span 2;
    padding-top: 12px;
  }

  .delivery__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    align-items: stretch;
    padding: 0;
  }

  .delivery__copy {
    padding: 62px 0;
  }

  .delivery img {
    height: 100%;
    min-height: 360px;
    border-radius: 0;
  }

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

  .contact__grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 4.55rem;
  }

  .hero__media {
    transform: translateX(34px);
  }
}
