:root {
  --bg: #161410;
  --ink: #f3eee6;
  --muted: #b7b0a4;
  --rule: #2a261f;
  --mustard: #c4a35a;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: Sora, sans-serif;
}

.page {
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 80px 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr auto;
  column-gap: 80px;
}

.left, .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name {
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: clamp(56px, 8vw, 108px);
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.accent {
  width: 56px;
  height: 3px;
  background: var(--mustard);
  margin: 28px 0 32px;
}

.hero {
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 16ch;
}

.meta { margin-top: 28px; font-size: 16px; color: var(--muted); }
.meta strong { color: var(--ink); font-weight: 500; }

.portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 40px;
}

.proof { margin-bottom: 28px; }
.proof h2 { font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.proof p, .stance { font-size: 16px; line-height: 1.55; color: var(--muted); }
.stance { padding-top: 22px; border-top: 1px solid var(--rule); }

.foot {
  grid-column: 1 / -1;
  display: flex;
  gap: 28px;
  font-size: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.foot span { color: var(--muted); }
.foot a { color: var(--ink); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .page {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    row-gap: 40px;
  }
  .portrait { width: 140px; height: 140px; margin-bottom: 24px; }
}
