/* ─── ABOUT PAGE HERO ─── */
.page-hero {
  padding: 200px 64px 100px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 0;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,1,1,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}
.hero-divider {
  width: 64px;
  height: 2px;
  background: var(--red);
  margin-top: 48px;
  position: relative;
}

/* ─── BODY ─── */
.about-body {
  padding: 0 64px 120px;
}
.about-body-inner {
  max-width: 720px;
  border-left: 2px solid rgba(196,1,1,0.2);
  padding-left: 36px;
}
.about-body p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 28px;
}
.about-body p:last-child { margin-bottom: 0; }

/* Pull-quote */
.about-pullquote {
  max-width: 720px;
  margin-top: 56px;
  padding: 0;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  padding-left: 36px;
  border-left: 3px solid var(--red);
}

/* ─── FOUNDER ─── */
.about-founder {
  padding: 120px 64px;
}
.about-founder.light-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.about-founder-inner {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
}
.about-founder-photo {
  position: relative;
  overflow: hidden;
}
.about-founder-photo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 60%;
  height: 60%;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  pointer-events: none;
}
.about-founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%);
}
.about-founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.about-founder-text p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* ─── VP LAND ─── */
.about-vp-land {
  padding: 120px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}
.about-vp-land-inner {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  margin: 0 auto;
}
.about-vp-land-text p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 8px;
}
.about-vp-land-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-land-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 48px 56px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s;
}
.about-vp-land:hover .vp-land-logo-mark {
  border-color: rgba(196,1,1,0.4);
}
.vpl-vp {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: 0.15em;
  line-height: 0.85;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.3s;
}
.about-vp-land:hover .vpl-vp { opacity: 1; }
.vpl-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 12px 0;
}
.vpl-land {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.about-vp-land:hover .vpl-land { color: rgba(255,255,255,0.7); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .page-hero { padding: 160px 28px 64px; }
  .about-body { padding: 0 28px 80px; }
  .about-body-inner { padding-left: 24px; }
  .about-pullquote { padding-left: 24px; font-size: 24px; }
  .about-founder { padding: 80px 28px; }
  .about-founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-founder-photo { max-width: 240px; }
  .about-vp-land { padding: 80px 28px; }
  .about-vp-land-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-vp-land-logo { display: none; }
}
