:root {
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #fdfdfb;
  --line: #e4e2dc;
  --max-width: 640px;
}

* {
  box-sizing: border-box;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

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

header.site-header h1 {
  font-size: 1.5rem;
  margin: 0 0 0.9rem;
  font-weight: 600;
}

nav.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

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

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--text);
  text-decoration: underline;
}

main p {
  margin: 0 0 1.1rem;
}

.tagline {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.placeholder-note {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 4px;
}

.field-note {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.field-note:last-child {
  border-bottom: none;
}

.field-note h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.field-note time {
  color: var(--muted);
  font-size: 0.85rem;
}

.luma-embed-slot {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

footer.site-footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

footer.site-footer a {
  color: var(--muted);
}

footer.site-footer .footer-email:hover {
  color: var(--text);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  color: var(--muted);
  transition: color 0.15s ease;
}

.social-icons a:hover {
  color: var(--text);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

a {
  color: var(--text);
}
