/* ================================================
   musings of a monk — shared stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

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

::selection {
  background: #111111;
  color: #ffffff;
}

/* ── Custom properties ── */
:root {
  --ui: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Base ── */
html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  background: #f0ede8;
  min-height: 100%;
}

body {
  font-family: var(--serif);
  background: #ffffff;
  color: #111111;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Page fade-in ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

main {
  flex: 1;
  animation: fadeUp 0.45s var(--ease-out) both;
}

/* ── Reading progress bar ── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: #111111;
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ── Site Header ── */
.site-header {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
}

.site-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-decoration: none;
  color: #111111;
  display: inline-block;
  transition: opacity 0.18s ease;
}
.site-title:hover { opacity: 0.45; }

.site-byline {
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8c8c8;
  margin-top: 0.2rem;
}

.site-nav {
  margin-top: 0.85rem;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  font-family: var(--ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaaaaa;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s ease;
}

/* Underline expands from centre */
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: #111111;
  transition: left 0.24s var(--ease-out), right 0.24s var(--ease-out);
}
.site-nav a:hover,
.site-nav a.active { color: #111111; }
.site-nav a:hover::after,
.site-nav a.active::after { left: 0; right: 0; }

/* ─────────────────────────────────────────
   Post Grid — homepage
───────────────────────────────────────── */

.post-grid-wrap {
  padding: 2rem 0 4rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  animation: cardIn 0.5s var(--ease-out) both;
  transition:
    box-shadow   0.28s var(--ease-out),
    transform    0.28s var(--ease-out),
    border-color 0.28s ease;
}

.post-card:nth-child(1) { animation-delay: 0.04s; }
.post-card:nth-child(2) { animation-delay: 0.09s; }
.post-card:nth-child(3) { animation-delay: 0.14s; }
.post-card:nth-child(4) { animation-delay: 0.19s; }
.post-card:nth-child(5) { animation-delay: 0.24s; }

.post-card:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.13), 0 3px 8px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.15);
}

/* First card spans full width */
.post-card--featured { grid-column: 1 / -1; }

/* Image */
.post-card-image {
  overflow: hidden;
  background: #111111;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.post-card--featured .post-card-image { aspect-ratio: 21 / 9; }

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.95);
  transition: transform 0.55s var(--ease-out), filter 0.4s ease;
}
.post-card:hover .post-card-image img {
  transform: scale(1.05);
  filter: grayscale(100%) contrast(1.14) brightness(0.88);
}

/* Card body */
.post-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.post-card-meta {
  font-family: var(--ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cccccc;
}

.post-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #111111;
}
.post-card--featured .post-card-title { font-size: 1.7rem; }

.post-card-excerpt {
  font-family: var(--serif);
  font-size: 0.93rem;
  color: #888888;
  line-height: 1.6;
  font-style: italic;
}

.post-card-cta {
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-top: auto;
  padding-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: color 0.18s ease;
}
.post-card:hover .post-card-cta { color: #111111; }

.post-card-cta::after {
  content: '→';
  display: inline-block;
  transition: transform 0.22s var(--ease-out);
}
.post-card:hover .post-card-cta::after { transform: translateX(5px); }

/* ─────────────────────────────────────────
   Post page
───────────────────────────────────────── */

/* Full-bleed hero — outside .container */
.post-hero {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #111111;
}
.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.12) brightness(0.9);
}

.post-content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.post-meta {
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8c8c8;
  margin-bottom: 0.7rem;
}

.post-title {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

/* Post body */
.post-body {
  font-size: 1.08rem;
  line-height: 1.87;
}

/* Lead paragraph */
.post-body > p:first-child {
  font-size: 1.12rem;
  color: #1a1a1a;
}

/* Drop cap */
.post-body > p:first-child::first-letter {
  font-size: 3.7em;
  line-height: 0.78;
  float: left;
  margin: 0.06em 0.12em 0 0;
  font-weight: 400;
  color: #111111;
}

.post-body p { margin-bottom: 1.5em; }
.post-body p:last-child { margin-bottom: 0; }

.post-body h2 {
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2.5em 0 0.75em;
  letter-spacing: -0.01em;
}
.post-body h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 2em 0 0.6em;
}

/* Ornamental section break */
.post-body hr {
  border: none;
  position: relative;
  height: 1.5em;
  margin: 3em 0;
  overflow: visible;
  text-align: center;
}
.post-body hr::after {
  content: '· · ·';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  letter-spacing: 0.7em;
  color: rgba(0,0,0,0.16);
}

/* Blockquote */
.post-body blockquote {
  position: relative;
  border: none;
  padding: 0.4em 1.5rem 0.4em 3.25rem;
  margin: 2.25em 0;
  font-style: italic;
  color: #2a2a2a;
  font-size: 1.06rem;
}
.post-body blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0.15rem; top: -0.1em;
  font-size: 5em;
  line-height: 1;
  color: rgba(0,0,0,0.08);
  font-style: normal;
  font-family: Georgia, serif;
}

.post-body a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}
.post-body a:hover { text-decoration-color: #111111; }

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 2.75rem;
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8c8c8;
  text-decoration: none;
  transition: color 0.18s ease;
}
.back-link:hover { color: #111111; }

.back-link::before {
  content: '←';
  display: inline-block;
  transition: transform 0.22s var(--ease-out);
}
.back-link:hover::before { transform: translateX(-5px); }

/* ── About page ── */
.about-hero {
  position: relative;
  aspect-ratio: 21 / 7;
  overflow: hidden;
  background: #111;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.15) brightness(0.55);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.about-hero-label {
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.about-hero-name {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.about-wrap {
  padding: 3.5rem 0 5rem;
  max-width: 720px;
  margin: 0 auto;
}

.about-body {
  font-size: 1.08rem;
  line-height: 1.87;
}
.about-body p { margin-bottom: 1.5em; }
.about-body a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}
.about-body a:hover { text-decoration-color: #111111; }

/* ── Footer ── */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: var(--ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dddddd;
  text-align: center;
}

/* ── Empty state ── */
.empty-state {
  padding: 6rem 0 4rem;
  color: #bbbbbb;
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
}

/* ─────────────────────────────────────────
   Photo Mosaic — homepage
───────────────────────────────────────── */

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 3px;
  margin-top: 4.5rem;
}

.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  background: #111;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(0.88);
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}

.photo-mosaic figure:hover img {
  transform: scale(1.07);
  filter: grayscale(100%) contrast(1.2) brightness(0.72);
}

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */

/* 3→2 columns at 1024px */
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .photo-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 190px 190px;
  }
}

/* Single-column below 640px */
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-card--featured { grid-column: 1; }
  .post-card--featured .post-card-image { aspect-ratio: 16 / 9; }
  .post-card--featured .post-card-title { font-size: 1.35rem; }
  .post-hero { aspect-ratio: 4 / 3; }
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
  }
}

/* Mobile */
@media (max-width: 480px) {
  html { font-size: 16px; }
  .site-title { font-size: 1.4rem; }
  .post-title { font-size: 1.75rem; }
  .container { padding: 0 1.25rem; }
  .post-body > p:first-child::first-letter { font-size: 2.9em; }
  .post-card-body { padding: 1rem 1.25rem 1.25rem; }
  .post-grid-wrap { padding: 1.5rem 0 3rem; }
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 120px);
  }
}

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

/* ── Selection ── */
::selection {
  background: #111111;
  color: #ffffff;
}

/* ── Base ── */
html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  background: #ebebed;
  min-height: 100%;
}

/* Grain layer over the grey desktop */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 4px 16px rgba(0,0,0,0.06),
    0 16px 48px rgba(0,0,0,0.08);
}

/* ── Page fade-in ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

main {
  flex: 1;
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── Reading progress bar ── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #111111;
  z-index: 100;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Site Header ── */
.site-header {
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 3rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
}

.site-title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  color: #111111;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.site-title:hover {
  opacity: 0.55;
}

.site-byline {
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-top: 0.3rem;
}

.site-nav {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s ease;
}

/* Underline that expands from center */
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: #111111;
  transition: left 0.24s cubic-bezier(0.25,0.46,0.45,0.94),
              right 0.24s cubic-bezier(0.25,0.46,0.45,0.94);
}

.site-nav a:hover,
.site-nav a.active {
  color: #111111;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  left: 0;
  right: 0;
}

/* ── Post List (homepage) ── */
.post-list {
  list-style: none;
  padding-bottom: 3rem;
}

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

.post-list-item {
  padding: 1.5rem 1.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition:
    box-shadow    0.26s cubic-bezier(0.25,0.46,0.45,0.94),
    transform     0.26s cubic-bezier(0.25,0.46,0.45,0.94),
    border-color  0.26s ease;
}

.post-list-item:nth-child(1) { animation-delay: 0.05s; }
.post-list-item:nth-child(2) { animation-delay: 0.10s; }
.post-list-item:nth-child(3) { animation-delay: 0.15s; }
.post-list-item:nth-child(4) { animation-delay: 0.20s; }
.post-list-item:nth-child(5) { animation-delay: 0.25s; }
.post-list-item:nth-child(6) { animation-delay: 0.30s; }

.post-list-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.04);
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.13);
}

.post-list-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8c8c8;
  margin-bottom: 0.4rem;
}

.post-list-title {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.post-list-title a {
  color: #111111;
  text-decoration: none;
}

/* Arrow that slides in on hover */
.post-list-title a::after {
  content: ' →';
  display: inline-block;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s ease,
              transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.post-list-item:hover .post-list-title a::after {
  opacity: 1;
  transform: translateX(2px);
}

.post-list-excerpt {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.65;
  font-style: italic;
}

/* ── Post Page ── */
.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.post-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c8c8c8;
  margin-bottom: 0.75rem;
}

.post-title {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* ── Post Body ── */
.post-body {
  font-size: 1.08rem;
  line-height: 1.85;
}

/* Lead paragraph */
.post-body > p:first-child {
  font-size: 1.13rem;
  color: #222222;
}

/* Drop cap */
.post-body > p:first-child::first-letter {
  font-size: 3.4em;
  line-height: 0.82;
  float: left;
  margin: 0.05em 0.1em 0 0;
  font-weight: 400;
  color: #111111;
}

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

.post-body p:last-child {
  margin-bottom: 0;
}

.post-body h2 {
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2.5em 0 0.75em;
  letter-spacing: -0.01em;
}

.post-body h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 2em 0 0.6em;
}

/* Ornamental section break */
.post-body hr {
  border: none;
  position: relative;
  height: 1.2em;
  margin: 2.75em 0;
  overflow: visible;
  text-align: center;
}

.post-body hr::after {
  content: '* * *';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  letter-spacing: 0.6em;
  color: rgba(0,0,0,0.2);
}

/* Dramatic blockquote */
.post-body blockquote {
  position: relative;
  border: none;
  padding: 0.25em 1rem 0.25em 3rem;
  margin: 2em 0;
  font-style: italic;
  color: #333333;
  font-size: 1.05rem;
}

.post-body blockquote::before {
  content: '\201C';
  position: absolute;
  left: 0.1rem;
  top: -0.2em;
  font-size: 4.5em;
  line-height: 1;
  color: rgba(0,0,0,0.1);
  font-style: normal;
  font-family: Georgia, serif;
}

.post-body a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.22);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}

.post-body a:hover {
  text-decoration-color: #111111;
}

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-bottom: 2.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.18s ease;
}

.back-link:hover {
  color: #111111;
}

.back-link::before {
  content: '←';
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.back-link:hover::before {
  transform: translateX(-4px);
}

/* ── About page ── */
.about-body {
  font-size: 1.08rem;
  line-height: 1.85;
  padding: 1rem 0 3rem;
}

.about-body p {
  margin-bottom: 1.45em;
}

.about-body a {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.22);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}

.about-body a:hover {
  text-decoration-color: #111111;
}

/* ── Footer ── */
.site-footer {
  padding: 2.25rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dddddd;
  text-align: center;
}

/* ── Empty state ── */
.empty-state {
  padding: 5rem 0 3rem;
  color: #bbbbbb;
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  body { box-shadow: none; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .site-title { font-size: 1.45rem; }
  .post-title { font-size: 1.72rem; }
  .container { padding: 0 1.25rem; }
  .post-body > p:first-child::first-letter { font-size: 2.8em; }
}
