/*
 * about.css
 *  — Ecological Luxury Design System
 * Page: About / Biography — Page-specific styles only
 * Version: 1.0 — April 2026
 * ═══════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════
   BIOGRAPHY TIMELINE
   ═══════════════════════════════════════════════════════ */
.about-timeline {
  border-left: 1px solid rgba(74,94,62,0.35);
  padding-left: 0;
  position: relative;
}

.about-tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 0 0 2.8rem 2.5rem;
  position: relative;
}
.about-tl-item:last-child {
  padding-bottom: 0;
}

.about-tl-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lichen);
  opacity: 0.85;
}

.about-tl-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 400;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  padding-top: 0.1rem;
}

.about-tl-body h3 {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  margin-bottom: 0.5rem;
}

.about-tl-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 54ch;
}

@media (max-width: 600px) {
  .about-tl-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}


/* ═══════════════════════════════════════════════════════
   VALUES — three pillars
   ═══════════════════════════════════════════════════════ */
.about-values {
  margin-top: 2.5rem;
}

.about-value {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(74,94,62,0.2);
}
.about-value:first-child {
  border-top: 1px solid rgba(74,94,62,0.2);
}

.about-value h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  margin-bottom: 0.4rem;
}

.about-value p {
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════
   CJW LINK — reusable across About page
   ═══════════════════════════════════════════════════════ */
.page-about .cjw-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(184,147,74,0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.page-about .cjw-link:hover {
  color: var(--white);
  border-color: var(--white);
}
