/*
 * Newsgraphy — About Us page
 * Loaded after inner.css
 */

/* ════════════════════════════════════════════════════════════════
   SHARED TOKENS (mirrors partnership.css)
════════════════════════════════════════════════════════════════ */
:root {
  --max:     1180px;
  --gutter:  clamp(20px, 5vw, 64px);
  --sv:      clamp(64px, 8vw, 112px);   /* section vertical padding */
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.nga-hero {
  background: var(--blue900);
  color: #fff;
  padding: var(--sv) var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Grid lines */
.nga-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Left accent */
.nga-hero::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

.nga-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.nga-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.nga-eyebrow::before {
  content: "";
  width: 28px; height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}

.nga-hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
}
.nga-hero-title em {
  font-style: normal;
  color: var(--orange);
}

.nga-hero-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
  max-width: 520px;
}

/* Right side: mission pillars */
.nga-hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nga-hero-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  transition: background 150ms;
}
.nga-hero-pillar:hover { background: rgba(255,255,255,.1); }
.nga-hero-pillar strong {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

/* ════════════════════════════════════════════════════════════════
   SHARED SECTION UTILS
════════════════════════════════════════════════════════════════ */
.nga-section         { padding: var(--sv) var(--gutter); }
.nga-section--alt    { background: var(--surface, #f7fafd); }
.nga-section--dark   { background: var(--blue900); color: #fff; }
.nga-section--accent { background: var(--blue); color: #fff; }

.nga-inner         { max-width: var(--max); margin: 0 auto; }
.nga-inner--narrow { max-width: 760px; }
.nga-inner--center { text-align: center; }

.nga-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.nga-label::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nga-label--light { color: rgba(255,255,255,.5); }
.nga-label--light::before { background: rgba(255,255,255,.3); }

.nga-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 40px;
}
.nga-title--light { color: #fff; }
.nga-title--sm {
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: 28px;
}

/* ════════════════════════════════════════════════════════════════
   WHAT WE ARE — two-column intro
════════════════════════════════════════════════════════════════ */
.nga-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nga-what-card {
  background: #fff;
  padding: 40px 36px;
  position: relative;
  border-top: 4px solid var(--card-color, var(--blue));
  transition: box-shadow 200ms;
}
.nga-what-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.nga-what-card:nth-child(1) { --card-color: var(--blue); }
.nga-what-card:nth-child(2) { --card-color: var(--orange); }

.nga-what-tag {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--card-color, var(--blue));
  background: color-mix(in srgb, var(--card-color, var(--blue)) 10%, transparent);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.nga-what-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 14px;
}

.nga-what-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════
   MISSION TRIPTYCH — bold statement cards
════════════════════════════════════════════════════════════════ */
.nga-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 8px;
}

.nga-mission-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 200ms;
}
.nga-mission-card:hover { background: rgba(255,255,255,.09); }

/* Faint number watermark */
.nga-mission-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -20px;
  right: 12px;
  font-family: var(--sans);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.nga-mission-kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nga-mission-kicker::before {
  content: "";
  width: 16px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nga-mission-stmt {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.35;
  letter-spacing: -.015em;
  color: #fff;
}

.nga-mission-desc {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
}

/* ════════════════════════════════════════════════════════════════
   HOW WE WORK — 3 principle cards
════════════════════════════════════════════════════════════════ */
.nga-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}

.nga-principle {
  background: #fff;
  padding: 36px 28px;
  border-left: 4px solid var(--orange);
  transition: box-shadow 200ms, transform 200ms;
}
.nga-principle:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.nga-principle-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 32px;
  color: var(--orange);
  opacity: .3;
  line-height: 1;
  margin-bottom: 16px;
}

.nga-principle-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.nga-principle-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════
   FOUNDER SECTION
════════════════════════════════════════════════════════════════ */
.nga-founder {
  padding: var(--sv) var(--gutter);
  background: var(--surface);
}

.nga-founder-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

.nga-founder-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}
.nga-founder-text p:last-of-type { margin-bottom: 0; }

.nga-founder-creds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.nga-cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue900);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  line-height: 1.3;
}
.nga-cred-badge svg { flex-shrink: 0; opacity: .6; }

/* Photo + caption card */
.nga-founder-photo-wrap {
  position: sticky;
  top: 100px;
}

.nga-founder-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
  border: 4px solid var(--orange);
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--orange) 15%, transparent);
}

.nga-founder-caption {
  margin-top: 16px;
  padding: 20px;
  background: var(--blue900);
  border-radius: 4px;
}

.nga-founder-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

.nga-founder-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nga-founder-edu {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════
   LOGO SCROLLY SECTION
════════════════════════════════════════════════════════════════ */
.nga-logo-section {
  padding: var(--sv) 0;
  background: #fff;
  overflow: hidden;
}

.nga-logo-section-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 48px;
}

/* Scrolly container */
#my-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ════════════════════════════════════════════════════════════════
   TODAY SECTION — stats + narrative
════════════════════════════════════════════════════════════════ */
.nga-today-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.nga-today-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nga-today-stat {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 28px 24px;
  transition: background 150ms;
}
.nga-today-stat:hover { background: #f5f7fa; }

.nga-today-stat-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.nga-today-stat-label {
  font-size: 12px;
  color: var(--blue900);
  opacity: .55;
  line-height: 1.45;
  font-weight: 600;
}

.nga-today-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
}

.nga-today-clients {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.nga-client-chip {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue900);
  background: rgba(8,102,188,.08);
  border: 1px solid rgba(8,102,188,.15);
  padding: 5px 12px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════════════════════
   WHY WE EXIST — large type statements
════════════════════════════════════════════════════════════════ */
.nga-why {
  padding: var(--sv) var(--gutter);
  background: var(--surface);
}

.nga-why-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.nga-why-list {
  list-style: none;
  margin-top: 8px;
  border-top: 2px solid var(--border);
}

.nga-why-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 150ms;
}

.nga-why-arrow {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 900;
  line-height: 1.3;
}

.nga-why-stmt {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════════ */
.nga-contact {
  padding: var(--sv) var(--gutter);
  background: var(--blue900);
  position: relative;
  overflow: hidden;
}

/* Concentric rings */
.nga-contact::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow:
    0 0 0 80px rgba(255,255,255,.025),
    0 0 0 160px rgba(255,255,255,.015),
    0 0 0 240px rgba(255,255,255,.008);
  pointer-events: none;
}

.nga-contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nga-contact-body {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.nga-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nga-contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  padding: 32px;
  transition: background 150ms;
}
.nga-contact-card:hover { background: rgba(255,255,255,.1); }

.nga-contact-card-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.nga-contact-card-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.nga-contact-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.nga-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: .01em;
  transition: gap 150ms;
}
.nga-contact-link:hover { gap: 14px; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nga-hero-inner     { grid-template-columns: 1fr; gap: 40px; }
  .nga-founder-inner  { grid-template-columns: 1fr; }
  .nga-founder-photo-wrap { position: static; display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
  .nga-founder-photo  { aspect-ratio: 1; }
  .nga-today-inner    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nga-what-grid      { grid-template-columns: 1fr; }
  .nga-mission-grid   { grid-template-columns: 1fr; }
  .nga-principles     { grid-template-columns: 1fr; }
  .nga-contact-cards  { grid-template-columns: 1fr; }
  .nga-today-stats    { grid-template-columns: 1fr 1fr; }
  .nga-founder-photo-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nga-today-stats    { grid-template-columns: 1fr; }
}

/* Gallery */
.nga-gallery-section { background: #f5f5f0; padding: 0; overflow: hidden; }
.nga-gallery-track-wrap {
  overflow: hidden;
  padding: 0 0 2rem;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.nga-gallery-track-wrap:hover .nga-gallery-track { animation-play-state: paused; }
@keyframes nga-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.nga-gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 2rem 1rem;
  width: max-content;
  animation: nga-scroll-left 180s linear infinite;
}
.nga-gallery-item {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  background: #fff;
}
.nga-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@keyframes nga-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.nga-gallery-track--rtl {
  animation: nga-scroll-right 40s linear infinite;
}
.nga-gallery-track-wrap--rtl:hover .nga-gallery-track--rtl { animation-play-state: paused; }
.nga-gallery-item--wide { width: 520px; }
.nga-gallery-sublabel-wrap { padding-top: 2rem; padding-bottom: 0.75rem; }
.nga-gallery-sublabel {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e87722;
  margin: 0;
}
