/* ============================================
   ABOUT PAGE
============================================ */


/* Hero layout specific to about */
.page-hero--about {
  min-height: 58vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-hero--about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 143, 216, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 143, 216, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 100%, black 20%, transparent 80%);
}

.hero-est {
  position: absolute;
  right: 3rem;
  bottom: 5rem;
  font-family: var(--serif);
  font-size: 7rem;
  color: rgba(247, 246, 242, 0.03);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}


/* ============================================
   ORIGIN STORY
============================================ */
.section-origin {
  background: var(--white);
  padding: 8rem 0;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8rem;
  align-items: start;
}

.origin-left .section-eyebrow { color: var(--accent-dark); }
.origin-left .section-heading { color: var(--dark); margin-bottom: 2rem; }

.origin-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2rem;
  margin-top: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 24px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent-dark), var(--accent));
  pointer-events: none;
  transition: width 0.6s ease, box-shadow 0.6s ease;
}

.timeline-line.traveling {
  width: 2px;
  margin-left: -0.5px;
  box-shadow: 0 0 8px rgba(74, 143, 216, 0.5), 0 0 3px rgba(74, 143, 216, 0.3);
}

.timeline-line.settled {
  width: 1px;
  margin-left: 0;
  box-shadow: none;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.4rem;
}

.timeline-item:last-child { padding-bottom: 0; }

/* Dot states */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-4px);
  z-index: 2;
  transition: background 0.4s, box-shadow 0.5s, transform 0.4s var(--ease-out);
}

.timeline-item.lit::before {
  background: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(74, 143, 216, 0.2), 0 0 16px rgba(74, 143, 216, 0.65);
  transform: translateX(-4px) scale(1.25);
}

.timeline-item.set::before {
  background: rgba(74, 143, 216, 0.4);
  box-shadow: 0 0 0 2px rgba(74, 143, 216, 0.08), 0 0 5px rgba(74, 143, 216, 0.15);
  transform: translateX(-4px) scale(1);
}

.timeline-item.final-lit::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 143, 216, 0.18), 0 0 20px rgba(74, 143, 216, 0.55);
  transform: translateX(-4px) scale(1.3);
  animation: dotPulse 2.6s 0.3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 143, 216, 0.18), 0 0 20px rgba(74, 143, 216, 0.55); }
  50%       { box-shadow: 0 0 0 7px rgba(74, 143, 216, 0.07), 0 0 32px rgba(74, 143, 216, 0.25); }
}

.timeline-year {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.4rem;
  transition: color 0.4s;
}

.timeline-item.lit .timeline-year,
.timeline-item.set .timeline-year,
.timeline-item.final-lit .timeline-year { color: var(--accent-dark); }

.timeline-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
}


/* ============================================
   WHY NWA — bento grid
============================================ */
.section-why {
  background: var(--off-white);
  padding: 8rem 0;
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section-why .section-eyebrow { color: var(--accent-dark); }
.section-why .section-heading { color: var(--dark); }

.why-header-right {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

.why-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.why-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
}

.why-card:hover::after { width: 100%; }

.why-card-1 { grid-column: 1 / 6; }
.why-card-2 { grid-column: 6 / 9; }
.why-card-3 { grid-column: 9 / 13; }
.why-card-4 { grid-column: 1 / 5; }
.why-card-5 { grid-column: 5 / 9; }
.why-card-6 { grid-column: 9 / 13; }

.why-card-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.why-card-num {
  font-family: var(--serif);
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.12);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.why-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}

.why-card-body {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
}

.why-card-stat {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.why-card-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.why-card-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}


/* ============================================
   FOUNDER
============================================ */
.section-founder {
  position: relative;
  min-height: 80vh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.founder-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.section-founder:hover .founder-bg { transform: scale(1); }

.founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(17, 18, 16, 0.95) 35%,
    rgba(17, 18, 16, 0.5) 70%,
    transparent 100%
  );
}

.founder-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.founder-text .section-eyebrow { color: var(--accent); margin-bottom: 1rem; }
.founder-text .section-heading { color: var(--white); margin-bottom: 2rem; }

.founder-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(247, 246, 242, 0.55);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.founder-sig {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-sig-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.founder-sig-title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.35);
}

/* Award cards */
.founder-awards { display: flex; flex-direction: column; gap: 1.5rem; }

.award-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}

.award-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(74, 143, 216, 0.25);
}

.award-icon { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.award-title { font-family: var(--serif); font-size: 1rem; color: var(--white); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.award-body { font-size: 0.78rem; line-height: 1.6; color: rgba(247, 246, 242, 0.4); font-weight: 300; }


/* ============================================
   REACH / GEOGRAPHY
============================================ */
.section-reach {
  background: var(--white);
  padding: 8rem 0;
}

.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.section-reach .section-eyebrow { color: var(--accent-dark); }
.section-reach .section-heading { color: var(--dark); margin-bottom: 2rem; }

.reach-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.reach-countries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 3rem;
}

.country-chip {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 2px;
}

.country-chip:hover { border-color: var(--accent); color: var(--dark); }
.country-flag { font-size: 1.1rem; }

/* Industries */
.industries-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-item {
  background: var(--white);
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.2s, color 0.2s;
}

.industry-item:hover { background: var(--off-white); color: var(--dark); }

.industry-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}


/* ─────────────────────────────────────────────
   Hero — Founder photo (Norm)

   The source image is a full-body cutout
   (983 × 3399). We want head-to-knees visible.

   Uses object-fit: cover with object-position
   anchored to the top so the head always shows
   and the legs crop off naturally.

   Positioned between hero-content (left ~50%)
   and hero-rank-demo / hero-bars (right: 4rem).
   ───────────────────────────────────────────── */
.hero-founder {
  position: absolute;
  z-index: 1;
  pointer-events: none;

  /* Position: vertically centered-ish, between text and right-side decorations */
right: 20%;
  top: 85px;
  bottom: 72px; /* sits above the proof strip */

  width: 280px;
}

.hero-founder img {
  width: 100%;
  height: 100%;

  /* Cover the container, anchor to top so head shows, legs crop */
  object-fit: cover;
  object-position: top center;

  /* Fade edges into background */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 82%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 10%,
    black 82%,
    transparent 100%
  );

  filter: brightness(0.85) contrast(1.05);
  opacity: 1;
}



.hero-h1 em { font-style: italic; color: var(--accent); font-size: .75em;}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .hero-inner { padding: 4rem 1.5rem 5rem; }
  .hero-est { display: none; }

  .section-origin,
  .section-why,
  .section-reach { padding: 5rem 0; }

  .origin-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .why-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card-1,
  .why-card-2,
  .why-card-3,
  .why-card-4,
  .why-card-5,
  .why-card-6 { grid-column: 1 / -1; }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .section-founder { min-height: auto; }

  .founder-overlay {
    background: linear-gradient(180deg,
      rgba(17, 18, 16, 0.92) 0%,
      rgba(17, 18, 16, 0.85) 100%
    );
  }

  .reach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reach-countries {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-hero--about { min-height: 50vh; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .reach-countries { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}