/* ============================================================
   about.css  —  About Us page-specific styles
   Extends home.css. Only what is not already in the design system.
   ============================================================ */

/* ── Page Banner (compact, dark, ~320 px min) ────────────── */
.about-banner {
  background: var(--clr-bg);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(7.5rem, 15vw, 10rem) clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 90% at 50% 0%,
    rgba(212, 168, 85, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* Thin gold line dropping from the bottom edge */
.about-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(212,168,85,0.7), transparent);
}

.about-banner .container { position: relative; z-index: 1; }

.about-banner .breadcrumb {
  justify-content: center;
  margin-bottom: 1.5rem;
  color: rgba(200, 180, 154, 0.45);
}

.about-banner .breadcrumb a {
  color: rgba(200, 180, 154, 0.55);
  transition: color var(--dur-base);
}

.about-banner .breadcrumb a:hover { color: var(--clr-caramel); }
.about-banner .breadcrumb span    { color: var(--clr-cream-dk); }

.about-banner .eyebrow { color: var(--clr-caramel); }

.about-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.about-banner__sub {
  font-size: var(--fs-lg);
  color: var(--clr-cream-dk);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.72;
  font-weight: 300;
}

/* ── Value Cards (white on cream) ────────────────────────── */
.value-card {
  background: var(--clr-paper);
  border: 1px solid var(--clr-edge);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 168, 85, 0.3);
}

.value-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 168, 85, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  transition: background var(--dur-base);
}

.value-card:hover .value-card__icon { background: rgba(212, 168, 85, 0.18); }

.value-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-espresso);
  margin-bottom: 0.6rem;
}

.value-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-mocha-lt);
  line-height: 1.74;
  margin: 0;
}

/* ── Heritage Pull-Quote ─────────────────────────────────── */
.heritage-quote {
  border-left: 3px solid var(--clr-caramel);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--ff-accent);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--clr-espresso);
  line-height: 1.55;
}

/* ── Vertical Timeline ────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding-block: 0.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--clr-caramel) 0%,
    rgba(212, 168, 85, 0.45) 75%,
    transparent 100%
  );
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot-col {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline__dot {
  width: 46px;
  height: 46px;
  background: var(--clr-caramel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(212, 168, 85, 0.14),
              0 4px 16px rgba(212, 168, 85, 0.3);
  flex-shrink: 0;
}

.timeline__dot svg { width: 18px; height: 18px; fill: #fff; }

.timeline__dot--future {
  background: var(--clr-paper);
  border: 2px solid var(--clr-caramel);
  box-shadow: 0 0 0 6px rgba(212, 168, 85, 0.08);
}

.timeline__dot--future svg { fill: var(--clr-caramel); }

/* Left-aligned items (content on left side) */
.timeline__item--left .timeline__content  { order: 1; text-align: right; }
.timeline__item--left .timeline__dot-col  { order: 2; }
.timeline__item--left .timeline__empty    { order: 3; }

/* Right-aligned items (content on right side) */
.timeline__item--right .timeline__empty   { order: 1; }
.timeline__item--right .timeline__dot-col { order: 2; }
.timeline__item--right .timeline__content { order: 3; text-align: left; }

.timeline__year {
  font-family: var(--ff-accent);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-caramel);
  display: block;
  margin-bottom: 0.3rem;
}

.timeline__title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-espresso);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.timeline__desc {
  font-size: var(--fs-sm);
  color: var(--clr-mocha-lt);
  line-height: 1.68;
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Timeline collapses to left-edge single column */
  .timeline::before {
    left: 23px;
    transform: none;
  }

  .timeline__item {
    grid-template-columns: 46px 1fr;
    gap: 1.25rem;
  }

  .timeline__item--left .timeline__content,
  .timeline__item--right .timeline__content {
    order: 2;
    text-align: left;
  }

  .timeline__item--left .timeline__dot-col,
  .timeline__item--right .timeline__dot-col { order: 1; }

  .timeline__item--left .timeline__empty,
  .timeline__item--right .timeline__empty  { display: none; }
}

@media (max-width: 640px) {
  .about-banner__title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .about-banner__sub   { font-size: var(--fs-base); }
  .value-card          { padding: 1.75rem 1.5rem; }
  .heritage-quote      { font-size: var(--fs-lg); padding-left: 1rem; }
  .timeline__dot       { width: 38px; height: 38px; }
  .timeline__item      { gap: 0.875rem; grid-template-columns: 38px 1fr; }
  .timeline::before    { left: 19px; }
}

/* ── Complete Mobile Pass additions (about.css) ─────────────────────────── */
@media (max-width: 768px) {
  /* Heritage facts */
  .heritage-facts { grid-template-columns: 1fr !important; gap: 2rem; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr !important; }

  /* Team grid */
  .team-grid { grid-template-columns: 1fr !important; }

  /* Banner subtitle */
  .heritage-banner__lead { font-size: 0.9375rem; }
  .heritage-banner { min-height: auto; padding-block: 4rem 3rem; }
}
