/* The Kickin' Crab — About page (everything site.css does not already cover). */


/* Hero photo: keep Jan in frame when the polaroid crops the landscape shot. */
.band-photo img.about-hero-photo { height: 250px; object-position: 68% 35%; }
@media (max-width: 900px) { .band-photo img.about-hero-photo { height: auto; aspect-ratio: 516 / 355; } }

/* ---------- Our story ---------- */
.about-story { background: var(--kc-cream); padding: 52px 24px 8px; scroll-margin-top: 16px; }
.about-story__row {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 44px 64px; align-items: flex-start;
}
.about-story__copy { flex: 1 1 440px; min-width: min(280px, 100%); max-width: 62ch; }
.about-story__p { margin: 16px 0 0; font-size: 18px; line-height: 1.6; color: var(--kc-ink-2); }
.about-story__p + .about-story__p { margin-top: 22px; }
.about-story__p--lead {
  margin-top: 20px; font-size: clamp(22px, 2.6vw, 27px); line-height: 1.3;
  font-weight: 700; color: var(--kc-ink);
}
.about-story__p--beat { margin-top: 26px; font-weight: 600; color: var(--kc-ink); }
.about-story__p--beat + .about-story__p--beat { margin-top: 14px; }

/* Timeline rail, second column on desktop, stacked below on phones */
.about-timeline {
  box-sizing: border-box; flex: 0 1 300px; min-width: min(240px, 100%); position: sticky; top: 24px;
  background: var(--kc-cream-2); border: 2px solid var(--kc-line); border-radius: 22px; padding: 24px 24px 8px;
}
.about-timeline__h3 { margin: 0 0 6px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; font-size: 12px; color: var(--kc-rust); }
.about-timeline__list { list-style: none; margin: 0; padding: 0; }
.about-timeline__item {
  position: relative; padding: 14px 0 18px 30px; display: grid; gap: 2px;
}
.about-timeline__item::before {
  content: ""; position: absolute; left: 7px; top: 22px; bottom: -6px; width: 2px; background: var(--kc-line);
}
.about-timeline__item:last-child::before { display: none; }
.about-timeline__item::after {
  content: ""; position: absolute; left: 0; top: 17px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--kc-amber); border: 2px solid var(--kc-brick); box-sizing: border-box;
}
.about-timeline__year { font-family: var(--font-display); font-size: 22px; line-height: 1; color: var(--kc-brick); }
.about-timeline__place { font-weight: 700; font-size: 16px; color: var(--kc-ink); }
.about-timeline__what { font-size: 15px; line-height: 1.45; color: var(--kc-ink-3); }
@media (max-width: 760px) {
  .about-timeline { position: static; flex-basis: 100%; }
}

/* Pull quote between the story and the values cards */
.about-quote { background: var(--kc-cream); padding: 24px 24px 56px; }
.about-quote__p {
  max-width: 900px; margin: 0 auto; text-align: center;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 7.2vw, 54px); line-height: 1.1; color: var(--kc-teal);
}
.about-quote__main, .about-quote__accent { display: block; white-space: nowrap; }
.about-quote__accent { color: var(--kc-brick); }

/* ---------- Come get messy ---------- */
.about-next { padding-top: 44px; }

/* Values: four cards, 2×2 on desktop */
#values .kc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 700px) { #values .kc-grid { grid-template-columns: 1fr; } }
