:root {
  --color-ink: #18211f;
  --color-muted: #65716d;
  --color-soft: #f5f2eb;
  --color-surface: #ffffff;
  --color-line: #dde3df;
  --color-primary: #0f6b5f;
  --color-primary-dark: #0a4d45;
  --color-accent: #d89d35;
  --color-accent-soft: #fff4dc;
  --shadow-soft: 0 18px 45px rgba(23, 38, 35, 0.12);
  --shadow-card: 0 12px 32px rgba(23, 38, 35, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-main);
  line-height: 1.6;
  background: var(--color-surface);
}

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

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

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 157, 53, 0.65);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: var(--space-lg);
  font-size: clamp(2.65rem, 7vw, 5.4rem);
}

h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}

p {
  color: var(--color-muted);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-muted {
  background: var(--color-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-2xl);
}

.section-heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-xl);
  max-width: none;
}

.section-copy {
  max-width: 62ch;
  font-size: 1.05rem;
}

.section-note {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
