/* ============================================ */
/* OVER ONS (ABOUT) PAGE — sircle.agency       */
/* ============================================ */

/* ---------- HERO ---------- */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

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

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transform: scale(1.1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,24,15,0.85) 0%,
    rgba(12,24,15,0.45) 50%,
    rgba(12,24,15,0.3) 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.about-hero-title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-hero-title .line {
  display: block;
  overflow: hidden;
}

.about-hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--soft-green);
  line-height: 1.5;
}

/* ---------- ORIGIN STORY ---------- */
.origin-section {
  padding: 140px 0 120px;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.origin-image {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.origin-image img {
  width: 100%;
  display: block;
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
}

.origin-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-grey-green);
  margin-bottom: 20px;
}

.origin-text strong {
  color: var(--dark-green);
}

/* Timeline */
.origin-timeline {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(12,24,15,0.1);
}

.timeline-line {
  position: relative;
  height: 2px;
  background: rgba(12,24,15,0.1);
  margin-bottom: 20px;
  border-radius: 2px;
  overflow: hidden;
}

.timeline-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mid-green), var(--gold));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.timeline-line-fill.animated {
  width: 100%;
}

.timeline-points {
  display: flex;
  justify-content: space-between;
}

.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.timeline-year {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
}

.timeline-event {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mid-green);
}

/* ---------- ECOSYSTEM ---------- */
.ecosystem-section .section-title { color: var(--white); }
.ecosystem-section .section-subtitle { color: var(--soft-green); max-width: 640px; margin: 0 auto; }

.ecosystem-section {
  padding: 140px 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(208,223,185,0.08);
  border-radius: 20px;
  padding: 48px 36px;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ecosystem-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(208,223,185,0.15);
  transform: translateY(-6px);
}

.ecosystem-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 28px;
}

.ecosystem-icon svg {
  width: 100%;
  height: 100%;
}

.ecosystem-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.ecosystem-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--soft-green);
  margin-bottom: 24px;
}

.ecosystem-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid rgba(242,226,164,0.2);
  border-radius: 100px;
}

/* ---------- VALUES ---------- */
.values-section {
  padding: 140px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card--light {
  background: rgba(12,24,15,0.03);
  border: 1px solid rgba(12,24,15,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.value-card--light:hover {
  background: rgba(12,24,15,0.06);
  border-color: rgba(12,24,15,0.12);
  transform: translateY(-4px);
}

.value-card--light .value-num {
  color: var(--mid-green);
}

.value-card--light h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.value-card--light p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-grey-green);
}

.value-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

/* ---------- TEAM / NETWORK ---------- */
.team-section {
  padding: 140px 0 120px;
}

.team-intro {
  margin-bottom: 64px;
}

.team-intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  max-width: 960px;
}

.team-intro-cols p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft-green);
}

/* ---- Photo Strip (continuous marquee) ---- */
.team-photo-strip {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
}

.team-strip-row {
  overflow: hidden;
}

.team-strip-row--left {
  margin-bottom: 16px;
}

.team-strip-track {
  display: flex;
  width: max-content;
}

.team-strip-row--left .team-strip-track {
  animation: stripLeft 65s linear infinite;
}

.team-strip-row--right .team-strip-track {
  animation: stripRight 65s linear infinite;
}

.team-photo-strip:hover .team-strip-track {
  animation-play-state: paused;
}

@keyframes stripLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes stripRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.team-strip-item {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 16px;
}

.team-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.team-strip-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05) brightness(0.95);
}

.team-strip-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(8, 36, 18, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(242, 226, 164, 0.15);
}

/* ---- Stats ---- */
.team-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(208,223,185,0.1);
}

.team-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.team-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--soft-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- APPROACH / WERKWIJZE ---------- */
.approach-section {
  padding: 140px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.approach-step {
  position: relative;
  padding-top: 32px;
  border-top: 2px solid rgba(12,24,15,0.1);
}

.approach-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid-green);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.approach-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.approach-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dark-grey-green);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .origin-image {
    position: relative;
    top: 0;
    max-height: 50vh;
  }

  .origin-image img {
    height: 50vh;
    object-fit: cover;
  }

  .team-intro-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-strip-item {
    width: 320px;
    height: 230px;
  }

  .team-strip-row--left .team-strip-track,
  .team-strip-row--right .team-strip-track {
    animation-duration: 48s;
  }

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

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

@media (max-width: 767px) {
  .about-hero {
    height: 60vh;
    min-height: 400px;
  }

  .about-hero-title {
    font-size: clamp(36px, 12vw, 56px);
  }

  .values-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecosystem-card,
  .value-card--light {
    padding: 32px 24px;
  }

  .origin-section,
  .team-section,
  .values-section,
  .ecosystem-section,
  .approach-section {
    padding: 80px 0;
  }

  .timeline-points {
    gap: 8px;
  }

  .timeline-year {
    font-size: 16px;
  }

  .timeline-event {
    font-size: 10px;
  }

  .origin-grid {
    gap: 40px;
  }

  .team-strip-item {
    width: 260px;
    height: 190px;
    margin-right: 12px;
  }

  .team-strip-row--left {
    margin-bottom: 12px;
  }

  .team-strip-row--left .team-strip-track,
  .team-strip-row--right .team-strip-track {
    animation-duration: 35s;
  }

  .team-strip-tag {
    font-size: 10px;
    padding: 5px 10px;
    bottom: 10px;
    left: 10px;
  }

  .team-stats {
    gap: 24px;
  }

  .team-stat-num {
    font-size: 24px;
  }
}


/* ===== 1% VOOR DE PLANEET / PLEDGE SECTION ===== */
.pledge-section { padding: var(--space-xl) 0; }
.pledge-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.pledge-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.pledge-visual img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}
.pledge-visual:hover img { transform: scale(1.04); }
.pledge-block {
  max-width: 540px;
}
.pledge-block .section-title {
  margin: 16px 0 28px;
}
.pledge-text {
  color: var(--soft-green);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
}
.pledge-text p { margin-bottom: 18px; }
.pledge-text strong { color: var(--cream); font-weight: 600; }

@media (max-width: 900px) {
  .pledge-grid { grid-template-columns: 1fr; gap: 32px; }
  .pledge-block { max-width: 100%; }
}

/* ============================================
   FEATURED QUOTE (single testimonial block)
   ============================================ */
.featured-quote-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.featured-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.featured-quote::before {
  content: '\201C';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}
.featured-quote .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.featured-quote blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink, #1a2520);
  margin: 0 0 24px;
  font-weight: 400;
}
.featured-quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--soft-green);
  font-weight: 500;
}

@media (max-width: 700px) {
  .featured-quote { padding: 0 8px; }
  .featured-quote::before { font-size: 80px; top: -20px; }
  .featured-quote blockquote { font-size: 18px; }
  .featured-quote cite { font-size: 13px; }
}
