/* ========== ABOUT PAGE CSS ========== */

/* ---- ABOUT HERO ---- */
.about-hero .ph-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(140,107,61,0.06) 0%, transparent 60%);
}

/* ---- MISSION / VISION ---- */
.mv-section {
  display: flex; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 4rem;
  gap: 2rem;
}
.mv-card {
  flex: 1; padding: 4rem;
  background: var(--bg);
  border: 1.5px solid var(--white-faint);
  border-radius: 20px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.mv-card:hover {
  border-color: rgba(140,107,61,0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.mv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s ease;
}
.mv-card:hover::before { transform: scaleX(1); }
.mv-icon {
  width: 56px; height: 56px;
  background: rgba(140,107,61,0.09);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition-fast);
}
.mv-icon svg { width: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.mv-card:hover .mv-icon { background: rgba(140,107,61,0.18); }
.mv-card h3 { margin-bottom: 1rem; font-size: 1.8rem; }
.mv-card p { color: var(--white-dim); line-height: 1.9; font-size: 0.95rem; }
.mv-divider { display: none; }

/* ---- TIMELINE ---- */
.timeline-section { padding: 8rem 4rem; background: var(--bg2); }
.timeline-section h2 { margin: 0.5rem 0 5rem; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(140,107,61,0.1));
  transform: translateX(-50%);
}
.tl-item {
  position: relative; width: 44%; margin-bottom: 4rem;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-item.left { margin-left: 0; text-align: right; }
.tl-item.right { margin-left: 56%; }
.tl-dot {
  position: absolute; width: 16px; height: 16px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 4px rgba(140,107,61,0.15);
  top: 8px;
}
.tl-item.left .tl-dot { right: -10%; }
.tl-item.right .tl-dot { left: -10%; }
.tl-dot.pulse { animation: dotPulse 2s ease infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(140,107,61,0.15); }
  50% { box-shadow: 0 0 0 12px rgba(140,107,61,0); }
}
.tl-year {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--gold); line-height: 1; display: block; margin-bottom: 0.5rem;
}
.tl-content {
  background: var(--bg);
  border: 1.5px solid var(--white-faint);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.tl-content h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.tl-content p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.8; }
.active-tl .tl-year { color: var(--gold-light); }
.active-tl .tl-content {
  border-color: rgba(140,107,61,0.28);
  background: linear-gradient(135deg, rgba(140,107,61,0.03), rgba(176,141,90,0.05));
}

/* ---- TEAM ---- */
.team-section { padding: 8rem 4rem; }
.team-section h2 { margin: 0.5rem 0 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1300px; margin: 0 auto; }
.team-card { position: relative; }
.team-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.team-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.team-overlay {
  position: absolute; inset: 0;
  background: rgba(253,250,242,0.93);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-overlay p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.8; text-align: center; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); filter: brightness(0.6); }
.team-card:hover .team-overlay { opacity: 1; }
.team-info { padding: 1.5rem 0 0; border-top: 2px solid var(--white-faint); margin-top: 1rem; }
.team-info h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-info span { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- VALUES ---- */
.values-section {
  padding: 8rem 4rem; background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  max-width: 1400px; margin: 0 auto;
}
.values-left .eyebrow { margin-bottom: 0.75rem; }
.values-left h2 { margin-bottom: 1.5rem; }
.values-left p { color: var(--white-dim); line-height: 1.9; margin-bottom: 2.5rem; }
.values-img { width: 100%; height: 280px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.value-item {
  display: flex; gap: 2rem; padding: 2rem 0;
  border-bottom: 1.5px solid var(--white-faint);
  transition: border-color var(--transition-fast);
}
.value-item:first-child { border-top: 1.5px solid var(--white-faint); }
.value-item:hover { border-bottom-color: var(--gold); }
.val-num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--gold); opacity: 0.3; line-height: 1; flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.value-item:hover .val-num { opacity: 0.7; }
.val-text h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.val-text p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.8; }

/* ---- SUSTAINABILITY CALLOUT ---- */
.sustain-section {
  padding: 7rem 4rem;
  background: var(--white);
  text-align: center;
  position: relative; overflow: hidden;
}
.sustain-section::before {
  content: 'ECO';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 20rem;
  color: rgba(253,250,242,0.04); line-height: 1; pointer-events: none;
}
.sustain-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.sustain-inner .eyebrow { background: rgba(253,250,242,0.12); color: var(--bg2); }
.sustain-inner h2 { color: var(--bg); margin: 0.5rem 0 2rem; font-size: clamp(2.5rem, 5vw, 5rem); }
.sustain-inner p { color: rgba(253,250,242,0.7); font-size: 1.05rem; line-height: 1.9; margin-bottom: 3rem; }
.sustain-pills {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.sustain-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(253,250,242,0.1); border: 1px solid rgba(253,250,242,0.18);
  color: var(--bg); border-radius: 30px;
  padding: 0.7rem 1.4rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition-fast);
}
.sustain-pill:hover { background: rgba(253,250,242,0.2); }
.sustain-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* ---- NUMBERS BANNER ---- */
.numbers-banner {
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  gap: 0;
}
.nb-item {
  flex: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 2rem;
}
.nb-item > span:first-child { font-family: var(--font-display); font-size: 5rem; color: #fff; line-height: 1; }
.nb-item > span:nth-child(2) { font-family: var(--font-display); font-size: 3rem; color: rgba(255,255,255,0.8); }
.nb-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.nb-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-section { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
  .mv-section { flex-direction: column; padding: 4rem 1.5rem; gap: 1.5rem; }
  .timeline-section, .team-section, .numbers-banner { padding: 5rem 1.5rem; }
  .values-section { padding: 5rem 1.5rem; }
  .sustain-section { padding: 5rem 1.5rem; }
  .timeline::before { left: 0; transform: none; }
  .tl-item { width: 85%; margin-left: 10% !important; text-align: left !important; }
  .tl-item.left .tl-dot, .tl-item.right .tl-dot { left: -14% !important; right: auto !important; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .numbers-banner { flex-wrap: wrap; }
  .nb-divider { display: none; }
  .nb-item { min-width: 40%; }
  .sustain-pills { gap: 0.75rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}
