:root {
  --paper: #fbfaf6;
  --ink: #14110f;
  --soft-ink: #4c423c;
  --warm-brown: #6b5647;
  --feather: #9a8877;
  --line: #ded6cb;
  --mist: #efebe5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.8), var(--paper) 42rem),
    var(--paper);
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.1rem clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 2;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 4rem;
  object-fit: cover;
  width: 4rem;
}

.brand-mark span {
  font-size: 1.18rem;
  font-weight: 700;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 0.98rem;
  padding: 0.62rem 0.85rem;
  text-decoration: none;
}

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

.hero {
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(92vh - 6.4rem);
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.hero-copy {
  max-width: none;
  width: 100%;
}

.eyebrow,
.section-kicker {
  color: var(--warm-brown);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.1rem);
  font-weight: 700;
  line-height: 0.96;
  margin-bottom: 1.35rem;
  max-width: 12ch;
}

.lede {
  color: var(--soft-ink);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.6;
  max-width: 36rem;
}

.hero h1,
.hero .lede {
  max-width: none;
}

.hero-title {
  font-size: 6.4rem;
  max-width: 100%;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .hero-title {
    font-size: 5.8rem;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 4.65rem;
  }
}

@media (max-width: 780px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 2.45rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 340px) {
  .hero-title {
    font-size: 2rem;
  }
}

.story-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.story-shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 5rem);
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1080px;
}

.story-prose {
  max-width: 48rem;
}

.story-prose h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  margin-bottom: 1.4rem;
}

.story-prose p {
  color: #eee9e1;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.8;
  margin-bottom: 1.35rem;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer a,
.email-link-ready {
  cursor: pointer;
  text-decoration-color: var(--feather);
  text-underline-offset: 0.25em;
}

.email-link-ready {
  text-decoration-line: underline;
}

.coming-soon {
  align-items: center;
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 10rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.coming-copy {
  max-width: 44rem;
}

.coming-copy h1 {
  max-width: 8ch;
}

.text-link {
  border-bottom: 1px solid var(--warm-brown);
  color: var(--ink);
  display: inline-flex;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  padding-bottom: 0.18rem;
  text-decoration: none;
}

.text-link:hover {
  color: var(--warm-brown);
}

.blog-hero {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
}

.blog-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  max-width: 11ch;
}

.blog-hero .lede {
  max-width: 46rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button-link {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 1rem;
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

.button-link:hover {
  background: var(--ink);
  color: var(--paper);
}

.button-link-secondary {
  border-color: var(--line);
  color: var(--soft-ink);
}

.blog-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.blog-shell {
  margin: 0 auto;
  max-width: 1080px;
}

.post-card {
  border: 1px solid rgba(251, 250, 246, 0.22);
  border-radius: 8px;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(9rem, 0.3fr) minmax(0, 1fr);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.post-meta {
  color: #cfc6ba;
  font-size: 0.98rem;
  line-height: 1.6;
}

.post-card h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}

.post-card p {
  color: #eee9e1;
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.tag-list li {
  border: 1px solid rgba(251, 250, 246, 0.28);
  border-radius: 999px;
  color: #eee9e1;
  font-size: 0.82rem;
  padding: 0.38rem 0.62rem;
}

.post-card .text-link,
.article-header .text-link {
  color: var(--paper);
  margin-top: 1.3rem;
}

.post-card .text-link:hover,
.article-header .text-link:hover {
  color: #d8c7a9;
}

.follow-band {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.follow-shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1080px;
}

.follow-shell h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.follow-shell p {
  color: var(--soft-ink);
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.social-list a {
  border-bottom: 1px solid var(--feather);
  color: var(--ink);
  text-decoration: none;
}

.article-page {
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.04), rgba(251, 250, 246, 0) 28rem),
    var(--paper);
}

.article-header {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.article-header-shell {
  margin: 0 auto;
  max-width: 900px;
}

.article-header h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
  max-width: 12ch;
}

.article-header .lede {
  color: #eee9e1;
  max-width: 50rem;
}

.article-meta {
  color: #cfc6ba;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.article-prose {
  margin: 0 auto;
  max-width: 820px;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem);
}

.article-prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin: 2.4rem 0 1rem;
}

.article-prose p,
.article-prose li {
  color: var(--soft-ink);
  font-size: clamp(1.06rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}

.article-prose p {
  margin-bottom: 1.35rem;
}

.article-prose ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.article-prose li {
  margin-bottom: 0.5rem;
}

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

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    max-width: 11ch;
  }

  .hero h1 {
    max-width: none;
  }

  .story-shell {
    grid-template-columns: 1fr;
  }

  .coming-soon {
    min-height: auto;
    padding-top: 2rem;
  }

  .post-card,
  .follow-shell {
    grid-template-columns: 1fr;
  }
}
