:root {
  --background: #f7f4ee;
  --text: #171717;
  --muted: #6f6a63;
  --line: rgba(23, 23, 23, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.85), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, var(--background) 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
}

.page {
  min-height: calc(100vh - 70px);
  padding: 52px clamp(24px, 6vw, 96px) 64px;
}

.site-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.wordmark {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  letter-spacing: 0.34em;
  line-height: 1;
}

.hero {
  max-width: 900px;
  margin-top: clamp(120px, 19vh, 220px);
}

.kicker {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.45rem, 6vw, 5.75rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.statement {
  margin: 42px 0 0;
  padding-top: 34px;
  max-width: 660px;
  border-top: 1px solid var(--line);
  color: #2a2927;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.75;
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 96px);
  max-width: 980px;
  margin-top: clamp(86px, 12vh, 140px);
  color: var(--muted);
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.8;
}

.intro p { margin: 0; }

.contact {
  margin-top: clamp(74px, 10vh, 120px);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact p { margin: 0 0 4px; }

.contact a,
.footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(23,23,23,.25);
}

.contact a:hover,
.footer a:hover { border-bottom-color: var(--text); }

.footer {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 96px) 34px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.footer a {
  color: var(--muted);
  border-bottom: none;
}

@media (max-width: 760px) {
  .page { padding-top: 36px; }
  .wordmark { letter-spacing: 0.26em; }
  .hero { margin-top: 96px; }
  .statement { margin-top: 34px; }
  .intro { grid-template-columns: 1fr; margin-top: 72px; }
  .footer { flex-wrap: wrap; }
}

.subpage .hero { max-width: 760px; }
.wordmark.small { color: var(--text); text-decoration: none; border-bottom: none; }
.legal-copy h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); margin-bottom: 48px; }
.legal-copy p { color: var(--muted); font-size: 1rem; line-height: 1.8; margin: 0 0 18px; }
.legal-copy a { color: var(--text); text-decoration: none; border-bottom: 1px solid rgba(23,23,23,.25); }
