/* ============================================================
   HRS OUTBOOKS LLC — ABOUT PAGE STYLES
   ============================================================ */

/* ─── Page Hero (Interior) ─── */
.page-hero {
  min-height: 60vh;
  background: var(--navy-dark);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 30, 66, 0.9) 0%, rgba(11, 61, 145, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.breadcrumb-link:hover { color: var(--white); }

.breadcrumb-sep { opacity: 0.4; }

.breadcrumb-current { color: var(--cyan-accent); font-weight: 600; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── About Story ─── */
.about-story-section {
  background: var(--white);
}

.about-story-visual {
  position: relative;
}

.about-story-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.about-story-img-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl);
  display: block;
}

.about-story-badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--grad-primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-story-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-story-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

/* Mission/Vision Cards */
.mv-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mv-card-mission {
  background: var(--grad-primary);
  color: var(--white);
}

.mv-card-vision {
  background: var(--light-bg);
  border: 1px solid rgba(11, 61, 145, 0.08);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-card-mission .mv-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.mv-card-vision .mv-icon {
  background: rgba(30, 94, 255, 0.08);
  color: var(--primary-bright);
}

.mv-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-card-mission .mv-title { color: var(--white); }
.mv-card-vision .mv-title { color: var(--text-dark); }

.mv-desc { font-size: 0.9rem; line-height: 1.8; }
.mv-card-mission .mv-desc { color: rgba(255,255,255,0.8); }
.mv-card-vision .mv-desc { color: var(--text-muted); }

/* ─── Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid rgba(11, 61, 145, 0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(30, 94, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -8px;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(30, 94, 255, 0.3);
  transition: all 0.4s var(--ease-bounce);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 30px rgba(30, 94, 255, 0.5);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Team Section ─── */
.team-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 61, 145, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(30, 94, 255, 0.15);
}

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo img { transform: scale(1.06); }

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-navy);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.team-card:hover .team-photo-overlay { opacity: 0.7; }

.team-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.team-social:hover { background: var(--primary-bright); }

.team-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--primary-bright);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-story-img-small { display: none; }
  .about-story-badge { left: 16px; top: 16px; }
}
