/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — Supplemental Styles
═══════════════════════════════════════════════════════════ */

/* ── STORY ───────────────────────────────────────────────── */
.story {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story__visual {
  position: relative;
}

.studio-photo-mock {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.studio-photo-mock__inner {
  text-align: center;
  color: rgba(255,255,255,.72);
  max-width: 260px;
  padding: calc(var(--space-xl) + 0.5rem) var(--space-lg) 4.75rem;
}

.studio-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: var(--space-md);
  transform: translateY(-0.15rem);
}

.studio-icon i {
  color: rgba(232, 201, 106, 0.92);
  filter: drop-shadow(0 8px 18px rgba(15,30,56,.22));
}

.studio-photo-mock__inner p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 0.25rem;
}

.studio-photo-mock__inner small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,.56);
}

.studio-photo-mock__meters {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  margin-top: var(--space-lg);
}

.studio-photo-mock__meters span {
  width: 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, var(--gold-light), rgba(255,255,255,.3));
  box-shadow: 0 0 12px rgba(232,201,106,.22);
  animation: meterPulse 1.8s ease-in-out infinite;
}

.studio-photo-mock__meters span:nth-child(1) { height: 18px; animation-delay: -0.1s; }
.studio-photo-mock__meters span:nth-child(2) { height: 34px; animation-delay: -0.35s; }
.studio-photo-mock__meters span:nth-child(3) { height: 24px; animation-delay: -0.2s; }
.studio-photo-mock__meters span:nth-child(4) { height: 42px; animation-delay: -0.5s; }
.studio-photo-mock__meters span:nth-child(5) { height: 30px; animation-delay: -0.3s; }
.studio-photo-mock__meters span:nth-child(6) { height: 20px; animation-delay: -0.15s; }

@keyframes meterPulse {
  0%, 100% { transform: scaleY(0.9); opacity: 0.7; }
  50% { transform: scaleY(1.12); opacity: 1; }
}

.studio-photo-mock__badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 3rem);
}
.studio-photo-mock__badge i { color: var(--gold); }

.story__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}
.story__text strong { color: var(--navy); }

.story__values {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}
.value-tag i { color: var(--gold); font-size: 0.75rem; }

/* ── TEAM ────────────────────────────────────────────────── */
.team {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.team-card__photo-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.team-card__photo--1 .team-card__photo-inner { background: linear-gradient(135deg, #1a2a4a, #2d4a7a); }
.team-card__photo--2 .team-card__photo-inner { background: linear-gradient(135deg, #8b1a2a, #c0392b); }
.team-card__photo--3 .team-card__photo-inner { background: linear-gradient(135deg, #2d5a27, #1b4a1b); }
.team-card__photo--4 .team-card__photo-inner { background: linear-gradient(135deg, #c9a84c, #a07830); }

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.team-card__tags span {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* ── STUDIO SECTION ──────────────────────────────────────── */
.studio-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.studio-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.studio-feature {
  padding: var(--space-2xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--cream-dark);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.studio-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.studio-feature__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-gold);
}

.studio-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.studio-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── MANIFESTO ───────────────────────────────────────────── */
.manifesto {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.manifesto__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.manifesto__quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(201,168,76,.2);
  margin-bottom: var(--space-lg);
  user-select: none;
}

.manifesto__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: var(--space-xl);
}

.manifesto__author {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story__visual {
    order: -1;
    padding-bottom: 2.5rem;
  }
  .studio-photo-mock {
    aspect-ratio: auto;
    min-height: 270px;
  }
  .studio-photo-mock__inner {
    padding: calc(var(--space-lg) + 0.5rem) var(--space-lg) calc(var(--space-xl) + 0.25rem);
  }
  .studio-icon {
    font-size: 2.6rem;
    transform: none;
  }
  .studio-photo-mock__meters {
    margin-top: var(--space-md);
  }
  .studio-photo-mock__badge {
    left: 50%;
    bottom: -1.2rem;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 2rem);
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .studio-features { grid-template-columns: 1fr; }
}
