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

:root {
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --color-bg: #fafaf7;
  --color-text: #0d0d0d;
  --color-text-secondary: #555555;
  --color-accent: #c41e3a;
  --color-border: #2d2d2d;
  --color-surface: #ffffff;
  --color-gradient-1: #f0ede6;
  --color-gradient-2: #e8e4db;
  --color-shadow: rgba(15, 23, 42, 0.08);
  --max-width: clamp(960px, 92vw, 1300px);
  --max-width-wide: clamp(1080px, 96vw, 1360px);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 450px at 15% -8%, var(--color-gradient-1) 0%, transparent 65%),
    radial-gradient(ellipse 650px 400px at 85% 12%, var(--color-gradient-2) 0%, transparent 70%),
    var(--color-bg);
  filter: blur(40px);
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
h1 { font-size: 2.4rem; letter-spacing: -0.02em; }
h2 { font-size: 1.6rem; margin-top: 2em; margin-bottom: 0.5em; }
h3 { font-size: 1.25rem; margin-top: 1.5em; margin-bottom: 0.4em; }
p { margin-bottom: 1.4em; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5em;
  margin: 1.5em 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  background: var(--color-surface);
  box-shadow: 0 2px 8px var(--color-shadow);
  width: 100%;
  overflow-x: hidden;
}
.nav-container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}
.site-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}
.nav-socials {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}
.nav-links a,
.social-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.social-link:hover {
  color: var(--color-text);
  text-decoration: none;
}
.social-link {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
  flex: 1;
}

/* Home Hero - Introduction Section */
.hero-intro {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  margin-bottom: 3rem;
  background: transparent;
}
.hero-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-intro-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-surface);
  flex-shrink: 0;
}
.hero-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-intro-text {
  min-width: 0;
}
.hero-intro-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}
.hero-intro-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin: 0 0 1.5rem 0;
  font-style: italic;
}
.hero-intro-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.hero-intro-bio p {
  margin: 0 0 1rem 0;
}
.hero-intro-bio p:last-child {
  margin-bottom: 0;
}

/* About/Background Section */
.about-background {
  background: var(--color-surface);
  padding: 5rem 2rem;
  margin: 0 -2rem 3rem -2rem;
}
.about-background-content {
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-background h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2rem 0;
  color: var(--color-text);
}
.about-background-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 800px;
}
.about-background-text p {
  margin: 0 0 1.5rem 0;
}
.about-background-text p:last-child {
  margin-bottom: 0;
}

/* Recent Work Section */
.recent-work {
  background: var(--color-surface);
  padding: 4rem 2rem;
  margin: 0 -2rem 0 -2rem;
}
.recent-work-header {
  max-width: var(--max-width);
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
}
.recent-work h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}
.recent-work-hint {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  margin: 0;
}
.work-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 440px);
  gap: 1.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 1.5rem 1rem 1.5rem;
  margin: 0 -1.5rem;
  scrollbar-width: none;
}
.work-carousel::-webkit-scrollbar {
  height: 0;
}
.recent-work-progress {
  max-width: var(--max-width);
  margin: 0.5rem auto 0 auto;
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.recent-work-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--color-text-secondary);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0.35;
  transition: transform 0.2s ease;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  text-decoration: none;
  transition: all 0.2s ease;
}
.work-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.work-card-image {
  width: 100%;
  height: 180px;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-bg);
}
.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.work-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0 0 0.5rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.25rem;
}
.work-card-meta span {
  white-space: normal;
  overflow-wrap: anywhere;
}
.work-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
.work-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0.5rem 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-card:hover h3 {
  color: var(--color-accent);
}

/* Category Hero */
.category-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 500px;
  overflow: hidden;
  margin-bottom: 0;
}
.category-hero-image {
  width: 100%;
  height: 100%;
}
.category-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 3rem;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}
.category-hero-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  max-width: var(--max-width);
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.category-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 0.75rem 0 0 0;
  max-width: 600px;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Category page title (no hero) */
.category-page-header {
  padding: 4rem 0 3rem 0;
  text-align: center;
}
.category-page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.category-page-header p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Category Introduction */
.category-intro {
  padding: 4rem 0;
  margin-bottom: 0;
}
.category-intro-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin: 0 0 1.5rem 0;
}
.category-intro-content {
  max-width: 100%;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-text);
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--color-accent);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.category-intro-content p {
  margin: 0 0 1.5rem 0;
}
.category-intro-content p:last-child {
  margin-bottom: 0;
}
.category-intro-content p:first-child {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Category Background — full-width breakout */
.category-background {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 5rem 2rem;
  margin-bottom: 0;
}
.category-background-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.category-background h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-bg);
  line-height: 1.2;
  position: sticky;
  top: 6rem;
}
.category-background h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  margin-top: 1.5rem;
}
.category-background-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-surface);
  opacity: 0.9;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.category-background-text p {
  margin: 0 0 1.5rem 0;
}
.category-background-text p:last-child {
  margin-bottom: 0;
}

/* Category Featured Piece */
.category-featured {
  padding: 4rem 0;
  margin-bottom: 0;
}
.category-featured .section-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  border-bottom: none;
  display: block;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.category-featured-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: none;
  border-radius: 0;
  background: var(--color-surface);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}
.category-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.category-featured-image {
  overflow: hidden;
  aspect-ratio: auto;
  background: var(--color-bg);
  min-height: 260px;
}
.category-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-featured-card:hover .category-featured-image img {
  transform: scale(1.05);
}
.category-featured-body {
  align-self: center;
  padding: 2.5rem;
}
.category-featured-body h3 {
  font-size: 1.6rem;
  margin: 0.5rem 0 0.5rem 0;
  color: var(--color-text);
  line-height: 1.3;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.category-featured-card:hover h3 {
  color: var(--color-accent);
}
.category-featured-body .article-list-meta {
  margin-bottom: 0;
}
.category-featured-body .article-list-excerpt {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Category Photos Section */
.category-photos {
  padding: 4rem 0 3rem 0;
}
.category-photos .section-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  border-bottom: none;
  display: block;
  padding-bottom: 0;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}
.photos-grid {
  column-count: 3;
  column-gap: 2rem;
  margin-bottom: 3rem;
}
.photo-item {
  margin: 0 0 2rem 0;
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@keyframes watery-shift {
  0% { transform: scale(1.02) translateY(-2px) translate(0, 0); }
  25% { transform: scale(1.02) translateY(-2px) translate(1px, -1px); }
  50% { transform: scale(1.02) translateY(-2px) translate(-1px, 1px); }
  75% { transform: scale(1.02) translateY(-2px) translate(1px, 1px); }
  100% { transform: scale(1.02) translateY(-2px) translate(0, 0); }
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.photo-item:hover img {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.photo-item figcaption {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .photos-grid {
    column-count: 2;
    column-gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .photos-grid {
    column-count: 1;
  }
}

/* Photo Lightbox */
.photo-item.has-description {
  cursor: pointer;
}
.photo-item.has-description::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.photo-item.has-description:hover::after {
  opacity: 1;
}
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.photo-lightbox-card {
  position: relative;
  display: flex;
  background: var(--color-surface);
  border-radius: 12px;
  max-width: 1100px;
  max-height: 85vh;
  width: 90vw;
  padding: 2.5rem;
  gap: 2.5rem;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (prefers-color-scheme: dark) {
  .photo-lightbox-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  }
}
.photo-lightbox-image {
  flex: 1 1 60%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.photo-lightbox-body {
  flex: 1 1 40%;
  overflow-y: auto;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.photo-lightbox-description {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
}
.photo-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 2;
}
.photo-lightbox-close:hover {
  color: var(--color-text);
}
@media (max-width: 768px) {
  .photo-lightbox-card {
    flex-direction: column;
    max-height: 90vh;
    width: 95vw;
    padding: 1rem;
    gap: 1rem;
  }
  .photo-lightbox-image {
    max-height: 45vh;
  }
  .photo-lightbox-body {
    padding: 0.5rem;
    flex: none;
  }
}

/* Category Pieces Section */
.category-pieces {
  padding: 4rem 0 3rem 0;
}
.category-pieces .section-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  border-bottom: none;
  display: block;
  padding-bottom: 0;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

/* Bio Section */
.bio-section {
  margin-bottom: 5rem;
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.bio-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}
.bio-content {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bio-content p {
  margin-bottom: 1.5rem;
}
.bio-content p:last-child {
  margin-bottom: 0;
}

/* Contact Links Section */
.contact-links-section {
  margin-bottom: 5rem;
  text-align: center;
}
.contact-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-link {
  padding: 0.75rem 1.5rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
  font-family: var(--font-heading);
  transition: all 0.2s ease;
}
.contact-link:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-surface);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Outlets Section */
.outlets-section {
  margin-bottom: 5rem;
}
.outlets-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}
.outlets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.outlet-card {
  padding: 1rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  color: var(--color-text);
  font-weight: 500;
  font-family: var(--font-heading);
  transition: all 0.2s ease;
  text-decoration: none;
}
.outlet-card:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-shadow);
}

/* Works Section */
.works-section {
  margin-bottom: 3rem;
}
.category-group {
  margin-bottom: 4rem;
}
.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
  text-transform: capitalize;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  margin-bottom: 0;
}
.article-card-compact {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: rise 0.45s ease both;
}
.article-card-compact:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px var(--color-shadow);
  transform: translateY(-4px);
}
.article-thumb-compact {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-border);
}
.article-thumb-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card-compact:hover .article-thumb-compact img {
  transform: scale(1.08);
}
.article-card-compact-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-compact-body h4 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}
.article-card-compact-body h4 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.article-card-compact-body h4 a:hover {
  color: var(--color-accent);
}
.article-outlet {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  font-family: var(--font-heading);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-date {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  margin-top: auto;
}

/* Old About Hero (keep for compatibility) */
.about-hero {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, var(--color-gradient-1) 30%, var(--color-gradient-2) 100%);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}
.about-headshot-home {
  width: 350px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  border: 8px solid var(--color-surface);
  box-shadow: 0 12px 48px var(--color-shadow);
}
.about-content-home { 
  flex: 1;
  min-width: 0;
  max-width: 700px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.about-name-home {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-bio-home {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--color-text);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.about-bio-home p {
  margin: 0 0 0.75rem 0;
}
.about-bio-home p:last-child {
  margin-bottom: 0;
}
.about-contact-home {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}
.about-contact-home a {
  color: white;
  background: var(--color-accent);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.about-contact-home a:hover {
  background: transparent;
  color: var(--color-accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-shadow);
}

.section-divider {
  border: none;
  border-top: 2px solid var(--color-border);
  margin: 3rem 0;
}

.featured-pieces {
  margin-bottom: 1.5rem;
}
.section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--color-text);
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}

.page-title {
  margin-bottom: 0.5rem;
}
.page-description {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.about-grad {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 1rem 0;
}

/* Article List */
.article-list {
  list-style: none;
  display: grid;
  gap: 0;
}
.section-block { margin-bottom: 2rem; }
.section-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
}
.article-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.75rem;
  padding: 1.75rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  box-shadow: 0 4px 16px var(--color-shadow);
  transition: all 0.25s ease;
  animation: rise 0.45s ease both;
  margin-bottom: 1.5rem;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--color-accent);
}
.article-card:nth-child(1) { animation-delay: 0ms; }
.article-card:nth-child(2) { animation-delay: 40ms; }
.article-card:nth-child(3) { animation-delay: 80ms; }
.article-card:nth-child(4) { animation-delay: 120ms; }
.article-card:nth-child(5) { animation-delay: 160ms; }
.article-card:nth-child(6) { animation-delay: 200ms; }
.article-card h2 { margin-top: 0; font-size: 1.3rem; margin-bottom: 0.5rem; overflow-wrap: anywhere; word-break: break-word; }
.article-card h2 a { color: var(--color-text); font-weight: 600; }
.article-card h2 a:hover { color: var(--color-accent); text-decoration: none; }
.article-thumb {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-bg);
  aspect-ratio: 4 / 3;
  border: 2px solid var(--color-border);
  width: 220px;
  flex-shrink: 0;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.article-card:hover .article-thumb img {
  transform: scale(1.08);
}
.article-card-body { 
  align-self: center;
  min-width: 0;
}
.article-list-meta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.article-list-meta a { color: var(--color-text-secondary); }
.article-list-meta a:hover { color: var(--color-accent); }
.meta-item {
  font-weight: 600;
  color: var(--color-text);
}
.article-list-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: 0.5rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}
.pagination a, .pagination span {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  color: var(--color-text-secondary);
}
.pagination a:hover { background: var(--color-border); text-decoration: none; }
.pagination .active {
  background: var(--color-text);
  color: white;
  border-color: var(--color-text);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
}

/* Footer */
/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 4rem 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  width: 100%;
  box-sizing: border-box;
}
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
}
.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero {
    gap: 3rem;
    padding: 4rem 3rem;
  }
  .about-headshot-home { width: 280px; height: 280px; }
  .about-name-home { font-size: 3.2rem; }
  .about-bio-home { font-size: 1.15rem; }
  .article-card {
    grid-template-columns: 180px 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .article-thumb { width: 180px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  h1 { font-size: 1.8rem; }
  .about-page { flex-direction: column; align-items: center; text-align: center; }
  .about-contact { justify-content: center; }
  .about-hero { 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .about-headshot-home { width: 220px; height: 220px; border-width: 6px; }
  .about-name-home { 
    font-size: 2.5rem;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--color-text);
  }
  .about-bio-home { font-size: 1.1rem; }
  .about-contact-home {
    justify-content: center;
  }
  .section-heading {
    font-size: 1.5rem;
  }
  .article-card { 
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  .article-thumb { 
    width: 100%;
    aspect-ratio: 16 / 9;
    border-width: 2px;
  }
  .site-title { font-size: 1.1rem; }
  .nav-links {
    order: 3;
    width: 100%;
    gap: 0.9rem;
    font-size: 0.82rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-socials { margin-left: 0; gap: 0.75rem; }
  .main-content {
    padding: 1.5rem 1rem;
  }
  .nav-container {
    padding: 0 1rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
  
  /* Responsive Home Hero */
  .hero-intro {
    min-height: auto;
    padding: 2rem 0 3rem 0;
  }
  .hero-intro-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-intro-image {
    height: 300px;
  }
  .hero-intro-text h1 {
    font-size: 2rem;
  }
  .hero-intro-subtitle {
    font-size: 1rem;
  }
  .hero-intro-bio {
    font-size: 1rem;
  }

  /* Responsive About Background */
  .about-background {
    padding: 3rem 1rem;
    margin: 0 -1rem 2rem -1rem;
  }
  .about-background h2 {
    font-size: 1.5rem;
  }
  .about-background-text {
    font-size: 1rem;
  }

  /* Responsive Category Page */
  .category-hero {
    height: 300px;
  }
  .category-hero-overlay {
    padding: 2rem 1.5rem;
  }
  .category-hero-title {
    font-size: 2rem;
  }
  .category-hero-subtitle {
    font-size: 0.95rem;
  }
  .category-page-header {
    padding: 2.5rem 0 2rem 0;
  }
  .category-page-header h1 {
    font-size: 2rem;
  }
  .category-intro {
    padding: 2.5rem 0;
  }
  .category-intro-content {
    font-size: 1rem;
    padding-left: 1.5rem;
    border-left-width: 3px;
  }
  .category-intro-content p:first-child {
    font-size: 1.1rem;
  }
  .category-background {
    padding: 3rem 1.5rem;
  }
  .category-background-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .category-background h2 {
    font-size: 1.6rem;
    position: static;
  }
  .category-background-text {
    font-size: 1rem;
  }
  .category-featured {
    padding: 2.5rem 0;
  }
  .category-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .category-featured-image {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  .category-featured-body {
    padding: 1.5rem;
  }
  .category-featured-body h3 {
    font-size: 1.25rem;
  }
  .category-pieces {
    padding: 2.5rem 0 2rem 0;
  }

  /* Responsive Work Cards */
  .recent-work-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .recent-work h2 {
    font-size: 1.5rem;
  }
  .work-carousel {
    grid-auto-columns: 80%;
  }
  
  /* Responsive Home Hero */
  .home-hero h1 {
    font-size: 2rem;
  }
  .hero-role {
    font-size: 1rem;
  }

  /* Responsive Articles */
  .article-item {
    flex-direction: column;
    gap: 1rem;
  }
  .article-item-image {
    width: 100%;
    height: 200px;
  }
  
  /* Responsive Bio */
  .bio-section {
    padding: 2rem 0;
    margin-bottom: 3rem;
  }
  .bio-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .bio-content {
    font-size: 0.95rem;
  }
  
  /* Responsive Contact Links */
  .contact-links {
    gap: 0.75rem;
  }
  .contact-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Responsive Outlets */
  .outlets-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  .outlet-card {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  /* Responsive Works Grid */
  .article-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .category-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-card { animation: none; transition: none; }
  .article-thumb img { transition: none; }
  body::before { animation: none; }
}

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

/* Template overrides */


/* ─── Magazine Layout ─────────────────────────────────────────────────────── */

/* Thin sticky header */
.mag-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  gap: 1.5rem;
}
.mag-header-spacer { height: 2.5rem; }
.mag-header-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.mag-header-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  overflow: hidden;
  flex: 1;
  justify-content: center;
}
.mag-header-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.mag-header-nav a:hover { color: var(--color-accent); }
.mag-header-socials { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.mag-header-socials a { color: var(--color-text-secondary); display: flex; align-items: center; transition: color 0.15s; }
.mag-header-socials a:hover { color: var(--color-accent); }

/* Home page: hidden until masthead nav scrolls away */
.mag-header--home {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mag-header--home.mag-header--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Masthead (big centered name on home page) */
.mag-masthead {
  text-align: center;
  padding: 1.5rem 2rem 0;
  border-bottom: 3px solid var(--color-text);
  margin-bottom: 0;
}
.mag-masthead-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
}
.mag-masthead-name {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 1.75rem;
  overflow-wrap: break-word;
}
.mag-masthead-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.75rem 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
}
.mag-masthead-nav a { color: var(--color-text); text-decoration: none; transition: color 0.15s; }
.mag-masthead-nav a:hover { color: var(--color-accent); }

/* Social icons sitting at the right end of the masthead nav */
.mag-masthead-nav-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  padding-left: 1.5rem;
}
.mag-masthead-nav-socials a {
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.mag-masthead-nav-socials a:hover { color: var(--color-accent); }

/* Lead article — full-bleed hero with overlay */
.mag-lead-hero {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--color-surface);
  text-decoration: none;
  color: inherit;
}
.mag-lead-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mag-lead-hero:hover { text-decoration: none; }
.mag-lead-hero:hover .mag-lead-hero-img { transform: scale(1.02); }
.mag-lead-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0) 100%);
}
.mag-lead-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 3rem;
  color: #fff;
}
.mag-lead-hero-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}
.mag-lead-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 820px;
}
.mag-lead-hero-excerpt {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.85;
  margin: 0 0 0.75rem;
  max-width: 600px;
  overflow-wrap: break-word;
}
.mag-lead-hero-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin: 0;
}

/* Lead article — text only (no image) */
.mag-lead-text {
  display: block;
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 3rem;
  border-top: 3px solid var(--color-text);
  border-bottom: 3px solid var(--color-text);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.mag-lead-text:hover { background: var(--color-surface); text-decoration: none; }
.mag-lead-text-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.mag-lead-text-excerpt { font-size: 1.05rem; line-height: 1.65; color: var(--color-text-secondary); margin: 0 0 0.75rem; overflow-wrap: break-word; }
.mag-lead-text-meta { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-secondary); margin: 0; }

/* Section rule */
.mag-label {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.mag-section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}
.mag-section-rule::before, .mag-section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Asymmetric article grid */
.mag-grid-section { max-width: 1200px; margin: 0 auto 3rem; padding: 2rem 2rem 0; }
.mag-grid-featured-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.mag-grid-stacked { display: flex; flex-direction: column; gap: 1.5rem; }
.mag-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Article cards */
.mag-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mag-card:hover { box-shadow: 0 0 20px color-mix(in srgb, var(--color-accent) 25%, transparent); transform: translateY(-2px); text-decoration: none; }
.mag-card-image { overflow: hidden; }
.mag-card--large .mag-card-image { aspect-ratio: 4 / 3; }
.mag-card--small .mag-card-image { aspect-ratio: 3 / 2; }
.mag-card:not(.mag-card--large):not(.mag-card--small) .mag-card-image { aspect-ratio: 16 / 9; }
.mag-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.mag-card:hover .mag-card-image img { transform: scale(1.04); }
.mag-card-body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.mag-card--large .mag-card-body { padding: 1.25rem 1.5rem; }
.mag-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0.25rem 0 0.5rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.mag-card--large .mag-card-title { font-size: 1.25rem; }
.mag-card-excerpt { font-size: 0.84rem; color: var(--color-text-secondary); line-height: 1.55; flex: 1; margin: 0 0 0.5rem; overflow-wrap: break-word; }
.mag-card-meta { font-size: 0.72rem; color: var(--color-text-secondary); margin: auto 0 0; }

/* About strip */
.mag-about-strip {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.mag-about-strip .mag-section-rule { margin-bottom: 2rem; }
.mag-about-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.mag-about-photo {
  width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.mag-about-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mag-about-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}
.mag-about-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.mag-about-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.mag-about-socials { display: flex; gap: 0.8rem; }
.mag-about-socials a { color: var(--color-text-secondary); display: flex; align-items: center; transition: color 0.15s; }
.mag-about-socials a:hover { color: var(--color-accent); }

/* Category banner */
.mag-cat-banner {
  position: relative;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  max-width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.mag-cat-banner--minimal {
  padding-bottom: 3.5rem;
  border-bottom-color: transparent;
  background: linear-gradient(to bottom, transparent 80%, rgba(0,0,0,0.06) 100%);
}
.mag-cat-banner--image {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.mag-cat-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mag-cat-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.mag-cat-banner-inner { position: relative; z-index: 1; }
.mag-cat-banner--image.mag-cat-banner--minimal {
  background: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 2.5rem;
}
.mag-cat-banner--image .mag-cat-banner-eyebrow,
.mag-cat-banner--image .mag-cat-banner-title,
.mag-cat-banner--image .mag-cat-banner-desc { color: #fff; }
.mag-cat-banner-eyebrow { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-text-secondary); margin: 0 0 0.5rem; }
.mag-cat-banner-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.mag-cat-banner-desc { font-size: 1rem; color: var(--color-text-secondary); margin: 0; overflow-wrap: break-word; }

.mag-cat-context { max-width: 1200px; margin: 2rem auto; padding: 0 2rem; }
.mag-cat-context-text { font-size: 0.95rem; line-height: 1.8; color: var(--color-text-secondary); overflow-wrap: break-word; }

/* Two-column category body */
.mag-cat-body { max-width: 1200px; margin: 2rem auto 3rem; padding: 0 2rem; display: grid; grid-template-columns: 360px 1fr; gap: 3rem; }
.mag-cat-featured-card { display: block; text-decoration: none; color: inherit; }
.mag-cat-featured-card:hover { text-decoration: none; }
.mag-cat-featured-card:hover .mag-cat-featured-img { opacity: 0.9; }
.mag-cat-featured-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; margin-bottom: 0.75rem; }
.mag-cat-featured-title { font-size: 1.3rem; font-weight: 700; line-height: 1.25; margin: 0.3rem 0 0.5rem; overflow-wrap: break-word; hyphens: auto; }
.mag-cat-featured-excerpt { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.65; overflow-wrap: break-word; margin: 0 0 0.5rem; }
.mag-cat-featured-meta { font-size: 0.75rem; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }

.mag-cat-list--full { grid-column: 1 / -1; }
.mag-cat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.mag-cat-list-card .mag-card-image { aspect-ratio: 4 / 3; }
.mag-cat-list-card .mag-card-body { padding: 0.8rem 0.9rem; }
.mag-cat-list-card .mag-label { font-size: 0.62rem; margin-bottom: 0.2rem; }
.mag-cat-list-card .mag-card-title {
  font-size: 0.9rem;
  line-height: 1.25;
  margin: 0.15rem 0 0.35rem;
}
.mag-cat-list-card .mag-card-excerpt {
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mag-cat-list-card .mag-card-meta { font-size: 0.68rem; }

.mag-photos-strip { display: flex; gap: 0.5rem; overflow-x: auto; margin-bottom: 1.5rem; padding-bottom: 0.5rem; }
.mag-photo-item { flex-shrink: 0; }
.mag-photo-item img { height: 140px; width: auto; display: block; }
.mag-empty { color: var(--color-text-secondary); font-style: italic; }

/* Magazine footer */
.mag-footer { margin-top: auto; padding: 0 2rem 2rem; }
.mag-footer-rule { height: 3px; background: var(--color-text); margin-bottom: 1.25rem; }
.mag-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mag-footer-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; color: var(--color-text); }
.mag-footer-copy { font-size: 0.78rem; color: var(--color-text-secondary); margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .mag-header {
    padding: 0.55rem 1rem;
    gap: 0.85rem;
  }
  .mag-header-name {
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mag-header-socials { gap: 0.55rem; }
  .mag-masthead { padding: 1.25rem 1rem 0; }
  .mag-grid-featured-row { grid-template-columns: 1fr; }
  .mag-grid-row { grid-template-columns: 1fr 1fr; }
  .mag-cat-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .mag-lead-hero { aspect-ratio: 16 / 9; }
  .mag-lead-hero-content { padding: 1.5rem; }
  .mag-lead-hero-title { font-size: clamp(1.4rem, 4vw, 2.4rem); }
  .mag-masthead-name { font-size: clamp(2.5rem, 7vw, 5rem); }
  .mag-header-nav { display: none; }
  .mag-masthead-nav {
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0.65rem 0.1rem;
    scrollbar-width: none;
  }
  .mag-masthead-nav::-webkit-scrollbar { display: none; }
  .mag-masthead-nav-socials {
    margin-left: 0;
    padding-left: 0;
  }
  .mag-grid-section,
  .mag-cat-context,
  .mag-cat-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .mag-about-strip { padding: 2rem 1rem; }
  .mag-about-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .mag-about-photo { width: min(100%, 420px); }
  .mag-lead-text {
    margin: 1.5rem auto;
    padding: 1.5rem 1rem;
  }
  .mag-cat-banner { padding: 2.2rem 1rem 2rem; }
  .mag-cat-banner--image { min-height: 220px; }
  .mag-cat-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .mag-header-name { max-width: 48vw; }
  .mag-header-socials a svg { width: 14px; height: 14px; }
  .mag-grid-row { grid-template-columns: 1fr; }
  .mag-lead-hero { aspect-ratio: 4 / 3; }
  .mag-lead-hero-content { padding: 1rem; }
  .mag-lead-hero-excerpt { display: none; }
  .mag-lead-text-title { font-size: clamp(1.55rem, 8vw, 2.1rem); }
  .mag-about-title { font-size: 1.15rem; }
  .mag-cat-list-card .mag-card-image { aspect-ratio: 16 / 10; }
  .mag-cat-cards { grid-template-columns: 1fr; }
  .mag-cat-banner-title { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .mag-footer-inner { flex-direction: column; text-align: center; }
}

/* ─── Chronological Layout ────────────────────────────────────────────────── */

.chron-hero {
  max-width: 760px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.chron-hero-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.chron-hero-name {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
}
.chron-hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
}
.chron-hero-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.chron-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.chron-cat-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.chron-cat-nav a:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }

/* Timeline */
.chron-timeline { max-width: 760px; margin: 0 auto 4rem; padding: 0 1.5rem; }
.chron-timeline-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border);
}
.chron-list { list-style: none; margin: 0; padding: 0; }
.chron-item {
  display: grid;
  grid-template-columns: 56px 20px 1fr;
  gap: 0 1rem;
  margin-bottom: 0;
}
.chron-item-date {
  text-align: right;
  padding-top: 2px;
  line-height: 1.1;
  flex-shrink: 0;
}
.chron-item-month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  font-weight: 600;
}
.chron-item-year { display: block; font-size: 0.82rem; font-weight: 700; color: var(--color-text); }
.chron-item-connector { display: flex; flex-direction: column; align-items: center; }
.chron-item-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.chron-item-line { flex: 1; width: 1px; background: var(--color-border); min-height: 24px; }
.chron-list li:last-child .chron-item-line { display: none; }
.chron-item-body { padding-bottom: 2rem; }
.chron-item-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: color 0.15s;
}
.chron-item-title:hover { color: var(--color-accent); }
.chron-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.75rem;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
}
.chron-item-excerpt { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.6; margin: 0; }

/* Category header */
.chron-cat-header { max-width: 760px; margin: 3rem auto 2rem; padding: 0 1.5rem; }
.chron-cat-title { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; margin: 0 0 0.4rem; }
.chron-cat-desc { font-size: 1rem; color: var(--color-text-secondary); margin: 0 0 1rem; }
.chron-cat-intro { font-size: 0.95rem; line-height: 1.75; color: var(--color-text-secondary); padding-top: 1rem; border-top: 1px solid var(--color-border); }

.chron-photos {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.chron-photo-item img { height: 160px; width: auto; display: block; }
.chron-photo-item figcaption { font-size: 0.75rem; color: var(--color-text-secondary); margin-top: 0.25rem; }
.chron-empty { color: var(--color-text-secondary); font-style: italic; }

/* Responsive */
@media (max-width: 768px) {
  .mag-lead { grid-template-columns: 1fr; }
  .mag-lead-image { min-height: 200px; }
  .mag-lead-body { border-left: none; border-top: 1px solid var(--color-border); }
  .mag-grid { grid-template-columns: 1fr 1fr; }
  .mag-cat-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .chron-hero,
  .chron-timeline,
  .chron-cat-header,
  .chron-photos {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .chron-item {
    grid-template-columns: 44px 16px 1fr;
    gap: 0 0.75rem;
  }
  .chron-item-body { padding-bottom: 1.5rem; }
  .chron-hero { flex-direction: column; gap: 1rem; }
  .chron-hero-photo { width: 72px; height: 72px; }
}
@media (max-width: 640px) {
  .chron-cat-nav { gap: 0.4rem 0.8rem; font-size: 0.74rem; }
  .chron-item { grid-template-columns: 1fr; }
  .chron-item-date,
  .chron-item-connector { display: none; }
  .chron-item-body {
    border-left: 2px solid var(--color-border);
    padding-left: 0.85rem;
  }
  .chron-item-title { font-size: 0.95rem; }
  .chron-photo-item img { max-width: 100%; height: auto; }
}
@media (max-width: 480px) {
  .mag-grid { grid-template-columns: 1fr; }
}

/* ─── Aurora Layout ─────────────────────────────────────────────────────── */

/* Suppress the global body gradient blob when Aurora sky is active */
body:has(.aurora-sky)::before { display: none; }

/* Reset main-content constraints — Aurora handles its own full-bleed layout */
.main-content:has(.aurora-scene) {
  padding: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
}

.aurora-scene {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ─── Cursor glow ──────────────────────────────────────────────────────── */
.aurora-cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, rgba(155, 135, 176, 0.04) 45%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  z-index: 0;
  transform: translate(-50%, -50%);
}

/* ─── Typewriter blinking cursor ───────────────────────────────────────── */
@keyframes aurora-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.aurora-typing::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 400;
  color: var(--color-accent, #c9a96e);
  animation: aurora-blink 0.8s step-end infinite;
}

/* ─── Sky ──────────────────────────────────────────────────────────────── */

.aurora-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Horizontal gradient bands — the anatomy of a real aurora */
  background: linear-gradient(
    175deg,
    #030315 0%,
    #05052e 18%,
    #080f48 28%,
    #0a1a5a 35%,
    #062840 44%,
    #042e24 52%,
    #053022 60%,
    #062840 72%,
    #080f48 84%,
    #030315 100%
  );
}

.aurora-sky-shimmer {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 160% 38% at 35% 53%, rgba(180, 150, 80,  0.28) 0%, transparent 56%),
    radial-gradient(ellipse 120% 30% at 72% 49%, rgba(120, 80,  160, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 90%  26% at 18% 57%, rgba(80,  140, 180, 0.18) 0%, transparent 46%),
    radial-gradient(ellipse 70%  20% at 60% 62%, rgba(180, 100, 100, 0.14) 0%, transparent 42%);
  mix-blend-mode: screen;
  animation: auroraShimmer 20s ease-in-out infinite alternate;
}

@keyframes auroraShimmer {
  0%   { transform: translateX(0%)  translateY(0px)   scaleX(1);    opacity: 0.65; }
  30%  { transform: translateX(3%)  translateY(-15px) scaleX(1.06); opacity: 0.92; }
  65%  { transform: translateX(-2%) translateY(20px)  scaleX(0.97); opacity: 0.78; }
  100% { transform: translateX(4%)  translateY(-8px)  scaleX(1.03); opacity: 0.82; }
}

/* ─── Nav ──────────────────────────────────────────────────────────────── */

.aurora-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 2.5rem;
  background: rgba(3, 3, 21, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(237, 232, 255, 0.07);
}
.aurora-nav-brand {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(237, 232, 255, 0.75);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.aurora-nav-brand:hover { color: var(--color-text); text-decoration: none; }
.aurora-nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.aurora-nav-links a {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(237, 232, 255, 0.38);
  text-decoration: none;
  padding: 0.3rem 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.aurora-nav-links a:hover { color: var(--color-text); text-decoration: none; }
.aurora-nav-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.aurora-nav-socials a {
  color: rgba(237, 232, 255, 0.35);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.aurora-nav-socials a:hover { color: var(--color-accent); }

/* ─── Cover / Hero ─────────────────────────────────────────────────────── */

/* Two-column, full-viewport hero: identity left, photo right */
.aurora-cover {
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: calc(100vh - 54px);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

/* Left column: name, bio, social links */
.aurora-cover-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 5rem 4rem;
  position: relative;
  z-index: 2;
  min-width: 0;
  will-change: opacity;
}

/* ─── Entrance animations ──────────────────────────────────────────────── */

/* Base: all cover text elements start hidden, ready to animate in */
.aurora-cover-eyebrow,
.aurora-cover-firstname,
.aurora-cover-lastname,
.aurora-cover-bio,
.aurora-cover-links {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.aurora-cover-firstname { transform: translateX(-32px) translateY(10px); }
.aurora-cover-lastname  { transform: translateX(32px)  translateY(10px); }

/* .aurora-loaded triggers entrance, staggered by delay */
.aurora-loaded .aurora-cover-eyebrow {
  opacity: 1; transform: none;
  transition-delay: 0.05s;
}
.aurora-loaded .aurora-cover-firstname {
  opacity: 1; transform: none;
  transition-delay: 0.15s;
}
.aurora-loaded .aurora-cover-lastname {
  opacity: 1; transform: none;
  transition-delay: 0.3s;
}
.aurora-loaded .aurora-cover-bio {
  opacity: 1; transform: none;
  transition-delay: 0.45s;
}
.aurora-loaded .aurora-cover-links {
  opacity: 1; transform: none;
  transition-delay: 0.58s;
}
.aurora-loaded .aurora-cover-photo {
  opacity: 1; transform: scale(1);
  transition-delay: 0.05s;
}

/* ─── Article card entrance (IntersectionObserver) ─────────────────────── */

.aurora-story {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              border-color 0.3s ease;
}
.aurora-story.aurora-visible {
  opacity: 1;
  transform: none;
}
/* Tilt resets smoothly via base entrance transition on mouseleave */
.aurora-story.aurora-tilt-leave {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              background 0.3s ease, border-color 0.3s ease;
}
/* Stagger delays for cards 1-9 */
.aurora-story:nth-child(1) { transition-delay: 0s; }
.aurora-story:nth-child(2) { transition-delay: 0.07s; }
.aurora-story:nth-child(3) { transition-delay: 0.14s; }
.aurora-story:nth-child(4) { transition-delay: 0.21s; }
.aurora-story:nth-child(5) { transition-delay: 0.28s; }
.aurora-story:nth-child(6) { transition-delay: 0.35s; }
.aurora-story:nth-child(7) { transition-delay: 0.42s; }
.aurora-story:nth-child(8) { transition-delay: 0.49s; }
.aurora-story:nth-child(9) { transition-delay: 0.56s; }

/* ─── Panel fade transition ────────────────────────────────────────────── */

/* Stack all panels in the same grid cell — no layout shift on switch */
.aurora-panels-stack {
  display: grid;
  min-height: 420px;
}
.aurora-panel {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.aurora-panel--active {
  opacity: 1;
  pointer-events: auto;
}
.aurora-panel--entering {
  animation: auroraPanelIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes auroraPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.aurora-cover-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin: 0 0 1.75rem;
  font-family: var(--font-body);
}

.aurora-cover-name {
  margin: 0 0 2.25rem;
  line-height: 0.88;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
}
.aurora-cover-firstname {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7.5vw, 9rem);
  font-weight: 400;
  color: var(--color-text);
}
/* Last name: italic outline — fashion-editorial stroke treatment */
.aurora-cover-lastname {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7.5vw, 9rem);
  font-weight: 400;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(237, 232, 255, 0.5);
  text-stroke: 1.5px rgba(237, 232, 255, 0.5);
}
/* Single-word name: no outline treatment */
.aurora-cover-name--single .aurora-cover-firstname,
.aurora-cover-name--single .aurora-cover-lastname {
  color: var(--color-text);
  -webkit-text-stroke: 0;
}

.aurora-cover-bio {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(237, 232, 255, 0.68);
  margin-bottom: 2.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.aurora-cover-bio p { margin: 0 0 0.7em; }
.aurora-cover-bio p:last-child { margin-bottom: 0; }

.aurora-cover-links { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.aurora-cover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(237, 232, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  width: fit-content;
  will-change: transform;
}
.aurora-cover-link:hover { color: rgba(237, 232, 255, 0.9); text-decoration: none; }

/* Right column: full-height photo, no border-radius, edge fades */
.aurora-cover-right {
  position: relative;
  overflow: hidden;
}
.aurora-cover-photo {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 54px);
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.85) saturate(0.82);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Left edge: photo dissolves into the dark left panel */
.aurora-cover-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, #080818 0%, rgba(8, 8, 24, 0.6) 45%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
/* Bottom edge: photo flows into the next section below */
.aurora-cover-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(0deg, #080818 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* No headshot: single column, larger name */
.aurora-cover--no-photo { grid-template-columns: 1fr; }
.aurora-cover--no-photo .aurora-cover-left {
  justify-content: center;
  padding: 6rem 4rem;
  max-width: 900px;
}
.aurora-cover--no-photo .aurora-cover-firstname,
.aurora-cover--no-photo .aurora-cover-lastname { font-size: clamp(5rem, 10vw, 11rem); }

/* ─── Category Strip ───────────────────────────────────────────────────── */

.aurora-cats-strip {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(3, 3, 21, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(237, 232, 255, 0.05);
  border-bottom: 1px solid rgba(237, 232, 255, 0.05);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}
.aurora-cats-strip::-webkit-scrollbar { display: none; }

/* Sliding active indicator */
.aurora-tab-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  left: 0;
  background: #c9a96e;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.aurora-cats-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237, 232, 255, 0.38);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid rgba(237, 232, 255, 0.06);
  transition: color 0.2s, box-shadow 0.2s;
  /* button reset */
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.aurora-cats-link:first-child { border-left: 1px solid rgba(237, 232, 255, 0.06); }
.aurora-cats-link:hover {
  color: var(--cat-color, #c9a96e);
  text-decoration: none;
}
.aurora-cats-link--active {
  color: var(--cat-color, #c9a96e);
}

/* ─── Editorial Stories ────────────────────────────────────────────────── */

.aurora-work {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
}

.aurora-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Each story: vertical card — entrance animation defined above in hero section */
.aurora-story {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(237, 232, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(237, 232, 255, 0.02);
  will-change: transform;
  transform-style: preserve-3d;
}
.aurora-stories .aurora-story:last-child { border-bottom: inherit; }
.aurora-story:hover {
  background: rgba(237, 232, 255, 0.05);
  border-color: rgba(237, 232, 255, 0.15);
  text-decoration: none;
}

/* Flip has no meaning in card grid — neutralize */
.aurora-story--flip { grid-template-columns: unset; }
.aurora-story--flip .aurora-story-img { order: unset; }
.aurora-story--flip .aurora-story-body { order: unset; }

.aurora-story-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(237, 232, 255, 0.03);
}
.aurora-story-img img {
  width: 100%;
  height: 100%;
  min-height: unset;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.82);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}
.aurora-story:hover .aurora-story-img img {
  transform: scale(1.04);
  filter: brightness(0.96) saturate(1);
}

.aurora-story-body {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.25rem 1.4rem;
  flex: 1;
  min-width: 0;
}
.aurora-story-outlet {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.6rem;
  font-family: var(--font-body);
}
.aurora-story-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 0.6rem;
  overflow-wrap: break-word;
  transition: color 0.25s;
}
.aurora-story:hover .aurora-story-title { color: #c9a96e; }
.aurora-story-external {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-bottom: 0.15em;
  color: rgba(237, 232, 255, 0.2);
  transition: color 0.25s;
  flex-shrink: 0;
}
.aurora-story:hover .aurora-story-external { color: rgba(201, 169, 110, 0.6); }
.aurora-story-excerpt {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(237, 232, 255, 0.42);
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
}
.aurora-story-meta {
  font-size: 0.68rem;
  color: rgba(237, 232, 255, 0.25);
  letter-spacing: 0.03em;
  margin: auto 0 0;
  font-family: var(--font-body);
}
/* No image: card fills naturally */
.aurora-story--no-img { }
.aurora-story--no-img .aurora-story-body { padding: 1.1rem 1.25rem 1.4rem; }

/* ─── Category Page: Header ────────────────────────────────────────────── */

.aurora-cat-header {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.aurora-cat-header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.75);
  display: block;
}
.aurora-cat-header-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(0deg, #080818 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.aurora-cat-header-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 4rem 3rem;
  max-width: 900px;
}
.aurora-cat-header-eyebrow {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a96e;
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
}
.aurora-cat-header-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 1.25rem;
  color: var(--color-text);
  overflow-wrap: break-word;
}
.aurora-cat-header-desc {
  font-size: 0.97rem;
  color: rgba(237, 232, 255, 0.5);
  margin: 0;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Category Page: Context ───────────────────────────────────────────── */

.aurora-cat-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3.5rem 4rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-bottom: 1px solid rgba(237, 232, 255, 0.07);
}
.aurora-cat-context-block { min-width: 0; }
.aurora-cat-context-label {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
}
.aurora-cat-context-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(237, 232, 255, 0.48);
  overflow-wrap: break-word;
  word-break: break-word;
}
.aurora-cat-context-text p { margin: 0 0 0.9rem; }
.aurora-cat-context-text p:last-child { margin-bottom: 0; }

/* ─── Photos ───────────────────────────────────────────────────────────── */

.aurora-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 2.5rem 4rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: rgba(3, 3, 21, 0.35);
}
.aurora-photo-item img {
  height: 220px;
  width: auto;
  max-width: 320px;
  aspect-ratio: 4/3;
  display: block;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.8);
  transition: filter 0.3s;
}
.aurora-photo-item:hover img { filter: brightness(1) saturate(1); }
.aurora-photo-item figcaption {
  font-size: 0.7rem;
  color: rgba(237, 232, 255, 0.28);
  margin-top: 0.3rem;
  font-style: italic;
}

/* ─── Pagination ───────────────────────────────────────────────────────── */

.aurora-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 2.5rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
}
.aurora-pagination a,
.aurora-pagination span {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(237, 232, 255, 0.15);
  color: rgba(237, 232, 255, 0.4);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.aurora-pagination a:hover {
  border-color: rgba(237, 232, 255, 0.35);
  color: var(--color-text);
  text-decoration: none;
  background: transparent;
}
.aurora-pagination .active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ─── Misc ─────────────────────────────────────────────────────────────── */

.aurora-empty {
  color: rgba(237, 232, 255, 0.28);
  font-style: italic;
  padding: 3rem 4rem;
  font-size: 0.9rem;
}

/* ─── Footer ───────────────────────────────────────────────────────────── */

.aurora-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(237, 232, 255, 0.07);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: rgba(3, 3, 21, 0.45);
}
.aurora-footer-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(237, 232, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.aurora-footer-brand:hover { color: var(--color-text); text-decoration: none; }
.aurora-footer-copy {
  font-size: 0.7rem;
  color: rgba(237, 232, 255, 0.22);
  margin: 0;
  letter-spacing: 0.04em;
}

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

@media (max-width: 960px) {
  .aurora-cursor-glow { display: none; }
  .aurora-nav {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }
  .aurora-nav-links { display: none; }
  .aurora-nav-brand {
    font-size: 0.82rem;
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .aurora-cover {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .aurora-cover-right {
    height: 60vw;
    min-height: 320px;
    order: -1;
  }
  .aurora-cover-photo { min-height: 320px; height: 100%; }
  .aurora-cover-right::before {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg, #080818 0%, transparent 100%);
  }
  .aurora-cover-right::after { display: none; }
  .aurora-cover-left {
    justify-content: flex-start;
    padding: 2.5rem 2.5rem 3.5rem;
  }
  .aurora-work { padding: 2rem 1rem 2.5rem; }
  .aurora-panels-stack { min-height: 0; }
  .aurora-cats-link {
    padding: 0.7rem 1rem;
    letter-spacing: 0.12em;
  }
  .aurora-stories { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .aurora-story-img { aspect-ratio: 16/9; }
  .aurora-story-img img { min-height: unset; height: 100%; aspect-ratio: unset; }
  .aurora-story-body { padding: 1rem 1.1rem 1.25rem; }
  .aurora-cat-context { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
  .aurora-photos { padding: 1.5rem 2.5rem; }
  .aurora-cat-header-content { padding: 2.5rem; }
  .aurora-footer { padding: 2rem 2.5rem; }
  .aurora-empty { padding: 2.5rem; }
}

@media (max-width: 600px) {
  .aurora-nav { padding: 0.75rem 1.25rem; }
  .aurora-nav-links { display: none; }
  .aurora-nav-socials { gap: 0.55rem; }
  .aurora-cats-link {
    padding: 0.65rem 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .aurora-cover-left { padding: 2rem 1.5rem 2.5rem; }
  .aurora-cover-right { min-height: 260px; }
  .aurora-cover-firstname,
  .aurora-cover-lastname { font-size: 3rem; }
  .aurora-stories { grid-template-columns: 1fr; }
  .aurora-story-body { padding: 1rem 1.1rem 1.25rem; }
  .aurora-story-title { font-size: 1.05rem; }
  .aurora-story-meta { font-size: 0.64rem; }
  .aurora-cat-header-title { font-size: 2.8rem; }
  .aurora-cat-header-content { padding: 2rem 1.25rem; }
  .aurora-cat-context { padding: 2rem 1.5rem; }
  .aurora-photos { padding: 1.5rem; }
  .aurora-photo-item img { height: auto; aspect-ratio: 4/3; max-width: 240px; }
  .aurora-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  .aurora-empty { padding: 2rem 1.5rem; }
}


/* ─── Dispatch Layout ─────────────────────────────────────────────────────── */

/* Dispatch global overrides when active */
.dsp-body {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Masthead */
.dsp-masthead {
  border-top: 4px solid var(--color-text);
  border-bottom: 3px solid var(--color-text);
  padding: 0 2rem 0;
  max-width: 100%;
  background: var(--color-surface);
}
.dsp-masthead--section {
  border-top-width: 4px;
}
.dsp-masthead-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.7rem;
  font-family: var(--font-body);
}
.dsp-masthead-date {
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}
.dsp-masthead-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.dsp-masthead-socials a {
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.dsp-masthead-socials a:hover { color: var(--color-accent); }
.dsp-masthead-title-row {
  text-align: center;
  padding: 1.25rem 0 0.75rem;
}
.dsp-masthead-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0;
  color: var(--color-text);
  overflow-wrap: break-word;
}
.dsp-section-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
  color: var(--color-text);
  overflow-wrap: break-word;
}
.dsp-masthead-subtitle {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  margin: 0 auto 0.5rem;
  font-family: var(--font-body);
  font-style: italic;
  max-width: 600px;
}
.dsp-masthead-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  margin-top: 0.5rem;
}
.dsp-masthead-nav a {
  display: block;
  padding: 0.4rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-decoration: none;
  border-right: 1px solid var(--color-border);
  transition: background 0.15s, color 0.15s;
}
.dsp-masthead-nav a:first-child { border-left: 1px solid var(--color-border); }
.dsp-masthead-nav a:hover { background: var(--color-text); color: var(--color-surface); text-decoration: none; }
.dsp-masthead-nav--inline { border: none; margin: 0; }
.dsp-masthead-nav--inline a { border: none; font-size: 0.7rem; padding: 0; }
.dsp-back-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.dsp-back-link:hover { color: var(--color-accent); text-decoration: none; }
.dsp-section-img {
  width: 100%;
  max-height: 280px;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}
.dsp-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

/* Body container */
.dsp-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* Bio strip */
.dsp-bio-strip {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}
.dsp-bio-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-text);
}
.dsp-bio-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-style: italic;
  overflow-wrap: break-word;
}
.dsp-bio-text p { margin: 0 0 0.5rem; }
.dsp-bio-text p:last-child { margin-bottom: 0; }

/* Horizontal rule divider */
.dsp-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-secondary);
}
.dsp-rule::before, .dsp-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.dsp-rule span { white-space: nowrap; }

/* Dateline */
.dsp-dateline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}
.dsp-meta {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  margin: 0.75rem 0 0;
  font-style: italic;
}

/* Lead + sidebar two-column layout */
.dsp-lead-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
}
.dsp-lead {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dsp-lead:hover { text-decoration: none; }
.dsp-lead-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-border);
  flex-shrink: 0;
}
.dsp-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.dsp-lead:hover .dsp-lead-img img { transform: scale(1.03); }
.dsp-lead-body { flex: 1; }
.dsp-lead-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.dsp-lead-title:hover { color: var(--color-accent); }
.dsp-lead-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
  overflow-wrap: break-word;
}

/* Sidebar */
.dsp-sidebar {
  border-left: 1px solid var(--color-border);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dsp-sidebar-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-secondary);
  margin: 0 0 0.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}
.dsp-sidebar-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
.dsp-sidebar-item:hover { text-decoration: none; }
.dsp-sidebar-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(22, 15, 0, 0.12);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
  font-family: var(--font-heading);
}
.dsp-sidebar-body { min-width: 0; }
.dsp-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.2rem;
  color: var(--color-text);
  overflow-wrap: break-word;
}
.dsp-sidebar-item:hover .dsp-sidebar-title { color: var(--color-accent); }
.dsp-sidebar-cats {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dsp-sidebar-cat-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
  display: block;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--color-border);
}
.dsp-sidebar-cat-link:hover { color: var(--color-accent); text-decoration: none; }

/* Bottom grid */
.dsp-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.dsp-bottom-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.dsp-bottom-card:hover { text-decoration: none; }
.dsp-bottom-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-border);
}
.dsp-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.dsp-bottom-card:hover .dsp-bottom-img img { transform: scale(1.04); }
.dsp-bottom-body { flex: 1; }
.dsp-bottom-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  color: var(--color-text);
  overflow-wrap: break-word;
}
.dsp-bottom-card:hover .dsp-bottom-title { color: var(--color-accent); }

/* Featured (category page) */
.dsp-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.dsp-featured:hover { text-decoration: none; }
.dsp-featured-img {
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 4 / 3;
}
.dsp-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.dsp-featured:hover .dsp-featured-img img { transform: scale(1.03); }
.dsp-featured-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Category context columns */
.dsp-context-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}
.dsp-context-col { min-width: 0; }
.dsp-context-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  overflow-wrap: break-word;
  word-break: break-word;
}
.dsp-context-text p { margin: 0 0 0.75rem; }
.dsp-context-text p:last-child { margin-bottom: 0; }

/* Article index */
.dsp-index {
  list-style: none;
  border-top: 1px solid var(--color-border);
}
.dsp-index-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.dsp-index-body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dsp-index-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(22, 15, 0, 0.1);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.dsp-index-thumb {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-border);
}
.dsp-index-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dsp-index-text { min-width: 0; flex: 1; }
.dsp-index-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  text-decoration: none;
  margin: 0 0 0.35rem;
  overflow-wrap: break-word;
}
.dsp-index-title:hover { color: var(--color-accent); text-decoration: none; }
.dsp-index-excerpt {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0.35rem 0 0;
  overflow-wrap: break-word;
}

/* Photos */
.dsp-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.dsp-photo-item img {
  height: 160px;
  width: auto;
  display: block;
  border: 1px solid var(--color-border);
}
.dsp-photo-item figcaption {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  margin-top: 0.2rem;
  font-style: italic;
}

.dsp-empty {
  color: var(--color-text-secondary);
  font-style: italic;
  padding: 2rem 0;
}

/* Dispatch footer */
.dsp-footer {
  border-top: 3px solid var(--color-text);
  background: var(--color-surface);
  padding: 1.5rem 2rem;
}
.dsp-footer-rule { display: none; }
.dsp-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  gap: 1rem;
}
.dsp-footer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}
.dsp-footer-copy { color: var(--color-text-secondary); margin: 0; }

/* Dispatch responsive */
@media (max-width: 900px) {
  .dsp-masthead-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .dsp-masthead-nav::-webkit-scrollbar { display: none; }
  .dsp-bio-strip {
    flex-direction: column;
    gap: 0.85rem;
  }
  .dsp-lead-row { grid-template-columns: 1fr; }
  .dsp-sidebar { border-left: none; border-top: 1px solid var(--color-border); padding: 1.5rem 0 0; }
  .dsp-bottom-grid { grid-template-columns: 1fr 1fr; }
  .dsp-featured { grid-template-columns: 1fr; }
  .dsp-context-cols { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .dsp-masthead-top {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .dsp-masthead-date { font-size: 0.62rem; }
  .dsp-masthead { padding: 0 1rem; }
  .dsp-body { padding: 1.5rem 1rem 3rem; }
  .dsp-bio-strip { padding: 1rem 0; }
  .dsp-lead-row { gap: 1.25rem; }
  .dsp-masthead-name { font-size: 2.5rem; }
  .dsp-section-name { font-size: 2rem; }
  .dsp-lead-title { font-size: 1.6rem; }
  .dsp-bottom-grid { grid-template-columns: 1fr; }
  .dsp-masthead-nav { flex-wrap: wrap; }
  .dsp-masthead-nav a { padding: 0.4rem 0.75rem; font-size: 0.62rem; }
  .dsp-index-body { flex-direction: column; gap: 0.75rem; }
  .dsp-index-thumb { width: 100%; max-width: 220px; }
  .dsp-index-title { font-size: 1rem; }
  .dsp-photo-item img { height: auto; max-width: 100%; }
  .dsp-footer-inner { flex-direction: column; text-align: center; }
}
