:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #0a0a0a;
  --muted: #6b7280;
  --rule: rgba(0, 0, 0, 0.08);
  --max-width: 960px;
  --column-gap: clamp(3rem, 10vw, 6rem);
  --stack-gap: clamp(1.1rem, 2vw, 1.6rem);
  --body-size: clamp(0.9rem, 1vw, 1rem);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Iowan Old Style', 'Apple Garamond', 'Times New Roman', serif;
  font-size: var(--body-size);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: clamp(1.5rem, 4vw, 3rem);
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  text-underline-offset: 6px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.viewport {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--column-gap);
  align-items: center;
  min-height: calc(100vh - 2 * clamp(1.5rem, 4vw, 3rem));
}

.panel {
  display: grid;
  align-content: start;
  gap: var(--stack-gap);
}

.display {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.display .subheading {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  display: block;
}

.intro {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
}

.info {
  gap: clamp(1.4rem, 2.4vw, 1.9rem);
}

.info-block {
  display: grid;
  gap: 0.6rem;
  border-top: 1px solid var(--rule);
  padding-top: 0.9rem;
}

.info-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.section-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.products-list li {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: baseline;
}

.products-list span {
  color: var(--muted);
}

.team-list li {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
}

.team-list a::first-letter {
  font-weight: 600;
}


.contact-link {
  margin: 0;
}

.footnote {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  body {
    padding: clamp(1.2rem, 5vw, 2rem);
  }

  .viewport {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
    justify-items: stretch;
  }

  .panel {
    gap: clamp(1rem, 2.5vw, 1.4rem);
  }

  .info {
    grid-auto-flow: row;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1.1rem;
  }

  .display {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .section-title {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
