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

:root {
  --cream: #faf8f4;
  --dark: #1c1a17;
  --muted: #7a7468;
  --accent: #c8b89a;
  --border: #e8e2d9;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}

header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

header a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
}

header a:hover { opacity: 1; }

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

.subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

p { margin-bottom: 0.8rem; }

.highlight {
  background: #f0ece4;
  border-left: 3px solid var(--accent);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}

a { color: var(--dark); text-decoration: underline; text-underline-offset: 3px; }

footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}
