/* ============================================
   On Approval — Archive
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #fafaf8;
  --cream: #f2f0ec;
  --grey: #888;
  --light-grey: #e0ded9;
  --max-width: 1200px;
  --side-padding: max(4vw, 24px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Animate on scroll ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Top bar ---- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--side-padding);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.topbar-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--side-padding) 12vh;
  max-width: var(--max-width);
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--side-padding);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Notice ---- */
.notice {
  padding: 1.25rem var(--side-padding);
  background: var(--black);
  text-align: center;
}

.notice p {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--grey);
}

/* ---- Section label ---- */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* ---- Overview ---- */
.overview {
  padding: 8rem var(--side-padding);
}

.overview-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.overview-lede {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4rem;
}

.overview-stats {
  display: flex;
  gap: 4rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---- Press ---- */
.press {
  padding: 4rem var(--side-padding) 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.logo-strip img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity 0.4s;
}

.logo-strip img:hover {
  opacity: 0.7;
}

/* ---- Funding ---- */
.funding {
  padding: 0 var(--side-padding) 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.funding-text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #444;
}

.funding-text strong {
  color: var(--black);
  font-weight: 600;
}

.funding-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
}

/* ---- Divider ---- */
.divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  border-bottom: 1px solid var(--light-grey);
}

/* ---- Narrative sections ---- */
.narrative {
  padding: 7rem var(--side-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.narrative-header {
  margin-bottom: 3rem;
}

.narrative-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.narrative-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.narrative-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.narrative-text-wide {
  grid-column: 1 / -1;
  max-width: 720px;
}

.narrative-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.img-elevated {
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* ---- Full bleed image ---- */
.full-image {
  padding: 0 var(--side-padding) 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.full-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* ---- Cinema break ---- */
.cinema {
  position: relative;
  height: 55vh;
  min-height: 350px;
  overflow: hidden;
  margin: 2rem 0;
}

.cinema-bg {
  position: absolute;
  inset: 0;
}

.cinema-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(0.7) saturate(0.9);
}

/* ---- Case studies ---- */
.cases {
  padding: 7rem var(--side-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.case {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 6rem;
}

.case:last-child {
  margin-bottom: 0;
}

.case-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.case-meta {
  padding-top: 1rem;
}

.case-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.case-logos-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.case-logos-row .case-logo {
  margin-bottom: 0;
}

.case-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.case-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem var(--side-padding);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col-right {
  text-align: right;
}

.footer-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.6rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
}

.footer-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.footer-small {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-stats {
    gap: 2.5rem;
  }

  .narrative-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .case {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-bottom: 8vh;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .overview {
    padding: 5rem var(--side-padding);
  }

  .overview-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .logo-strip {
    gap: 1.5rem 2rem;
  }

  .logo-strip img {
    height: 22px;
  }

  .narrative {
    padding: 4rem var(--side-padding);
  }

  .cases {
    padding: 4rem var(--side-padding);
  }

  .case {
    margin-bottom: 4rem;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col-right {
    text-align: left;
  }

  .cinema {
    height: 35vh;
  }
}
