:root {
  --bg: #f7f3eb;
  --paper: rgba(255, 255, 255, 0.62);
  --text: #181512;
  --muted: #5e554d;
  --line: rgba(24, 21, 18, 0.12);
  --accent: #8e3d2e;
  --shadow: 0 18px 50px rgba(34, 24, 18, 0.08);
}

* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.75), transparent 35%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--accent); }
img { display: block; max-width: 100%; }

.page {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.site-header,
.feature,
.about-hero,
.essay,
.footer {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.site-header { margin-bottom: 2.2rem; }

.site-header-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

h1,
.footer,
.links,
.site-nav,
.kicker {
  font-family: "Inter", system-ui, sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

h1 a {
  text-decoration: none;
}

.intro,
.feature-copy p,
.summary,
.essay p {
  max-width: 40rem;
  font-size: 1.05rem;
}

.intro {
  color: var(--muted);
  margin: 0;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.92rem;
  padding-top: 0.25rem;
  white-space: nowrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

h2 {
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.feature {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.feature-mark {
  position: sticky;
  top: 1.5rem;
}

.feature-mark img {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.feature-copy,
.about-intro {
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
}

.feature-copy p:first-of-type,
.about-intro p:first-of-type { margin-top: 0; }

.feature-copy ul {
  margin: 1.1rem 0 1.4rem 1.2rem;
  padding: 0;
}

.feature-copy li { margin: 0.35rem 0; }

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
}

.about-hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.summary {
  color: var(--muted);
  margin-top: 0;
}

.essay {
  margin-bottom: 2.5rem;
}

.essay p {
  margin: 0 0 1.2rem;
}

.footer {
  font-size: 0.9rem;
}

.footer p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 720px) {
  html { font-size: 16px; }
  .page {
    width: min(100vw - 1.25rem, 980px);
    padding-top: 2.5rem;
  }
  .site-header-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  .site-header { margin-bottom: 1.6rem; }
  .feature,
  .about-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature-mark {
    position: static;
  }
  .feature-mark img {
    width: 68px;
    height: 68px;
  }
  .about-photo-wrap {
    max-width: 180px;
  }
  .feature-copy,
  .about-intro {
    padding: 1.3rem;
    border-radius: 22px;
  }
}
