/*
Theme Name: Fratangelo
Theme URI: https://fratangelo.com
Author: Michael (your name here)
Author URI: https://fratangelo.com
Description: Custom theme for Michael Fratangelo, Visionary 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 ── */
.site-wrapper { display: flex; min-height: 100vh; }

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar);
  min-width: var(--sidebar);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  border-right: 1px solid var(--gray-light);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  z-index: 100;
  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: 15px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 48px;
  display: block;
}

.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 { margin-left: var(--sidebar); flex: 1; min-width: 0; }

/* ── 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) {
  .sidebar {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%; min-width: unset;
    height: auto;
    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;
    opacity: 1;
  }

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

@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 30%;
  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.01em;
}

.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-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; }
}


/* ════════════════════════════════════════
   PRESS 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.8;
  color: #555;
  max-width: 580px;
}

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

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

.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);
}

/* Article entries */
.article-entry { padding: 52px 60px; border-bottom: 1px solid var(--gray-light); }
.article-entry:last-child { border-bottom: none; }

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

.article-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.article-byline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.article-body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  max-width: 680px;
}

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

.article-source {
  display: inline-block;
  margin-top: 28px;
  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;
}

.article-source:hover { opacity: 0.5; }

/* Video entries */
.video-entry { padding: 52px 60px; border-bottom: 1px solid var(--gray-light); }
.video-entry:last-child { border-bottom: none; }
.video-meta { margin-bottom: 24px; }

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

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

/* PDF entries */
.pdf-entry { padding: 52px 60px; border-bottom: 1px solid var(--gray-light); }
.pdf-entry:last-child { border-bottom: none; }
.pdf-meta { margin-bottom: 24px; }

.pdf-note {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 16px;
  font-style: italic;
}

.pdf-wrap {
  width: 100%;
  max-width: 780px;
  height: 600px;
  border: 1px solid var(--gray-light);
}

.pdf-wrap iframe { width: 100%; height: 100%; border: none; }

/* Tearsheet entries */
.tearsheet-entry { padding: 52px 60px; border-bottom: 1px solid var(--gray-light); }
.tearsheet-entry:last-child { border-bottom: none; }
.tearsheet-meta { margin-bottom: 24px; }

.tearsheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
}

.tearsheet-grid img {
  width: 100%;
  border: 1px solid var(--gray-light);
  transition: opacity 0.2s ease;
}

.tearsheet-grid img:hover { opacity: 0.85; }

@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%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.portrait-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;
}

.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 { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
  .portrait-reference { height: 200px; }
  .page-header,
  .commission-cta { padding-left: 28px; padding-right: 28px; }
  .commission-cta { grid-template-columns: 1fr; gap: 24px; }
}


/* ════════════════════════════════════════
   REFUGEE EXHIBITION PAGE
════════════════════════════════════════ */
/* ── Series Header ── */
.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%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  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 { 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
════════════════════════════════════════ */
.series-header {
  padding: 64px 60px 56px;
  border-bottom: 1px solid var(--gray-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.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 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
}

.painting-pair-bw {
  background: var(--black);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.painting-pair-bw img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.85;
}

.painting-pair-color {
  background: var(--gray-bg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
}

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

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

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

.painting-pair-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 20px;
}

.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) {
  .series-header { grid-template-columns: 1fr; padding: 48px 28px 40px; gap: 40px; }
  .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-images { grid-template-columns: 1fr; }
  .painting-pair-caption { grid-template-columns: 1fr; }
  .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; }
}