:root {
  --bg: #0d0d0f;
  --bg-elev: #161618;
  --ink: #f5efe7;
  --ink-dim: #a8a39c;
  --ink-faint: #6b6760;
  --ember: #e3753a;
  --ember-glow: rgba(227, 117, 58, 0.18);
  --hairline: rgba(245, 239, 231, 0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background:
    radial-gradient(900px 600px at 50% -10%, var(--ember-glow), transparent 60%),
    var(--bg);
}
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
}
.wordmark .dot {
  color: var(--ember);
}
.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 48px 0 12px;
}
h1.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.lede {
  color: var(--ink-dim);
  font-size: 18px;
  margin: 0 0 40px;
  max-width: 580px;
}
section { margin: 40px 0; }
h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
}
h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 24px 0 8px;
  color: var(--ink);
}
p { margin: 0 0 12px; color: var(--ink); }
section p, section li { color: var(--ink-dim); }
strong { color: var(--ink); font-weight: 600; }
ul { padding-left: 20px; margin: 0 0 16px; }
li { margin-bottom: 6px; }
a { color: var(--ember); }
.contact {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-flame {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(227, 117, 58, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-text { line-height: 1.4; }
.contact-label {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 2px;
}
.contact a {
  color: var(--ember);
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
}
.contact a:hover { text-decoration: underline; }
details {
  border-top: 1px solid var(--hairline);
  padding: 16px 0;
}
details:last-of-type { border-bottom: 1px solid var(--hairline); }
summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--ember);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
details p {
  color: var(--ink-dim);
  margin-top: 10px;
  padding-right: 32px;
}
.effective {
  color: var(--ink-faint);
  font-size: 14px;
  margin: -4px 0 32px;
}
footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-faint);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer a {
  color: var(--ink-dim);
  text-decoration: none;
}
footer a:hover { color: var(--ember); }
footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
