/* ===========================
   COPA WATCHES — About Page
=========================== */

/* ABOUT HERO */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.8);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.98) 0%,
    rgba(10, 8, 5, 0.5) 50%,
    rgba(10, 8, 5, 0.1) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  animation: heroFadeUp 1.2s 0.3s ease both;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.about-hero-title em { color: var(--gold-light); font-style: italic; }

/* ORIGIN */
.origin {
  background: var(--dark);
  padding: 120px 64px;
}

.origin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.origin-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}

.origin-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.origin-img-frame {
  position: relative;
  border: 1px solid rgba(201, 150, 58, 0.2);
  padding: 12px;
}

.origin-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(30%) brightness(0.8) saturate(1.3);
}

.origin-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-pale);
}

/* VISION */
.vision {
  background: var(--black);
  padding: 120px 64px;
}

.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vision-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.vision-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 72px;
}
.vision-title em { color: var(--gold-light); font-style: italic; }

.vision-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.vision-col {
  border-top: 1px solid rgba(201, 150, 58, 0.25);
  padding-top: 32px;
}

.vision-col h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}

.vision-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* TEAM */
.team {
  background: var(--dark-2);
  padding: 120px 64px;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-card {
  background: var(--dark);
  padding: 48px 40px;
  border: 1px solid rgba(201, 150, 58, 0.1);
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover {
  border-color: rgba(201, 150, 58, 0.3);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-av-1 { background: linear-gradient(135deg, #8B5E1A, #C9963A); }
.team-av-2 { background: linear-gradient(135deg, #0D1A3A, #3A5A9E); }
.team-av-3 { background: linear-gradient(135deg, #1A3A1A, #3A9E5A); }

.avatar-initials {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: rgba(10,8,5,0.7);
}

.team-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.team-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.team-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.team-detail span {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.1em;
}

/* VALUES */
.values {
  background: var(--dark-3);
  padding: 120px 64px;
}

.values-inner {
  max-width: 900px;
  margin: 0 auto;
}

.values-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.value-item {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(201, 150, 58, 0.1);
  align-items: flex-start;
}

.value-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.value-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* ABOUT CTA */
.about-cta {
  background: var(--dark);
  padding: 120px 64px;
  text-align: center;
  border-top: 1px solid rgba(201, 150, 58, 0.15);
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .origin-inner { grid-template-columns: 1fr; }
  .vision-columns { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-hero-content { padding: 0 24px 64px; }
  .origin, .vision, .team, .values, .about-cta { padding: 80px 24px; }
  .value-item { flex-direction: column; gap: 16px; }
}

/* ===========================
   NARRATIVE TIMELINE
=========================== */
.narrative {
  background: var(--black);
  padding: 100px 64px;
  border-top: 1px solid rgba(201, 150, 58, 0.08);
}

.narrative-inner {
  max-width: 800px;
  margin: 0 auto;
}

.narrative-timeline {
  position: relative;
  padding-left: 32px;
}

.narrative-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,150,58,0.4) 10%, rgba(201,150,58,0.4) 90%, transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 56px;
}
.timeline-item-last { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -29px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,58,0.5);
  background: var(--black);
}

.timeline-marker-gold {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,150,58,0.4);
}

.timeline-date {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
}

.timeline-content em {
  color: var(--light-text);
  font-style: italic;
}

/* Origin quote span */
.origin-quote span {
  display: block;
  font-size: 13px;
  font-style: normal;
  opacity: 0.55;
  margin-top: 8px;
  font-family: var(--font-body);
}

/* Team linkedin link */
.team-linkedin {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,150,58,0.3);
  padding-bottom: 2px;
  transition: border-color var(--transition), color var(--transition);
}
.team-linkedin:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 768px) {
  .narrative { padding: 80px 24px; }
}

/* ===========================
   JUNGLE DIVIDER
=========================== */
.jungle-divider {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.jungle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: brightness(0.7) saturate(1.2);
}

.jungle-divider:hover .jungle-img {
  transform: scale(1.0);
}

.jungle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.5) 0%,
    rgba(10,8,5,0.15) 40%,
    rgba(10,8,5,0.15) 60%,
    rgba(10,8,5,0.6) 100%
  );
}

.jungle-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 40px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.jungle-text em {
  font-style: italic;
  color: var(--gold-pale);
}

.jungle-text span {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ===========================
   FOUNDERS PHOTO & GIF
=========================== */
.founders-still {
  object-position: center 20%;
  filter: brightness(0.85) contrast(1.05);
}

.founders-gif-wrap {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.founders-gif {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  filter: brightness(0.8) contrast(1.1) saturate(0.85);
}

.founders-gif-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.4) 0%,
    transparent 20%,
    transparent 75%,
    rgba(10,8,5,0.8) 100%
  );
  pointer-events: none;
}

.founders-gif-caption {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: var(--light-text);
  opacity: 0.8;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .founders-gif { max-height: 380px; }
  .founders-gif-caption { font-size: 15px; bottom: 20px; }
}

/* Hide quote translation when empty (PT mode) */
.origin-quote-translation:empty { display: none; }
.origin-quote-translation {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--warm-gray);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* Lean CTA — button only */
.about-cta .about-cta-inner {
  display: flex;
  justify-content: center;
  padding: 80px 64px;
}

/* ===========================
   TEAM — lean names only
=========================== */
.team-names {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201, 150, 58, 0.15);
}

.team-name-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(201, 150, 58, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-name-item:last-child { border-right: none; }

.team-name-item .team-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

@media (max-width: 768px) {
  .team-names { grid-template-columns: 1fr; }
  .team-name-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 150, 58, 0.1);
    padding: 32px 24px;
  }
  .team-name-item:last-child { border-bottom: none; }
}
