/*
Theme Name: Fratangelo
Theme URI: https://fratangelo.com
Author: Michael (your name here)
Author URI: https://fratangelo.com
Description: Custom theme for Michael Fratangelo, Visual Artist
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: fratangelo
*/

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

:root {
  --black:      #1a1a1a;
  --white:      #ffffff;
  --gray-mid:   #888888;
  --gray-light: #e8e8e8;
  --gray-bg:    #fafafa;
  --display:    'Outfit', Helvetica, sans-serif;
  --sans:       'DM Sans', Helvetica, sans-serif;
  --sidebar:    220px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── PAGE TRANSITION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LAYOUT ── */
/* ── BOXED LAYOUT ── */
.site-outer {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  justify-content: center;
  background-color: #f0f0f0; /* outer background — subtle gray surround */
}

.site-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 1440px;
  background: var(--white);
  box-shadow: 0 0 60px rgba(0,0,0,0.06);
  position: relative;
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar);
  min-width: var(--sidebar);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--gray-light);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  z-index: 100;
  flex-shrink: 0;
  align-self: flex-start;
  opacity: 0;
  animation: sidebarReveal 0.6s ease-out forwards 0.2s;
}

@keyframes sidebarReveal {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sidebar-logo {
  font-family: var(--display);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 48px;
  display: block;
  text-transform: uppercase;
}

.sidebar-logo strong {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.sidebar-logo span {
  display: block;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 5px;
}

.nav-group { margin-bottom: 32px; }

.nav-group-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

/* WordPress menu reset */
.nav-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-group ul li a {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--black);
  padding: 5px 0;
  transition: opacity 0.2s ease;
}

.nav-group ul li a:hover { opacity: 0.5; }
.nav-group ul li.current-menu-item > a,
.nav-group ul li.current_page_item > a { font-weight: 500; }

.sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-footer a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  transition: color 0.2s ease;
}

.sidebar-footer a:hover { color: var(--black); }

/* ── HAMBURGER ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--black);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE DROPDOWN ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 61px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 32px 24px 40px;
  z-index: 199;
  animation: menuDrop 0.25s ease forwards;
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open { display: block; }

.mobile-menu .nav-group { margin-bottom: 28px; }

.mobile-menu .nav-group ul li a {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-menu .nav-group ul li:first-child a {
  border-top: 1px solid var(--gray-light);
}

.mobile-menu-footer {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.mobile-menu-footer a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}

/* ── MAIN CONTENT ── */
.main { flex: 1; min-width: 0; overflow: hidden; }

/* Press page needs overflow visible so grid calculates correctly */
.page-template-page-press .main { overflow: visible; }

/* ── SHARED COMPONENTS ── */
.section-label,
.page-header-label,
.series-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.btn:hover { opacity: 0.45; }

.pull-quote {
  padding: 56px 60px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  gap: 40px;
}

.pull-quote-line {
  width: 2px;
  height: 72px;
  background: var(--black);
  flex-shrink: 0;
}

.pull-quote blockquote {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(18px, 2.5vw, 30px);
  line-height: 1.4;
  font-style: italic;
}

.pull-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 14px;
  font-style: normal;
}

/* ── SITE FOOTER ── */
.site-footer {
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--gray-light);
}

.site-footer p {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-mid);
}

/* ── CONTACT FORM 7 RESET ── */
.wpcf7 { width: 100%; }
.wpcf7 .wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.wpcf7 br { display: none; }

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 0;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-color: var(--black); }

.wpcf7 textarea { resize: vertical; min-height: 140px; line-height: 1.7; }

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.wpcf7 input[type="submit"]:hover { opacity: 0.75; }

.wpcf7-not-valid-tip {
  font-family: var(--sans);
  font-size: 11px;
  color: #c00;
  margin-top: 6px;
  display: block;
}

.wpcf7-response-output {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  padding: 12px 16px;
  margin-top: 16px;
  border: 1px solid var(--gray-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .site-outer { background: var(--white); }

  .sidebar {
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100% !important;
    min-width: unset !important;
    height: auto !important;
    min-height: unset;
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
    padding: 0 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    z-index: 200;
    overflow: visible;
    animation: none !important;
    opacity: 1 !important;
    align-self: auto;
  }

  .sidebar-nav,
  .sidebar-footer { display: none !important; }
  .menu-toggle { display: flex !important; }
  .sidebar-logo { margin-bottom: 0; padding: 18px 0; }
  .main { padding-top: 61px; }
  .pull-quote { padding: 40px 28px; }
  .site-footer { padding: 40px 28px; }

  /* Hero image — cap height and lower crop on mobile to show Mike */
  .hero-image { height: clamp(320px, 55vh, 480px); }
  .hero-image img { object-position: center 65%; }
}

@media (min-width: 1001px) {
  .menu-toggle,
  .mobile-menu { display: none !important; }
}


/* ════════════════════════════════════════
   PAGE-LEVEL STYLES
════════════════════════════════════════ */


/* ════════════════════════════════════════
   HOMEPAGE
════════════════════════════════════════ */
/* ── HERO ── */
.hero-image {
  width: 100%;
  height: clamp(440px, 75vh, 820px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  transform: scale(1.03);
  animation: heroSettle 1.8s ease forwards 0.3s;
}

@keyframes heroSettle { to { transform: scale(1); } }

.hero-caption {
  padding: 40px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-light);
}

.hero-title h1 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.06em;
}

.hero-title h1 strong {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-title p {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 10px;
}

.hero-title-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.hero-title-link:hover { opacity: 0.6; }

.hero-statement {
  max-width: 320px;
  font-family: var(--display);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 200;
  font-style: italic;
  line-height: 1.55;
  text-align: right;
}

/* ── SECTIONS ── */
.section { padding: 72px 60px; border-bottom: 1px solid var(--gray-light); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text blockquote {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 200;
  line-height: 1.3;
  margin-bottom: 28px;
}

.about-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

/* ── WORKS GRID ── */
.works-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-item { cursor: pointer; display: block; }

.work-item-img {
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 14px;
  background: var(--gray-bg);
}

.work-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-item:hover .work-item-img img { transform: scale(1.04); }

.work-item-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 4px;
}

.work-item-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
}

/* ── STATEMENT ── */
.statement {
  padding: 80px 60px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.statement p {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 200;
  font-style: italic;
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto 36px;
}

/* ── PRESS ── */
.press-list { display: flex; flex-direction: column; }

.press-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--gray-light);
  transition: opacity 0.2s ease;
}

.press-item:last-child { border-bottom: 1px solid var(--gray-light); }
.press-item:hover { opacity: 0.55; }

.press-item-pub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 5px;
}

.press-item-title {
  font-family: var(--display);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
}

.press-item-arrow { font-size: 16px; color: var(--gray-mid); }
.press-footer { margin-top: 40px; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-caption,
  .section,
  .statement { padding-left: 28px; padding-right: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-statement { text-align: left; max-width: 100%; }
}

@media (max-width: 540px) {
  .works-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--gray-light);
}

.about-hero-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--gray-light);
}

.about-hero-text .page-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.about-hero-text h1 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 28px;
}

.about-hero-text .bio-lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  max-width: 480px;
}

.about-hero-image { overflow: hidden; background: var(--gray-bg); }

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

.about-section {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

.about-section-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding-top: 4px;
}

.about-section-body p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  max-width: 620px;
}

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

.influences {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
}

.influences-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

.influences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.influence-item h4 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 8px;
}

.influence-item span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 12px;
}

.influence-item p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

.exhibitions-strip {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--gray-bg);
}

.exhibitions-strip-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

.exhibition-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
  align-items: baseline;
}

.exhibition-item:last-child { border-bottom: 1px solid var(--gray-light); }

.exhibition-year {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}

.exhibition-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 4px;
}

.exhibition-venue {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
}

.about-cta {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.about-cta p {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  max-width: 560px;
  line-height: 1.3;
}

@media (max-width: 1000px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image { height: 380px; order: -1; }
  .about-hero-text { border-right: none; padding: 40px 28px; }
  .about-section { grid-template-columns: 1fr; gap: 20px; padding: 48px 28px; }
  .influences { padding: 48px 28px; }
  .influences-grid { grid-template-columns: 1fr; gap: 28px; }
  .exhibitions-strip { padding: 48px 28px; }
  .about-cta { padding: 48px 28px; }
}


@media (max-width: 1000px) {
  .page-header,
  .article-entry,
  .video-entry,
  .pdf-entry,
  .tearsheet-entry,
  .press-type-bar { padding-left: 28px; padding-right: 28px; }
  .pdf-wrap { height: 420px; }
  .tearsheet-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   PORTRAITS PAGE
════════════════════════════════════════ */
.page-header { padding: 64px 60px 48px; border-bottom: 1px solid var(--gray-light); }

.page-header h1 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-header p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  max-width: 600px;
}

/* Option J layout */
.portrait-entry {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.portrait-painting img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.portrait-painting-placeholder {
  width: 100%;
  min-height: 300px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-painting-placeholder span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-mid);
}

.portrait-meta { display: flex; flex-direction: column; gap: 0; }

/* Reference photo — any orientation */
.portrait-reference {
  width: 100%;
  height: 260px;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.portrait-reference img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.portrait-reference-placeholder {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-mid);
}

.portrait-title-block {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  margin-bottom: 20px;
}

.portrait-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 4px;
}

.portrait-location {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.portrait-specs {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-symbolism { border-top: 1px solid var(--gray-light); padding-top: 20px; }

.portrait-symbolism-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 14px;
}

.symbolism-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.symbolism-list li {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #444;
  padding-left: 12px;
  position: relative;
}

.symbolism-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-mid);
  font-size: 10px;
}

.symbolism-list strong { font-weight: 400; color: var(--black); }

.commission-cta {
  padding: 72px 60px;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.commission-cta h2 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  line-height: 1.3;
  max-width: 560px;
}

@media (max-width: 1000px) {
  /* Portrait entry: painting full width top, then reference + details side by side */
  .portrait-entry {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 20px;
  }

  /* The right meta column becomes a two-col grid: reference left, details right */
  .portrait-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }

  /* Reference photo — left column, auto height */
  .portrait-reference {
    height: auto;
    min-height: 140px;
    margin-bottom: 0;
  }

  .portrait-reference img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Two reference photos stacked in left column */
  .portrait-reference--two {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 140px;
  }

  .portrait-reference--two img {
    height: 120px;
  }

  /* Title block — remove top border on mobile since reference is beside it */
  .portrait-title-block {
    border-top: none;
    padding-top: 0;
  }

  /* Symbolism spans both columns on mobile */
  .portrait-symbolism-full {
    grid-column: 1 / -1;
    border-top: 1px solid var(--gray-light);
    padding-top: 16px;
  }

  .page-header,
  .commission-cta { padding-left: 20px; padding-right: 20px; }
  .commission-cta { grid-template-columns: 1fr; gap: 24px; }
}


/* ════════════════════════════════════════
   REFUGEE EXHIBITION PAGE
════════════════════════════════════════ */

/* Refugee-specific header — no grid, stacked layout */
.refugee-header {
  padding: 64px 60px 56px;
  border-bottom: 1px solid var(--gray-light);
}

/* Generic series-header — kept for other series pages */
.series-header {
  padding: 64px 60px 56px;
  border-bottom: 1px solid var(--gray-light);
}

.series-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.series-title .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--black);
  margin: 0 2px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.series-subtitle {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

.series-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.series-intro-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.series-intro-text p:last-child { margin-bottom: 0; }

.series-meta {
  border-left: 1px solid var(--gray-light);
  padding-left: 40px;
}

.series-meta-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.series-meta-item:first-child { padding-top: 0; }
.series-meta-item:last-child { border-bottom: none; }

.series-meta-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.series-meta-value {
  font-family: var(--display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
}

/* ── Painting Entry ── */
.painting-entry {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.painting-number {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.painting-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: var(--gray-bg);
}

.painting-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.painting-placeholder span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-mid);
}

.painting-meta { display: flex; flex-direction: column; }

.painting-reference {
  width: 100%;
  height: 260px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.painting-reference img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
}

.painting-reference-placeholder {
  font-family: var(--sans);
  font-size: 11px;
  color: #555;
}

.painting-reference-caption {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.painting-title-block {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  margin-bottom: 20px;
}

.painting-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.painting-specs {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.painting-description { border-top: 1px solid var(--gray-light); padding-top: 20px; }

.painting-description-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.painting-description p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
}

/* Responsive */
@media (max-width: 1000px) {
  .series-header,
  .refugee-header { padding: 48px 28px 40px; }
  .series-intro { grid-template-columns: 1fr; gap: 32px; }
  .series-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-light); padding-top: 32px; }
  .painting-entry { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
  .painting-reference { height: 220px; }
}


/* ════════════════════════════════════════
   IRAQ EXHIBITION PAGE
════════════════════════════════════════ */

/* Full-width stacked header */
.iraq-header {
  padding: 64px 60px 56px;
  border-bottom: 1px solid var(--gray-light);
}

.iraq-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.iraq-title em { font-style: italic; font-weight: 200; }

/* Two-column: body text left, credentials right */
.iraq-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.iraq-intro-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.iraq-intro-text p:last-child { margin-bottom: 0; }

.iraq-intro-text a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}

.iraq-intro-text a:hover { opacity: 0.6; }

/* Credentials panel */
.iraq-credentials {
  border-left: 1px solid var(--gray-light);
  padding-left: 48px;
}

.series-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.series-title em { font-style: italic; font-weight: 200; }

.series-year {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 36px;
}

.series-body p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

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

.series-body a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}

.series-body a:hover { opacity: 0.6; }

.credentials {
  border-left: 1px solid var(--gray-light);
  padding-left: 48px;
}

.credential-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
}

.credential-item:first-child { padding-top: 0; }
.credential-item:last-child { border-bottom: none; }

.credential-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.credential-value {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.35;
}

.credential-note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-top: 6px;
  line-height: 1.6;
}

/* Process section */
.process-section {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

.process-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding-top: 4px;
}

.process-body p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
  max-width: 620px;
}

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

/* Documentary spread header */
.documentary-header {
  padding: 48px 60px 0;
  border-top: 1px solid var(--gray-light);
}

.documentary-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.documentary-intro {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-mid);
  font-style: italic;
  line-height: 1.7;
  max-width: 560px;
}

/* Painting pair */
.painting-pair {
  padding: 56px 60px;
  border-bottom: 1px solid var(--gray-light);
}

.painting-pair-number {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.painting-pair-images {
  position: relative;
  margin-bottom: 16px;
}

/* Main painting — full width */
.painting-pair-color {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
}

.painting-pair-color img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* B&W reference — inset overlay bottom left */
.painting-pair-bw {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 30%;
  max-width: 200px;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  overflow: hidden;
  z-index: 2;
}

.painting-pair-bw img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

.painting-pair-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}

.painting-pair-placeholder span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-mid);
  text-align: center;
  padding: 16px;
  line-height: 1.6;
}

/* Hide the caption row — inset speaks for itself */
.painting-pair-caption { display: none; }
}

.painting-pair-caption span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  font-style: italic;
}

.painting-pair-meta {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.painting-pair-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 6px;
}

.painting-pair-specs {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.painting-pair-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
}

/* Press note */
.press-note {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--gray-bg);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.press-note-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding-top: 4px;
}

.press-note-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-light);
  transition: opacity 0.2s ease;
}

.press-note-item:last-child { border-bottom: 1px solid var(--gray-light); }
.press-note-item:hover { opacity: 0.6; }

.press-note-pub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.press-note-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: 16px;
}

.press-note-arrow { font-size: 16px; color: var(--gray-mid); }

/* Archive note */
.archive-note {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.archive-note h3 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 12px;
}

.archive-note p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 1000px) {
  .iraq-header { padding: 48px 28px 40px; }
  .iraq-intro { grid-template-columns: 1fr; gap: 32px; }
  .iraq-credentials { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-light); padding-top: 32px; }
  .process-section { grid-template-columns: 1fr; gap: 20px; padding: 48px 28px; }
  .documentary-header { padding: 40px 28px 0; }
  .painting-pair { padding: 48px 28px; }
  .painting-pair-bw { width: 35%; max-width: 140px; bottom: 12px; left: 12px; }
  .painting-pair-meta { grid-template-columns: 1fr; gap: 20px; }
  .press-note { grid-template-columns: 1fr; gap: 20px; padding: 48px 28px; }
  .archive-note { grid-template-columns: 1fr; padding: 48px 28px; }
}


/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

.contact-intro {
  padding: 72px 60px;
  border-right: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.contact-heading {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
  margin-bottom: 32px;
}

.contact-intro-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
  margin-bottom: 48px;
  max-width: 400px;
}

.contact-reasons { display: flex; flex-direction: column; margin-bottom: 56px; }

.contact-reason {
  padding: 16px 0;
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.contact-reason:last-child { border-bottom: 1px solid var(--gray-light); }

.contact-reason-num {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  flex-shrink: 0;
  width: 20px;
}

.contact-reason-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.5;
}

.contact-direct { display: flex; flex-direction: column; gap: 16px; }

.contact-direct-item { display: flex; flex-direction: column; gap: 4px; }

.contact-direct-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.contact-direct-value {
  font-family: var(--display);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.contact-direct-value:hover { opacity: 0.55; }

.contact-social { display: flex; gap: 24px; margin-top: 8px; }

.contact-social a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-social a:hover { color: var(--black); border-color: var(--black); }

/* Form panel */
.contact-form-wrap {
  padding: 72px 60px;
  background: var(--gray-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-heading {
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 40px;
}

.form-note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-top: 16px;
  line-height: 1.6;
}

/* CF7 label styling */
.contact-form-wrap .wpcf7-form label {
  display: block;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
  margin-top: 20px;
}

.contact-form-wrap .wpcf7-form label:first-child { margin-top: 0; }

@media (max-width: 1000px) {
  .contact-wrapper { grid-template-columns: 1fr; min-height: auto; }
  .contact-intro { padding: 48px 28px; border-right: none; border-bottom: 1px solid var(--gray-light); }
  .contact-form-wrap { padding: 48px 28px; }
}


/* ════════════════════════════════════════
   SINGLE POST (PRESS ARTICLE)
════════════════════════════════════════ */
.single-header { padding: 64px 60px 48px; border-bottom: 1px solid var(--gray-light); }

.single-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.single-header .back-link:hover { color: var(--black); }

.single-pub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.single-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.single-byline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

.single-body {
  padding: 56px 60px;
  max-width: 780px;
  border-bottom: 1px solid var(--gray-light);
}

.single-body p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: #333;
  margin-bottom: 24px;
}

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

.single-body img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border: 1px solid var(--gray-light);
}

.single-body h2, .single-body h3 {
  font-family: var(--display);
  font-weight: 300;
  margin: 32px 0 16px;
}

.single-source {
  padding: 40px 60px;
  border-bottom: 1px solid var(--gray-light);
}

.single-nav {
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.single-nav a {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.single-nav a:hover { opacity: 0.5; }

@media (max-width: 1000px) {
  .single-header,
  .single-body,
  .single-source,
  .single-nav { padding-left: 28px; padding-right: 28px; }
}

/* ── PORTRAIT — Two reference photos ── */
.portrait-reference--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: auto;
  min-height: 160px;
  background: none;
  border: none;
  padding: 0;
}

.portrait-reference--two img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
}

@media (max-width: 1000px) {
  .portrait-reference--two {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-reference--two img {
    height: 130px;
  }
}


/* ════════════════════════════════════════
   ABOUT PAGE — UPDATED (Mythic Portraiture)
════════════════════════════════════════ */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  border-bottom: 1px solid var(--gray-light);
}

.about-hero-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--gray-light);
}

.page-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}

.about-hero-text h1 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.about-hero-text h1 strong {
  font-weight: 600;
  letter-spacing: 0.06em;
}


.about-hero-text .bio-lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  max-width: 480px;
  margin-bottom: 16px;
}

.about-hero-image { overflow: hidden; background: var(--gray-bg); }

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

/* Mythic intro */
.mythic-intro {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mythic-intro-text h2 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  margin-bottom: 28px;
}

.mythic-intro-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.mythic-intro-text p:last-child { margin-bottom: 0; }

.mythic-intro-image { overflow: hidden; }

.mythic-intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Video section */
.video-section {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--gray-bg);
}

.video-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 32px;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* Content rows */
.content-row {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }

.content-row-text h3 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.content-row-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
  max-width: 520px;
}

.content-row-text p:last-child { margin-bottom: 0; }
.content-row-image { overflow: hidden; }
.content-row-image img { width: 100%; object-fit: cover; display: block; }

/* Full width image */
.full-image { border-bottom: 1px solid var(--gray-light); overflow: hidden; }

.full-image img {
  width: 100%;
  height: clamp(300px, 45vw, 560px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.full-image-caption {
  padding: 16px 60px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  font-style: italic;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-light);
}

/* Influences */
.influences { padding: 64px 60px; border-bottom: 1px solid var(--gray-light); }

.influences-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

.influences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.influence-item h4 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 8px;
}

.influence-item span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 12px;
}

.influence-item p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

/* Exhibitions */
.exhibitions-strip {
  padding: 64px 60px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--gray-bg);
}

.exhibitions-strip-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

.exhibition-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
  align-items: baseline;
}

.exhibition-item:last-child { border-bottom: 1px solid var(--gray-light); }
.exhibition-year { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.1em; color: var(--gray-mid); }
.exhibition-title { font-family: var(--display); font-weight: 300; font-size: 16px; margin-bottom: 4px; }
.exhibition-venue { font-family: var(--sans); font-size: 11px; font-weight: 300; color: var(--gray-mid); }

/* About CTA */
.about-cta {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.about-cta p {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  max-width: 560px;
  line-height: 1.3;
}

/* About responsive */
@media (max-width: 1000px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image { height: 400px; order: -1; }
  .about-hero-text { border-right: none; padding: 48px 28px; }
  .mythic-intro { grid-template-columns: 1fr; gap: 32px; padding: 48px 28px; }
  .content-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 28px; }
  .content-row.reverse { direction: ltr; }
  .video-section { padding: 48px 28px; }
  .influences { padding: 48px 28px; }
  .influences-grid { grid-template-columns: 1fr; gap: 28px; }
  .exhibitions-strip { padding: 48px 28px; }
  .about-cta { padding: 48px 28px; }
  .full-image-caption { padding: 16px 28px; }
}


/* ════════════════════════════════════════
   REFUGEE EXHIBITION PAGE — Option J Layout
════════════════════════════════════════ */

.series-header {
  padding: 64px 60px 56px;
  border-bottom: 1px solid var(--gray-light);
}

.series-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.series-title .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--black);
  margin: 0 2px;
  vertical-align: middle;
  position: relative;
  top: -4px;
}

.series-subtitle {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

/* ── Refugee postcard — full-width clickable image ── */
.series-postcard {
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  cursor: zoom-in;
}
.series-postcard-link {
  display: block;
  position: relative;
}
.series-postcard-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.series-postcard-link:hover img { opacity: 0.88; }
.series-postcard-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.series-postcard-link:hover .series-postcard-zoom { opacity: 1; }

.series-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.series-intro-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.series-intro-text p:last-child { margin-bottom: 0; }

.series-meta {
  border-left: 1px solid var(--gray-light);
  padding-left: 40px;
}

.series-meta-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.series-meta-item:first-child { padding-top: 0; }
.series-meta-item:last-child { border-bottom: none; }

.series-meta-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.series-meta-value {
  font-family: var(--display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
}

/* Painting entries — Option J */
.painting-entry {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.painting-number {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.painting-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: var(--gray-bg);
}

.painting-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.painting-placeholder span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gray-mid);
  text-align: center;
  padding: 16px;
}

.painting-meta { display: flex; flex-direction: column; }

/* Reference photo — black bg for b&w photos */
.painting-reference {
  width: 100%;
  height: 260px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.painting-reference img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
}

.painting-reference-placeholder {
  font-family: var(--sans);
  font-size: 11px;
  color: #555;
  text-align: center;
}

.painting-reference-caption {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.painting-title-block {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  margin-bottom: 20px;
}

.painting-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.painting-specs {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.painting-description { border-top: 1px solid var(--gray-light); padding-top: 20px; }

.painting-description-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.painting-description p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
}

/* Refugee responsive */
@media (max-width: 1000px) {
  .series-header { padding: 48px 28px 40px; }
  .series-intro { grid-template-columns: 1fr; gap: 32px; }
  .series-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-light); padding-top: 32px; }
  .painting-entry { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
  .painting-reference { height: 220px; }
}


/* ── Press empty state ── */


@media (max-width: 1000px) {
  
}


@media (max-width: 1000px) {
  

  

  

  

  

  .single-header,
  .single-video,
  .single-pdf,
  .single-body,
  .single-source,
  .single-nav { padding-left: 20px; padding-right: 20px; }

  .page-header { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 540px) {
  
}

/* Active index item */







/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */

#fratangelo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

#fratangelo-lightbox.open {
  display: flex;
  animation: lbFadeIn 0.22s ease forwards;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 82vh;
}

.lb-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.12);
  cursor: default !important;
  animation: lbImgIn 0.25s ease forwards;
}

@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-caption {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.06em;
  margin-top: 16px;
  text-align: center;
}

/* Close button — X mark, top right, matches site style */
.lb-close {
  position: fixed;
  top: 28px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10000;
}

.lb-close span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--black);
  display: block;
  transition: opacity 0.2s ease;
}

.lb-close span:nth-child(1) { transform: rotate(45deg); }
.lb-close span:nth-child(2) { transform: rotate(-45deg); }
.lb-close:hover span { opacity: 0.4; }

/* Zoom cursor on lightbox-eligible images */
.tearsheet-grid img,
.portrait-painting img,
.portrait-reference img,
.painting-main img,
.painting-reference img,
.painting-pair-color img,
.single-body img,
.single-hero img,
.content-row-image img,
.about-hero-image img,
.full-image img {
  cursor: zoom-in;
}


@media (max-width: 1000px) {
  

  

  
}

/* ════════════════════════════════════════
   PRESS PAGE
════════════════════════════════════════ */

/*
 * The press index sits directly inside .site-wrapper
 * as a sibling to .sidebar and .main — same flex row,
 * same sticky pattern as the site sidebar.
 */

.press-index {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--gray-light);
  padding: 48px 24px;
  background: var(--gray-bg);
  display: none; /* hidden by default — only shown on press page */
}

/* Show only on press template */
.page-template-page-press .press-index { display: flex; flex-direction: column; }

.press-index-group { margin-bottom: 28px; }
.press-index-group:last-child { margin-bottom: 0; }

.press-index-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 10px;
}

.press-index-item {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.press-index-item:last-child { border-bottom: none; }
.press-index-item:hover { opacity: 0.5; }
.press-index-item.active .press-index-title { font-weight: 400; }
.press-index-item.active .press-index-pub { color: var(--black); }

.press-index-pub {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 2px;
}

.press-index-title {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.35;
  color: var(--black);
}

/* ── Article Stream ── */
.press-stream {
  width: 100%;
  min-width: 0;
  flex: 1;
}

.press-stream-section {
  border-bottom: 1px solid var(--gray-light);
  width: 100%;
}

.press-stream-section:last-child { border-bottom: none; }

.press-type-bar {
  padding: 0 32px;
  height: 44px;
  display: flex;
  align-items: center;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-light);
  width: 100%;
}

.press-type-bar span {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* Two-column card grid — equal columns */
.press-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

/* ── Article Card ── */
.press-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  background: var(--white);
  transition: background 0.2s ease;
  min-width: 0; /* prevent grid blowout */
  overflow: hidden;
}

.press-card:hover { background: var(--gray-bg); }
.press-card:nth-child(even) { border-right: none; }

.press-card-thumb {
  display: block;
  overflow: hidden;
  background: var(--gray-bg);
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  position: relative;
  flex-shrink: 0;
}

.press-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.press-card-thumb:hover img { transform: scale(1.04); }
.press-card-thumb--video { position: relative; }

.press-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--black);
  padding-left: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.press-card-thumb:hover .press-card-play { transform: translate(-50%, -50%) scale(1.1); }

.press-card-body { display: flex; flex-direction: column; flex: 1; }

.press-card-pub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
}

.press-card-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.press-card-title a {
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.press-card-title a:hover { opacity: 0.55; }

.press-card-byline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.press-card-excerpt {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  margin-bottom: 16px;
  flex: 1;
}

.press-card-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}

.press-card-read {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.press-card-read:hover { opacity: 0.5; }

.press-card-source {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.press-card-source:hover { opacity: 0.5; }

/* ── Single Article ── */
.single-header { padding: 56px 60px 40px; border-bottom: 1px solid var(--gray-light); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 32px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.back-link:hover { color: var(--black); }

.single-pub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.single-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.single-byline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

.single-hero { border-bottom: 1px solid var(--gray-light); }
.single-hero img { width: 100%; max-height: 520px; object-fit: cover; display: block; }

/* ── Featured image: B&W editorial treatment ── */
.single-hero--bw { position: relative; background: #111; }
.single-hero--bw img {
  filter: grayscale(100%) contrast(1.08);
  opacity: 0.82;
  max-height: 420px;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.single-hero--bw:hover img {
  filter: grayscale(60%) contrast(1.04);
  opacity: 0.92;
}

/* ── Body content: neutralise WP block floats & alignment ── */
.single-body .alignright,
.single-body .alignleft { float: none !important; margin: 32px 0 !important; display: block !important; width: 100% !important; }
.single-body .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.single-body::after { content: ''; display: table; clear: both; }

/* ── Body iframes (custom HTML blocks) ── */
.single-body iframe,
.single-body .wp-block-html iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 520px;
  border: 1px solid var(--gray-light);
  margin: 32px 0;
  float: none !important;
}

/* ── Body images: full-width, no float ── */
.single-body img,
.single-body .wp-block-image img,
.single-body figure img {
  display: block;
  float: none !important;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border: 1px solid var(--gray-light);
}
.single-body figure { margin: 0; }
.single-body figcaption {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  margin-top: 10px;
  text-align: center;
}
.single-video, .single-pdf { padding: 48px 60px; border-bottom: 1px solid var(--gray-light); }

.single-body {
  padding: 56px 60px;
  max-width: 760px;
  border-bottom: 1px solid var(--gray-light);
}

.single-body p {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.0;
  color: #333;
  margin-bottom: 24px;
}

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

.single-body h2, .single-body h3 {
  font-family: var(--display);
  font-weight: 300;
  margin: 32px 0 16px;
  font-size: clamp(18px, 2vw, 26px);
}

.single-body img { max-width: 100%; height: auto; margin: 32px 0; border: 1px solid var(--gray-light); }
.single-source { padding: 40px 60px; border-bottom: 1px solid var(--gray-light); }

.single-nav {
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.single-nav a {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single-nav a:hover { opacity: 0.5; }

/* ── Press Responsive ── */
@media (max-width: 1000px) {
  .press-index { display: none !important; }
  .press-cards-grid { grid-template-columns: 1fr; }
  .press-card { border-right: none; padding: 24px 20px; }
  .press-type-bar { padding-left: 20px; }
  .single-header, .single-video, .single-pdf,
  .single-body, .single-source, .single-nav { padding-left: 20px; padding-right: 20px; }
}


/* ── All reference photos — force black and white ── */
.portrait-reference img,
.portrait-reference--two img,
.painting-reference img,
.painting-pair-bw img {
  filter: grayscale(100%);
}


/* ── About Page — Press Profile Article ── */
.about-article {
  padding: 72px 60px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

.about-article-header { padding-top: 4px; }

.about-article-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-article-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-article-byline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  font-style: italic;
}

.about-article-body p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: #444;
  margin-bottom: 20px;
  max-width: 640px;
}

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

@media (max-width: 1000px) {
  .about-article {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 20px;
  }
}


/* ── About Article Source / Thumbnail ── */
.about-article-source {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
  max-width: 640px;
}

.about-article-thumb {
  display: block;
  flex-shrink: 0;
  width: 80px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.about-article-thumb:hover { opacity: 0.8; }

.about-article-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.about-article-source-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-article-source-pub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
