:root {
  --ink: #1c1712;
  --ink-muted: #5c5348;
  --paper: #f6f1e8;
  --paper-raised: #fffaf3;
  --paper-line: #e4d9c8;
  --voice: #0d6e66;
  --voice-dark: #0a524c;
  --voice-glow: #e8f4f2;
  --shadow: 0 18px 40px -28px rgba(28, 23, 18, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #e8f4f2 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #efe6d6 0%, transparent 50%),
    var(--paper);
}
::selection { background: var(--voice); color: var(--paper-raised); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.shell {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 0 3rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
header .nav-home {
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  background: var(--paper-raised);
  font-weight: 600;
  color: var(--voice-dark);
}
header .nav-home:hover {
  border-color: var(--voice);
  background: var(--voice-glow);
}

main { flex: 1; padding: 2.5rem 0 2rem; }

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--voice);
}
h1 {
  margin: 1rem 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.lede {
  margin: 1.1rem 0 0;
  max-width: 38rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.prose { margin-top: 2rem; }
.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}
.prose h3 {
  margin: 1.75rem 0 0.5rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
}
.prose p, .prose li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}
.prose p { margin: 0.85rem 0 0; }
.prose ul { margin: 0.75rem 0 0; padding-left: 1.25rem; }
.prose a { color: var(--voice-dark); text-decoration: underline; text-underline-offset: 3px; }

.card {
  display: block;
  margin-top: 0.85rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--paper-line);
  border-radius: 1rem;
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}
.card:hover { border-color: var(--voice); }
.card .meta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.card h2 {
  margin: 0.4rem 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
}
.card p { margin: 0.45rem 0 0; color: var(--ink-muted); line-height: 1.5; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--ink);
  color: var(--paper-raised);
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  font-weight: 500;
}
.btn:hover { background: var(--voice-dark); }
.btn-voice { background: var(--voice); border-radius: 999px; }

.field { margin-top: 1rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--paper-line);
  border-radius: 0.85rem;
  background: var(--paper-raised);
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--voice) 25%, transparent);
}

.panel {
  margin-top: 1.5rem;
  padding: 1.35rem;
  border: 1px solid var(--paper-line);
  border-radius: 1.25rem;
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

footer {
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--paper-line);
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.footer-brand {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
}
.footer-copy {
  margin: 0.5rem 0 0;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-muted);
}
footer h3 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
footer ul { list-style: none; margin: 0.75rem 0 0; padding: 0; }
footer li { margin: 0.4rem 0; }
footer li a { font-size: 0.95rem; }
footer li a:hover { color: var(--voice-dark); }
.legal {
  margin: 2rem 0 0;
  font-size: 0.75rem;
  color: var(--ink-muted);
}
