:root {
  color-scheme: light;
  --background: #f5f6f4;
  --surface: #ffffff;
  --text: #17202a;
  --muted: #59636e;
  --border: #dfe3de;
  --accent: #315b4d;
  --accent-hover: #24483d;
  --shell: 68rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--background);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.content-shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 5rem;
  padding-inline: max(1.5rem, calc((100% - var(--shell)) / 2));
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.wordmark {
  font-size: 1.125rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(49, 91, 77, 0.35);
  outline-offset: 4px;
}

.hero {
  display: grid;
  min-height: 28rem;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 91, 77, 0.12), transparent 30rem),
    var(--surface);
}

.hero-content {
  padding-block: 6rem;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 9vw, 6.75rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.intro {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.sections {
  display: grid;
  gap: 2rem;
  padding-block: 5rem;
}

.panel,
.contact {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
}

.panel {
  padding: clamp(2rem, 5vw, 4rem);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
}

.product-panel p:not(.section-label) {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-hover);
}

.contact {
  padding: clamp(2rem, 4vw, 3rem);
}

.contact h2 {
  font-size: 1.75rem;
}

address {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 42rem) {
  .content-shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .site-header {
    min-height: 4.5rem;
    padding-inline: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 4.5rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.75rem);
  }

  .sections {
    padding-block: 3rem;
  }

  .product-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
