/* ==============================================
   THOMAS ROMAN THEME — MAIN CSS
   ============================================== */

:root {
  --obsidian: #1A1916;
  --charcoal: #2D2B27;
  --stone: #3D3A34;
  --warm-gray: #8A8478;
  --sand: #B5AD9F;
  --parchment: #E8E2D6;
  --cream: #F4F0E8;
  --ivory: #FAF8F3;
  --gold-muted: #9C8B6E;
  --gold-bright: #C4A96A;
  --serif: 'EB Garamond', 'Georgia', serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Kill browser default blue on all links */
a, a:link, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==============================================
   NAVIGATION
   ============================================== */

nav#site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  padding: 1.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

nav#site-nav.scrolled {
  padding: 1.2rem 4rem;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26, 25, 22, 0.06);
}

.nav-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  z-index: 600;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-muted);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--obsidian); }
.nav-links a:hover::after { width: 100%; }

/* ==============================================
   HAMBURGER BUTTON
   ============================================== */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 600;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #3D3A34;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==============================================
   MOBILE MENU OVERLAY
   ============================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAF8F3;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  padding: 2rem;
}

.mobile-link {
  font-family: 'EB Garamond', 'Georgia', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1A1916;
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-menu.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-link:nth-child(6) { transition-delay: 0.30s; }

.mobile-link:hover {
  color: #9C8B6E;
}

/* ==============================================
   HERO
   ============================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 4rem 8rem;
  position: relative;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--sand), transparent);
  opacity: 0.4;
  animation: heroLine 2s ease-out 0.5s both;
}

@keyframes heroLine {
  from { height: 0; opacity: 0; }
  to { height: 120px; opacity: 0.4; }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.3s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--obsidian);
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s both;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-muted);
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.7s both;
}

.hero-description {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--stone);
  max-width: 540px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.9s both;
}

.hero-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-muted);
  margin: 3.5rem auto 0;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.1s both;
}

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

/* ==============================================
   SECTIONS BASE
   ============================================== */

section { padding: 8rem 4rem; }
.container { max-width: 720px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 2.5rem;
}

/* ==============================================
   BOOK SECTION
   ============================================== */

#book {
  background: var(--obsidian);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

#book::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  opacity: 0.3;
}

#book .section-eyebrow { color: var(--gold-bright); }

#book h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 3rem;
  color: var(--cream);
}

#book h2 em { font-style: italic; color: var(--gold-bright); }

#book p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--sand);
  margin-bottom: 1.6rem;
}

.foreword-attribution {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(196, 169, 106, 0.12);
}

.foreword-attribution p {
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-gray);
}

.foreword-attribution strong {
  color: var(--cream);
  font-weight: 500;
  font-style: normal;
}

/* ==============================================
   PULLQUOTE
   ============================================== */

.pullquote-section {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
}

.pullquote-section.dark { background: var(--charcoal); }

.pullquote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold-muted);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1rem;
}

.dark .pullquote-mark { color: var(--gold-bright); opacity: 0.2; }

.pullquote-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--obsidian);
}

.dark .pullquote-text { color: var(--parchment); }

.pullquote-source {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.dark .pullquote-source { color: var(--sand); }

/* ==============================================
   STRUCTURE SECTION
   ============================================== */

#structure {
  background: var(--cream);
  position: relative;
}

#structure::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  opacity: 0.5;
}

#structure h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 4rem;
}

.part-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(26, 25, 22, 0.06);
  align-items: start;
}

.part-item:last-child { border-bottom: none; }
.part-meta { text-align: right; padding-top: 0.2rem; }

.part-number {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--obsidian);
  display: block;
  margin-bottom: 0.3rem;
}

.part-name {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 500;
}

.part-description {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--stone);
}

/* ==============================================
   AUTHOR SECTION
   ============================================== */

#author { background: var(--ivory); }

#author h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

#author p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 1.4rem;
}

/* ==============================================
   SPEAKING SECTION
   ============================================== */

#speaking {
  background: var(--cream);
  position: relative;
}

#speaking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  opacity: 0.5;
}

#speaking h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--obsidian);
}

#speaking h2 em { font-style: italic; color: var(--gold-muted); }

#speaking p {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 1.4rem;
}

.speaking-topics {
  margin: 3.5rem 0;
  border-top: 1px solid rgba(26, 25, 22, 0.06);
}

.speaking-topic {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(26, 25, 22, 0.06);
  align-items: start;
}

.speaking-topic:last-child { border-bottom: none; }

.topic-label { text-align: right; padding-top: 0.2rem; }

.topic-number {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--obsidian);
  display: block;
  margin-bottom: 0.3rem;
}

.topic-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 500;
}

.topic-content h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--obsidian);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.topic-content p {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 0;
}

.speaking-formats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.format-tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-gray);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(26, 25, 22, 0.1);
}

.speaking-cta {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(26, 25, 22, 0.06);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.speaking-cta-text { flex: 1; }

.speaking-cta-text p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 0;
}

.speaking-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid rgba(26, 25, 22, 0.2);
  color: var(--obsidian);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.speaking-btn:hover {
  background: var(--obsidian);
  color: var(--gold-bright);
  border-color: var(--obsidian);
}

/* ==============================================
   CONTACT SECTION
   ============================================== */

#contact {
  background: var(--obsidian);
  color: var(--cream);
  position: relative;
  padding-top: 12rem;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  opacity: 0.3;
}

#contact .section-eyebrow {
  color: var(--gold-bright);
  padding-top: 2rem;
}

#contact h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--cream);
}

#contact .contact-subtitle {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--sand);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 540px;
}

.contact-form .full { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 169, 106, 0.12);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(196, 169, 106, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--warm-gray);
  font-weight: 300;
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form button {
  justify-self: start;
  padding: 0.95rem 3rem;
  margin-bottom: 3rem;
  background: transparent;
  border: 1px solid rgba(196, 169, 106, 0.25);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form button:hover {
  background: var(--gold-bright);
  color: var(--obsidian);
  border-color: var(--gold-bright);
}

/* ==============================================
   FOOTER
   ============================================== */

footer#site-footer {
  padding: 2.5rem 4rem;
  background: var(--obsidian);
  border-top: 1px solid rgba(196, 169, 106, 0.08);
  text-align: center;
}

footer#site-footer p {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--warm-gray);
}

/* ==============================================
   BLOG ARCHIVE
   ============================================== */

.blog-header {
  padding: 12rem 4rem 6rem;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  text-align: center;
}

.blog-header .section-eyebrow { margin-bottom: 1.5rem; }

.blog-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--obsidian);
  margin-bottom: 1.5rem;
}

.blog-header p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-muted);
  margin: 2.5rem auto 0;
}

.blog-grid {
  padding: 6rem 4rem 8rem;
  background: var(--ivory);
}

.blog-grid .container { max-width: 820px; }

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-post-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(26, 25, 22, 0.06);
  text-decoration: none;
  color: var(--obsidian);
  transition: opacity 0.3s;
}

.blog-post-item:first-child { border-top: 1px solid rgba(26, 25, 22, 0.06); }
.blog-post-item:visited { color: var(--obsidian); }
.blog-post-item:hover { opacity: 0.7; }

.post-date { text-align: right; }

.post-date-day {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--obsidian);
  display: block;
  line-height: 1;
}

.post-date-month {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 500;
  display: block;
  margin-top: 0.3rem;
}

.post-date-year {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  display: block;
  margin-top: 0.15rem;
}

.post-category {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 0.7rem;
}

.post-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--obsidian);
  line-height: 1.4;
  margin-bottom: 0.9rem;
}

.post-excerpt {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 1.2rem;
}

.post-read-more {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-weight: 500;
}

.blog-pagination {
  padding: 4rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid rgba(26, 25, 22, 0.06);
  margin-top: 2rem;
}

.blog-pagination a,
.blog-pagination span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(26, 25, 22, 0.1);
  color: var(--stone);
  text-decoration: none;
  transition: all 0.3s;
}

.blog-pagination a:hover,
.blog-pagination span.current {
  background: var(--obsidian);
  color: var(--gold-bright);
  border-color: var(--obsidian);
}

/* ==============================================
   SINGLE POST
   ============================================== */

.single-post-header {
  padding: 12rem 4rem 5rem;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  text-align: center;
}

.single-post-header .post-category { margin-bottom: 1.5rem; }

.single-post-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--obsidian);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.2;
}

.post-meta {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.post-meta-rule {
  width: 32px;
  height: 1px;
  background: var(--gold-muted);
  margin: 2rem auto 0;
}

.single-post-body {
  padding: 6rem 4rem 8rem;
  background: var(--ivory);
}

.single-post-body .container { max-width: 660px; }

.post-body-content p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.95;
  color: var(--stone);
  margin-bottom: 1.8rem;
}

.post-body-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--obsidian);
  margin: 3rem 0 1.2rem;
}

.post-body-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--obsidian);
  margin: 2.5rem 0 1rem;
}

.post-body-content blockquote {
  border-left: 2px solid var(--gold-muted);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
}

.post-body-content blockquote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--obsidian);
  margin-bottom: 0;
}

.post-body-content a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 25, 22, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.back-to-blog {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.back-to-blog:hover { color: var(--obsidian); }

.post-tags { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.post-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(26, 25, 22, 0.1);
}

/* ==============================================
   REVEAL ANIMATION
   ============================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ==============================================
   RESPONSIVE — TABLET
   ============================================== */

@media (max-width: 900px) {
  .part-item { grid-template-columns: 1fr; gap: 0.8rem; }
  .part-meta { text-align: left; }
  .speaking-topic { grid-template-columns: 1fr; gap: 0.8rem; }
  .topic-label { text-align: left; }
  .speaking-cta { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .blog-post-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .post-date { text-align: left; }
}

/* ==============================================
   RESPONSIVE — MOBILE (768px and below)
   ============================================== */

@media (max-width: 768px) {

  /* Hide desktop nav links, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  nav#site-nav { padding: 1.4rem 2rem; }
  nav#site-nav.scrolled { padding: 1rem 2rem; }

  section { padding: 5rem 2rem; }
  .hero { padding: 8rem 2rem 6rem; }
  .hero-title { font-size: 2.8rem; }
  .pullquote-section { padding: 5rem 2rem; }
  .contact-form { grid-template-columns: 1fr; }
  .blog-header { padding: 10rem 2rem 4rem; }
  .blog-grid { padding: 4rem 2rem 6rem; }
  .single-post-header { padding: 10rem 2rem 4rem; }
  .single-post-body { padding: 4rem 2rem 6rem; }
}
