/* Variables */
:root {
  --accent: #D4500E;
}

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

/* Body */
body {
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px;
  border-bottom: 1px solid #f0f0f0;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul a {
  text-decoration: none;
  color: #555555;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav ul a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button */
.button {
  display: inline-block;
  background-color: var(--accent);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #b84000;
}

/* Footer */
footer {
  padding: 40px 60px;
  border-top: 1px solid #f0f0f0;
  color: #999999;
  font-size: 14px;
  margin-top: 120px;
}

/* Intro Section */
.intro {
  padding: 160px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.intro .intro-label {
  margin-bottom: 24px;
}

.intro h2 {
  font-family: 'Lora', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.intro p:last-child {
  font-size: 20px;
  color: #555555;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* Pillars Section */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 120px 60px;
  border-bottom: 1px solid #f0f0f0;
}

.pillar {
  padding: 48px 40px;
  border-right: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background-color: #fafafa;
}

.pillar h3 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-style: italic;
}

.pillar p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
}

.pillar::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 32px;
}

/* Page Hero */
.page-hero {
  padding: 120px 60px;
  max-width: 750px;
  border-bottom: 1px solid #f0f0f0;
}

.page-hero p:last-child {
  font-size: 20px;
  color: #555555;
  max-width: 500px;
}

/* Contact Form */
.contact-form {
  padding: 80px 60px;
  max-width: 640px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

input,
textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #1a1a1a;
  background-color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #aaaaaa;
}

textarea {
  resize: vertical;
  line-height: 1.6;
}

/* Process Steps */
.process {
  padding: 80px 60px;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.step-number {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 32px;
  padding-top: 6px;
}

.step-content h3 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  max-width: 580px;
}

/* About Page */
.about-content {
  padding: 80px 60px;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-intro h2 {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 600px;
}

.about-intro p {
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 16px;
}

.about-founder {
  border-top: 1px solid #f0f0f0;
  padding-top: 64px;
}

.about-founder h2 {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 16px;
}

.about-founder p {
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 16px;
}

.about-founder .button {
  margin-top: 16px;
}

/* Blog Page */
.blog-posts {
  padding: 80px 60px;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.post-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 48px;
  border-bottom: 1px solid #f0f0f0;
}

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

.post-date {
  font-size: 13px;
  font-weight: 500;
  color: #999999;
  letter-spacing: 0.05em;
}

.post-card h2 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  max-width: 620px;
  transition: color 0.2s ease;
}

.post-card p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  max-width: 580px;
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

/* Blog Post Page */
.post-hero {
  padding: 80px 60px 48px;
  max-width: 750px;
  border-bottom: 1px solid #f0f0f0;
}

.post-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.post-hero .post-date {
  font-size: 13px;
  color: #999999;
}

.post-body {
  padding: 64px 60px;
  max-width: 680px;
}

.post-body p {
  font-size: 18px;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 28px;
}

.post-body h2 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 48px;
  margin-bottom: 16px;
}

.post-body h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 36px;
  margin-bottom: 12px;
}

h1 {
  font-family: 'Lora', serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.25s; }
.hero-line:nth-child(3) { animation-delay: 0.4s; }

.accent-line {
  color: var(--accent);
  font-style: italic;
}

@keyframes revealLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 22px;
  color: #555555;
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  animation: revealLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  animation: revealLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.hero-serif {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 700;
}

.hero-sans {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-outline {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #1a1a1a;
  font-style: italic;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
  background: #fafafa;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 20s linear infinite;
  align-items: center;
}

.marquee-track span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--accent) !important;
  font-size: 20px !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Dark CTA Section */
.cta-dark {
  background-color: #111111;
  padding: 160px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 80, 14, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-dark h2 {
  font-family: 'Lora', serif;
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 700px;
}

.cta-dark .cta-sub {
  font-size: 18px;
  color: #666666;
  max-width: 420px;
  line-height: 1.8;
}

.button-light {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #333333;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.button-light:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Scroll Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================
   REINVENTED HOMEPAGE — editorial direction
   Appended: leaves existing rules intact.
   ============================================ */

/* --- 01 Editorial Hero --- */
.editorial-hero {
  position: relative;
  min-height: 85vh;
  padding: 120px 80px 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.editorial-hero-inner {
  max-width: 760px;
  margin-left: 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.editorial-lede {
  font-family: 'Lora', Georgia, serif;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #1a1a1a;
  margin-bottom: 56px;
  max-width: 720px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.editorial-lede em {
  color: var(--accent);
  font-style: italic;
}

.editorial-meta {
  display: flex;
  gap: 40px;
  align-items: baseline;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.inline-link {
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s ease;
  font-weight: 500;
}

.inline-link:hover {
  color: var(--accent);
}

.availability {
  font-size: 13px;
  color: #999999;
  font-style: italic;
  font-family: 'Lora', serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  font-size: 11px;
  color: #bbbbbb;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 02 Manifesto --- */
.manifesto {
  padding: 80px 80px 120px;
  border-bottom: 1px solid #f0f0f0;
}

.manifesto-line {
  min-height: 60vh;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-line--1 { padding-left: 0; }
.manifesto-line--2 { padding-left: 140px; }
.manifesto-line--3 { padding-left: 280px; }

.manifesto-numeral {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
  min-width: 32px;
  padding-top: 18px;
  flex-shrink: 0;
}

.manifesto-line p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  max-width: 780px;
  margin: 0;
}

.accent-word {
  color: var(--accent);
}

/* --- 03 Excerpts --- */
.excerpts {
  padding: 160px 80px;
  max-width: 1200px;
  border-bottom: 1px solid #f0f0f0;
}

.excerpts-eyebrow {
  margin-bottom: 96px;
}

.excerpt {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 96px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.excerpt.visible {
  opacity: 1;
  transform: translateY(0);
}

.excerpt--1 { padding-left: 0; }
.excerpt--2 { padding-left: 120px; }
.excerpt--3 { padding-left: 240px; }

.excerpt:last-child {
  margin-bottom: 0;
}

.excerpt-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 72px;
  color: var(--accent);
  line-height: 0.8;
  flex-shrink: 0;
  margin-top: -8px;
}

.excerpt blockquote {
  margin: 0;
  flex: 1;
}

.excerpt blockquote p {
  font-family: 'Lora', serif;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.excerpt figcaption {
  font-size: 12px;
  color: #999999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* --- 04 Sign-off --- */
.signoff {
  padding: 160px 80px 120px;
  display: flex;
  justify-content: flex-end;
}

.signoff-inner {
  max-width: 520px;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.signoff-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.signoff-preamble {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #999999;
  margin-bottom: 32px;
}

.signoff-body {
  font-family: 'Lora', serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.signoff-body:last-of-type {
  margin-bottom: 48px;
}

.signoff-footer {
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}

.signoff-link {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

.signoff-link:hover {
  color: #1a1a1a;
}

.signoff-name {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #888888;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .editorial-hero {
    padding: 80px 32px 60px;
    min-height: 75vh;
  }
  .editorial-lede {
    font-size: 32px;
  }
  .scroll-indicator {
    left: 32px;
    bottom: 24px;
  }

  .manifesto {
    padding: 40px 32px 80px;
  }
  .manifesto-line {
    min-height: 50vh;
  }
  .manifesto-line--1,
  .manifesto-line--2,
  .manifesto-line--3 {
    padding-left: 0;
  }
  .manifesto-line p {
    font-size: 40px;
  }

  .excerpts {
    padding: 80px 32px;
  }
  .excerpts-eyebrow {
    margin-bottom: 56px;
  }
  .excerpt {
    margin-bottom: 64px;
    gap: 20px;
  }
  .excerpt--1,
  .excerpt--2,
  .excerpt--3 {
    padding-left: 0;
  }
  .excerpt-quote {
    font-size: 48px;
  }
  .excerpt blockquote p {
    font-size: 20px;
  }

  .signoff {
    padding: 80px 32px;
    justify-content: flex-start;
  }
  .signoff-body {
    font-size: 19px;
  }
}

/* ============================================
   REINVENTED BLOG PAGE
   ============================================ */

/* --- Blog hero --- */
.blog-hero {
  padding: 120px 80px 80px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-hero-inner {
  max-width: 760px;
}

.blog-hero .eyebrow {
  margin-bottom: 48px;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.blog-hero-lede {
  font-family: 'Lora', Georgia, serif;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #1a1a1a;
  margin: 0;
  max-width: 720px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.blog-hero-lede em {
  color: var(--accent);
  font-style: italic;
}

/* --- Section headers (shared pattern) --- */
.section-header {
  padding: 0 80px;
  max-width: 1200px;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  color: #888888;
  margin: 0;
  max-width: 480px;
}

/* --- Currently writing --- */
.currently-writing {
  padding: 120px 0 120px;
  border-bottom: 1px solid #f0f0f0;
}

.draft-list {
  list-style: none;
  padding: 0 80px;
  margin: 0;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.draft {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 740px;
}

.draft.visible {
  opacity: 1;
  transform: translateY(0);
}

.draft--1 { padding-left: 0; }
.draft--2 { padding-left: 80px; }
.draft--3 { padding-left: 160px; }

.draft-marker {
  font-family: 'Lora', serif;
  color: var(--accent);
  font-size: 20px;
  padding-top: 8px;
  flex-shrink: 0;
}

.draft-content h3 {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.draft-aside {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}

/* --- Recently (published posts) --- */
.recently {
  padding: 120px 0 120px;
}

.recently-header {
  margin-bottom: 96px;
}

.post-list {
  padding: 0 80px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.post {
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.post.visible {
  opacity: 1;
  transform: translateY(0);
}

.post--1 { padding-left: 0; }
.post--2 { padding-left: 120px; }
.post--3 { padding-left: 240px; }

.post a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-meta {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 20px;
}

.post-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-length {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: #999999;
}

.post h2 {
  font-family: 'Lora', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  transition: color 0.25s ease;
  max-width: 660px;
}

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

.post-excerpt {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 24px;
  max-width: 580px;
}

.post-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

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

/* --- Responsive --- */
@media (max-width: 900px) {
  .blog-hero {
    padding: 80px 32px 60px;
  }
  .blog-hero-lede {
    font-size: 32px;
  }

  .section-header {
    padding: 0 32px;
    margin-bottom: 48px;
  }

  .currently-writing {
    padding: 64px 0 72px;
  }

  .draft-list {
    padding: 0 32px;
    gap: 40px;
  }

  .draft--1,
  .draft--2,
  .draft--3 {
    padding-left: 0;
  }

  .draft-content h3 {
    font-size: 20px;
  }

  .recently {
    padding: 72px 0 80px;
  }

  .recently-header {
    margin-bottom: 56px;
  }

  .post-list {
    padding: 0 32px;
    gap: 64px;
  }

  .post--1,
  .post--2,
  .post--3 {
    padding-left: 0;
  }

  .post h2 {
    font-size: 26px;
  }

  .post-excerpt {
    font-size: 16px;
  }
}

/* ============================================
   REINVENTED CONTACT PAGE
   ============================================ */

/* --- Contact hero --- */
.contact-hero {
  padding: 120px 80px 80px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-hero-inner {
  max-width: 760px;
}

.contact-hero .eyebrow {
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.contact-hero-lede {
  font-family: 'Lora', Georgia, serif;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #1a1a1a;
  margin: 0;
  max-width: 720px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.contact-hero-lede em {
  color: var(--accent);
  font-style: italic;
}

/* --- Two-column body --- */
.contact-body {
  padding: 120px 80px 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  max-width: 1200px;
  align-items: start;
}

/* --- Form column --- */
.contact-form-column {
  max-width: 480px;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0;
  padding: 10px 0 12px;
  transition: border-color 0.25s ease;
  outline: none;
  width: 100%;
}

.form-field textarea {
  border: 1px solid #e8e8e8;
  background-color: #fafafa;
  border-radius: 4px;
  padding: 14px 16px;
  line-height: 1.6;
  resize: vertical;
  min-height: 160px;
}

.form-field input:focus {
  border-bottom-color: var(--accent);
}

.form-field textarea:focus {
  border-color: var(--accent);
  background-color: #ffffff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #bbbbbb;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

.contact-submit {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 8px 0 6px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid var(--accent);
  cursor: pointer;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.contact-submit:hover {
  color: var(--accent);
}

/* --- Personal note column --- */
.contact-note-column {
  padding-top: 8px;
}

.contact-note-inner {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-note-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-note-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.contact-note-body {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.005em;
}

.contact-note-body em {
  font-style: italic;
  color: var(--accent);
}

.contact-signoff {
  padding-top: 8px;
}

.contact-signoff-name {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #888888;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-hero {
    padding: 80px 32px 60px;
  }

  .contact-hero-lede {
    font-size: 32px;
  }

  .contact-body {
    padding: 64px 32px 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .contact-form-column,
  .contact-note-inner {
    max-width: 100%;
  }

  .contact-note-inner {
    gap: 36px;
  }
}

/* ============================================
   REINVENTED ABOUT PAGE
   ============================================ */

/* --- About hero --- */
.about-hero {
  padding: 120px 80px 80px;
  border-bottom: 1px solid #f0f0f0;
}

.about-hero-inner {
  max-width: 760px;
}

.about-hero .eyebrow {
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.about-hero-lede {
  font-family: 'Lora', Georgia, serif;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #1a1a1a;
  margin: 0;
  max-width: 720px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.about-hero-lede em {
  color: var(--accent);
  font-style: italic;
}

/* --- Studio section --- */
.about-studio {
  padding: 120px 80px 80px;
}

.about-studio-header {
  max-width: 1200px;
  margin-bottom: 72px;
}

.about-studio-body {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-paragraph {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 660px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-paragraph.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-paragraph em {
  color: var(--accent);
  font-style: italic;
}

/* Subtle staircase to keep the rhythm consistent with the rest of the site */
.about-paragraph--1 { padding-left: 0; }
.about-paragraph--2 { padding-left: 60px; }
.about-paragraph--3 { padding-left: 120px; }

/* --- Wordmark section (visual pause) --- */
.about-wordmark-section {
  padding: 80px 80px 80px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: center;
  background-color: #fafafa;
}

.about-wordmark-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 820px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-wordmark-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-wordmark {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
}

.about-wordmark-caption {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #999999;
  margin: 0;
  letter-spacing: 0.05em;
}

/* --- Founder section --- */
.about-founder-new {
  padding: 120px 80px 120px;
}

.about-founder-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 96px;
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-founder-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-founder-label {
  padding-top: 8px;
  position: sticky;
  top: 40px;
}

.about-founder-label .eyebrow {
  margin-bottom: 16px;
}

.about-founder-name {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  line-height: 1.1;
}

.about-founder-role {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #888888;
  margin: 0;
}

.about-founder-body {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-founder-paragraph {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.005em;
  margin: 0;
}

.about-founder-paragraph em {
  color: var(--accent);
  font-style: italic;
}

.about-founder-link {
  align-self: flex-start;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.about-founder-link:hover {
  color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-hero {
    padding: 80px 32px 60px;
  }
  .about-hero-lede {
    font-size: 32px;
  }

  .about-studio {
    padding: 72px 32px 56px;
  }
  .about-studio-header {
    margin-bottom: 48px;
  }
  .about-paragraph {
    font-size: 19px;
  }
  .about-paragraph--1,
  .about-paragraph--2,
  .about-paragraph--3 {
    padding-left: 0;
  }

  .about-wordmark-section {
    padding: 56px 32px;
  }

  .about-founder-new {
    padding: 72px 32px 80px;
  }
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-founder-label {
    position: static;
  }
  .about-founder-name {
    font-size: 30px;
  }
  .about-founder-paragraph {
    font-size: 17px;
  }
}

/* ============================================
   NAV WORDMARK
   Overrides the text-logo treatment.
   ============================================ */

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-wordmark {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.logo:hover .logo-wordmark {
  opacity: 0.75;
}

@media (max-width: 900px) {
  .logo-wordmark {
    height: 32px;
  }
}

/* ============================================
   REINVENTED APPROACH PAGE
   ============================================ */

/* --- Approach hero --- */
.approach-hero {
  padding: 120px 80px 80px;
  border-bottom: 1px solid #f0f0f0;
}

.approach-hero-inner {
  max-width: 760px;
}

.approach-hero .eyebrow {
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.approach-hero-lede {
  font-family: 'Lora', Georgia, serif;
  font-size: 52px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #1a1a1a;
  margin: 0;
  max-width: 720px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.approach-hero-lede em {
  color: var(--accent);
  font-style: italic;
}

/* --- Approach essay body --- */
.approach-body {
  padding: 120px 80px 80px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.approach-section {
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-section--1 { padding-left: 0; }
.approach-section--2 { padding-left: 80px; }
.approach-section--3 { padding-left: 160px; }

.approach-heading {
  font-family: 'Lora', serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.approach-heading em {
  color: var(--accent);
  font-style: italic;
}

.approach-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.approach-paragraphs p {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  letter-spacing: -0.003em;
}

/* --- What we don't do --- */
.approach-negatives {
  padding: 120px 80px 120px;
  border-top: 1px solid #f0f0f0;
  background-color: #fafafa;
}

.approach-negatives-header {
  max-width: 720px;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-negatives-header .eyebrow {
  margin: 0;
}

.approach-negatives-subhead {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: #888888;
  margin: 0;
  line-height: 1.5;
  max-width: 540px;
}

.negatives-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.negative {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.negative.visible {
  opacity: 1;
  transform: translateY(0);
}

.negative-mark {
  font-family: 'Lora', serif;
  color: var(--accent);
  font-size: 20px;
  padding-top: 4px;
  flex-shrink: 0;
  line-height: 1;
}

.negative-line {
  font-family: 'Lora', serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.negative-aside {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: #888888;
  margin: 0;
  max-width: 560px;
}

/* --- Closing note --- */
.approach-close {
  padding: 120px 80px 120px;
}

.approach-close-inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-close-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-close-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.005em;
}

.approach-close-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  font-style: italic;
  transition: color 0.2s ease;
}

.approach-close-link:hover {
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .approach-hero {
    padding: 80px 32px 60px;
  }
  .approach-hero-lede {
    font-size: 32px;
  }

  .approach-body {
    padding: 72px 32px 64px;
    gap: 64px;
  }
  .approach-section--1,
  .approach-section--2,
  .approach-section--3 {
    padding-left: 0;
  }
  .approach-heading {
    font-size: 28px;
  }
  .approach-paragraphs p {
    font-size: 17px;
  }

  .approach-negatives {
    padding: 72px 32px 80px;
  }
  .approach-negatives-header {
    margin-bottom: 48px;
  }
  .negatives-list {
    gap: 32px;
  }
  .negative-line {
    font-size: 18px;
  }
  .negative-aside {
    font-size: 15px;
  }

  .approach-close {
    padding: 72px 32px 80px;
  }
  .approach-close-body {
    font-size: 19px;
  }
}

/* ============================================
   BLOG POST PAGE
   Classic centered single-column, tuned for reading.
   ============================================ */

/* --- Back-to-blog nav --- */
.post-nav-top {
  padding: 48px 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.post-back-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #888888;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.post-back-link:hover {
  color: var(--accent);
}

/* --- Post article --- */
.post-article {
  padding: 64px 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Post header --- */
.post-header {
  padding-bottom: 64px;
  margin-bottom: 72px;
  border-bottom: 1px solid #f0f0f0;
}

.post-metadata {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 32px;
}

.post-meta-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-meta-sep {
  color: #cccccc;
  font-size: 13px;
}

.post-meta-length {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #999999;
}

.post-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 28px;
  max-width: 820px;
}

.post-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
  max-width: 680px;
  font-weight: 400;
}

/* --- Post body: the reading experience --- */
.post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
}

.post-content p {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
  color: #2a2a2a;
  margin: 0 0 28px;
  letter-spacing: -0.003em;
}

.post-content p em {
  font-style: italic;
  color: #1a1a1a;
}

.post-content p strong {
  font-weight: 600;
  color: #1a1a1a;
}

.post-content a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

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

/* --- Lede paragraph with drop cap --- */
.post-lede {
  font-size: 22px !important;
  line-height: 1.7 !important;
  color: #1a1a1a !important;
}

.drop-cap {
  font-family: 'Lora', Georgia, serif;
  float: left;
  font-size: 76px;
  line-height: 0.88;
  font-weight: 400;
  color: var(--accent);
  margin: 6px 12px 0 0;
  padding: 0;
  font-style: normal;
}

/* --- Subheads --- */
.post-subhead {
  font-family: 'Lora', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  margin: 64px 0 24px;
  max-width: 640px;
}

.post-subhead + p {
  margin-top: 0;
}

/* --- Pullquote --- */
.post-pullquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  margin: 48px -40px;
  padding: 16px 0 16px 40px;
  border-left: 3px solid var(--accent);
  max-width: 720px;
}

/* --- Lists --- */
.post-body-list {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0 0 28px;
  padding-left: 28px;
}

.post-body-list li {
  margin-bottom: 4px;
  padding-left: 8px;
}

.post-body-list li::marker {
  color: var(--accent);
  font-family: 'Lora', serif;
  font-style: italic;
}

/* --- Divider (section break) --- */
.post-divider {
  border: none;
  text-align: center;
  margin: 64px 0;
  height: auto;
}

.post-divider::before {
  content: '· · ·';
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
}

/* --- Closing paragraph (italic, larger) --- */
.post-close {
  font-family: 'Lora', Georgia, serif !important;
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.6 !important;
  color: #1a1a1a !important;
  margin-top: 48px !important;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}

/* ===== End-of-post block ===== */

.post-outro {
  max-width: 900px;
  margin: 120px auto 120px;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 64px;
}

.post-outro-author {
  grid-column: 1;
}

.post-outro-next {
  grid-column: 2;
  grid-row: 1;
}

.post-outro-cta {
  grid-column: 1 / -1;
  padding-top: 56px;
  padding-left: 120px;  /* carries the staircase rhythm back in */
  border-top: 1px solid #f0f0f0;
}

/* Author */
.post-outro-author .eyebrow {
  margin-bottom: 16px;
}

.post-author-name {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.1;
}

.post-author-bio {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
  max-width: 360px;
}

.inline-underline {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

.inline-underline:hover {
  color: var(--accent);
}

/* Next post card */
.post-outro-next .eyebrow {
  margin-bottom: 16px;
}

.post-outro-next-card {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 360px;
}

.next-post-meta {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}

.next-post-title {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  transition: color 0.2s ease;
}

.post-outro-next-card:hover .next-post-title {
  color: var(--accent);
}

.next-post-excerpt {
  font-family: 'Lora', serif;
  font-size: 15px;
  line-height: 1.55;
  color: #777777;
  margin: 0 0 14px;
}

.next-post-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* CTA block */
.post-cta-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0 0 20px;
  max-width: 460px;
}

.post-cta-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.post-cta-link:hover {
  color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .post-nav-top {
    padding: 32px 32px 0;
  }

  .post-article {
    padding: 40px 32px 0;
  }

  .post-header {
    padding-bottom: 48px;
    margin-bottom: 56px;
  }

  .post-title {
    font-size: 36px;
  }

  .post-subtitle {
    font-size: 18px;
  }

  .post-content p {
    font-size: 18px;
    line-height: 1.7;
  }

  .post-body-list {
    font-size: 18px;
    line-height: 1.4;
  }

  .post-lede {
    font-size: 19px !important;
  }

  .drop-cap {
    font-size: 56px;
    margin: 4px 10px 0 0;
  }

  .post-subhead {
    font-size: 24px;
    margin: 48px 0 20px;
  }

  .post-pullquote {
    font-size: 22px;
    margin: 36px 0;
    padding: 8px 0 8px 24px;
  }

  .post-close {
    font-size: 19px !important;
  }

  .post-outro {
    padding: 0 32px;
    margin: 80px auto 80px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .post-outro-next {
    grid-column: 1;
    grid-row: auto;
  }

  .post-outro-cta {
    grid-column: 1;
    padding-left: 0;
    padding-top: 48px;
  }

  .post-cta-body {
    font-size: 19px;
  }
}

/* ============================================
   MOBILE NAV + FOOTER FIX
   The existing media queries handle body content,
   but nav and footer were missed. This block fixes that.
   ============================================ */

@media (max-width: 700px) {
  /* Nav: stack logo above menu, tighten spacing */
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
  }

  nav ul {
    gap: 24px;
  }

  nav ul a {
    font-size: 14px;
  }

  /* Footer: tighter horizontal padding on mobile */
  footer {
    padding: 32px 24px;
    margin-top: 80px;
  }
}

/* On extra-narrow screens, let nav menu wrap to 2 rows if needed */
@media (max-width: 380px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thanks-page {
  padding: 160px 80px 120px;
  min-height: 60vh;
}

.thanks-inner {
  max-width: 620px;
}

.thanks-page .eyebrow {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.thanks-lede {
  font-family: 'Lora', Georgia, serif;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.thanks-lede em {
  color: var(--accent);
  font-style: italic;
}

.thanks-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 64px;
  max-width: 540px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.thanks-next {
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.thanks-next-label {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #888888;
  margin: 0 0 20px;
}

.thanks-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thanks-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-block;
}

.thanks-link:hover {
  color: var(--accent);
}

.thanks-signoff {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #888888;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@media (max-width: 900px) {
  .thanks-page {
    padding: 80px 32px 80px;
  }
  .thanks-lede {
    font-size: 36px;
  }
  .thanks-body {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .thanks-next {
    padding-top: 32px;
    margin-bottom: 48px;
  }
}

/* ============================================
   BLOG INDEX — FEATURED + STANDARD POST TREATMENT
   The newest post gets slightly larger treatment.
   Replaces the old .post--1/.post--2/.post--3 staircase
   when there are 2+ published posts.
   ============================================ */

.post--featured {
  max-width: 760px;
  padding-left: 0;
}

.post--featured h2 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 700px;
}

.post--featured .post-excerpt {
  font-size: 20px;
  line-height: 1.55;
  color: #444444;
  max-width: 640px;
  margin-bottom: 28px;
}

.post--standard {
  max-width: 640px;
  padding-left: 120px;
}

.post--standard h2 {
  font-size: 30px;
  line-height: 1.22;
  margin-bottom: 16px;
  max-width: 580px;
}

.post--standard .post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  max-width: 540px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .post--featured {
    padding-left: 0;
  }
  .post--featured h2 {
    font-size: 30px;
  }
  .post--featured .post-excerpt {
    font-size: 17px;
  }

  .post--standard {
    padding-left: 0;
  }
  .post--standard h2 {
    font-size: 22px;
  }
  .post--standard .post-excerpt {
    font-size: 15px;
  }
}

/* ============================================
   POST SHARE BLOCK
   ============================================ */

.post-share {
  max-width: 680px;
  margin: 64px auto 0;
  padding: 32px 80px 0;
  border-top: 1px solid #f0f0f0;
}

.post-share .eyebrow {
  margin-bottom: 16px;
}

.share-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.share-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.share-link:hover {
  color: var(--accent);
}

.share-link--copied {
  color: var(--accent);
  font-style: italic;
}

@media (max-width: 900px) {
  .post-share {
    padding: 32px 32px 0;
  }
}
