/* THEME — replace per-property
   Property paint sessions (Order 40-45) overwrite these tokens.
   The chassis below renders cleanly against any palette.
*/
:root {
  --bg: #f4efe7;
  --text: #1a1814;
  --muted: #6b6660;
  --rule: #1a1814;
  --accent: #1a1814;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, "Helvetica Neue", sans-serif;

  --measure: 60ch;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ---- Wordmark ---- */
.mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  margin-bottom: auto;
}
.wordmark {
  height: 28px;
  width: auto;
  display: block;
}
.wordmark-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ---- Hero ---- */
.hero {
  padding: 96px 0;
  max-width: var(--measure);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--text);
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  margin: 0;
  color: var(--muted);
}

/* ---- Foot ---- */
.foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.foot-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
  opacity: 0.2;
}

@media (max-width: 600px) {
  .page { padding: 32px 24px 24px; }
  .hero { padding: 64px 0; }
}
