:root {
  color-scheme: light;
  --ink: #292524;
  --muted: #665f58;
  --paper: #faf8f5;
  --surface: #ffffff;
  --line: #e3ddd3;
  --green: #284538;
  --green-soft: #eef3ec;
  --tomato: #b94b32;
  --tomato-dark: #933725;
  --yellow: #d8aa3d;
  --link: #285c49;
  --shadow: 0 2px 8px rgba(41, 37, 36, 0.1);
  --max-width: 1160px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header,
.restaurant-header {
  align-items: center;
  background: rgba(250, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 42px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  flex: 0 0 36px;
  object-fit: contain;
  width: 36px;
  height: 36px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.header-cta {
  background: var(--tomato);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 750;
  padding: 11px 14px;
}

.hero {
  align-items: center;
  display: grid;
  min-height: clamp(420px, 62svh, 560px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 72px) clamp(20px, 6vw, 80px);
  position: relative;
}

.hero-media,
.hero-overlay,
.restaurant-hero-media,
.restaurant-hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background: url("https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero-overlay {
  background: rgba(31, 38, 34, 0.58);
}

.hero-content {
  color: #ffffff;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.location-line {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  font-weight: 650;
  margin: 0 0 12px;
}

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

h1 {
  font-size: clamp(2.55rem, 6.5vw, 4.85rem);
  line-height: 1;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.5;
  max-width: 560px;
}

.hero-actions,
.restaurant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--tomato);
  color: #ffffff;
}

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

.button-secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--green);
}

.hero .button-secondary,
.restaurant-hero .button-secondary {
  background: rgba(255, 255, 255, 0.94);
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: clamp(38px, 6vw, 64px) clamp(20px, 5vw, 32px);
}

.section-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 24px;
  max-width: 680px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-band {
  background: #f2eee7;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 32px), calc((100vw - var(--max-width)) / 2 + 32px));
  padding-right: max(clamp(20px, 5vw, 32px), calc((100vw - var(--max-width)) / 2 + 32px));
}

.section-band p {
  color: var(--muted);
}

.model-grid,
.dish-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-card,
.price-card,
.step,
.dish-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.model-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.model-card-image {
  aspect-ratio: 4 / 3;
  background: var(--green-soft);
  display: block;
  overflow: hidden;
}

.model-card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.model-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.model-card-body p {
  color: var(--muted);
  line-height: 1.55;
}

.model-details {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 10px;
}

.text-link {
  color: var(--link);
  font-weight: 750;
  margin-top: auto;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
}

.step-number {
  color: var(--ink);
  display: block;
  font-size: 0.95rem;
  font-weight: 750;
  margin-bottom: 14px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
}

.price-card-featured {
  border: 2px solid var(--tomato);
  background: #fffaf5;
}

.plan-name {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.plan-note {
  color: var(--muted);
  line-height: 1.55;
}

.check-list,
.feature-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.feature-list li {
  border-top: 1px solid var(--line);
  line-height: 1.45;
  padding: 12px 0;
}

.check-list li:first-child,
.feature-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-card .button {
  margin-top: auto;
}

.pricing-observation {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 18px;
}

.partners-empty {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.partners-copy {
  max-width: 680px;
}

.final-cta {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  text-align: left;
}

.final-cta-copy {
  max-width: 680px;
}

.final-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.footer {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 42px);
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.promo-bar {
  align-items: center;
  background: #fff3d1;
  border-bottom: 1px solid #eadcb7;
  color: var(--ink);
  display: flex;
  font-weight: 750;
  gap: 16px;
  justify-content: center;
  padding: 12px 18px;
  text-align: center;
}

.promo-bar span {
  display: inline-block;
}

.promo-bar a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.restaurant-header {
  position: sticky;
}

.restaurant-hero {
  align-items: end;
  display: grid;
  min-height: clamp(420px, 60svh, 560px);
  overflow: hidden;
  padding: clamp(46px, 8vw, 76px) clamp(20px, 6vw, 80px);
  position: relative;
}

.restaurant-hero-media {
  background-position: center;
  background-size: cover;
}

.restaurant-hero-overlay {
  background: rgba(31, 38, 34, 0.58);
}

.restaurant-hero-content {
  color: #ffffff;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.restaurant-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
}

.restaurant-hero-content p {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.5;
  max-width: 600px;
}

.restaurant-info {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-info article {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 22px clamp(18px, 5vw, 42px);
}

.restaurant-info span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 8px;
}

.restaurant-info strong {
  display: block;
  font-size: 1.08rem;
}

.restaurant-section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: clamp(38px, 6vw, 64px) clamp(20px, 5vw, 32px);
}

.restaurant-about {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 68px);
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.restaurant-about h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.14;
}

.feature-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.menu-section {
  padding-top: 0;
}

.menu-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.menu-heading p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 620px;
}

.menu-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 20px;
}

.menu-item + .menu-item {
  border-top: 1px solid var(--line);
}

.menu-item strong,
.menu-item span {
  display: block;
}

.menu-item strong {
  line-height: 1.25;
}

.menu-item span {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 6px;
}

.menu-item p {
  font-weight: 750;
  margin: 0;
  white-space: nowrap;
}

.dish-card {
  padding: 22px;
}

.dish-card span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 12px;
}

.dish-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.photo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.photo-grid img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-grid img:first-child {
  aspect-ratio: 1.2 / 1;
  grid-row: span 2;
}

.location-strip {
  align-items: center;
  background: var(--green-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: none;
  padding-left: max(clamp(20px, 5vw, 32px), calc((100vw - var(--max-width)) / 2 + 32px));
  padding-right: max(clamp(20px, 5vw, 32px), calc((100vw - var(--max-width)) / 2 + 32px));
}

.location-strip h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
}

.location-strip p {
  color: var(--muted);
  margin-bottom: 0;
}

.model-closing {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  text-align: left;
}

.model-closing-copy {
  max-width: 660px;
}

.model-closing p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.template-delivery {
  --tomato: #a83d2c;
  --tomato-dark: #842f22;
  --yellow: #d7ad3b;
  --green: #252525;
}

.template-mesa {
  --tomato: #a84931;
  --tomato-dark: #803524;
  --yellow: #d3ab55;
  --green: #18382f;
}

@media (max-width: 920px) {
  .site-header,
  .restaurant-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .section-grid,
  .restaurant-about {
    grid-template-columns: 1fr;
  }

  .model-grid,
  .pricing-grid,
  .steps,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .partners-empty,
  .final-cta,
  .menu-heading,
  .model-closing,
  .location-strip {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .site-header,
  .restaurant-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }

  .header-cta {
    font-size: 0.84rem;
    padding: 9px 10px;
  }

  .hero,
  .restaurant-hero {
    min-height: clamp(430px, 58svh, 500px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .restaurant-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .promo-bar {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 16px;
    text-align: left;
  }

  .promo-bar span {
    flex: 1 1 210px;
  }

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

  .photo-grid img:first-child {
    grid-row: auto;
  }

  .menu-item {
    gap: 10px;
    grid-template-columns: 1fr;
  }

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