:root {
  --yg-ink: #171614;
  --yg-paper: #fdfbf7;
  --yg-clay: #c25a43;
  --yg-mint: #7fc6af;
  --yg-cream: #f5efe7;
  --yg-line: rgba(23, 22, 20, 0.14);
  --yg-muted: rgba(23, 22, 20, 0.68);
  --yg-focus: #1f6f5b;

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step--1: clamp(0.86rem, 0.82rem + 0.18vw, 0.95rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.18rem, 1.08rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.48rem, 1.26rem + 1.1vw, 2.1rem);
  --step-3: clamp(2rem, 1.56rem + 2.2vw, 3.3rem);
  --step-4: clamp(2.7rem, 1.85rem + 4.2vw, 5.2rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sharp: 2px;
  --measure: 68ch;
  --container: 1160px;
}

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

html {
  background: var(--yg-paper);
  color: var(--yg-ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--yg-paper);
  color: var(--yg-ink);
  font-size: var(--step-0);
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(194, 90, 67, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--yg-clay);
}

:focus-visible {
  outline: 2px solid var(--yg-focus);
  outline-offset: 4px;
}

h1, h2, h3, p, figure, blockquote {
  margin-block-start: 0;
}

h1, h2, h3 {
  color: var(--yg-ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin-block-end: var(--space-6);
  font-size: var(--step-4);
}

h2 {
  max-width: 13ch;
  margin-block-end: var(--space-6);
  font-size: var(--step-3);
}

h3 {
  margin-block-end: var(--space-2);
  font-size: var(--step-1);
  line-height: 1.08;
}

p {
  max-width: var(--measure);
}

address {
  font-style: normal;
}

button, input, textarea, select {
  font: inherit;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.skip-link {
  position: fixed;
  inset-block-start: var(--space-4);
  inset-inline-start: var(--space-4);
  z-index: 100;
  transform: translateY(-160%);
  background: var(--yg-ink);
  color: var(--yg-paper);
  padding: var(--space-3) var(--space-4);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin-block-end: var(--space-4);
  color: var(--yg-clay);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  color: var(--yg-muted);
  font-size: var(--step-1);
  line-height: 1.45;
}

.section-intro {
  color: var(--yg-muted);
  font-size: var(--step-1);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-block-start: var(--space-8);
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid var(--yg-line);
  border-radius: var(--radius-sharp);
  font-size: var(--step--1);
  font-weight: 700;
  text-decoration: none;
}

.button--primary {
  border-color: var(--yg-clay);
  background: var(--yg-clay);
  color: var(--yg-paper);
}

.button--secondary {
  background: transparent;
  color: var(--yg-ink);
}

/* YouGrow redesign rule: no animation or timed hover transitions. State changes are instant. */
