/* ============================================================
   ABOUT PAGE  —  loaded after styles.css on about.html
   Reuses the design tokens, .container, .section, .btn,
   .about__facts / .about__cred and .about__email from styles.css.
   ============================================================ */

/* ---- Breadcrumb (same treatment as the product page) ---- */
.breadcrumb {
  padding-top: calc(var(--nav-height) + 1rem);
  padding-bottom: 0.25rem;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.breadcrumb__list a { color: var(--green-mid); font-weight: 600; }
.breadcrumb__list a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.5; }
.breadcrumb__current { color: var(--text-mid); }

/* ============================================================
   HERO
   ============================================================ */
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  isolation: isolate;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(30, 58, 47, 0.92) 0%,
    rgba(30, 58, 47, 0.80) 45%,
    rgba(30, 58, 47, 0.55) 100%
  );
}
.about-hero__inner {
  max-width: 720px;
  padding-block: 4.5rem 4rem;
  color: var(--white);
}
.about-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}
.about-hero__title {
  font-size: clamp(2rem, 5vw, 3.15rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.about-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 620px;
}

/* ============================================================
   STORY
   ============================================================ */
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.about-story__text .section__title {
  margin-bottom: 1.25rem;
}
.about-story__text p {
  font-size: 0.9688rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-story__signoff {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
  font-weight: 500;
  color: var(--text-dark) !important;
}
.about-story__media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.about-story__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-dark);
}
/* The creative carries its own logo top-left. A centred 4/3 crop trimmed
   ~12.5% off each side and sliced that logo in half, so right-align the crop:
   everything cover() discards now comes off the left, taking the logo out of
   frame instead of cutting it. 7/5 against the artwork's 16/9 drops ~21% —
   past the logo (ends ~20%) but clear of the headline (starts ~26%). The crop
   is a fraction of the width, so it holds at every container size.
   If the artwork is ever re-exported without the logo, drop object-position
   and go back to a centred 4/3. */
.about-story__figure img {
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
  object-position: 100% 50%;
  display: block;
}
.about-story__figure figcaption {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.75rem 1rem;
  text-align: center;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.about-timeline {
  background: var(--green-dark);
}
.about-timeline .section__eyebrow {
  color: var(--amber);
}
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: milestone;
}
.timeline__item {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.timeline__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 40px;
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 3px 3px;
}
.timeline__year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.timeline__title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.timeline__item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* ============================================================
   WHY WE'RE DIFFERENT  (value cards)
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(45, 90, 39, 0.09);
  color: var(--green-mid);
  margin-bottom: 1.1rem;
}
.value-card__icon svg { width: 26px; height: 26px; }
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Credentials strip sits under the value cards */
.about-values .about__credentials {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

/* ============================================================
   CTA
   ============================================================ */
.about-cta {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}
.about-cta__title {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 0.75rem;
}
.about-cta__sub {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-values .about__credentials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .about-story__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story__media { position: static; }
}

@media (max-width: 560px) {
  .about-hero__inner { padding-block: 3.25rem 2.75rem; }
  .timeline { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .about-values .about__credentials { grid-template-columns: 1fr; }
  .about-cta__actions { flex-direction: column; }
  .about-cta__actions .btn { width: 100%; justify-content: center; }
}
