* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-primary);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.55), transparent 30%),
    linear-gradient(180deg, #f8f4ef 0%, #f3eee6 100%);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

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

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

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

.serif {
  font-family: "Iowan Old Style", Palatino Linotype, "Book Antiqua", Palatino, Georgia, serif;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

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

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.page-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.04;
  font-family: "Iowan Old Style", Palatino Linotype, "Book Antiqua", Palatino, Georgia, serif;
}

.section-text {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 16px;
}

hr.soft {
  border: 0;
  border-top: 1px solid rgba(92,85,80,0.10);
  margin: 0;
}
