/* ============================================================
   JURISTLEXONLINE.NL — OVER ONS PAGE
   ============================================================ */

.page-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(190, 150, 80, 0.025) 80px,
    rgba(190, 150, 80, 0.025) 81px
  );
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__title {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-subtitle);
  color: rgba(250, 250, 248, 0.75);
  max-width: none;
  line-height: 1.6;
}

.about-intro {
  background: var(--white);
}

.about-intro .grid--about-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.about__img-wrap {
  position: relative;
  height: clamp(420px, 38vw, 520px);
  overflow: hidden;
}

.about__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(10%);
}

.about__img-deco {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  opacity: 0.35;
  z-index: -1;
}

.about__content {
  padding: var(--space-lg) 0;
  min-width: 0;
}

.about__content h2,
.about__content p {
  max-width: none;
}

.about-stats {
  background: var(--navy);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-stats__item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(190, 150, 80, 0.2);
}

.about-stats__item:last-child {
  border-right: none;
}

.about-stats__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.about-stats__label {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.65);
  line-height: 1.5;
}

.about-values-section {
  background: var(--off-white);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(8, 42, 71, 0.08);
}

.about-value-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--white);
  border-right: 1px solid rgba(8, 42, 71, 0.08);
  border-bottom: 1px solid rgba(8, 42, 71, 0.08);
}

.about-value-card:nth-child(2n) {
  border-right: none;
}

.about-value-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.about-value-card__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.about-value-card__text {
  font-size: var(--text-small);
  line-height: 1.7;
  color: var(--anthracite);
  max-width: none;
}

.about-quote {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-quote__bg {
  position: absolute;
  inset: 0;
}

.about-quote__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(20%) contrast(1.05);
}

.about-quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 25, 46, 0.82) 0%,
    rgba(8, 42, 71, 0.55) 100%
  );
}

.about-quote__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}

.about-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--off-white);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: none;
}

.about-quote__cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.about-team {
  background: var(--navy);
}

.about-team .section-header h2 {
  color: var(--off-white);
}

.about-team .section-header p {
  color: rgba(250, 250, 248, 0.65);
  max-width: none;
}

.about-approach {
  background: var(--off-white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(8, 42, 71, 0.12);
}

.process__step {
  padding: 2.5rem 2rem 2rem 0;
  border-right: 1px solid rgba(8, 42, 71, 0.08);
}

.process__step:last-child {
  border-right: none;
}

.process__step:not(:first-child) {
  padding-left: 2rem;
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(8, 42, 71, 0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.process__step-text {
  font-size: var(--text-small);
  color: rgba(43, 43, 43, 0.7);
  line-height: 1.65;
  max-width: none;
}

.about-cta {
  background: var(--navy-deep);
  text-align: center;
}

.about-cta__title {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.about-cta__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-subtitle);
  color: rgba(250, 250, 248, 0.7);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .about-intro .grid--about-split {
    grid-template-columns: 1fr;
  }

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

  .about-stats__item:nth-child(2) {
    border-right: none;
  }

  .about-stats__item:nth-child(1),
  .about-stats__item:nth-child(2) {
    border-bottom: 1px solid rgba(190, 150, 80, 0.2);
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 60px;
  }

  .about-stats__inner,
  .about-values-grid,
  .process__steps {
    grid-template-columns: 1fr;
  }

  .about-stats__item {
    border-right: none;
    border-bottom: 1px solid rgba(190, 150, 80, 0.2);
    padding-bottom: 1.5rem;
  }

  .about-stats__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about-value-card {
    border-right: none;
    border-bottom: 1px solid rgba(8, 42, 71, 0.08);
  }

  .about-value-card:last-child {
    border-bottom: none;
  }

  .process__step {
    padding: 1.75rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(8, 42, 71, 0.08);
  }

  .process__step:not(:first-child) {
    padding-left: 0;
  }
}
