/* ===========================
   ABOUT SCOTT PAGE
   =========================== */

.scott-page {
  background: var(--darker);
}

.scott-main {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.scott-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  align-items: end;
}

.scott-hero-img {
  height: 75vh;
  overflow: hidden;
  position: relative;
}

.scott-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.scott-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--darker) 100%),
              linear-gradient(to top, var(--darker) 0%, transparent 30%);
}

.scott-hero-text {
  padding: 4rem 5rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scott-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--orange);
  line-height: 1;
  margin: 0.5rem 0;
}

.scott-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-weight: 500;
  margin-top: 0.6rem;
}

.scott-divider {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin-top: 2rem;
  opacity: 0.7;
}

/* BIO ARTICLE */
.scott-bio {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scott-bio p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream-dim);
  font-weight: 300;
}

.scott-goodbye {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem !important;
  color: var(--cream) !important;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* CAR SPECS */
.scott-cars {
  margin-top: 2rem;
  border-top: 1px solid rgba(254, 127, 0, 0.2);
  padding-top: 2.5rem;
}

.scott-cars-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.scott-cars-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.scott-cars-list li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
  padding-bottom: 0.9rem;
}

.car-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  min-width: 200px;
  opacity: 0.85;
}

.car-aside {
  font-size: 0.82rem;
  font-style: italic;
  opacity: 0.55;
}

/* Scott page CTA — override animation opacity */
.scott-bio .cta-btn {
  opacity: 1;
  animation: none;
}

@media (max-width: 768px) {
  .scott-hero {
    grid-template-columns: 1fr;
  }
  .scott-hero-img {
    height: 50vw;
    min-height: 260px;
  }
  .scott-hero-img::after {
    background: linear-gradient(to top, var(--darker) 0%, transparent 40%);
  }
  .scott-hero-text {
    padding: 2rem 1.5rem;
  }
  .scott-bio {
    padding: 3rem 1.5rem 5rem;
  }
  .car-label { min-width: 140px; }
  .scott-cars-list li { flex-direction: column; gap: 0.2rem; }
}
