:root {
  --bg: #f7f3ea;
  --bg-alt: #efeadd;
  --paper: #fffdf8;
  --ink: #1f1d18;
  --text: #2d2a23;
  --text-mute: #5e5848;
  --text-faint: #7a7363;
  --primary: #0a3d2a;
  --gold: #b8965f;
  --gold-deep: #8e6f3c;
  --border: rgba(45, 42, 35, 0.1);
  --border-mid: rgba(45, 42, 35, 0.18);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.mono {
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 8%;
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-avatar {
  width: 58px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.wordmark::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(2px);
}

.header-cta {
  flex: 0 0 auto;
  padding: 9px 18px;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.header-cta:hover {
  background: var(--bg-alt);
  border-color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 64px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 86px 8% 74px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  margin-top: 20px;
  font-size: 58px;
}

.hero-lede {
  max-width: 560px;
  margin-top: 24px;
  color: var(--text-mute);
  font-size: 19px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(31, 29, 24, 0.12);
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(45, 42, 35, 0.06);
}

.waitlist-form label {
  display: grid;
  gap: 6px;
}

.waitlist-form span {
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 600;
}

.waitlist-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.waitlist-form button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.beta-note {
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 14px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 16%));
  margin: 0 auto 74px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}

.trust-bar > div {
  padding: 26px;
  background: var(--paper);
}

.trust-bar h2 {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 21px;
}

.trust-bar p,
.story-copy p,
.section-heading p,
.comparison-grid p,
.process-card p {
  color: var(--text-mute);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 64px;
  padding: 86px 8%;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-copy {
  max-width: 650px;
}

.story-copy h2,
.section-heading h2 {
  margin-top: 16px;
  margin-bottom: 22px;
  font-size: 40px;
}

.story-copy p + p {
  margin-top: 18px;
}

.process-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.process-card img {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
}

.process-card div {
  padding: 24px;
}

.process-card h3 {
  margin: 10px 0;
  font-size: 28px;
}

.showcase-section,
.comparison-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 86px 8%;
}

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

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

.meat-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
}

.meat-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.meat-card div {
  padding: 24px;
}

.meat-card span {
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meat-card h3 {
  margin: 8px 0 10px;
  font-size: 28px;
}

.meat-card p {
  color: var(--primary);
  font-weight: 700;
}

.comparison-section {
  padding-top: 40px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}

.comparison-grid div {
  padding: 28px;
  background: var(--paper);
}

.comparison-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.site-footer {
  padding: 64px 8% 34px;
  background: var(--ink);
  color: var(--paper);
}

.footer-brand,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand img {
  width: 160px;
  height: auto;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 253, 248, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  width: min(1180px, 100%);
  margin: 38px auto;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  color: rgba(255, 253, 248, 0.5);
  font-size: 13px;
}

.legal-page {
  min-height: calc(100vh - 91px);
  padding: 72px 8%;
}

.legal-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(45, 42, 35, 0.07);
}

.legal-card h1 {
  margin-top: 14px;
  margin-bottom: 24px;
  font-size: 48px;
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 26px;
}

.legal-card p {
  color: var(--text-mute);
}

.legal-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-back {
  display: inline-flex;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .hero,
  .story-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .waitlist-form,
  .trust-bar,
  .meat-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    width: min(100% - 36px, 720px);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 18px;
    gap: 10px;
  }

  .brand-avatar {
    width: 42px;
    height: 19px;
  }

  .wordmark {
    font-size: 19px;
  }

  .header-cta {
    padding: 7px 11px;
    font-size: 13px;
  }

  .hero,
  .story-section,
  .showcase-section,
  .comparison-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .story-copy h2,
  .section-heading h2 {
    font-size: 32px;
  }

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

  .legal-page {
    padding: 42px 18px;
  }

  .legal-card {
    padding: 30px 22px;
  }

  .legal-card h1 {
    font-size: 38px;
  }
}
