/* ------------------------------------------------------------------
   The Silence of Fear — quiet, parchment, timeless.
   "Quiet enough to hear yourself think again."
   ------------------------------------------------------------------ */

:root {
  --parchment: #f6f1e7;      /* page background — soft parchment */
  --parchment-deep: #efe8da; /* slightly deeper panels */
  --ink: #3b352c;            /* warm ink, never pure black */
  --ink-soft: #6b6355;       /* secondary text */
  --ink-faint: #948b7a;      /* whispers: captions, small labels */
  --line: #ddd3c2;           /* hairline rules */
  --accent: #7d7461;         /* muted sage-brown for links */
  --measure: 34rem;          /* narrow reading column */
}

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

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: "EB Garamond", Garamond, "Iowan Old Style", Georgia, serif;
  font-size: 1.1875rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- structure ---------- */

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

.wrap-wide {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- header / nav ---------- */

header.site {
  padding: 2.75rem 0 2.5rem;
  text-align: center;
}

.wordmark {
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.wordmark .of { color: var(--ink-faint); }

nav.site {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 2.25rem;
}

nav.site a {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

nav.site a:hover,
nav.site a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--line);
}

/* ---------- hero ---------- */

.hero {
  padding: 5.5rem 0 6rem;
  text-align: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 3.9rem);
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 .of {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.6em;
  color: var(--ink-faint);
  margin: 0.9em 0;
}

.hero .tagline {
  margin-top: 3rem;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
}

/* ---------- shared bits ---------- */

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  width: 5rem;
  margin: 0 auto;
}

section.quiet { padding: 4.5rem 0; }

section.quiet h2,
.section-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  margin-bottom: 2.5rem;
}

section.quiet p + p { margin-top: 1.4em; }

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

em { letter-spacing: 0.01em; }

/* ---------- home: intention ---------- */

.intention p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.9;
}

.intention .promise {
  margin-top: 2.2em;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- home: becoming list ---------- */

.becoming {
  background: var(--parchment-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.becoming-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.75rem;
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink-soft);
}

.becoming-note {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-faint);
}

/* ---------- home: latest writing card ---------- */

.post-card {
  border: 1px solid var(--line);
  background: #faf6ee;
  padding: 2.75rem 2.5rem;
  text-align: center;
}

.post-card .kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.post-card h3 {
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin: 1.1rem 0 1.2rem;
}

.post-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.post-card h3 a:hover { color: var(--accent); }

.post-card .excerpt {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.post-card .more {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}

/* ---------- home: about mistee ---------- */

.about-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.portrait {
  width: 9.5rem;
  height: 9.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  filter: sepia(0.12) saturate(0.9);
}

.about-block p { max-width: 30rem; }

.signature {
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ---------- post page ---------- */

article.post { padding: 1.5rem 0 3rem; }

.post-head {
  text-align: center;
  padding-bottom: 3rem;
}

.post-head .kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.post-head h1 {
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 6vw, 3rem);
  line-height: 1.2;
  margin: 1.2rem 0 1.6rem;
}

.byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.byline img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: sepia(0.12) saturate(0.9);
}

figure.post-photo { margin: 0 0 3.25rem; }

figure.post-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

figure.post-photo figcaption {
  margin-top: 0.8rem;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
}

.post-body p + p { margin-top: 1.45em; }

.post-body .salutation {
  margin-top: 2.5em;
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
}

/* ---------- footer ---------- */

footer.site {
  margin-top: 4rem;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.98rem;
}

footer.site .foot-tagline {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}

footer.site a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

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

footer.site .fine {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ---------- contact ---------- */

.contact-head {
  text-align: center;
  padding: 1.5rem 0 0;
}

.contact-head h1 {
  font-family: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 6vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-intro {
  text-align: center;
  color: var(--ink-soft);
  max-width: 30rem;
  margin: 0 auto;
}

.contact-form { margin-top: 3.5rem; }

.field { margin-bottom: 2.25rem; }

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.7rem;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0 0.7rem;
  font-family: inherit;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  transition: border-color 0.4s ease;
}

.field textarea { resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

/* honeypot — hidden from people, catches bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-actions { text-align: center; margin-top: 3rem; }

button[type="submit"] {
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.9rem 2.75rem;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

button[type="submit"]:hover:not(:disabled) {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}

button[type="submit"]:disabled { opacity: 0.55; cursor: default; }

.form-status {
  text-align: center;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 2.5rem 0;
}

.form-status a { color: var(--accent); }

/* ---------- small screens ---------- */

@media (max-width: 480px) {
  body { font-size: 1.09rem; }
  .hero { padding: 4rem 0 4.5rem; }
  nav.site { gap: 1.4rem; }
  .post-card { padding: 2rem 1.4rem; }
}
