:root {
  --bg: #f8f6f1;
  --surface: #fffdf9;
  --text: #1f1b16;
  --muted: #6d665d;
  --line: #d8d0c4;
  --accent: #3f4b46;
  --accent-soft: #e9e4db;
  --max: 760px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

main {
  padding: 3rem 0 4rem;
}

.hero {
  padding: 1rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

p {
  margin: 0 0 1.1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 68ch;
}

.traits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

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

.closing,
.page-intro,
.reflection-block,
.about-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.closing {
  margin-top: 1rem;
}

.page-intro {
  margin-bottom: 1rem;
}

.page-intro p:last-child,
.reflection-block p:last-child,
.about-block p:last-child {
  margin-bottom: 0;
}

.section-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.reflection-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.question {
  font-style: italic;
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 760px) {
  .site-header .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
    gap: 0.65rem 0.9rem;
  }

  .traits {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 2rem;
  }
}
