/* ============================================================
   DALLAS WEB PRO — ABOUT.CSS
   About-page-only styles. Loads AFTER style.css.
   ============================================================ */

/* ---- THE SHORT VERSION — two-column: portrait + bio ---- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .bio-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 4.5rem;
  }
}

.bio-portrait {
  aspect-ratio: 4/5;
  min-height: 360px;
}

.bio-copy .section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.75rem;
}

.about-prose {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--clr-light-gray);
  line-height: 1.8;
  max-width: 60ch;
}

.about-prose p + p {
  margin-top: 1.25rem;
}

.about-prose strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* ---- HOW I GOT HERE — timeline ---- */
.journey-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 900px) {
  .journey-intro {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
  }
}

.journey-copy .section-title {
  margin-bottom: 1.5rem;
}

/* stat block alongside the prose */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
}

.about-stat {
  background: var(--clr-dark-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-stat__num {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--clr-orange);
  letter-spacing: 0.01em;
}

.about-stat__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--clr-light-gray);
  line-height: 1.4;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: none;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }
}

.timeline-item {
  position: relative;
  padding-top: 2.25rem;
  padding-right: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-border);
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--clr-orange);
  border-radius: 0;
}

.timeline-year {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.5rem;
}

.timeline-label {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.timeline-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--clr-light-gray);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .timeline-item {
    padding-top: 0;
    padding-left: 2rem;
    padding-bottom: 2.25rem;
  }

  .timeline-item::before {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item:last-child::before {
    bottom: auto;
    height: 14px;
  }

  .timeline-item::after {
    top: 0;
    left: 0;
  }
}

/* ---- VALUE BAND ---- */
.value-band {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
  background-color: var(--clr-black);
}

.value-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.value-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.85) 45%,
      rgba(0, 0, 0, 0.35) 75%,
      rgba(0, 0, 0, 0.2) 100%);
}

.value-band-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
}

/* Constrain the text block to the left half — aligned under the logo */
.value-band-content > .reveal {
  max-width: 580px;
}

@media (max-width: 600px) {
  .value-band-content {
    padding-block: 3rem;
  }

  .value-band-content > .reveal {
    max-width: 100%;
  }
}

.value-band-content .section-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.02;
}

/* ---- WHAT DALLASWEBPRO DOES ---- */
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
}

@media (min-width: 600px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .about-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-services .service-card {
  aspect-ratio: 16/11;
}

.about-services-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ---- LOCAL, FOR REAL — DFW map + pins ---- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .local-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.local-copy .section-title {
  margin-bottom: 1.5rem;
}

.local-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.local-city {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 0.5rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.local-city::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--clr-orange);
  flex-shrink: 0;
}

.local-map {
  aspect-ratio: 4/3;
  min-height: 340px;
}

/* ---- PAGE-LEVEL TWEAKS ---- */
.about-page .site-header {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-link.is-current {
  color: var(--clr-white);
}

.nav-link.is-current::after {
  width: 100%;
}
