/* css/home.css */

/* ── HERO — documentary embed ── */
.hero {
  background: var(--black);
  padding: 9rem 5vw 5rem;
  text-align: center;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
}
.hero-inner .label { color: var(--accent); }
.hero-doc-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0 2.5rem;
  letter-spacing: -0.02em;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── HERO TEXT SECTION ── */
.hero-text-section {
  background: var(--white);
  padding: 0;
}
.hero-text-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
}
.hero-text-left {
  padding: 6rem 4rem 6rem 5vw;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--grey-200);
}
.hero-text-left .hero-kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 2rem; color: var(--accent);
}
.hero-text-left .hero-kicker::before { content: ''; display: block; width: 32px; height: 2px; background: var(--accent); }
.hero-text-left h1 { font-weight: 900; margin-bottom: 2rem; letter-spacing: -0.02em; color: var(--black); }
.hero-text-left h1 em { font-style: italic; color: var(--crimson); }
.hero-text-left .hero-sub { font-size: 1.1rem; color: #555; max-width: 480px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-text-right {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 420px;
  overflow: hidden;
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }
.photo-strip-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── INTRO SPLIT ── */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; }
.intro-left  { padding: 6rem 4rem 6rem 0; border-right: 1px solid var(--grey-200); }
.intro-right { padding: 6rem 0 6rem 4rem; }
.intro-right p { font-size: 1.05rem; line-height: 1.9; color: #444; margin-bottom: 1.5rem; }
.big-q  { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 700; line-height: 1.35; }
.big-q em { font-style: italic; color: var(--crimson); display: block; margin-top: 0.25rem; }

/* ── WHAT WE DO ── */
.wwd-section { background: var(--grey-100); }
.wwd-header  { display: flex; align-items: flex-start; justify-content: space-between; gap: 4rem; margin-bottom: 4rem; flex-wrap: wrap; }
.wwd-header h2 { max-width: 480px; }
.wwd-header p  { max-width: 380px; color: #555; font-size: 1rem; line-height: 1.85; padding-top: 0.5rem; }
.wwd-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--grey-200); }
.wwd-card  { background: var(--white); padding: 2.5rem; }
.wwd-card .wwd-num   { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; margin-bottom: 0.5rem; color: var(--crimson); }
.wwd-card h3         { font-size: 1.1rem; margin-bottom: 0.75rem; }
.wwd-card p          { font-size: 0.875rem; color: #555; line-height: 1.75; margin-bottom: 1.25rem; }
.wwd-card a          { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--grey-200); padding-bottom: 0.2rem; transition: border-color 0.2s; }
.wwd-card a:hover    { border-color: var(--accent); }
.wwd-card .card-tag  { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--grey-400); display: block; margin-bottom: 1rem; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 5rem; align-items: start; }
.why-text h2 { margin-bottom: 1.5rem; }
.why-text p  { font-size: 1.05rem; color: #444; line-height: 1.88; margin-bottom: 1.5rem; }
.why-visual { display: flex; flex-direction: column; gap: 0; }
.why-photo {
  width: 100%; height: auto;
  display: block;
}
.why-card    { background: var(--black); color: var(--white); padding: 2.5rem; position: relative; }
.why-card blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.55; margin-bottom: 1.5rem; }
.why-card .attr { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; }

/* ── IMPACT GALLERY ── */
.impact-gallery-section { background: var(--grey-100); }
.impact-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.ig-main { overflow: hidden; height: 620px; }
.ig-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.ig-main:hover img { transform: scale(1.03); }
.ig-side { display: flex; flex-direction: column; gap: 1rem; height: 620px; }
.ig-side-item { flex: 1; overflow: hidden; min-height: 0; }
.ig-side-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.ig-side-item:hover img { transform: scale(1.05); }

/* ── PULLQUOTE ── */
.pq-block { background: var(--crimson); padding: 6rem 5vw; text-align: center; }
.pq-inner { max-width: 720px; margin: 0 auto; }
.pq-block .label { color: rgba(255,255,255,0.45); }
.pq-block p   { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 2rem); font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 1.5rem; }
.pq-block .pq-attr { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── PARTNERS ── */
.partners-section { padding: 5rem 0; }
.partners-section h2 { text-align: center; margin-bottom: 1rem; }
.partners-sub  { text-align: center; color: var(--grey-400); margin-bottom: 2rem; font-size: 0.9rem; }
.partners-marquee-wrap { overflow: hidden; padding: 1.25rem 0; border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); margin-bottom: 2.5rem; }
.partners-marquee-track { display: flex; gap: 2rem; animation: partners-marquee 28s linear infinite; width: max-content; align-items: center; }
.partners-marquee-track span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: #555; white-space: nowrap; }
.partners-marquee-track span.dot { color: var(--accent); font-size: 1rem; }
@keyframes partners-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.currently-working-label { text-align: center; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--grey-400); margin-bottom: 1rem; }
.partners-wrap { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; }
.p-tag  { border: 1px solid var(--grey-200); padding: 0.5rem 1.15rem; font-size: 0.8rem; font-weight: 500; border-radius: 100px; color: #555; transition: all 0.2s; }
.p-tag:hover { border-color: var(--black); color: var(--black); }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 960px) {
  /* Hero text */
  .hero-text-inner  { grid-template-columns: 1fr; min-height: unset; }
  .hero-text-left   { padding: 4rem 5vw; border-right: none; border-bottom: 1px solid var(--grey-200); }
  .hero-text-right  { height: 55vw; min-height: 260px; }

  /* Photo strip */
  .photo-strip      { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-item { height: 220px; }

  /* Intro */
  .intro-split { grid-template-columns: 1fr; }
  .intro-left  { border-right: none; border-bottom: 1px solid var(--grey-200); padding: 4rem 0; }
  .intro-right { padding: 4rem 0; }

  /* What we do */
  .wwd-header { flex-direction: column; gap: 1.5rem; }
  .wwd-cards  { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Impact gallery */
  .impact-gallery          { grid-template-columns: 1fr; }
  .ig-main                 { height: 55vw; min-height: 260px; }
  .ig-side                 { flex-direction: row; height: 40vw; min-height: 200px; }
}

/* Large phone */
@media (max-width: 600px) {
  .hero-text-left   { padding: 3rem 5vw; }
  .photo-strip      { grid-template-columns: 1fr 1fr; }
  .photo-strip-item { height: 180px; }

  .ig-side          { flex-direction: column; height: auto; }
  .ig-side-item     { height: 50vw; flex: none; }

  .pq-block         { padding: 4rem 5vw; }
}

/* Small phone */
@media (max-width: 480px) {
  .hero-eyebrow     { display: none; }

  .hero-text-left   { padding: 2.5rem 5vw; }
  .hero-text-left .hero-kicker { margin-bottom: 1.25rem; }
  .hero-text-left h1 { margin-bottom: 1.25rem; }
  .hero-text-left .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .photo-strip      { grid-template-columns: 1fr; }
  .photo-strip-item { height: 200px; }

  .wwd-card         { padding: 2rem; }

  .hero-btns        { flex-direction: column; }
  .hero-btns .btn   { text-align: center; }
}
