/* ═══════════════════════════════════════════════
   SABLOK — about.css
   Page-specific styles for about.html
   Inherits tokens from style.css
   ═══════════════════════════════════════════════ */

/* ── Page-level body tweak ── */
.about-page { background: var(--offwhite); }

/* Shared section rhythm for about */
.about-section { padding: 100px 0; }

/* ══════════════════════════════════════
   1. HERO
══════════════════════════════════════ */
.about-hero {
  padding: 72px 0 80px;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

/* Subtle radial warmth top-left */
.about-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,29,47,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.min-vh-about-hero { min-height: 80vh; }

.about-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.about-hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--crimson);
  line-height: 1.12;
}
.about-hero-h1 em {
  font-style: italic;
  font-weight: 400;
}

.about-hero-sub {
  font-size: 0.95rem;
  color: var(--charcoal-lt);
  line-height: 1.8;
  max-width: 500px;
}

/* Hero image */
.about-hero-img-wrap {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}
.about-hero-shape {
  position: absolute;
  top: -28px; right: -28px;
  width: 85%; height: 90%;
  background: rgba(44,74,62,0.07);
  border-radius: 20px;
  z-index: 0;
}
.about-hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 56px rgba(107,29,47,0.16);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(250,248,245,0.08) 0%,
    rgba(44,74,62,0.12) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Floating stat chip */
.hero-stat-chip {
  position: absolute;
  bottom: 28px; left: -24px;
  background: var(--offwhite);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}
.chip-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}
.chip-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  display: block;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 0.9; transform: scaleY(1); }
}


/* ══════════════════════════════════════
   2. TIMELINE
══════════════════════════════════════ */
.timeline-section {
  background: var(--offwhite);
  padding: 100px 0;
}

/* Horizontal scroll wrapper */
.timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.timeline-track::-webkit-scrollbar { height: 4px; }
.timeline-track::-webkit-scrollbar-track { background: transparent; }
.timeline-track::-webkit-scrollbar-thumb { background: rgba(107,29,47,0.2); border-radius: 2px; }

/* Connecting line */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  z-index: 0;
}

.tl-item {
  flex: 1 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-item.tl-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--offwhite);
  flex-shrink: 0;
  margin-top: 14px;
  transition: all 0.3s ease;
}
.tl-dot--active {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212,175,55,0.2);
}

/* Year label */
.tl-year {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: 0.04em;
  line-height: 1;
}
.tl-year--active { color: var(--gold); }

/* Card */
.tl-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  flex: 1;
  width: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tl-card:hover {
  box-shadow: 0 8px 28px rgba(107,29,47,0.09);
  transform: translateY(-3px);
}
.tl-card--active {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(135deg, #fffdf5 0%, var(--card-bg) 100%);
}

.tl-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.tl-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  line-height: 1.65;
  margin: 0;
}


/* ══════════════════════════════════════
   3. FOUNDER
══════════════════════════════════════ */
.founder-section {
  background: var(--card-bg);
  padding: 100px 0;
}

.founder-img-wrap {
  position: relative;
}
.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(107,29,47,0.13);
  filter: sepia(0.08) brightness(0.98);
}
.founder-name-plate {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--offwhite);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}
.fnp-title {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--crimson);
}
.fnp-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.founder-body {
  font-size: 0.93rem;
  color: var(--charcoal-lt);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Quote block */
.founder-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.fq-bar {
  width: 3px;
  min-height: 72px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.fq-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--crimson);
  line-height: 1.5;
  margin-bottom: 8px;
}
.fq-attr {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}


/* ══════════════════════════════════════
   4. TODAY / FEATURE CARDS
══════════════════════════════════════ */
.today-section { background: var(--offwhite); }

.today-illustration {
  background: #fdf9f0;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.today-svg { max-width: 380px; width: 100%; }

.today-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: all var(--transition);
}
.today-card:hover {
  border-color: rgba(107,29,47,0.18);
  box-shadow: 0 8px 28px rgba(107,29,47,0.08);
  transform: translateY(-3px);
}
.today-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.today-card h5 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 8px;
}
.today-card p {
  font-size: 0.83rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  margin: 0;
}


/* ══════════════════════════════════════
   5. PRIVACY (reused from style.css, 
      minor page-specific override)
══════════════════════════════════════ */
.about-privacy {
  background: var(--sage);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-privacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.privacy-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.9;
}


/* ══════════════════════════════════════
   6. TRUST / STATS
══════════════════════════════════════ */
.trust-section { background: var(--card-bg); }

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  border-radius: 16px;
  padding: 48px 32px;
  margin-bottom: 16px;
}
.stat-item {
  flex: 1 1 160px;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-big {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  vertical-align: top;
  margin-top: 4px;
}
.stat-desc {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Benefit cards */
.benefit-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: rgba(107,29,47,0.20);
  box-shadow: 0 8px 28px rgba(107,29,47,0.07);
  transform: translateY(-3px);
}
.bc-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(107,29,47,0.06);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
  user-select: none;
}
.benefit-card h5 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.84rem;
  color: var(--charcoal-lt);
  line-height: 1.75;
  margin: 0;
}


/* ══════════════════════════════════════
   7. MISSION & VALUES
══════════════════════════════════════ */
.about-mission {
  padding: 100px 0;
  background: rgba(44,74,62,0.04);
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 6px 24px rgba(107,29,47,0.07);
  transform: translateY(-3px);
}
.vc-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-card h5 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  margin: 0;
}



/* ══════════════════════════════════════
   9. FINAL CTA
══════════════════════════════════════ */
.about-cta {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
/* Decorative gold ring */
.about-cta::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(212,175,55,0.07);
  pointer-events: none;
}
.about-cta::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -140px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 50px solid rgba(212,175,55,0.05);
  pointer-events: none;
}

.about-cta-inner { position: relative; z-index: 1; }

.cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
  margin-bottom: 14px;
}
.cta-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

.btn-cta-primary {
  background: var(--gold);
  color: var(--crimson-dark);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-cta-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 6px;
  background: transparent;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .about-hero  { padding: 52px 0 60px; }
  .about-hero-img-wrap { max-width: 100%; margin-top: 40px; }
  .about-hero-img { aspect-ratio: 3/2; }
  .about-hero-shape { display: none; }
  .hero-stat-chip { left: 0; bottom: -16px; }

  .founder-img-wrap { margin-bottom: 32px; }
  .founder-name-plate { right: 0; bottom: -14px; }

  .stats-row { border-radius: 12px; padding: 36px 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 120px; padding: 12px; }

  .global-map-wrap { padding: 32px 20px 28px; }

  .about-section { padding: 72px 0; }
  .about-privacy, .about-mission, .about-cta { padding: 72px 0; }
}

@media (max-width: 576px) {
  .about-hero-h1 { font-size: 2.1rem; }
  .timeline-track { gap: 0; }
  .tl-item { flex: 0 0 220px; }
  .cta-headline { font-size: 2.2rem; }
  .region-chips { gap: 8px; }
  .region-chip { font-size: 0.72rem; padding: 5px 12px; }
  body { padding-bottom: 68px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
  [data-animate], .tl-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}
