:root {
  --ink: #193326;
  --muted: #5f6b62;
  --paper: #faf6ec;
  --panel: #fffaf1;
  --line: #e6dccb;
  --accent: #315b43;
  --accent-strong: #244634;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer {
  border-color: var(--line);
  border-style: solid;
}

.site-header {
  border-width: 0 0 1px;
  background: rgba(250, 246, 236, 0.92);
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(16px);
}

.nav,
.footer-inner,
.section {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--panel);
  font-size: 15px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  max-width: 780px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--panel);
  font-weight: 900;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.phone-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(25, 51, 38, 0.11);
}

.mini-screen {
  border: 8px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  padding: 20px 16px;
  min-height: 520px;
}

.mini-title {
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 18px;
}

.meal-row {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}

.meal-row strong {
  display: block;
  font-size: 14px;
}

.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.chip {
  border-radius: 999px;
  background: #e8efe9;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
}

.section {
  padding: 54px 0;
}

.section.compact {
  max-width: 820px;
}

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

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 20px;
}

.card p,
.section li,
.legal p {
  color: var(--muted);
}

.card p:last-child,
.legal p:last-child {
  margin-bottom: 0;
}

.feature-list,
.legal-list {
  padding-left: 20px;
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 28px;
}

.notice {
  border: 1px solid #d8b63e;
  background: #fff6d8;
  color: #634d0b;
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
}

.site-footer {
  border-width: 1px 0 0;
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

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

  .hero {
    padding-top: 44px;
  }

  .phone-card {
    max-width: 420px;
  }
}
