:root {
  --green-900: #073b28;
  --green-800: #0c5539;
  --green-100: #e9f4ee;
  --orange-600: #ee6b1f;
  --orange-100: #fff1e8;
  --cream: #fff9ef;
  --white: #ffffff;
  --ink: #14231c;
  --muted: #66736d;
  --line: #dce6df;
  --shadow: 0 20px 55px rgba(7, 59, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green-900);
  border: 3px solid var(--orange-600);
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-text {
  color: var(--green-900);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1;
}

.brand-text span {
  color: var(--orange-600);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-600);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
  border-radius: 10px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 7vw, 96px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 59, 40, 0.96) 0%, rgba(7, 59, 40, 0.84) 42%, rgba(7, 59, 40, 0.28) 100%),
    url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb077;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-tagline {
  margin: 20px 0 0;
  color: #ffe6cf;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 12px 28px rgba(238, 107, 31, 0.26);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 7vw, 96px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading h2,
.form-intro h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(31px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-section,
.process-section,
.faq-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: stretch;
}

.about-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.about-copy p:first-child {
  margin-top: 0;
}

.metric-panel {
  display: grid;
  gap: 14px;
}

.metric-panel div,
.plan-card,
.step,
.lead-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-panel div {
  padding: 20px;
}

.metric-panel strong {
  display: block;
  color: var(--orange-600);
  font-size: 42px;
  line-height: 1;
}

.metric-panel span {
  color: var(--green-900);
  font-weight: 700;
}

.plans-section {
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.plan-card.featured {
  border-color: rgba(238, 107, 31, 0.35);
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-100) 100%);
}

.plan-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.plan-topline h3,
.step h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 23px;
  line-height: 1.15;
}

.plan-topline span {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 0;
  color: var(--green-900);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.plan-card p:not(.price) {
  margin: 0;
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 600;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange-600);
  content: "+";
}

.text-link {
  margin-top: auto;
  color: var(--green-900);
  font-weight: 800;
  text-decoration-color: var(--orange-600);
  text-underline-offset: 4px;
}

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

.step {
  padding: 22px;
}

.step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange-600);
  font-size: 14px;
  font-weight: 800;
}

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

.forms-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--cream);
}

.restaurant-form-section {
  background: var(--green-100);
}

.form-intro {
  position: sticky;
  top: 104px;
}

.form-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.lead-form {
  padding: clamp(20px, 4vw, 32px);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.wide-field {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd8d1;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 500;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange-600);
  outline: 3px solid rgba(238, 107, 31, 0.16);
}

.lead-form > label,
.form-status,
.lead-form button {
  margin-top: 16px;
}

.error-message {
  min-height: 18px;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

.field-error {
  border-color: #b42318;
  outline: 3px solid rgba(180, 35, 24, 0.12);
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  color: var(--green-900);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 34px clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--green-900);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: var(--white);
  font-size: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .form-intro {
    position: static;
  }

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

@media (max-width: 680px) {
  .brand-text {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 78px;
    background:
      linear-gradient(180deg, rgba(7, 59, 40, 0.96) 0%, rgba(7, 59, 40, 0.74) 100%),
      url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1200&q=82");
    background-position: center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }

  .plan-grid,
  .steps-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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