/* =====================
   PAGE HERO
   ===================== */
.page-hero {
  background: var(--slate-dark);
  padding: 140px 48px 80px;
  border-bottom: 3px solid var(--slate);
}
.page-hero-inner { max-width: 800px; }
.page-hero .eyebrow { color: rgba(255,255,255,0.4); margin-bottom:16px; }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.3); }
.page-title {
  font-size: clamp(42px,6vw,80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
}

/* =====================
   ABOUT PAGE LAYOUT
   ===================== */
.about-page {
  background: var(--white);
  padding: 80px 48px 100px;
}
.about-page-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* PHOTO COLUMN */
.about-page-photo-wrap {
  position: relative;
  margin-bottom: 36px;
}
.about-page-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 65%; height: 55%;
  border: 1.5px solid var(--slate-light);
  border-radius: 2px; opacity: 0.35;
}
.about-page-photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.about-page-credentials {
  background: var(--cream);
  padding: 24px;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.cred-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}

/* STORY COLUMN */
.about-page-story p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-lead {
  font-size: 22px !important;
  font-weight: 500 !important;
  color: var(--text) !important;
  margin-bottom: 28px !important;
}
.about-divider {
  width: 48px;
  height: 2px;
  background: var(--slate);
  margin: 40px 0;
}
.about-section-head {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.about-philosophy {
  background: var(--slate-dark);
  padding: 32px 36px;
  border-radius: 2px;
  margin: 28px 0;
  position: relative;
}
.about-philosophy::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-size: 120px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}
.about-philosophy p {
  font-size: 18px !important;
  font-weight: 300 !important;
  color: #fff !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

/* NAV ACTIVE STATE */
.nav-links a.active { color: var(--slate-dark); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .page-hero { padding: 100px 24px 60px; }
  .about-page { padding: 48px 24px 60px; }
  .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-page-photo-wrap img { height: 320px; }
}
