:root {
  --canvas: #f4f1ea;
  --ink: #1c211f;
  --muted-ink: #5d655f;
  --accent: #216f6b;
  --line: #cfcec5;
  --card: #fbfaf6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

nav a {
  color: var(--muted-ink);
  font-size: 0.875rem;
  font-weight: 600;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent);
}

.hero {
  max-width: 830px;
  padding: clamp(6.5rem, 15vw, 11.5rem) 0 clamp(5.5rem, 12vw, 9rem);
}

.eyebrow,
.status,
.category {
  margin: 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

h2 {
  max-width: 620px;
  margin: 0.85rem 0 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

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

.product-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.category {
  color: var(--muted-ink);
}

h3 {
  margin: auto 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.product-card > p {
  max-width: 420px;
  margin-bottom: 2rem;
  color: var(--muted-ink);
}

.card-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
}

.card-link span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 160ms ease;
}

.product-card:hover .card-link span {
  transform: translateX(4px);
}

.approach {
  max-width: 900px;
}

.approach h2 {
  margin-bottom: 1.5rem;
}

.approach > p:last-child {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 1.15rem;
}

.site-footer {
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

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

  .product-card {
    min-height: 310px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
}

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

  .product-card,
  .card-link span {
    transition: none;
  }
}
