:root {
  --ink: #222;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --rule: #e6e4de;
  --max-width: 1000px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 28px 0;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  display: block;
}

.hero-text {
  padding: 40px 24px 60px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero-text .tagline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}

.section h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: center;
  margin: 0 0 40px;
}

.bio {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
}

/* Life */
.life-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.life-block:last-child {
  margin-bottom: 0;
}

.life-block img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.life-block.reverse img {
  order: 2;
}

.life-block.reverse .life-text {
  order: 1;
}

.life-text h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 12px;
}

.life-text p {
  color: var(--ink);
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 32px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--rule);
}

.site-footer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 700px) {
  .life-block,
  .life-block.reverse {
    grid-template-columns: 1fr;
  }

  .life-block img,
  .life-block.reverse img {
    order: initial;
  }

  .life-block.reverse .life-text {
    order: initial;
  }

  .hero-text h1 {
    letter-spacing: 0.02em;
  }
}
