.about-page {
  --about-panel: #12151a;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(140, 82, 255, 0.2),
      transparent 31%
    ),
    linear-gradient(180deg, #0d0f12, #0b0d10);
}

.about-hero::before {
  content: "";
  position: absolute;
  left: -230px;
  bottom: -300px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(199, 168, 255, 0.16);
  border-radius: 50%;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 5.4vw, 5.7rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.about-hero-copy h1 span {
  display: block;
  color: var(--violet);
}
.about-lead {
  max-width: 590px;
  margin: 0;
  color: #c2c0bb;
  font-size: 1.08rem;
}

.about-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #454b56;
  background: #08090b;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 8, 10, 0.2),
    transparent 50%,
    rgba(7, 8, 10, 0.18)
  );
  pointer-events: none;
}

.about-hero-visual > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.75) contrast(1.04) brightness(0.78);
}

.about-visual-label {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(10px);
  color: #dedbe6;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-visual-label i {
  width: 15px;
  height: 1px;
  background: var(--gold);
}

.about-studio-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(199, 168, 255, 0.45);
  background: rgba(12, 12, 17, 0.9);
  backdrop-filter: blur(14px);
}

.about-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8c4d3;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dde9a;
  box-shadow: 0 0 0 4px rgba(109, 222, 154, 0.12);
}
.about-studio-card strong {
  display: block;
  margin: 13px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.about-studio-card small {
  color: #8f9299;
}

.about-story {
  background: #0d0f12;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
}
.about-story-title h2,
.about-section-head h2,
.about-process-copy h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4rem);
}
.about-story-copy {
  padding-top: 4px;
}
.about-story-intro {
  max-width: 780px;
  margin: 0 0 36px;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.38;
}
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.about-columns p,
.about-section-head > p,
.about-process-copy > p:last-child {
  margin: 0;
  color: var(--muted);
}

.about-values {
  background: #101319;
}
.about-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}
.about-section-head > p {
  max-width: 390px;
  padding-bottom: 5px;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.about-value-card {
  min-height: 290px;
  padding: 34px;
  background: var(--about-panel);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.about-value-card:hover {
  z-index: 1;
  background: #171a21;
  transform: translateY(-4px);
}
.about-value-number {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}
.about-value-number::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.about-value-card h3 {
  margin: 58px 0 14px;
  font-size: 1.35rem;
}
.about-value-card p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-process {
  background:
    radial-gradient(
      circle at 12% 48%,
      rgba(140, 82, 255, 0.09),
      transparent 26%
    ),
    #0d0f12;
}
.about-process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 10vw, 150px);
}
.about-process-copy > p:last-child {
  max-width: 500px;
  margin-top: 22px;
}
.about-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.about-process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.about-process-list li > span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}
.about-process-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}
.about-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.about-cta {
  border-top: 1px solid rgba(199, 168, 255, 0.22);
}

@media (max-width: 1100px) {
  .about-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
  }
  .about-hero-visual,
  .about-hero-visual > img {
    min-height: 430px;
    height: 430px;
  }
  .about-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-hero {
    padding: 48px 0 54px;
  }
  .about-hero-grid,
  .about-story-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-copy h1 {
    max-width: 760px;
  }
  .about-hero-visual,
  .about-hero-visual > img {
    min-height: 470px;
    height: 470px;
  }
  .about-story-grid,
  .about-process-grid {
    gap: 42px;
  }
  .about-value-card {
    min-height: 260px;
    padding: 28px;
  }
  .about-value-card h3 {
    margin-top: 42px;
  }
}

@media (max-width: 680px) {
  .about-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }
  .about-hero-visual,
  .about-hero-visual > img {
    min-height: 390px;
    height: 390px;
  }
  .about-visual-label {
    top: 14px;
    left: 14px;
  }
  .about-studio-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 20px;
  }
  .about-columns,
  .about-value-grid {
    grid-template-columns: 1fr;
  }
  .about-section-head {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .about-value-card {
    min-height: 230px;
  }
  .about-process-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-value-card {
    transition: none;
  }
}

/* Optionele bannerweergave. Verwijder alleen `about-banner-layout` van body
   om direct terug te keren naar de oorspronkelijke split-hero hierboven. */
.about-banner-layout .about-hero {
  display: flex;
  min-height: 560px;
  align-items: center;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 11, 0.99) 0%,
      rgba(7, 8, 11, 0.95) 33%,
      rgba(7, 8, 11, 0.58) 54%,
      rgba(7, 8, 11, 0.14) 79%,
      rgba(7, 8, 11, 0.42) 100%
    ),
    linear-gradient(180deg, rgba(7, 8, 11, 0.1) 55%, rgba(7, 8, 11, 0.82) 100%),
    url("../img/studio-workspace.webp") 68% center/cover no-repeat;
}

.about-banner-layout .about-hero::before {
  left: auto;
  right: -140px;
  bottom: -250px;
  width: 560px;
  height: 560px;
}

.about-banner-layout .about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #0d0f12 0%,
      rgba(13, 15, 18, 0.88) 5%,
      rgba(13, 15, 18, 0.18) 20%,
      transparent 34%,
      transparent 65%,
      rgba(13, 15, 18, 0.28) 78%,
      rgba(13, 15, 18, 0.9) 94%,
      #0d0f12 100%
    ),
    radial-gradient(
      circle at 78% 32%,
      rgba(140, 82, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(90deg, transparent 0 72%, rgba(140, 82, 255, 0.06));
  pointer-events: none;
}

.about-banner-layout .about-hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 560px;
}

.about-banner-layout .about-hero-grid::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple) 18% 72%,
    transparent
  );
}

.about-banner-layout .about-hero-copy {
  position: relative;
  z-index: 3;
  width: min(650px, 55%);
  padding: 72px 0 82px;
}

.about-banner-layout .about-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(3.35rem, 4.35vw, 4.65rem);
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.35);
}

.about-banner-layout .about-lead {
  max-width: 570px;
  color: #d1cec9;
}

.about-banner-layout .about-hero-visual {
  position: absolute;
  z-index: 2;
  inset: 0;
  min-height: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.about-banner-layout .about-hero-visual::after,
.about-banner-layout .about-hero-visual > img {
  display: none;
}

.about-banner-layout .about-visual-label {
  top: 32px;
  right: 0;
  left: auto;
  border-color: rgba(199, 168, 255, 0.32);
  background: rgba(9, 10, 13, 0.7);
}

.about-banner-layout .about-studio-card {
  right: 0;
  bottom: 34px;
  width: 380px;
  padding: 20px 24px;
  border: 0;
  border-left: 2px solid var(--purple);
  background: linear-gradient(
    90deg,
    rgba(10, 11, 15, 0.94),
    rgba(10, 11, 15, 0.76)
  );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.about-banner-layout .about-studio-card strong {
  margin: 11px 0 10px;
  font-size: 1.35rem;
}

.about-banner-layout .about-studio-card small {
  letter-spacing: 0.035em;
}

@media (min-width: 901px) {
  .about-page main .container {
    width: min(calc(100% - 60px), 1340px);
  }
}

@media (max-width: 900px) {
  .about-banner-layout .about-hero,
  .about-banner-layout .about-hero-grid {
    min-height: 700px;
  }

  .about-banner-layout .about-hero {
    background-position: 65% center;
  }

  .about-banner-layout .about-hero-copy {
    width: min(620px, 76%);
    padding-top: 76px;
  }
}

@media (max-width: 680px) {
  .about-banner-layout .about-hero,
  .about-banner-layout .about-hero-grid {
    min-height: 750px;
  }

  .about-banner-layout .about-hero {
    background:
      linear-gradient(
        180deg,
        rgba(7, 8, 11, 0.96) 0%,
        rgba(7, 8, 11, 0.76) 52%,
        rgba(7, 8, 11, 0.94) 100%
      ),
      url("../img/studio-workspace.webp") 63% center/cover no-repeat;
  }

  .about-banner-layout .about-hero-copy {
    width: 100%;
    padding: 58px 0 280px;
  }

  .about-banner-layout .about-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .about-banner-layout .about-visual-label {
    display: none;
  }

  .about-banner-layout .about-studio-card {
    right: 0;
    bottom: 30px;
    width: 100%;
  }
}

/* Dezelfde hero-opbouw als Contact, Diensten en Projecten. */
.about-page .about-hero {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  align-items: center;
  padding: 0;
  border: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 11, 0.99) 0%,
      rgba(7, 8, 11, 0.95) 34%,
      rgba(7, 8, 11, 0.64) 58%,
      rgba(7, 8, 11, 0.24) 82%,
      rgba(7, 8, 11, 0.5) 100%
    ),
    url("../img/studio-workspace.webp") 72% 46% / cover no-repeat;
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(
      180deg,
      #0d0f12 0%,
      rgba(13, 15, 18, 0.9) 5%,
      rgba(13, 15, 18, 0.18) 21%,
      transparent 36%,
      transparent 62%,
      rgba(13, 15, 18, 0.3) 76%,
      rgba(13, 15, 18, 0.92) 94%,
      #0d0f12 100%
    ),
    radial-gradient(
      circle at 78% 34%,
      rgba(140, 82, 255, 0.14),
      transparent 28%
    );
  pointer-events: none;
}

.about-page .about-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -370px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(199, 168, 255, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.about-page .about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
}

.about-page .about-hero-copy {
  max-width: 720px;
}

.about-page .about-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 4.5vw, 4.85rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-page .about-hero-copy h1 span {
  display: block;
  color: var(--violet);
}

.about-page .about-lead {
  max-width: 620px;
  margin: 0;
  color: #d1cec9;
  font-size: 1.05rem;
}

.about-hero-summary {
  padding: 24px 26px;
  border-left: 2px solid var(--purple);
  background: linear-gradient(
    90deg,
    rgba(10, 11, 15, 0.94),
    rgba(10, 11, 15, 0.7)
  );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.about-hero-summary .about-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c8c4d3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-hero-summary .about-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dde9a;
  box-shadow: 0 0 0 4px rgba(109, 222, 154, 0.12);
}

.about-hero-summary strong {
  display: block;
  margin: 14px 0 11px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.about-hero-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.about-page .about-story {
  border-top: 0;
}

@media (max-width: 900px) {
  .about-page .about-hero {
    min-height: 590px;
    padding: 0;
    background-position: 66% center;
  }
  .about-page .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 66px 0 76px;
  }
  .about-page .about-hero-copy {
    max-width: 700px;
  }
  .about-hero-summary {
    width: min(430px, 100%);
  }
}

@media (max-width: 680px) {
  .about-page .about-hero {
    min-height: 660px;
    padding: 0;
    background-position: 62% center;
  }
  .about-page .about-hero::before {
    background: linear-gradient(
      180deg,
      #0d0f12 0%,
      rgba(13, 15, 18, 0.84) 18%,
      rgba(13, 15, 18, 0.68) 58%,
      #0d0f12 100%
    );
  }
  .about-page .about-hero-grid {
    gap: 34px;
    padding: 54px 0 68px;
  }
  .about-page .about-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }
  .about-hero-summary {
    padding: 20px;
  }
}
