:root {
  color-scheme: light;
  --ink: #161511;
  --muted: #69655d;
  --paper: #f7f1e7;
  --panel: #fffaf1;
  --line: #dfd4c4;
  --accent: #b6ff00;
  --accent-ink: #11110d;
  --terracotta: #d65d3b;
  --shadow: 0 24px 70px rgba(54, 40, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(182, 255, 0, 0.2), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(214, 93, 59, 0.14), transparent 22rem),
    linear-gradient(135deg, #fff9ef 0%, var(--paper) 55%, #f3eadb 100%);
  font-family: Charter, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  padding: 28px 0;
}

.site-footer {
  padding: 30px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  background: var(--accent);
  border: 3px solid var(--ink);
  border-radius: 16px;
  transform: rotate(-4deg);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

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

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 42px;
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.lead,
.section-copy,
.product-card p,
address,
.policy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.lead {
  max-width: 660px;
  margin-bottom: 34px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: var(--accent-ink);
  background: var(--accent);
  box-shadow: 5px 5px 0 var(--ink);
}

.secondary {
  background: rgba(255, 250, 241, 0.62);
}

.hero-card,
.product-card,
.contact-panel {
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(97, 83, 62, 0.18);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 32px;
}

.hero-card h2 {
  font-size: 34px;
}

.card-kicker {
  color: var(--muted);
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

dt {
  color: var(--muted);
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

dd {
  margin: 4px 0 0;
  font-size: 18px;
}

.section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
}

.section-copy p:last-child,
.policy section p:last-child {
  margin-bottom: 0;
}

.product-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
}

.product-card h2 {
  font-size: 48px;
}

.status-pill {
  align-self: flex-start;
  white-space: nowrap;
  padding: 10px 14px;
  color: var(--accent-ink);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  padding: 38px;
  margin-bottom: 76px;
  border-top: 0;
}

address {
  font-style: normal;
}

.policy {
  max-width: 840px;
  padding: 70px 0 90px;
}

.policy h1 {
  font-size: clamp(46px, 7vw, 82px);
}

.policy h2 {
  margin-top: 48px;
  font-size: 32px;
}

.updated {
  color: var(--muted);
  font-family: Avenir Next, Avenir, Helvetica, Arial, sans-serif;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1120px);
  }

  .site-header,
  .site-footer,
  .product-card,
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

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

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }
}
