/* ============================================================
   ABOUT PAGE — STYLES
   ============================================================ */

/* ---- PAGE HEADER ---- */
.about-page-header {
  position: relative;
  z-index: 3;
  padding: 160px 28px 80px;
  text-align: center;
  overflow: hidden;
  /* Light source from bottom-left */
  background: radial-gradient(ellipse 70% 50% at 8% 100%,
    rgba(139,0,0,0.1) 0%, transparent 65%);
}


.about-header-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 7rem) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
  /* Slight off-center — broken symmetry */
  transform: translateX(-1%);
}

.about-header-sub {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  letter-spacing: 0.35em;
  color: var(--white-dim);
  opacity: 0.4;
  margin-top: 14px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ---- SHARED SECTION WRAPPER ---- */
.about-section {
  position: relative;
  z-index: 3;
  padding: 80px 0 100px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- LABEL SECTION ---- */
.about-block {
  margin-bottom: 70px;
}

.about-kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  /* Clip-path waveform top on this block */
}

.about-body {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.95;
  color: var(--white-dim);
  margin-bottom: 22px;
  /* Bleed left edge */
  margin-left: -6px;
  padding-left: 6px;
  border-left: 2px solid transparent;
  transition: border-color 600ms ease;
}

.about-body:hover {
  border-left-color: rgba(139,0,0,0.4);
}

/* ---- PRINCIPLES ROW ---- */
.principles-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 60px 0;
  /* Rotated slightly */
  transform: rotate(-0.5deg) translateX(-8px);
}

.principle-card {
  flex: 1;
  padding: 36px 32px;
  background: rgba(20, 12, 32, 0.7);
  border: 1px solid rgba(90, 56, 144, 0.15);
}

.principle-card:first-child {
  border-right: none;
  border-radius: 3px 0 0 3px;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
}

.principle-card:last-child {
  border-left: none;
  border-radius: 0 3px 3px 0;
  clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
}

.principle-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(139,0,0,0.3);
}

.principle-def {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--white-dim);
  opacity: 0.6;
  letter-spacing: 0.03em;
}

.principle-divider {
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--accent) 30%,
    var(--accent) 70%,
    transparent 100%
  );
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---- CLOSING LINE ---- */
.about-closing {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  text-align: center;
  opacity: 0.75;
  margin-top: 20px;
}

.about-closing strong {
  color: var(--white);
  font-weight: 900;
}

/* ---- FOUNDER SECTION ---- */
.founder-section {
  clip-path: polygon(
    0 3%, 10% 0, 22% 2%, 36% 0.5%, 50% 2.5%,
    64% 0, 78% 1.5%, 90% 0, 100% 2%, 100% 100%, 0 100%
  );
  padding-top: 120px;
  background:
    linear-gradient(135deg, rgba(139,0,0,0.05) 0%, transparent 40%),
    rgba(10, 6, 20, 0.55);
}

.founder-inner {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}

/* Photo column */
.founder-photo-col { padding-top: 6px; }

.founder-photo-wrap { position: relative; }

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 3px;
  background: linear-gradient(160deg, #0e0818 0%, #1a1028 50%, #0b0614 100%);
  border: 1px solid rgba(90, 56, 144, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Slight tilt for broken symmetry */
  transform: rotate(-1deg);
}

/* Real founder photo */
.founder-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(90, 56, 144, 0.25);
  display: block;
  /* Slight tilt for broken symmetry — matches site's intentional asymmetry */
  transform: rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.photo-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  opacity: 0.3;
  text-transform: uppercase;
  line-height: 1.8;
  text-align: center;
}

/* Text column */
.founder-text-col { padding-top: 4px; }

.founder-kicker {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 8px;
}

.founder-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  opacity: 0.45;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.founder-bio {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 18px;
  opacity: 0.85;
}

.founder-bio--close {
  font-style: italic;
  opacity: 0.65;
  margin-bottom: 36px;
}

.founder-cta {
  display: inline-block;
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE — ABOUT
   ============================================================ */
@media (max-width: 820px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-photo-placeholder,
  .founder-photo-img {
    max-width: 260px;
    margin: 0 auto;
    transform: none;
  }

  .principles-row {
    transform: none;
    flex-direction: column;
    gap: 2px;
  }

  .principle-card:first-child,
  .principle-card:last-child {
    clip-path: none;
    border-radius: 3px;
    border: 1px solid rgba(90, 56, 144, 0.15);
  }

  .principle-divider { width: 100%; height: 2px; }
}

@media (max-width: 600px) {
  .about-header-title { transform: none; }
  .about-body { margin-left: 0; padding-left: 0; }
  .founder-section { clip-path: none; padding-top: 80px; }
}
