/* ============================================================
   BRESKO — About Page CSS
   Hero · Philosophy · Team · CTA
   ============================================================ */

/* ── About Hero ─────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 20%, rgba(122,30,53,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,45,85,0.04) 0%, transparent 60%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 64px;
  padding-top: 12rem;
  padding-bottom: 8rem;
  width: 100%;
}
.about-hero-label { margin-bottom: 2.5rem; }
.about-hero-title {
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 0.2rem;
}
.about-hero-title-2 {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 10rem);
  letter-spacing: -0.02em;
  color: var(--accent-warm);
  line-height: 1.1;
  margin-bottom: 4rem;
}
.about-hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.about-hero-sub-left p,
.about-hero-sub-right p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Philosophy ─────────────────────────────────────────────── */
.philosophy {
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-eyebrow { margin-bottom: 3rem; }
.philosophy-headline {
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: 1000px;
  margin-bottom: 3rem;
}
.philosophy-headline .editorial { color: var(--accent); }
.philosophy-headline .accent-burgundy { color: var(--accent-burgundy); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
}
.philosophy-col-title {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--accent-warm);
}
.philosophy-col-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── Numbers / Stats ────────────────────────────────────────── */
.about-stats {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.about-stat-item {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.3s ease;
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: rgba(255,45,85,0.02); }
.about-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-stat-number span { color: var(--accent); }
.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Team Section ───────────────────────────────────────────── */
.team {
  padding: 10rem 0;
}
.team-header { margin-bottom: 5rem; }
.team-headline {
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  margin-top: 1.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  overflow: hidden;
  cursor: none;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.team-card:hover {
  border-color: rgba(255,45,85,0.3);
  background: rgba(17,17,17,0.9);
  box-shadow: 0 0 40px rgba(255,45,85,0.06), 0 0 80px rgba(255,45,85,0.03);
}

/* Glass shimmer */
.team-card-shimmer {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,45,85,0.03) 50%, transparent 100%);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.team-card:hover .team-card-shimmer { transform: translateX(100%) rotate(45deg); }

/* Avatar placeholder */
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.team-card:hover .team-avatar { border-color: rgba(255,45,85,0.4); }
.team-avatar-initials {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Glow dot */
.team-card-glow {
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,45,85,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.team-card:hover .team-card-glow { opacity: 1; }

.team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.team-divider {
  width: 24px; height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
  transition: width 0.4s ease, background 0.4s ease;
}
.team-card:hover .team-divider { width: 40px; background: var(--accent); }

/* ── About CTA ──────────────────────────────────────────────── */
.about-cta {
  padding: 10rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,45,85,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.about-cta-overline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-cta-headline {
  font-size: clamp(3rem, 7vw, 8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 3rem;
}
.about-cta-headline .editorial { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid .about-stat-item:nth-child(2) { border-right: none; }
  .about-stats-grid .about-stat-item:nth-child(3),
  .about-stats-grid .about-stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .about-hero-content { padding: 0 24px; padding-top: 10rem; padding-bottom: 5rem; }
  .about-hero-sub { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
