/* ================================================================
   FIT PRO LADY — ABOUT PAGE STYLES
   ================================================================ */

/* ============ ABOUT PAGE ============ */
.page-hero {
  padding: 10rem var(--gutter) 5rem;
  position: relative;
}
.page-hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.page-hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.page-hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.page-hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,7,0.7));
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-tile);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.portrait-tag .pulse {
  width: 10px; height: 10px;
  background: var(--brand-lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--brand-lime);
}
.portrait-tag .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}
.portrait-tag .since {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  margin: 1.5rem 0 1.5rem;
}
.page-hero .lede {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 1.25rem;
  border-left: 1px solid var(--brand-amber);
  margin: 1.5rem 0 2rem;
}
.page-hero p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 540px;
}

/* ============ VALUES GRID ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius-card);
  position: relative;
  transition: transform 0.5s ease;
}
.value-card:hover { transform: translateY(-6px); }
.value-num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--brand-amber);
  margin-bottom: 1.5rem;
  display: block;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.value-card h3 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.value-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ============ TIMELINE ============ */
.timeline-wrap {
  padding: 3rem;
  border-radius: var(--radius-card);
  position: relative;
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--brand-amber), var(--brand-emerald), transparent);
}
.tl-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--stage-0);
  border: 2px solid var(--brand-amber);
  box-shadow: 0 0 12px rgba(255,180,39,0.5);
}
.tl-item .year {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--brand-amber);
  margin-bottom: 0.5rem;
}
.tl-item h4 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.tl-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 540px;
}

/* ============ PHILOSOPHY QUOTE ============ */
.philosophy {
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,140,26,0.12), transparent 60%);
  pointer-events: none;
}
.philosophy-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.philosophy-quote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin: 1.5rem 0;
}
.philosophy-quote em {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ TEAM CREDENTIALS ============ */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cred-card {
  padding: 1.75rem;
  border-radius: var(--radius-card);
  text-align: center;
}
.cred-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--stage-0);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(255,140,26,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.cred-card h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.cred-card p {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 980px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-portrait { aspect-ratio: 4/4; max-height: 520px; }
  .values-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .timeline-wrap { padding: 1.75rem; }
}