/* =========================================================
   TIME SPENT FALLING — Main Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Cormorant+Infant:ital,wght@0,300;0,400;1,300;1,400&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,600&display=swap');

:root {
  --ink:       #0d0b09;
  --deep:      #141210;
  --surface:   #1a1714;
  --border:    #2a2520;
  --ash:       #3a3330;
  --muted:     #6b6058;
  --warm:      #9a8e82;
  --parchment: #d4c9bc;
  --cream:     #ede5d8;
  --gold:      #c9a96e;
  --ember:     #a84c3a;
  --blush:     #c47c6e;
}

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

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

body {
  background-color: var(--ink);
  color: var(--parchment);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,11,9,0.97) 0%, rgba(13,11,9,0) 100%);
}

.site-header.scrolled {
  background: rgba(13,11,9,0.97);
  transition: background 0.3s;
}

.site-branding a {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  text-decoration: none;
  transition: color 0.3s;
}
.site-branding a:hover { color: var(--cream); }

.main-navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-navigation a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-navigation a:hover { color: var(--cream); }
.main-navigation a:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--warm);
  transition: all 0.3s;
}

/* ─── SECTION SHARED ─── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  background: var(--deep);
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-portrait-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, #1e1915 0%, #0d0b09 50%, #1a1008 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3rem;
  position: relative;
}

.hero-portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 35%, rgba(201,169,110,0.07) 0%, transparent 65%),
              radial-gradient(ellipse at 60% 80%, rgba(168,76,58,0.06) 0%, transparent 50%);
}

.portrait-note {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  z-index: 1;
}

.hero-image-side::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 4rem 5rem;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 2rem 0;
}

.hero-tagline {
  font-family: 'Cormorant Infant', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--warm);
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 3.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  transition: color 0.3s;
}
.hero-cta::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.hero-cta:hover { color: var(--gold); }
.hero-cta:hover::before { width: 50px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

/* ─── HERO ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow   { animation: fadeUp 0.9s ease 0.2s both; }
.hero-name      { animation: fadeUp 0.9s ease 0.4s both; }
.hero-rule      { animation: fadeUp 0.6s ease 0.6s both; }
.hero-tagline   { animation: fadeUp 0.9s ease 0.7s both; }
.hero-cta       { animation: fadeUp 0.9s ease 0.9s both; }
.hero-scroll-hint { animation: fadeUp 0.9s ease 1.1s both; }
.portrait-note  { animation: fadeUp 0.9s ease 1.2s both; }

/* ─── BOOKS ─── */
.books-section {
  padding: 8rem 3rem;
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.books-inner { max-width: 1100px; margin: 0 auto; }
.books-header { margin-bottom: 5rem; }

.books-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.book-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.book-cover-wrap {
  position: relative;
  flex-shrink: 0;
}
.book-cover-wrap::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.book-cover {
  width: 130px;
  height: auto;
  position: relative;
  z-index: 1;
  box-shadow: -6px 6px 30px rgba(0,0,0,0.6);
}

.book-number {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.75rem;
}

.book-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.book-desc {
  font-size: 0.92rem;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.book-buy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.book-buy-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.book-buy-link:hover { gap: 1.2rem; }
.book-buy-link:hover svg { transform: translateX(3px); }

/* ─── DISPATCHES HOMEPAGE PREVIEW ─── */
.dispatches-section {
  padding: 8rem 3rem;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.dispatches-inner { max-width: 1100px; margin: 0 auto; }

.dispatches-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.dispatches-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.15;
}

.dispatches-all-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
  padding-bottom: 0.5rem;
}
.dispatches-all-link:hover { color: var(--gold); }

.dispatches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.dispatch-item {
  padding: 3rem 3rem 3rem 0;
  border-right: 1px solid var(--border);
}
.dispatch-item:nth-child(2) { padding-left: 3rem; }
.dispatch-item:nth-child(3) { padding-left: 3rem; border-right: none; }

.dispatch-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.dispatch-tag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
}

.dispatch-date {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--ash);
}

.dispatch-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-style: italic;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.dispatch-title:hover { color: var(--gold); }

.dispatch-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.dispatch-read {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.dispatch-read::after { content: '→'; transition: transform 0.3s; }
.dispatch-read:hover { color: var(--gold); }
.dispatch-read:hover::after { transform: translateX(4px); }

/* No posts placeholder */
.dispatch-item.placeholder .dispatch-title { color: var(--ash); }
.dispatch-item.placeholder .dispatch-excerpt { color: var(--ash); }

/* ─── PHOTO BRIDGE ─── */
.photo-bridge {
  padding: 6rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photo-bridge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.photo-bridge-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.photo-bridge-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  color: var(--parchment);
  font-weight: 300;
  line-height: 1.25;
  font-style: italic;
  margin-bottom: 1rem;
}

.photo-bridge-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 50ch;
}

.photo-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  white-space: nowrap;
}
.photo-bridge-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.04);
}

/* ─── ABOUT STRIP — stacked single column ─── */
.about-strip {
  padding: 8rem 3rem;
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.about-stack {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-stack .section-label { margin-bottom: 0; }

.about-image-col { width: 100%; }

.about-portrait {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: -8px 8px 40px rgba(0,0,0,0.7);
}

.about-portrait-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--deep) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.about-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin: 0;
}

.about-bio {
  font-family: "Cormorant Infant", serif;
  font-size: 1.05rem;
  color: var(--warm);
  line-height: 1.9;
  font-style: italic;
  margin: 0;
}

.about-bio-plain {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.about-bio-plain a { color: var(--warm); text-decoration: none; }
.about-bio-plain a:hover { color: var(--gold); }
.about-bio-plain em { font-style: italic; }

.about-contact-wrap {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.about-contact-link:hover { gap: 1.2rem; }

/* ─── DISPATCHES ARCHIVE PAGE ─── */
.archive-header {
  padding: 10rem 3rem 4rem;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}
.archive-header-inner { max-width: 1100px; margin: 0 auto; }

.archive-page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.archive-desc {
  font-family: 'Cormorant Infant', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--warm);
  max-width: 50ch;
  line-height: 1.7;
}

/* Category filter */
.category-filter {
  padding: 2rem 3rem;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.category-filter-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 0.5rem; flex-wrap: wrap; width: 100%; }

.cat-btn {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.cat-btn:hover, .cat-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

/* Posts list */
.posts-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.post-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.post-row:first-child { padding-top: 0; }

.post-row-meta { text-align: right; }

.post-row-date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ash);
  display: block;
  margin-bottom: 0.5rem;
}

.post-row-cat {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ember);
}

.post-row-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  display: block;
  line-height: 1.25;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.post-row-title:hover { color: var(--gold); }

.post-row-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.2rem;
}

/* ─── SINGLE POST ─── */
.single-post-header {
  padding: 10rem 3rem 5rem;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}
.single-post-header-inner { max-width: 720px; margin: 0 auto; }

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.single-post-cat {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
}
.single-post-cat:hover { color: var(--gold); }

.single-post-date {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--ash);
}

.single-post-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.single-post-excerpt {
  font-family: 'Cormorant Infant', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm);
  line-height: 1.7;
}

/* Post content */
.single-post-body {
  padding: 5rem 3rem 8rem;
  background: var(--ink);
}
.single-post-body-inner { max-width: 680px; margin: 0 auto; }

.entry-content {
  font-size: 1.05rem;
  color: var(--parchment);
  line-height: 1.9;
  font-weight: 300;
}

.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin: 2.5em 0 1em;
}
.entry-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin: 2em 0 0.8em;
}
.entry-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin: 2em 0;
  font-style: italic;
  color: var(--warm);
}
.entry-content a { color: var(--gold); }
.entry-content a:hover { color: var(--cream); }
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3em 0;
}

/* Poetry-specific: preserve line breaks */
.category-poetry .entry-content p {
  white-space: pre-wrap;
  font-family: 'Cormorant Infant', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 2;
}

/* Post nav */
.post-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.post-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.post-nav a:hover { color: var(--gold); }
.post-nav-prev::before { content: '←'; }
.post-nav-next::after  { content: '→'; }

/* ─── FOOTER ─── */
.site-footer {
  padding: 3rem;
  background: var(--ink);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.8rem;
  color: var(--ash);
  font-style: italic;
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--warm); }

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--ash);
}

/* ─── WP ADMIN BAR OFFSET ─── */
.admin-bar .site-header { top: 32px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .site-header { padding: 1.2rem 1.5rem; }
  .nav-toggle { display: flex; }
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,11,9,0.98);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
  }
  .main-navigation.open { display: block; }
  .main-navigation ul { flex-direction: column; gap: 1.5rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 55vw; min-height: 280px; max-height: 420px; }
  .hero-portrait-placeholder { min-height: 0; }
  .hero-image-side::after { display: none; }
  .hero-text-side { padding: 4rem 1.5rem; }
  .hero-scroll-hint { display: none; }

  .books-section, .dispatches-section, .about-strip { padding: 5rem 1.5rem; }
  .books-grid { grid-template-columns: 1fr; gap: 3rem; }

  .dispatches-grid { grid-template-columns: 1fr; }
  .dispatch-item { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 0 !important; }
  .dispatch-item:last-child { border-bottom: none; }
  .dispatches-top { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .photo-bridge { padding: 4rem 1.5rem; }
  .photo-bridge-inner { grid-template-columns: 1fr; }

  .about-strip { padding: 5rem 1.5rem; }

  .archive-header { padding: 8rem 1.5rem 3rem; }
  .posts-list { padding: 3rem 1.5rem; }
  .post-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .post-row-meta { text-align: left; display: flex; gap: 1rem; align-items: center; }

  .single-post-header { padding: 8rem 1.5rem 3rem; }
  .single-post-body { padding: 3rem 1.5rem 5rem; }
  .post-nav { padding: 2rem 1.5rem; }

  .site-footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .category-filter { padding: 1.5rem; }
}
