:root {
  color-scheme: light;
  --paper: #f4f2ed;
  --surface: #fbfaf7;
  --ink: #1a1a18;
  --muted: #66655f;
  --line: #d8d5cc;
  --accent: #864c35;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

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

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
}

.hero {
  display: grid;
  min-height: min(700px, calc(100vh - 88px));
  align-content: center;
  padding: 88px 0 112px;
}

.eyebrow,
.product-index {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 940px;
  font-size: clamp(48px, 8.3vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 span {
  color: var(--muted);
}

.lede {
  max-width: 620px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.contact-section h2,
.policy h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-index {
  margin-bottom: 52px;
}

.product-card h3 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.product-card > p {
  align-self: end;
  margin: 0;
  color: var(--muted);
}

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

.email-link {
  display: inline-block;
  max-width: 100%;
  margin-top: 40px;
  color: var(--accent);
  font-size: clamp(20px, 4vw, 40px);
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.policy-main {
  max-width: 1120px;
}

.policy {
  max-width: 760px;
  padding: 96px 0 120px;
}

.policy-intro {
  margin: 24px 0 72px;
  color: var(--muted);
}

.policy section {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.policy section h2 {
  font-family: inherit;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
}

.policy section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.policy section a {
  color: var(--accent);
  overflow-wrap: anywhere;
}

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

  .site-header {
    align-items: flex-start;
    min-height: 0;
    padding: 20px 0;
  }

  nav {
    gap: 8px 16px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 88px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .product-section,
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-section {
    gap: 40px;
    padding: 80px 0;
  }

  .product-card {
    gap: 48px;
    padding: 28px;
  }

  .product-index {
    margin-bottom: 28px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .policy {
    padding: 72px 0 88px;
  }

  .policy-intro {
    margin-bottom: 56px;
  }
}

@media (max-width: 430px) {
  .site-header {
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

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