:root {
  --black-soft: #161616;
  --black-card: #1a1a1a;
  --bone-dim: rgba(227, 218, 201, 0.55);
  --bone-faint: rgba(227, 218, 201, 0.55);
  --hairline: rgba(227, 218, 201, 0.12);
  --hairline-strong: rgba(227, 218, 201, 0.22);
  --cream-dim: var(--bone-dim);
  --border: var(--hairline);
  --border-strong: var(--hairline-strong);
}
html {
  background: var(--black);
}
body {
  background: var(--black);
  color: var(--off-white);
  font-family: "Lora", serif;
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  filter: url(#texture-noise);
}
a {
  color: inherit;
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 48px 80px;
}
.crumb {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 14px;
}
.crumb a {
  color: var(--bone-faint);
  text-decoration: none;
  transition: color 0.15s;
}
.crumb a:hover {
  color: var(--red);
}
.kicker {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--bone-faint);
  margin-bottom: 36px;
}
.hero {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--hairline);
}
.hero-portrait-wrap {
  position: relative;
}
.hero-portrait {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.hero-portrait-none {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--black-card);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: "Playfair Display", serif;
  font-size: 1.0625rem;
  color: var(--bone-faint);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.125rem, 5vw, 3.375rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 26px 14px 0;
  margin-right: 26px;
  border-right: 1px solid var(--hairline);
}
.meta-item:last-child {
  border-right: none;
  margin-right: 0;
}
.meta-k {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.meta-v {
  font-family: "Lora", serif;
  font-size: 1rem;
  color: var(--off-white);
}
.meta-v a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-strong);
  transition:
    color 0.15s,
    border-color 0.15s;
}
.meta-v a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.bio,
.essay {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(227, 218, 201, 0.86);
  max-width: 760px;
}
.bio p,
.essay p {
  margin-bottom: 1em;
}
.bio {
  border-left: 3px solid var(--red);
  padding-left: 22px;
}
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 26px;
}
.poster-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.poster-tile {
  text-decoration: none;
  display: block;
  transition: transform 0.22s ease;
}
.poster-tile-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #1c1c1c;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    outline-color 0.22s ease;
  outline: 0 solid var(--red);
  outline-offset: 0;
}
.poster-tile-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-tile-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-family: "Playfair Display", serif;
  font-size: 0.8125rem;
  color: var(--bone-faint);
}
.poster-tile-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color 0.18s;
}
.poster-tile-meta {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--bone-faint);
}
@media (min-width: 769px) {
  .poster-tile:hover {
    transform: translateY(-6px);
  }
  .poster-tile:hover .poster-tile-wrap {
    border-color: var(--red);
    outline: 2px solid var(--red);
    outline-offset: 2px;
    box-shadow:
      0 14px 38px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(192, 57, 43, 0.4);
  }
  .poster-tile:hover .poster-tile-title {
    color: var(--red);
  }
}
.quote-block {
  border-left: 2px solid var(--red);
  padding-left: 18px;
  margin-bottom: 28px;
  max-width: 720px;
}
.quote-block p {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(227, 218, 201, 0.9);
  margin-bottom: 10px;
}
.quote-attr {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.quote-attr a {
  color: var(--bone-faint);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quote-attr a:hover {
  color: var(--red);
}
.quote-attr em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.source-note {
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  color: var(--bone-faint);
}
.source-note a {
  color: var(--bone-faint);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.source-note a:hover {
  color: var(--red);
}
.site-footer {
  border-top: 2px solid var(--red);
  background: var(--black-soft);
  padding: 28px 48px;
  margin-top: 56px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--bone-faint);
  flex-wrap: wrap;
}
.footer-inner a {
  color: var(--bone-faint);
  text-decoration: none;
}
.footer-inner a:hover {
  color: var(--red);
}
@media (max-width: 760px) {
  .wrap {
    padding: 28px 20px 60px;
  }
  .hero {
    grid-template-columns: 120px 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-portrait-wrap {
    max-width: 160px;
  }
}
