:root {
  --background: #f5f1e8;
  --surface: #ece6da;
  --text: #242421;
  --muted: #68665f;
  --accent: #9b4f36;
  --border: #d7d0c3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 34px;
}

.wordmark,
.eyebrow,
.section-label,
.product-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark {
  text-decoration: none;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.hero {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px 140px;
}

.eyebrow,
.section-label,
.product-name {
  margin: 0;
  color: var(--accent);
}

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

h1 {
  max-width: 900px;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section {
  border-top: 1px solid var(--border);
  padding-block: 92px;
}

.product {
  max-width: 720px;
  margin: 76px 0 0 auto;
}

.product h2 {
  margin: 16px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.product > p:not(.product-name) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.1rem;
}

.product .status {
  margin-top: 34px;
  color: var(--text);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.lead,
.email {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.email {
  width: fit-content;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-block: 34px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.page {
  min-height: calc(100vh - 220px);
  padding-block: 120px 160px;
}

.page-header {
  max-width: 820px;
  margin-bottom: 110px;
}

.page-header h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.updated {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.875rem;
}

.prose {
  max-width: 720px;
  margin-left: auto;
}

.prose section {
  margin-bottom: 60px;
}

.prose h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose a {
  color: var(--text);
}

.note {
  border-left: 2px solid var(--accent);
  padding: 12px 0 12px 24px;
}

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

  .site-header {
    align-items: flex-start;
    padding-block: 24px;
  }

  .site-header nav {
    gap: 14px;
  }

  .hero {
    min-height: 570px;
    padding-block: 80px 110px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .section {
    padding-block: 68px;
  }

  .product {
    margin-top: 54px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .page {
    padding-block: 80px 110px;
  }

  .page-header {
    margin-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
