/* About page — Urban Solar */

/* ===== HERO ===== */
.about-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--us-white);
  text-align: center;
  background-color: #0a0e14;
  background-image:
    linear-gradient(180deg, rgba(0,0,15,.55) 0%, rgba(0,0,15,.55) 60%, rgba(0,0,37,.85) 100%),
    url('../public/images/2025/02/Urban-Solar-Andre-Virgin.webp');
  background-size: cover;
  background-position: center;
  padding: 160px 0 90px;
}
.about-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.about-hero .tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--us-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 22px;
}
.about-hero h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .005em;
  margin: 0 0 16px;
}
.about-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== "We exist to alter..." dark intro block ===== */
.about-intro {
  background: var(--us-navy);
  color: var(--us-white);
  padding: 90px 0;
}
.about-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-intro-header { text-align: center; margin-bottom: 40px; }
.about-intro-header .eyebrow { justify-content: center; color: var(--us-orange); }
.about-intro-header h2 {
  color: var(--us-white);
  font-size: 30px;
  font-weight: 600;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.3;
}
.about-intro-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto 56px;
}
.about-intro-body p {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.about-intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.about-intro-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 26px 28px;
}
.about-intro-card .label {
  color: var(--us-orange);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
}
.about-intro-card h3 {
  color: var(--us-white);
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 600;
}
.about-intro-card p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===== "Any project. Anytime. Anywhere." centered intro ===== */
.about-any {
  padding: 80px 0;
  text-align: center;
  background: var(--us-white);
}
.about-any .container { max-width: 880px; }
.about-any .eyebrow { justify-content: center; }
.about-any h2 {
  font-size: 38px;
  color: var(--us-navy);
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.2;
}
.about-any p {
  color: var(--us-text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 780px;
}

/* ===== TIMELINE ===== */
.timeline {
  background: #F7F7F7;
  padding: 90px 0;
}
.timeline-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
/* Vertical line down the middle (behind year circles) */
.timeline-inner::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--us-orange);
  opacity: .6;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--us-orange);
  color: var(--us-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--us-font);
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(238,62,40,.25);
  z-index: 2;
  position: relative;
}
.timeline-card {
  background: var(--us-white);
  border-radius: 12px;
  padding: 26px 32px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* Small connector from circle to card */
.timeline-card::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--us-white);
}
.timeline-card h3 {
  color: var(--us-navy);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}
.timeline-card p {
  color: var(--us-text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Final orange CTA ===== */
.about-cta {
  background: var(--us-orange);
  color: var(--us-white);
  text-align: center;
  padding: 60px 24px;
}
.about-cta h2 {
  font-size: 34px;
  color: var(--us-white);
  font-weight: 600;
  margin: 0 0 24px;
}
.about-cta .btn-white {
  background: var(--us-white);
  color: var(--us-orange);
  border-color: var(--us-white);
  padding: 16px 44px;
  border-radius: 100px;
  font-weight: 600;
}
.about-cta .btn-white:hover { background: #f7f7f7; border-color: #f7f7f7; color: var(--us-orange); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-hero { min-height: 480px; padding: 130px 0 70px; }
  .about-hero h1 { font-size: 46px; }
  .about-intro-body { gap: 28px; }
  .about-any h2 { font-size: 32px; }
}
@media (max-width: 700px) {
  .about-hero { padding: 120px 0 60px; }
  .about-hero h1 { font-size: 34px; }
  .about-hero p { font-size: 16px; }
  .about-intro { padding: 64px 0; }
  .about-intro-body, .about-intro-cards { grid-template-columns: 1fr; }
  .about-any { padding: 56px 0; }
  .about-any h2 { font-size: 26px; }
  .timeline { padding: 60px 0; }
  .timeline-inner::before { left: 36px; }
  .timeline-item { grid-template-columns: 72px 1fr; gap: 18px; margin-bottom: 22px; }
  .timeline-year { width: 72px; height: 72px; font-size: 15px; }
  .timeline-card { padding: 18px 20px; }
  .timeline-card h3 { font-size: 16px; }
  .about-cta { padding: 48px 20px; }
  .about-cta h2 { font-size: 24px; }
}
