/* ═══════════════════════════════════════════════
   BILLY DOSANJH — Artist Website
   Minimalist with depth. White-cube sensibility
   enriched with production scale and moving image.
   ═══════════════════════════════════════════════ */

:root {
  --black: #111;
  --dark: #222;
  --grey: #555;
  --light-grey: #999;
  --border: #e0e0e0;
  --bg: #fff;
  --bg-off: #f7f7f5;
  --accent: #c45a2d;
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width: 1400px;
  --content-width: 800px;
  --wide-width: 1100px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--black);
  background: var(--bg);
  line-height: 1.75;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--black); text-decoration: none; }
a:hover { opacity: 0.7; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }

/* ─── Container ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
/* Dark header for video hero pages */
.site-header.header-dark {
  background: rgba(17,17,17,0.6);
}
.site-header.header-dark.scrolled {
  background: rgba(17,17,17,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.2);
}
.site-header.header-dark .site-logo,
.site-header.header-dark .site-nav a { color: rgba(255,255,255,0.75); }
.site-header.header-dark .site-nav a:hover,
.site-header.header-dark .site-nav a.active { color: #fff; opacity: 1; }
.site-header.header-dark .site-nav a.active::after { background: #fff; }
.site-header.header-dark .nav-toggle span { background: #fff; }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.site-logo:hover { opacity: 1; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
  position: relative;
}
.site-nav a:hover, .site-nav a.active { color: var(--black); opacity: 1; }
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--black);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--black);
  position: absolute; left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 2rem var(--gutter);
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 0.9rem; }
  .site-header.header-dark .site-nav {
    background: rgba(17,17,17,0.95);
    border-bottom-color: rgba(255,255,255,0.08);
  }
}

/* ─── Main ─── */
.site-main { padding-top: 5rem; min-height: 70vh; }
.home .site-main { padding-top: 0; }

/* ═══════════════════════════════════════════════
   HERO — Video / Cinematic
   ═══════════════════════════════════════════════ */
.hero-cinematic {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
}
.hero-cinematic video,
.hero-cinematic .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-cinematic .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.3) 40%, rgba(17,17,17,0.15) 100%);
  z-index: 1;
}
.hero-cinematic .hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter) 7rem;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
.hero-cinematic h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 400;
  max-width: 800px;
}
.hero-cinematic .hero-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  max-width: 600px;
  line-height: 1.6;
}
.hero-cinematic .hero-meta-line {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-cinematic .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.3;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.4);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Static hero */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-image {
  position: absolute;
  inset: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter);
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}
.hero-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ─── Video Divider ─── */
.video-divider {
  position: relative;
  overflow: hidden;
  height: clamp(250px, 40vh, 500px);
  margin: 0;
  background: #111;
}
.video-divider video,
.video-divider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.video-divider .divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
}
.video-divider--dark .divider-overlay {
  background: linear-gradient(to bottom, #111 0%, transparent 25%, transparent 75%, #111 100%);
}
.video-divider .divider-quote {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}
.video-divider .divider-quote blockquote {
  max-width: 550px;
}
.video-divider .divider-quote blockquote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--dark);
  font-style: italic;
}
.video-divider .divider-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--grey);
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   PAGE LAYOUT
   ═══════════════════════════════════════════════ */
.page-header {
  padding: 4rem var(--gutter) 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}
.page-header .subtitle,
.page-subtitle {
  color: var(--grey);
  font-size: 1rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   WORKS GRID — Natural proportions
   ═══════════════════════════════════════════════ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 3rem;
  padding: 2rem var(--gutter) 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.work-card { display: block; transition: opacity 0.3s; }
.work-card:hover { opacity: 0.85; }
.work-card-image {
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--bg-off);
}
.work-card-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.work-card:hover .work-card-image img { transform: scale(1.02); }
.work-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.work-card .work-card-meta,
.work-card .work-meta {
  color: var(--grey);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

/* compact card variant for broadcast section */
.work-card--compact h3 { font-size: 1.1rem; }
.work-card--compact .work-card-meta { font-size: 0.75rem; }

/* section labels & sublabels */
.section-sublabel { line-height: 1.5; }

/* ═══════════════════════════════════════════════
   PROJECT PAGES
   ═══════════════════════════════════════════════ */

/* Cinematic project hero */
.project-hero-cinematic {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}
.project-hero-cinematic .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.project-hero-cinematic .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.35) 50%, rgba(17,17,17,0.2) 100%);
}
.project-hero-cinematic .hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem var(--gutter) 3.5rem;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
.project-hero-cinematic h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.project-hero-cinematic .project-meta-hero {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.project-hero-cinematic .hero-description {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.7;
}

/* Simple project hero */
.project-hero {
  padding: 3rem var(--gutter) 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.project-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.project-hero .project-meta {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.project-body {
  padding: 0 var(--gutter) 2rem;
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: 1.05rem;
}
.project-body p { margin-bottom: 1.5rem; }
.project-body blockquote {
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--grey);
  font-style: italic;
}

/* Two-column layout */
.project-body.two-column {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  max-width: var(--wide-width);
}
@media (max-width: 900px) {
  .project-body.two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.project-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.artwork-details {
  border: 1px solid var(--border);
  padding: 2rem;
}
.artwork-details h3 {
  font-size: 0.8rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.artwork-details dl { font-size: 0.9rem; }
.artwork-details dt {
  color: var(--light-grey);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
.artwork-details dd { color: var(--dark); margin-top: 0.25rem; }

/* Gallery: Natural proportions */
.project-gallery {
  padding: 2rem var(--gutter) 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-full { margin-bottom: 2.5rem; }
.gallery-full img { width: 100%; height: auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img,
.gallery-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-grid img:hover,
.gallery-item img:hover { opacity: 0.85; }
.gallery-grid figcaption,
.gallery-item figcaption {
  font-size: 0.8rem;
  color: var(--light-grey);
  margin-top: 0.5rem;
  font-style: italic;
}
.gallery-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
/* wide gallery item spans full grid width */
.gallery-item--wide {
  grid-column: 1 / -1;
}

/* Full-width tableau */
.tableau-full { margin: 3rem 0; }
.tableau-full img { width: 100%; height: auto; }
.tableau-info { max-width: var(--content-width); margin-top: 1rem; }
.tableau-info h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.tableau-meta {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.tableau-info p { font-size: 0.95rem; line-height: 1.7; color: var(--grey); }

/* Tableau grid, 2-up */
.tableau-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .tableau-grid { grid-template-columns: 1fr; }
}
.tableau-card img { width: 100%; height: auto; margin-bottom: 0.75rem; }
.tableau-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.tableau-card p { font-size: 0.9rem; line-height: 1.7; color: var(--grey); }

/* Carousel */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-track img { width: 100%; flex-shrink: 0; height: auto; }
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-nav button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--grey);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.carousel-nav button.active { background: var(--black); border-color: var(--black); }

/* Click-to-play video */
.click-to-play {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
}
.click-to-play img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.click-to-play:hover img { opacity: 0.75; }
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-icon svg {
  width: 56px; height: 56px;
  fill: var(--accent);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.click-to-play:hover .play-icon svg { opacity: 1; transform: scale(1.1); }
.play-label {
  font-size: 0.7rem;
  color: #fff;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}
.click-to-play iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   Q&A / INTERVIEW
   ═══════════════════════════════════════════════ */
.qa-section {
  padding: 4rem var(--gutter);
  max-width: var(--wide-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.qa-block {
  padding: 2rem 0;
  border-top: 1px solid #f0f0f0;
}
.qa-block:first-of-type { border-top: none; padding-top: 0; }
.qa-question {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.qa-speaker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
  min-width: 24px;
}
.qa-question p { font-style: italic; font-weight: 400; line-height: 1.6; }
.qa-answer { display: flex; gap: 1rem; }
.qa-answer p { color: var(--grey); line-height: 1.7; white-space: pre-line; }

/* Community callout */
.callout-box {
  border: 1px solid var(--accent);
  background: rgba(196,90,45,0.03);
  padding: 2rem;
  margin: 2rem 0;
}
.callout-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: #fff;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.btn:hover { background: transparent; color: var(--black); opacity: 1; }
.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.enquire-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
  margin-top: 1.5rem;
}
.enquire-btn:hover { background: var(--black); color: #fff; opacity: 1; }

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2rem var(--gutter) 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-text { font-size: 1.05rem; }
.about-text p { margin-bottom: 1.5rem; }
.about-text .artist-statement {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-image img { width: 100%; position: sticky; top: 6rem; }
.about-quotes {
  padding: 4rem var(--gutter);
  background: var(--bg-off);
}
.quote-block {
  max-width: var(--content-width);
  margin: 0 auto 3rem;
}
.quote-block:last-of-type { margin-bottom: 0; }
.quote-block blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.quote-block blockquote p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--dark);
}
.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--grey);
  font-style: normal;
}
.lead-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--dark);
}
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .about-image img { position: static; }
}

/* ═══════════════════════════════════════════════
   CV / EXHIBITIONS
   ═══════════════════════════════════════════════ */
.cv-content, .exhibitions-content {
  padding: 0 var(--gutter) 4rem;
  max-width: var(--wide-width);
  margin: 0 auto;
}
.cv-section { margin-bottom: 3rem; }
.cv-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.cv-entry {
  display: flex;
  gap: 2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cv-entry .cv-year {
  font-size: 0.85rem;
  color: var(--light-grey);
  min-width: 80px;
  font-variant-numeric: tabular-nums;
}
.cv-entry .cv-detail { font-size: 0.95rem; }
.cv-entry .cv-detail strong { font-weight: 500; }
.cv-entry .cv-detail em { color: var(--grey); font-style: normal; }

/* ═══════════════════════════════════════════════
   NEWS
   ═══════════════════════════════════════════════ */
.news-list {
  padding: 1rem var(--gutter) 5rem;
  max-width: var(--content-width);
  margin: 0 auto;
}
.news-item { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.news-item:first-child { padding-top: 0; }
.news-date {
  font-size: 0.8rem; color: var(--light-grey);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.news-item h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.news-item h2 a { text-decoration: none; }
.news-item h2 a:hover { opacity: 0.7; }
.news-excerpt { color: var(--grey); font-size: 0.95rem; }
.read-more {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid var(--black); padding-bottom: 2px;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  padding: 2rem var(--gutter) 5rem; max-width: var(--max-width); margin: 0 auto;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1rem; color: var(--grey); }
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.4rem; font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); background: var(--bg);
  font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: var(--black);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--black);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.newsletter-form .form-row { display: flex; gap: 0.5rem; }
.newsletter-form input[type="email"] {
  flex: 1; padding: 0.6rem 0.75rem;
  border: 1px solid var(--border); font-family: var(--sans); font-size: 0.85rem;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PRESS
   ═══════════════════════════════════════════════ */
.press-content {
  padding: 0 var(--gutter) 4rem;
  max-width: var(--wide-width);
  margin: 0 auto;
}
.press-item {
  padding: 1.25rem 0; border-bottom: 1px solid #f0f0f0;
  display: flex; gap: 2rem; align-items: baseline;
}
.press-date {
  font-size: 0.85rem; color: var(--light-grey);
  min-width: 60px; font-variant-numeric: tabular-nums;
}
.press-detail { flex: 1; }
.press-detail h3 { font-size: 1rem; font-family: var(--sans); font-weight: 400; }
.press-detail h3 a { border-bottom: 1px solid var(--border); padding-bottom: 1px; }
.press-detail h3 a:hover { opacity: 0.7; border-bottom-color: var(--black); }
.press-detail p { color: var(--grey); font-size: 0.9rem; margin-top: 0.25rem; }
.download-list { list-style: none; padding: 0; }
.download-list li { padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; }
.download-list li a {
  font-size: 0.9rem; border-bottom: 1px solid var(--border); padding-bottom: 1px;
}

/* ═══════════════════════════════════════════════
   CIC PAGE
   ═══════════════════════════════════════════════ */
.cic-content {
  padding: 0 var(--gutter) 4rem; max-width: var(--max-width); margin: 0 auto;
}
.cic-links { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cic-logo { margin-top: 3rem; text-align: center; }
.cic-logo img { max-width: 200px; margin: 0 auto; }
.image-caption { font-size: 0.8rem; color: var(--light-grey); margin-top: 0.5rem; font-style: italic; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--border); padding: 3rem var(--gutter); margin-top: 2rem; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap;
}
.footer-name {
  font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.25rem;
}
.footer-tagline { color: var(--light-grey); font-size: 0.8rem; }
.footer-centre a { font-size: 0.8rem; color: var(--grey); }
.footer-social { display: flex; gap: 1.5rem; margin-bottom: 0.5rem; }
.footer-social a { font-size: 0.8rem; color: var(--grey); letter-spacing: 0.04em; }
.footer-copy { font-size: 0.75rem; color: var(--light-grey); }
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   MAILING LIST
   ═══════════════════════════════════════════════ */
.mailing-list {
  padding: 4rem var(--gutter); background: var(--bg-off); text-align: center;
}
.mailing-list h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.mailing-list p { color: var(--grey); margin-bottom: 1.5rem; font-size: 0.95rem; }
.mailing-list form { display: flex; gap: 0.5rem; max-width: 500px; margin: 0 auto; }
.mailing-list input[type="email"] {
  flex: 1; padding: 0.75rem 1rem;
  border: 1px solid var(--border); font-family: var(--sans); font-size: 0.9rem;
}
.mailing-list input[type="email"]:focus { outline: none; border-color: var(--black); }
.mailing-list button {
  padding: 0.75rem 2rem; background: var(--black); color: #fff; border: none;
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; font-weight: 500;
}
@media (max-width: 480px) {
  .mailing-list form { flex-direction: column; }
}

/* ─── Video embed ─── */
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin: 2rem 0;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* ─── Breadcrumbs ─── */
.breadcrumbs {
  padding: 1rem var(--gutter) 0; max-width: var(--max-width); margin: 0 auto;
  font-size: 0.8rem; color: var(--light-grey);
}
.breadcrumbs a { color: var(--light-grey); }
.breadcrumbs a:hover { color: var(--black); opacity: 1; }
.breadcrumbs span { margin: 0 0.4rem; }

/* ─── Partner logos ─── */
.partner-logos {
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; margin-top: 1.5rem;
}
.partner-logos img { height: 50px; width: auto; opacity: 0.7; }
.exhibition-list { list-style: none; padding: 0; }
.exhibition-list li {
  padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; line-height: 1.5;
}

/* ─── Project nav ─── */
.project-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 3rem 0; border-top: 1px solid var(--border); margin-top: 3rem;
}

/* ─── Home intro ─── */
.home-intro { padding: 5rem var(--gutter); text-align: center; }
.home-intro .lead-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  color: var(--dark);
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
