:root {
  --ink: #172017;
  --muted: #5d685b;
  --paper: #f8f6ef;
  --line: #d8d4c8;
  --green: #173f2b;
  --matcha: #6f8f36;
  --hojicha: #9b6a45;
  --gold: #c7a35f;
  --white: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background:
    linear-gradient(90deg, rgba(23, 63, 43, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 63, 43, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  margin: 0;
}

a {
  color: inherit;
}

.launch-page {
  min-height: 100vh;
}

.launch-hero {
  display: grid;
  gap: 42px;
  min-height: 100vh;
  padding: 36px 6vw 48px;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  color: var(--paper);
  display: inline-flex;
  font-size: 12px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.launch-copy {
  align-self: end;
  max-width: 980px;
  padding-top: 10vh;
}

.eyebrow {
  color: var(--hojicha);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 8vw, 116px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 26px;
}

.lede {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.42;
  margin-bottom: 0;
  max-width: 900px;
}

.ingredient-visual {
  margin: 0;
  max-width: 1180px;
}

.ingredient-visual img {
  aspect-ratio: 14 / 9;
  border: 1px solid var(--line);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

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

.launch-grid article,
.contact-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  min-height: 190px;
  padding: 26px;
}

.launch-grid span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 34px;
}

.launch-grid h2 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.launch-grid p,
.contact-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 0;
}

.contact-panel {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  min-height: auto;
}

.contact-panel p {
  color: var(--ink);
  font-weight: 800;
}

.contact-panel a {
  color: var(--green);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 760px) {
  .launch-hero {
    gap: 28px;
    padding: 24px 18px 30px;
  }

  .launch-copy {
    padding-top: 6vh;
  }

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

  .launch-grid article {
    min-height: 0;
  }
}
