/* =============================================================
   MATTHEW PORTER THEME — assets/css/main.css
   Mirrors design system from HTML source files
   ============================================================= */

/* ----- RESET & BASE ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #111315;
  --paper:     #D6D1C4;
  --off-white: #F4F1EC;
  --orange:    #F85023;
  --orange-dk: #C93E18;
  --cyan:      #18BAFA;
  --cyan-dk:   #0E9AD4;
  --mid:       #5A5C60;
  --rule:      rgba(17,19,21,0.10);
  --rule-lt:   rgba(244,241,236,0.12);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ----- TYPOGRAPHY HELPERS ---------------------------------- */
.serif        { font-family: var(--serif); }
.sans         { font-family: var(--sans); }
.eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}

/* =============================================================
   NAVIGATION (two-row sticky)
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
}

/* Row 1 — wordmark */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 52px 14px;
  border-bottom: 1px solid var(--rule);
}

.site-wordmark {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.site-wordmark em { font-style: italic; font-weight: 300; }

/* Row 2 — links bar */
.nav-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li { position: relative; }

.nav-links li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 12px;
  background: rgba(244,241,236,0.15);
}

.nav-links a {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.75);
  text-decoration: none;
  padding: 14px 28px;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a,
.nav-links a.active {
  color: var(--off-white);
}
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Mobile menu toggle (hidden by default) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  color: rgba(244,241,236,0.75);
  font-size: 1.2rem;
}

/* =============================================================
   PAGE HEADER — split two-column (Writer, Contact, etc.)
   ============================================================= */
.page-header-split,
.page-header {
  padding: 80px 64px 72px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.page-header-left {
  border-right: 1px solid var(--rule);
  padding-right: 64px;
}

.page-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-title em { font-style: italic; }

.page-attribution {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  margin-top: 24px;
}
.page-attribution u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-intro {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--mid);
  padding-bottom: 6px;
}

/* Dark page header (Ideas index, Director hero header) */
.page-header-dark {
  background: var(--ink);
  padding: 80px 52px 72px;
  position: relative;
  overflow: hidden;
}

.page-header-dark::before {
  content: attr(data-watermark);
  position: absolute;
  right: -20px; top: -30px;
  font-family: var(--serif);
  font-size: clamp(140px, 22vw, 260px);
  font-weight: 600;
  color: rgba(244,241,236,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.page-header-dark-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.page-header-dark h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.page-header-dark h1 em { font-style: italic; font-weight: 300; color: var(--paper); }

.page-header-dark .page-header-desc {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(244,241,236,0.55);
  max-width: 440px;
  line-height: 1.7;
}

.header-rule {
  width: 40px; height: 2px;
  background: var(--orange);
  margin: 28px 0 0;
}

/* =============================================================
   BIO SECTION
   ============================================================= */
.bio-section {
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--rule);
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2a2825 0%, #1e1c1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-photo-placeholder span {
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(244,241,236,0.3);
  text-transform: uppercase;
}

.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

.bio-copy { padding-top: 8px; }
.bio-copy p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.bio-copy p:last-child { margin-bottom: 0; }

.bio-copy a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.bio-copy a:hover { color: var(--orange); }

.bio-credential {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}

/* =============================================================
   FEATURED IN STRIP
   ============================================================= */
.featured-strip {
  background: var(--paper);
  padding: 52px 64px;
  border-bottom: 1px solid var(--rule);
}

.featured-strip-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 28px;
  display: block;
}

.featured-names {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.featured-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.01em;
  padding: 0 36px 0 0;
  position: relative;
  transition: color 0.2s;
  cursor: default;
}
.featured-name + .featured-name::before {
  content: '·';
  position: absolute;
  left: -4px;
  color: var(--orange);
}

/* =============================================================
   ENDORSEMENTS — rotating quotes, inherits the featured-strip shell
   ============================================================= */
.endorsements {
  background: var(--paper);
  padding: 52px 64px;
  border-bottom: 1px solid var(--rule);
}

/* Stage gets a JS-measured min-height so the page never jumps
   as quotes of different lengths rotate through. */
.endorse-stage { position: relative; }

.endorse-slide {
  margin: 0;
  border: 0;
  padding: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
}
.endorse-slide.is-fading { opacity: 0; }

.endorse-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 46ch;
}

.endorse-attr {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
}
.endorse-sep { color: var(--orange); padding: 0 4px; }

.endorse-dots {
  display: flex;
  gap: 7px;
  margin-top: 30px;
}
.endorse-dot {
  width: 22px;
  height: 2px;
  background: rgba(17,19,21,0.18);
  transition: background 0.3s ease;
}
.endorse-dot.is-active { background: var(--orange); }

@media (prefers-reduced-motion: reduce) {
  .endorse-slide { transition: none; }
  .endorse-slide.is-fading { opacity: 1; }
}

/* =============================================================
   CTA BANDS (Book, Representation, etc.)
   ============================================================= */
.cta-band {
  background: var(--ink);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}

.cta-band-text .eyebrow { margin-bottom: 16px; }

.cta-band-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cta-band-text h2 em { font-style: italic; }

.cta-band-text p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(214,209,196,0.65);
  max-width: 480px;
}
.cta-band-text p a {
  color: rgba(214,209,196,0.80);
  border-bottom: 1px solid rgba(214,209,196,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-band-text p a:hover {
  color: var(--off-white);
  border-color: rgba(214,209,196,0.6);
}

/* Book CTA variant */
.cta-band-book { align-items: center; }
.cta-band-book .btn-primary { margin-top: 44px; }
.cta-band-media {
  position: relative;
  justify-self: end;
  align-self: end;
  margin-bottom: calc(-80px - 52px); /* cancel band padding, then crop past the edge */
  padding: 0 12px;
}
.cta-band-media::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(closest-side, rgba(246,185,0,0.22), rgba(246,185,0,0) 72%);
  pointer-events: none;
}
.cta-band-media img {
  position: relative;
  display: block;
  width: clamp(250px, 26vw, 320px);
  height: auto;
  transform: rotate(2.5deg);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.55));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.cta-band-media a:hover img {
  transform: rotate(1deg) translateY(-10px);
  filter: drop-shadow(0 30px 48px rgba(0,0,0,0.6));
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}
.btn-primary .btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* =============================================================
   DIRECTOR HERO — cinematic, letterbox bars
   ============================================================= */
.director-hero {
  position: relative;
  background: var(--ink);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* letterbox bars removed */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #1e1c1a 0%, #111315 50%, #252220 100%);
}
/* If there's a featured image */
.director-hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  display: block;
}

/* Background video — sits above the poster image, same cover behavior.
   The image stays underneath as the fallback if video never paints. */
.director-hero .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  display: block;
  z-index: 1;
}

/* Optional taller hero treatments (Customizer → Director Page → Hero Height) */
.director-hero.hero-h-tall { min-height: 70vh; }
.director-hero.hero-h-full { min-height: 92vh; }

/* Reduced motion: hide the video, let the poster image show through */
@media (prefers-reduced-motion: reduce) {
  .director-hero .hero-bg-video { display: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,19,21,0.85) 0%, rgba(17,19,21,0.4) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.hero-eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--off-white);
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.45);
}

/* =============================================================
   IDEAS INDEX
   ============================================================= */
.filter-bar {
  border-bottom: 1px solid var(--rule);
  background: var(--off-white);
  position: sticky;
  top: 97px;
  z-index: 100;
}

.filter-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.filter-btn.active,
.filter-btn:hover { color: var(--ink); }
.filter-btn.active::after,
.filter-btn:hover::after { transform: scaleX(1); }

/* Main content wrapper */
.main-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 52px 120px;
}

/* Featured post card */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  margin-bottom: 80px;
  text-decoration: none;
  color: inherit;
  background: var(--off-white);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.featured-post:hover { box-shadow: 0 12px 48px rgba(17,19,21,0.10); }

.featured-image {
  position: relative;
  background: var(--ink);
  min-height: 380px;
  overflow: hidden;
}
.featured-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1f22 0%, #0e1214 50%, #111315 100%);
}
.featured-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(248,80,35,0.04) 30px, rgba(248,80,35,0.04) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(244,241,236,0.02) 30px, rgba(244,241,236,0.02) 31px);
}
.featured-image-number {
  position: absolute;
  bottom: 24px; left: 32px;
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 600;
  color: rgba(244,241,236,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}
.featured-image-tag {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(248,80,35,0.12);
  padding: 6px 12px;
  border: 1px solid rgba(248,80,35,0.25);
}

.featured-body {
  padding: 48px 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--rule);
}
.featured-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.featured-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.featured-title em { font-style: italic; color: var(--mid); }
.featured-excerpt {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  flex: 1;
}
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.featured-meta {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.featured-cta {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-cta .arrow {
  width: 28px; height: 1px;
  background: var(--ink);
  position: relative;
  transition: width 0.25s ease;
}
.featured-cta .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  transform: rotate(45deg);
}
.featured-post:hover .arrow { width: 42px; }

/* Grid section header */
.grid-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.grid-section-title {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.grid-section-count {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--paper);
}

/* Accent variant (front page): no rule, orange kicker */
.grid-section-header--accent {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.grid-section-header--accent .grid-section-title {
  position: relative;
  padding-left: 28px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}
.grid-section-header--accent .grid-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
}

/* Article grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 80px;
}

.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--off-white);
  padding: 36px 32px 32px;
  transition: background 0.2s;
  position: relative;
}
.article-card:hover { background: #EDE9E2; }
.article-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

.article-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.article-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
}

.article-excerpt {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 28px;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-meta {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.card-arrow {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

/* List view */
.articles-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.list-card {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.list-card::before {
  content: '';
  position: absolute;
  left: -52px; right: -52px;
  top: 0; bottom: 0;
  background: #EDE9E2;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 0;
}
.list-card:hover::before { opacity: 1; }
.list-card > * { position: relative; z-index: 1; }

.list-date {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--paper);
  min-width: 100px;
  flex-shrink: 0;
}
.list-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  min-width: 70px;
  flex-shrink: 0;
}
.list-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  flex: 1;
  line-height: 1.3;
}
.list-excerpt {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 280px;
  flex-shrink: 0;
  line-height: 1.6;
}
.list-arrow {
  font-size: 1rem;
  color: var(--mid);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
}
.list-card:hover .list-arrow { opacity: 1; color: var(--ink); }

/* Newsletter band */
.newsletter-band {
  background: var(--ink);
  padding: 72px 52px;
  margin: 0 -52px;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-eyebrow {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.newsletter-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.newsletter-heading em { font-style: italic; }
.newsletter-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(244,241,236,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  padding: 14px 18px;
  background: rgba(244,241,236,0.08);
  border: 1px solid rgba(244,241,236,0.15);
  border-right: none;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(244,241,236,0.3); }
.newsletter-input:focus { border-color: rgba(244,241,236,0.35); }
.newsletter-submit {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--off-white);
  border: 1px solid var(--orange);
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-submit:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

/* =============================================================
   SINGLE ARTICLE
   ============================================================= */
.article-header {
  background: var(--ink);
  padding: 80px 52px 0;
  position: relative;
  overflow: hidden;
}
.article-header-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.breadcrumb a {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: rgba(244,241,236,0.75); }
.breadcrumb span {
  font-size: 0.6rem;
  color: rgba(244,241,236,0.2);
}
.breadcrumb .current {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.4);
}

.article-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--off-white);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.article-headline em { font-style: italic; font-weight: 300; color: var(--paper); }

.article-dek {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(214,209,196,0.7);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 580px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(244,241,236,0.1);
}
.meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.3);
}
.meta-value {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(244,241,236,0.65);
}
.meta-divider {
  width: 1px; height: 28px;
  background: rgba(244,241,236,0.1);
}

/* Article hero image */
.article-hero-image {
  width: 100%;
  max-width: 760px;
  margin: 40px auto 0;
  height: 320px;
  background: linear-gradient(160deg, #1c2228 0%, #0e1214 60%, #111315 100%);
  position: relative;
  overflow: hidden;
}
.article-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(248,80,35,0.03) 40px, rgba(248,80,35,0.03) 41px);
}
.article-hero-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--ink), transparent);
}
.article-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-caption {
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(244,241,236,0.3);
  z-index: 1;
  font-style: italic;
}

/* Three-col article layout */
.article-wrapper {
  display: grid;
  grid-template-columns: 1fr minmax(0, 640px) 1fr;
  padding: 72px 52px 100px;
}

/* Left sidebar */
.article-sidebar-left {
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.sidebar-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.share-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.share-links { display: flex; flex-direction: column; gap: 14px; }
.share-link {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--mid);
  font-size: 0.7rem;
  font-family: var(--sans);
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.share-link:hover {
  background: var(--ink);
  color: var(--off-white);
  border-color: var(--ink);
}
.progress-track {
  width: 1px; height: 80px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
  margin: 4px 0;
}
.progress-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--orange);
  transition: height 0.1s linear;
  height: 0%;
}

/* Article body */
.article-body {}
.article-body p {
  font-family: var(--sans);
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.6em;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin: 2.6em 0 0.8em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 2em 0 0.7em;
}

/* Drop cap */
.article-body .drop-cap::first-letter {
  font-family: var(--serif);
  font-size: 5.2rem;
  font-weight: 600;
  float: left;
  line-height: 0.78;
  margin-right: 10px;
  margin-top: 8px;
  color: var(--ink);
}

/* Pull quote */
.pull-quote {
  margin: 2.4em -32px;
  padding: 32px 32px 32px 48px;
  border-left: 3px solid var(--orange);
  background: rgba(17,19,21,0.04);
}
.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin: 0 !important;
}
.pull-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 14px;
  font-style: normal;
}

/* Section break */
.section-break {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 3em 0;
  color: var(--paper);
}
.section-break::before, .section-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-break span { font-family: var(--serif); font-size: 1.2rem; font-style: italic; }

/* Article image */
.article-image { margin: 2.4em -32px; position: relative; }
.article-image img,
.article-image .img-placeholder {
  width: 100%;
  display: block;
}
.article-image .img-placeholder {
  height: 280px;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2228 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-image figcaption {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--mid);
  font-style: italic;
  margin-top: 10px;
  padding: 0 4px;
  line-height: 1.5;
}

/* Right sidebar */
.article-sidebar-right { padding-left: 48px; }
.sidebar-sticky-right {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.sidebar-section-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

/* TOC */
.toc { border-top: 2px solid var(--ink); padding-top: 16px; }
.toc-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--mid);
  transition: color 0.2s;
}
.toc-item:hover { color: var(--ink); }
.toc-num {
  font-family: var(--serif);
  font-size: 0.7rem;
  color: var(--paper);
  flex-shrink: 0;
  min-width: 18px;
}
.toc-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.4;
}
.toc-item.active { color: var(--ink); }
.toc-item.active .toc-num { color: var(--orange); }

/* Related posts */
.related-card { display: block; text-decoration: none; color: inherit; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.related-tag {
  font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px; display: block;
}
.related-title {
  font-family: var(--serif);
  font-size: 1.0rem; font-weight: 400; line-height: 1.3;
  color: var(--ink); transition: color 0.2s;
}
.related-card:hover .related-title { color: var(--mid); }

/* Article end / author block */
.article-end {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 52px 100px;
}
.article-end-rule { height: 1px; background: var(--rule); margin-bottom: 40px; }
.author-block { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 52px; }
.author-avatar {
  width: 56px; height: 56px;
  background: var(--ink);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-avatar-initials {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.05em;
}
.author-label {
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 4px;
}
.author-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.author-bio { font-size: 0.8rem; font-weight: 300; color: var(--mid); line-height: 1.65; }

/* More like this */
.more-section { background: var(--ink); padding: 72px 52px; }
.more-inner { max-width: 1140px; margin: 0 auto; }
.more-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(244,241,236,0.08);
}
.more-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--off-white); }
.more-link {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244,241,236,0.45); text-decoration: none; transition: color 0.2s;
}
.more-link:hover { color: var(--off-white); }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(244,241,236,0.06); }
.more-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--ink); padding: 28px 28px 24px; transition: background 0.2s;
}
.more-card:hover { background: #1a1f22; }
.more-card-tag {
  font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; display: block;
}
.more-card-title {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 400; line-height: 1.3;
  color: var(--off-white); margin-bottom: 20px;
}
.more-card-meta { font-size: 0.6rem; font-weight: 300; color: rgba(244,241,236,0.3); letter-spacing: 0.06em; }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 600px;
}

.form-side {
  padding: 80px 64px;
  border-right: 1px solid var(--rule);
}
.form-label-top {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(17,19,21,0.2);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(17,19,21,0.3); font-weight: 300; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5C60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-group select option { background: var(--off-white); }
.form-group textarea { resize: none; min-height: 120px; line-height: 1.7; }
.form-note { font-size: 0.75rem; font-weight: 300; color: var(--mid); line-height: 1.6; }
.form-error { font-size: 0.8rem; font-weight: 400; color: var(--orange); line-height: 1.6; margin-bottom: 16px; }

.info-side { padding: 80px 48px; display: flex; flex-direction: column; gap: 56px; }
.info-label {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 16px;
}
.contact-email-block p { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--mid); margin-bottom: 12px; }
.email-address { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ink); }
.info-divider { width: 40px; height: 1px; background: var(--rule); }

.social-links { display: flex; flex-direction: column; gap: 4px; }
.social-link {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}
.social-link:last-child { border-bottom: none; }
.social-link:hover { color: var(--orange); }
.social-link:hover .social-arrow { transform: translateX(4px); opacity: 1; }
.social-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-name { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; flex: 1; }
.social-handle { font-size: 0.72rem; font-weight: 300; color: var(--mid); }
.social-arrow { font-size: 0.85rem; color: var(--orange); opacity: 0; transition: transform 0.2s, opacity 0.2s; }

/* Form success state */
.form-success { display: none; padding: 40px 0; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: 12px; }
.form-success p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.7; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer-light {
  padding: 44px 64px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}
.footer-wordmark em { font-style: italic; font-weight: 300; }

.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 0.60rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 0.60rem; color: var(--mid); }

/* Dark footer (Ideas pages) */
.site-footer-dark {
  background: var(--ink);
  padding: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(244,241,236,0.06);
}
.site-footer-dark .footer-wordmark {
  font-size: 1.4rem;
  color: var(--off-white);
}
.site-footer-dark .footer-links a { color: rgba(244,241,236,0.45); }
.site-footer-dark .footer-links a:hover { color: var(--off-white); }
.site-footer-dark .footer-links li + li::before {
  content: '·';
  color: rgba(244,241,236,0.2);
  padding: 0 12px;
}
.site-footer-dark .footer-links {
  flex-wrap: wrap; justify-content: center;
}
.site-footer-dark .footer-copy { color: rgba(244,241,236,0.25); letter-spacing: 0.08em; }

/* =============================================================
   HOMEPAGE — hero + sections
   ============================================================= */
.home-hero {
  width: 100%;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e1c1a 0%, #111315 50%, #252220 100%);
}
.home-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(30%);
  display: block;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,19,21,0.85) 0%, rgba(17,19,21,0.3) 60%, transparent 100%);
  z-index: 1;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px;
  width: 100%;
}
.home-hero-eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 24px;
}
.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--off-white);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 800px;
}
.home-hero h1 em { font-style: italic; }
.home-hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(244,241,236,0.6);
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 48px;
}
.home-hero-links {
  display: flex;
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(244,241,236,0.12);
  padding-top: 28px;
}
.home-hero-links li + li { border-left: 1px solid rgba(244,241,236,0.12); }
.home-hero-links a {
  display: block;
  padding: 0 32px 0 0;
  padding-right: 32px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.home-hero-links li:not(:first-child) a { padding: 0 32px; }
.home-hero-links a:hover { color: var(--off-white); }

/* Disciplines strip */
.disciplines-strip {
  padding: 80px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.discipline-item {
  padding: 0 48px 0 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.discipline-item:not(:first-child) { padding: 0 48px 0 48px; }
.discipline-item:last-child { border-right: none; }
.discipline-number {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--orange);
  letter-spacing: 0.15em;
}
.discipline-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}
.discipline-title em { font-style: italic; }
.discipline-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}
.discipline-link {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(17,19,21,0.2);
  padding-bottom: 2px;
  margin-top: auto;
  transition: color 0.2s, border-color 0.2s;
}
.discipline-link:hover { color: var(--orange); border-color: var(--orange); }

/* =============================================================
   ANIMATIONS
   ============================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .article-sidebar-left,
  .article-sidebar-right { display: none; }
  .article-wrapper { grid-template-columns: 1fr; padding: 52px 52px 80px; }
}

@media (max-width: 900px) {
  .page-header-split,
  .page-header { grid-template-columns: 1fr; padding: 48px 40px; gap: 32px; }
  .page-header-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 32px; }
  .bio-section { grid-template-columns: 260px 1fr; gap: 48px; }
  .hero-content { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-image { min-height: 200px; }
  .featured-body { border-left: none; border-top: 1px solid var(--rule); padding: 32px 28px; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .form-side { border-right: none; border-bottom: 1px solid var(--rule); padding: 64px 40px; }
  .disciplines-strip { grid-template-columns: 1fr; gap: 48px; }
  .discipline-item { border-right: none; padding: 0 0 48px 0 !important; border-bottom: 1px solid var(--rule); }
  .discipline-item:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .cta-band { grid-template-columns: 1fr; gap: 36px; }
  .cta-band-media { justify-self: center; margin-bottom: calc(-80px - 44px); padding: 0; }
  .cta-band-media img { width: clamp(220px, 40vw, 280px); }
  .nav-top { padding: 16px 24px 12px; }
  .site-footer-light { padding: 36px 28px; flex-direction: column; gap: 24px; text-align: center; }
  .site-footer-light .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-links li + li::before { display: none; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid rgba(244,241,236,0.08); }
  .nav-links a::after { left: 24px; right: 24px; }
  .nav-toggle { display: block; }
  .nav-bottom { flex-wrap: wrap; justify-content: flex-end; }
  .bio-section { grid-template-columns: 1fr; padding: 56px 28px; gap: 40px; }
  .featured-strip { padding: 40px 28px; }
  .endorsements { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .info-side { padding: 48px 28px; }
  .more-grid { grid-template-columns: 1fr; }
  .list-excerpt { display: none; }
  .list-date { display: none; }
  .newsletter-band { margin: 0 -24px; padding: 52px 24px; }
  .main-content { padding: 52px 24px 80px; }
  .filter-inner { padding: 0 24px; }
  .page-header-dark { padding: 60px 24px 56px; }
  .article-header { padding: 60px 24px 0; }
  .article-wrapper { padding: 40px 24px 60px; }
  .article-end { padding: 0 24px 60px; }
  .more-section { padding: 52px 24px; }
  .hero-content { padding: 80px 28px; }
  .home-hero-content { padding: 56px 28px; }
  .disciplines-strip { padding: 56px 28px; }
  .cta-band { padding: 56px 28px; }
  .cta-band-media { margin-bottom: calc(-56px - 36px); }
  .cta-band-media img { width: clamp(190px, 55vw, 240px); }
  .bio-section { padding: 56px 28px; }
  .site-footer-dark { padding: 40px 24px; }
}

/* ── PRODUCER: AGENCY CARDS ── */
.producer-copy {
  padding: 80px 64px;
  max-width: 780px;
  border-bottom: 1px solid var(--rule);
}
.producer-lead {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.producer-lead a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.producer-lead a:hover {
  color: var(--orange-dk);
  border-color: var(--orange-dk);
}

.agencies {
  display: flex;
  flex-direction: column;
}
.agency-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 320px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: filter 0.25s;
  overflow: hidden;
}
.agency-card:last-child { border-bottom: none; }
.agency-card:hover { filter: brightness(1.08); }
.agency-card.hp { background: #0D4F6B; }
.agency-card.cv { background: #1A2E1A; }

.agency-copy-col {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.agency-tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.agency-card.hp .agency-tag { color: rgba(255,255,255,0.45); }
.agency-card.cv .agency-tag { color: rgba(255,255,255,0.40); }
.agency-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.agency-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.72;
  max-width: 480px;
}
.agency-card.hp .agency-desc { color: rgba(255,255,255,0.60); }
.agency-card.cv .agency-desc { color: rgba(255,255,255,0.55); }
.agency-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: gap 0.2s, border-color 0.2s;
  margin-top: 8px;
}
.agency-card.hp .agency-link { color: rgba(255,255,255,0.80); }
.agency-card.cv .agency-link { color: rgba(255,255,255,0.75); }
.agency-card:hover .agency-link { gap: 14px; border-bottom-color: rgba(255,255,255,0.50); }
.agency-card:hover .btn-arrow { transform: translateX(4px); }

.agency-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: rgba(0,0,0,0.12);
}
.agency-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}
.agency-logo-fpo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed rgba(255,255,255,0.30);
}
.agency-logo-fpo .fpo-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.agency-logo-fpo .fpo-note {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  text-align: center;
  padding: 0 12px;
}

@media (max-width: 900px) {
  .agency-card { grid-template-columns: 1fr 260px; }
  .agency-copy-col { padding: 48px; }
}
@media (max-width: 640px) {
  .producer-copy { padding: 56px 28px; }
  .agency-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .agency-copy-col { padding: 40px 28px; }
  .agency-logo-wrap { padding: 32px; min-height: 180px; }
}

/* ── CONTACT CTA (dark band, orange accent) ── */
.contact-cta {
  background: var(--ink);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.contact-cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.contact-cta-text h2 em { font-style: italic; }
.contact-cta-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(214,209,196,0.60);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}
.btn-cta:hover .btn-arrow { transform: translateX(4px); }

/* ── CYCLING CTA WORD ──
   Inline-block wrapper reserves the width of the longest word so the
   line above never reflows as words swap. Crossfade only — no motion. */
.cta-cycle {
  font-style: italic;
  display: inline-block;
  vertical-align: baseline;
}
.cta-cycle-word {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.cta-cycle-word.is-fading { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .cta-cycle-word {
    transition: none;
  }
  .cta-cycle-word.is-fading { opacity: 1; }
}

@media (max-width: 640px) {
  .contact-cta { grid-template-columns: 1fr; padding: 56px 28px; gap: 36px; }
}

/* ── PODCAST: SHOW CARDS ── */
.shows {
  display: flex;
  flex-direction: column;
}
.show-card {
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 380px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: filter 0.25s;
  overflow: hidden;
}
.show-card:last-child { border-bottom: none; }
.show-card:hover { filter: brightness(1.08); }
.show-card.tts { background: #0C445A; }
.show-card.sbe { background: #7E1113; grid-template-columns: 400px 1fr; }

.show-copy-col {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.show-tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.show-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.show-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.72;
  max-width: 520px;
  color: rgba(255,255,255,0.62);
}
.show-desc s {
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}
.show-anything {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
}
.show-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: gap 0.2s, border-color 0.2s;
  margin-top: 8px;
  align-self: flex-start;
}
.show-card:hover .show-link { gap: 14px; border-bottom-color: rgba(255,255,255,0.50); }
.show-card:hover .btn-arrow { transform: translateX(4px); }

.show-art-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: rgba(0,0,0,0.16);
}
.show-art {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

@media (max-width: 900px) {
  .show-card,
  .show-card.sbe { grid-template-columns: 1fr 280px; }
  .show-card.sbe .show-art-wrap { order: 2; }
  .show-copy-col { padding: 48px; }
}
@media (max-width: 640px) {
  .show-card,
  .show-card.sbe {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .show-copy-col { padding: 40px 28px; }
  .show-art-wrap { padding: 32px; }
  .show-art { max-width: 220px; }
}

/* ── DIRECTOR PAGE: FULL LAYOUT OVERRIDES ── */

/* letterbox bars removed — not needed with WP site header */

/* Hero: single-column content, link anchored under the headline */
.director-hero .hero-content {
  display: flex;
  align-items: flex-end;
  padding: 80px 64px;
}
.director-hero .hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Remove the stats block visually — keep the link */
.hero-stats { display: none; }

.hero-link {
  margin-top: 28px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,241,236,0.2);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.hero-link:hover {
  color: var(--off-white);
  border-color: rgba(244,241,236,0.5);
}

/* Bio: two-column, text left / photo right */
.director-bio {
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--rule);
}
.director-bio .bio-left {}
.section-eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 28px;
}
.bio-text p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.bio-text p:last-child { margin-bottom: 0; }
.bio-text a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.bio-text a:hover { color: var(--orange); }
.director-bio .bio-right {}
.director-bio .bio-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

/* Rep CTA */
.rep-cta {
  background: var(--ink);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.rep-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.rep-cta-text .eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
.rep-cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.rep-cta-text h2 em { font-style: italic; }
.rep-cta-text p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(214,209,196,0.60);
  max-width: 480px;
}
.rep-cta-text p a {
  color: rgba(214,209,196,0.80);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,209,196,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.rep-cta-text p a:hover {
  color: var(--off-white);
  border-color: rgba(214,209,196,0.6);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* Director responsive */
@media (max-width: 900px) {
  .director-bio { grid-template-columns: 1fr; }
  .director-bio .bio-right { order: -1; max-width: 400px; }
}
@media (max-width: 640px) {
  .director-hero .hero-content { padding: 80px 28px; }
  .director-bio { padding: 56px 28px; gap: 40px; }
  .rep-cta { grid-template-columns: 1fr; padding: 56px 28px; gap: 36px; }
}
