/* =====================================================
   Sarah Bourgeois — Site officiel
   Design Méditerranée · Sable + Marine + Terracotta
   ===================================================== */

:root {
  --sand: #f5e6d3;
  --sand-deep: #ead7bd;
  --cream: #fbf3e6;
  --marine: #1c3d5a;
  --marine-deep: #142a40;
  --terracotta: #e76f51;
  --terracotta-deep: #c45a3f;
  --text: #2c1810;
  --text-soft: #5a4630;
  --muted: #8a7560;
  --rule: #d9c5a4;
  --rule-soft: #e8d5b3;

  /* Aliases — pour compat avec l'existant */
  --bg: var(--sand);
  --bg-soft: var(--cream);
  --bg-section: var(--sand-deep);
  --bg-dark: var(--marine);
  --accent: var(--terracotta);
  --accent-dark: var(--terracotta-deep);
  --gold: var(--terracotta);

  --max: 1280px;
  --max-narrow: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; border-bottom: 1px solid transparent; transition: all 0.2s; }
a:hover { border-bottom-color: var(--terracotta); }

/* ===== HEADER / NAV ===== */
.site-header {
  border-bottom: 1px solid var(--rule-soft);
  padding: 1.3rem 2rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(251, 243, 230, 0.92);
}
.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.brand {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--marine);
  border: none;
}
.brand:hover { color: var(--terracotta); border: none; }
.brand em { font-style: italic; color: var(--terracotta); }

.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  border: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--terracotta); border: none; }
.site-nav a.active {
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 0.25rem;
}

/* ===== HERO SPLIT ===== */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--cream);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  max-height: 780px;
}
.hero-text {
  padding: 5rem 4rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem;
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.8rem;
  border-radius: 100px;
  align-self: flex-start;
}
.hero-name {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--marine);
  margin-bottom: 0.6rem;
}
.hero-name em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--marine);
  margin-bottom: 1.8rem;
}
.hero-tagline em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-intro strong { color: var(--marine); font-weight: 600; }
.hero-ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center; }
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(to top, rgba(28, 61, 90, 0.7) 0%, transparent 100%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

/* ===== STATS RAIL ===== */
.stats-rail {
  padding: 4rem 2rem;
  background: var(--sand-deep);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: none;
}
.stat-cell {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: 20px;
  border-right: none !important;
  transition: transform 0.2s;
}
.stat-cell:hover { transform: translateY(-4px); }
.stat-cell .num {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--marine);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.stat-cell .num em {
  font-style: normal;
  color: var(--terracotta);
  font-size: 0.55em;
  font-weight: 400;
  vertical-align: top;
  margin-left: 0.1em;
}
.stat-cell .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 500;
  text-transform: none;
}

/* ===== SECTION ===== */
.section { padding: 6rem 2rem; border-bottom: none; }
.section-narrow { max-width: var(--max-narrow); margin: 0 auto; }
.section-wide { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--marine);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.4rem;
  border-radius: 100px;
}
.section-eyebrow::before, .section-eyebrow::after { display: none !important; }
.section-eyebrow.center { display: inline-block; }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--marine);
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.section-deck {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 3rem;
  max-width: 600px;
  font-style: normal;
}
.text-center { text-align: center; }
.text-center .section-deck { margin-left: auto; margin-right: auto; }

/* ===== MANIFESTO ===== */
.manifesto p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}
.manifesto p strong { color: var(--marine); font-weight: 600; }
.manifesto p:first-of-type::first-letter {
  font-family: 'DM Serif Display', serif;
  float: left;
  font-size: 5rem;
  line-height: 0.85;
  font-weight: 400;
  padding: 0.4rem 0.7rem 0 0;
  color: var(--terracotta);
}
.manifesto a { color: var(--terracotta); border-bottom: 1px solid var(--rule); }
.manifesto a:hover { border-bottom-color: var(--terracotta); }

.pull-quote {
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--marine);
  color: var(--cream);
  border-radius: 24px;
  position: relative;
  text-align: left;
  border-top: none;
  border-bottom: none;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: var(--terracotta);
  line-height: 1;
}
.pull-quote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  color: var(--cream);
  padding-left: 1.5rem;
}
.pull-quote cite {
  display: block;
  margin-top: 1.2rem;
  padding-left: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

/* ===== COLLECTIVES ===== */
.collectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: transparent;
  border: none;
}
.collective {
  background: var(--cream);
  padding: 3rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.collective:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(44, 24, 16, 0.08);
  border-color: var(--terracotta);
}
.collective:last-child { background: var(--marine); color: var(--cream); }
.collective:last-child .col-year { color: var(--terracotta); }
.collective:last-child .col-title { color: var(--cream); }
.collective:last-child .col-big { color: var(--terracotta); }
.collective:last-child .col-label { color: rgba(251, 243, 230, 0.55); }
.collective:last-child .col-desc { color: rgba(251, 243, 230, 0.85); }
.collective:last-child .col-link { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.col-year {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.col-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--marine);
  margin-bottom: 1.8rem;
}
.col-big {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  line-height: 0.9;
  color: var(--marine);
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.col-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 1.8rem;
  font-weight: 500;
  text-transform: none;
}
.col-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
  flex: 1;
}
.col-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  align-self: flex-start;
  padding-bottom: 0.2rem;
}

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1/1;
  cursor: zoom-in;
  background: none;
  border: none;
  padding: 0;
}
.gallery-item:hover { border: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28, 61, 90, 0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  text-align: left; z-index: 2;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(28, 61, 90, 0.95);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 2rem; cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; box-shadow: 0 12px 60px rgba(0, 0, 0, 0.5); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(251, 243, 230, 0.3);
  border-radius: 50%; background: transparent;
  color: var(--cream); font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(251, 243, 230, 0.1); }

/* ===== MEDIA STRIP ===== */
.media-strip {
  background: var(--marine); color: var(--cream);
  padding: 6rem 2rem; text-align: center;
  border-bottom: none;
}
.media-strip-inner { max-width: var(--max); margin: 0 auto; }
.media-strip .section-eyebrow { background: var(--terracotta); color: var(--cream); }
.media-strip h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--cream); margin-bottom: 3rem; letter-spacing: -0.01em;
}
.media-strip h2 em { font-style: italic; color: var(--terracotta); }
.media-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2.5rem 3.5rem; max-width: 900px; margin: 0 auto 2.5rem;
}
.media-logo {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: rgba(251, 243, 230, 0.65);
  transition: color 0.2s; border: none; font-weight: 400;
}
.media-logo:hover { color: var(--cream); border: none; }
.media-strip-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta); padding-bottom: 0.2rem;
}

/* ===== CTA ===== */
.cta {
  padding: 6rem 2rem; background: var(--sand-deep);
  text-align: center; border-bottom: none;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.1;
  color: var(--marine); margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.cta h2 em { font-style: italic; color: var(--terracotta); }
.cta p {
  font-family: 'DM Sans', sans-serif; font-size: 1.15rem;
  color: var(--text-soft); margin-bottom: 2.5rem; font-style: normal;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  padding: 1rem 2rem; border-radius: 100px;
  border: 2px solid var(--marine);
  background: var(--marine); color: var(--cream);
  letter-spacing: 0.02em; text-transform: none;
  transition: all 0.2s; margin: 0 0.3rem 0.6rem;
}
.btn:hover {
  background: var(--marine-deep);
  border-color: var(--marine-deep); color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 61, 90, 0.2);
}
.btn-secondary {
  background: transparent; color: var(--marine); border-color: var(--marine);
}
.btn-secondary:hover {
  background: var(--marine); color: var(--cream); border-color: var(--marine);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--marine-deep);
  color: rgba(251, 243, 230, 0.75);
  padding: 4rem 2rem 2rem;
}
.site-footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(251, 243, 230, 0.1);
}
.footer-brand {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.6rem; color: var(--cream); margin-bottom: 0.6rem;
}
.footer-brand em { font-style: italic; color: var(--terracotta); }
.footer-about {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: rgba(251, 243, 230, 0.55);
  max-width: 340px; line-height: 1.6;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem; font-weight: 600;
}
.footer-col a {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: rgba(251, 243, 230, 0.65);
  margin-bottom: 0.5rem; border: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); border: none; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: rgba(251, 243, 230, 0.4);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  max-width: var(--max-narrow); margin: 0 auto 3rem;
  padding: 4rem 2rem 3rem; text-align: center;
  border-bottom: 1px solid var(--rule-soft);
}
.page-kicker {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--terracotta); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.4rem; border-radius: 100px;
}
.page-header h1 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--marine); margin-bottom: 1rem;
}
.page-header .subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem; color: var(--text-soft); line-height: 1.6;
  max-width: 580px; margin: 0 auto;
}
.page-meta {
  margin-top: 1.8rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; color: var(--muted);
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}

/* ===== CONTENT ===== */
.content { max-width: var(--max-narrow); margin: 0 auto; padding: 0 2rem; }
.content p { margin-bottom: 1.4rem; color: var(--text-soft); }
.content p strong { color: var(--marine); font-weight: 600; }
.content p em { font-style: italic; }
.content h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.2rem); line-height: 1.2;
  letter-spacing: -0.01em; color: var(--marine); margin: 3.5rem 0 1.4rem;
}
.content h3 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.4rem; line-height: 1.3; color: var(--marine); margin: 2.5rem 0 1rem;
}
.content a { color: var(--terracotta); border-bottom: 1px solid var(--rule); }
.content a:hover { border-bottom-color: var(--terracotta); }

.chapter-label {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--terracotta); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; margin: 3.5rem 0 0.8rem; border-radius: 100px;
}
.chapter-label:first-child { margin-top: 0; }

.inline-photo {
  margin: 3rem 0; border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.08);
}
.inline-photo img { width: 100%; height: auto; display: block; }
.inline-photo figcaption {
  padding: 0.9rem 1.2rem; background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: var(--text-soft); text-align: center;
}

.quote {
  margin: 2.5rem 0; padding: 2rem 2rem 2rem 2.5rem;
  background: var(--marine); color: var(--cream);
  border-radius: 16px; border-left: none; position: relative;
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.3rem; line-height: 1.5;
}
.quote::before {
  content: '"'; position: absolute; top: -0.5rem; left: 1.2rem;
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; color: var(--terracotta); line-height: 1;
}
.quote cite {
  display: block; margin-top: 0.8rem;
  font-family: 'DM Sans', sans-serif; font-style: normal;
  font-size: 0.82rem; color: var(--terracotta);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ===== DIVIDER ===== */
.divider { max-width: var(--max-narrow); margin: 4rem auto; padding: 0 2rem; text-align: center; }
.divider span {
  display: inline-block; padding: 0.4rem 1.2rem;
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--marine); font-weight: 600;
}
.divider::before { display: none; }

/* ===== TIMELINE ===== */
.timeline { max-width: var(--max-narrow); margin: 0 auto; padding: 0 2rem; }
.timeline-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--rule-soft);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.6rem; color: var(--terracotta); line-height: 1; padding-top: 0.2rem;
}
.timeline-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.2rem; color: var(--marine); margin-bottom: 0.3rem; line-height: 1.3;
}
.timeline-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-soft); line-height: 1.55;
}

/* ===== VIDEO CARDS ===== */
.videos-section { max-width: var(--max); margin: 0 auto; padding: 3rem 2rem; }
.videos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;
}
.video-card {
  background: var(--cream); border: 2px solid transparent;
  border-radius: 20px; overflow: hidden; display: block;
  transition: all 0.25s;
}
.video-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(44, 24, 16, 0.08);
}
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--marine); }
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s, filter 0.3s;
}
.video-card:hover .video-thumb img { transform: scale(1.04); filter: brightness(0.85); }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(231, 111, 81, 0.95); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(28, 61, 90, 0.3);
  transition: transform 0.3s, background 0.3s;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--terracotta-deep);
}
.video-play::after {
  content: ''; display: block; width: 0; height: 0;
  border-left: 18px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.video-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--marine); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.video-info { padding: 1.4rem 1.6rem 1.6rem; }
.video-meta {
  display: flex; gap: 0.6rem; margin-bottom: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: var(--muted);
}
.video-source {
  font-weight: 700; color: var(--terracotta);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.video-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.3rem; line-height: 1.25;
  color: var(--marine); margin-bottom: 0.6rem;
}
.video-desc {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft); font-size: 0.95rem; line-height: 1.5;
}
.hero-video { max-width: 900px; margin: 2rem auto 0; padding: 0 2rem; }
.hero-video-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.6rem; color: var(--marine);
  margin-bottom: 0.5rem; text-align: center;
}
.hero-video-desc {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft); font-size: 1.05rem;
  text-align: center; margin-bottom: 1.5rem;
}

/* ===== PRESS LIST ===== */
.press-list { max-width: var(--max-narrow); margin: 0 auto; padding: 2rem; }
.press-item {
  padding: 1.8rem 2rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: block;
  border-left: none !important;
  transition: all 0.2s;
}
.press-item:hover {
  background: var(--cream);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(44, 24, 16, 0.06);
}
.press-item:hover .press-headline { color: var(--terracotta); }
.press-meta {
  display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem;
}
.press-source {
  font-weight: 700; color: var(--terracotta);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem;
}
.press-headline {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.4rem; line-height: 1.3;
  color: var(--marine); margin-bottom: 0.5rem; transition: color 0.2s;
}
.press-desc {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft); font-size: 0.98rem; line-height: 1.55;
}
.press-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  color: var(--terracotta); margin-top: 0.8rem; display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; max-height: none; min-height: 0; border-radius: 0 0 24px 24px; }
  .hero-text { padding: 3rem 2rem; order: 2; }
  .hero-photo { aspect-ratio: 4/3; order: 1; }
  .hero-tagline { font-size: clamp(2.4rem, 7vw, 4rem); }
  .stats-rail { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  .site-header { padding: 1rem 1.2rem; }
  .site-nav { gap: 1.2rem; }
  .site-nav a { font-size: 0.68rem; letter-spacing: 0.12em; }
  .section { padding: 4rem 1.2rem; }
  .stats-rail { grid-template-columns: 1fr 1fr; padding: 3rem 1.2rem; }
  .collectives-grid { grid-template-columns: 1fr; }
  .collective { padding: 2.5rem 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .media-strip { padding: 4rem 1.2rem; }
  .media-logos { gap: 1.5rem 2.5rem; }
  .cta { padding: 4rem 1.2rem; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .videos-section { padding: 2rem 1.2rem; }
  .videos-grid { grid-template-columns: 1fr; }
  .content, .timeline, .press-list, .hero-video { padding-left: 1.2rem; padding-right: 1.2rem; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .pull-quote, .quote { padding: 2rem 1.5rem; }
  .pull-quote::before, .quote::before { top: -0.6rem; left: 1rem; font-size: 4rem; }
}
@media (max-width: 500px) {
  .hero-tagline { font-size: 2.4rem; }
  .stat-cell .num { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
