/* ── css/about.css ────────────────────────────────────────
   About page styles
   ─────────────────────────────────────────────────────── */

/* Hero */
.about-hero {
  background:
    linear-gradient(150deg, rgba(17,8,8,.78) 0%, rgba(140,48,48,.52) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

/* ── Story ─────────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-pull-quote {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--c-primary);
  border-left: 4px solid var(--c-amber);
  padding-left: 1.2rem;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.story-text p { color: var(--c-text-muted); line-height: 1.8; margin-bottom: 1rem; }

/* Image mosaic */
.story-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .75rem;
  height: 420px;
}
.story-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform .6s ease;
}
.story-img-grid img:hover { transform: scale(1.03); }
.img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg) !important;
}
.img-top-right  { grid-column: 2; grid-row: 1; }
.img-bottom-right { grid-column: 2; grid-row: 2; }

/* ── Stats Strip ───────────────────────────────────────── */
.stats-strip {
  background: var(--c-amber);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--c-espresso);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(26,14,6,.75);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Timeline ──────────────────────────────────────────── */
.timeline-section { background: var(--c-bg-alt); }
.timeline {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(107,63,37,.2);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1.5rem 1fr;
  gap: 0 1.5rem;
  padding-bottom: 2.5rem;
  align-items: start;
  position: relative;
}
.timeline-year {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-amber);
  text-align: right;
  padding-top: .1rem;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-amber);
  border: 3px solid var(--c-bg-alt);
  box-shadow: 0 0 0 2px var(--c-amber);
  margin-top: .3rem;
  flex-shrink: 0;
}
.timeline-content h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--c-primary);
  margin: 0 0 .4rem;
}
.timeline-content p { color: var(--c-text-muted); line-height: 1.7; margin: 0; font-size: .92rem; }

/* ── Team ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.team-card:hover .team-avatar img { transform: scale(1.06); }
.team-info { padding: 1.25rem 1rem 1.5rem; }
.team-info h3 { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--c-primary); margin: 0 0 .2rem; }
.team-role { font-size: .82rem; font-weight: 600; color: var(--c-amber); text-transform: uppercase; letter-spacing:.05em; margin: 0 0 .75rem; }
.team-bio { font-size: .85rem; color: var(--c-text-muted); line-height: 1.6; margin: 0; }

/* ── Values ────────────────────────────────────────────── */
.values-section { background: var(--c-bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-amber);
  transition: transform var(--t-base);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: .9rem; display: block; }
.value-card h3 { font-family: var(--ff-heading); font-size: 1.15rem; color: var(--c-primary); margin: 0 0 .7rem; }
.value-card p { color: var(--c-text-muted); line-height: 1.7; font-size: .9rem; margin: 0; }

/* ── CTA Banner ────────────────────────────────────────── */
.about-cta-banner { background: var(--c-espresso); padding: 4rem 0; }
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-cta-inner h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-cream);
  margin: 0 0 .4rem;
}
.about-cta-inner p { color: rgba(253,248,242,.65); margin: 0; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Reveal */
.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.js-reveal .reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────── */
/* TV / Large screen (1400px+) */
@media (min-width: 1400px) {
  .team-grid    { grid-template-columns: repeat(4, 1fr); }
  .values-grid  { grid-template-columns: repeat(3, 1fr); }
  .stats-grid   { grid-template-columns: repeat(4, 1fr); }
}

/* Laptop (≤1024px) */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img-grid { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 0 1.5rem 1fr; }
  .timeline-year { display: none; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; width: 100%; }
  .about-cta-btns .btn { width: 100%; justify-content: center; }
}
