* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 80px 0; position: relative; }
h1, h2, h3, h4 { font-weight: 500; margin: 0; letter-spacing: -0.015em; }
h1 { font-size: 64px; line-height: 1.05; }
h2 { font-size: 48px; line-height: 1.08; }
h3 { font-size: 22px; line-height: 1.3; }
em { font-family: var(--f-sans); font-style: italic; color: var(--clay); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--clay);
}

.eyebrow--tilde::before { display: none; }

.script {
  font-family: var(--f-script);
  color: var(--ink-2);
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.005em;
}

.curve-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
