/* ============================================================
   ABOUT PAGE CSS
   ============================================================ */

/* ---- About Hero ---- */
.about-hero {
  padding-top: 180px;
  padding-bottom: 120px;
}

.about-hero__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-hero__title {
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 60px;
}

.about-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.about-hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .about-hero__split { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Story Section ---- */
.story-section {
  padding-bottom: 0;
}

.story__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  margin-bottom: 80px;
}

.story__image-inner {
  width: 100%;
  height: auto; 
  background: transparent;
  display: block;
  will-change: transform;
}

.story__image-inner img.story__image-img {
  width: 100%;
  height: auto;
  object-fit: cover; /* can be container if full height */
  display: block;
  transform: scale(1.15); /* give parallax room so it doesn't show gaps */
}

.story__image-label {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem); /* slightly tightened to prevent breaking */
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.25); /* increased opacity (~25%) */
  margin-top: 10px;
}

.story__split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.story__sticky {
  position: sticky;
  top: 120px;
}

.story__sticky h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 16px 0px;
}

.story__sticky h4 {
  font-size: clamp(1.2rem, 2.5vw, 2.0rem);
  margin: 20px 0px 12px 0px;
}

.story__sticky p {
  color:var(--text-secondary);
  margin-top:20px;
  font-size: 1rem;
  line-height: 1.7;
}

.story__items {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 60px;
}

.story__item:not(:last-child) {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.story__item h4 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.story__item p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .story__split { grid-template-columns: 1fr; gap: 40px; }
  .story__sticky { position: static; }
  .story__image-wrap { height: auto; }
  
  .story__items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .story__item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .story__items {
    gap: 20px;
  }
  .story__item p {
    font-size: 0.85rem;
  }
}

/* ---- Team Section ---- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.team-card {
  background: var(--bg-primary);
  padding: 48px 40px;
  transition: background var(--dur-med) ease;
}

.team-card:hover { background: var(--bg-card); }

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-secondary);
  overflow: hidden;
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .team__grid { grid-template-columns: 1fr; }
}

/* ---- Values Section ---- */
.values__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-item {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.value-item__num {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.value-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .values__list { grid-template-columns: 1fr; }
}
