/* ============================================
   ABOUT PAGE
   ============================================ */

/* Page-wide override: default .section padding is 80px top/bottom (var(--space-20));
   reduced to 40px (var(--space-10)) for every section on this page only. */
.section {
  padding-block: var(--space-10);
}

/* Every section on this page should be plain white — overrides the shared
   .bg-alt utility (var(--color-bg-alt) = #FAFAFA) for this page only. */
.bg-alt {
  background: var(--color-white);
}

/* ── About Hero ── */
.about-hero {
  background: var(--color-white);
  padding: 0px 0px;
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}
/* Extra breathing room so the visual column doesn't crowd the viewport
   edge — same fix applied to the homepage hero. Higher specificity beats
   the plain .container media-query rules regardless of load order. */
.about-hero .container {
  padding-inline: 48px;
}
.about-hero::before {
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(232,35,42,.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.about-hero .breadcrumb {
  justify-content: flex-start;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}
.about-hero .breadcrumb a { color: var(--color-text-muted); }
.about-hero .breadcrumb .current { color: var(--color-primary); }
.about-hero .breadcrumb .sep { color: var(--color-border); }

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-hero-grid h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
  line-height: 1.18;
  margin-bottom: var(--space-5);
}
.about-hero-rotate {
  display: inline-block;
  min-width: 2px;
  color: var(--color-primary);
  border-right: 3px solid var(--color-primary);
  animation: about-blink-cursor .75s step-end infinite;
  padding-right: 2px;
}
@keyframes about-blink-cursor {
  0%, 100% { border-color: var(--color-primary); }
  50%      { border-color: transparent; }
}

/* Fit the hero neatly within the viewport on desktop so it reads as one screen */
@media (min-width: 993px) and (min-height: 700px) {
  .about-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-block: var(--space-10);
  }
  .about-hero .container { width: 100%; }
}
.about-hero-grid p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
  max-width: 480px;
}
.about-hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* Hero visual */
.about-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 32px 80px rgba(26,26,26,.16);
}
.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: var(--space-4) var(--space-5);
  box-shadow: 0 16px 48px rgba(26,26,26,.14);
  border: 1px solid rgba(232,35,42,.1);
  min-width: 160px;
}
.hero-floating-card strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
}
.hero-floating-card span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}
.card-a { bottom: -16px; left: -16px; }
.card-b { top: 24px; right: -16px; }

/* ── Overview / Who We Are ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Image stack */
.about-image-stack {
  position: relative;
  height: 480px;
}
.stack-img {
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.stack-main {
  width: 78%;
  height: 100%;
  top: 0; left: 0;
  box-shadow: 0 24px 64px rgba(26,26,26,.15);
  z-index: 1;
}
.stack-small {
  width: 52%;
  height: 55%;
  bottom: -28px; right: 0;
  box-shadow: 0 20px 50px rgba(26,26,26,.18);
  z-index: 2;
  border: 4px solid white;
}
.exp-badge {
  position: absolute;
  top: 28px; right: -16px;
  background: var(--color-primary);
  color: white;
  padding: var(--space-4) var(--space-5);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(232,35,42,.35);
  z-index: 3;
  min-width: 120px;
}
.exp-badge .num {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
}
.exp-badge .txt { font-size: var(--text-xs); opacity: .9; margin-top: 4px; }

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.about-proof-grid div { text-align: center; }
.about-proof-grid strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
}
.about-proof-grid span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}

/* ── Mission / Vision ── */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.mv-card {
  padding: var(--space-10);
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.mv-card.mission { background: var(--color-primary); color: white; }
.mv-card.vision  { background: var(--color-dark); color: white; }
.mv-card > span {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  margin-bottom: var(--space-4);
}
.mv-card h3 { color: white; margin-bottom: var(--space-4); font-size: var(--text-2xl); }
.mv-card p  { color: rgba(255,255,255,.8); line-height: var(--lh-relaxed); }

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.value-card {
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.value-card:hover { box-shadow: 0 20px 50px rgba(26,26,26,.1); transform: translateY(-5px); border-color: rgba(232,35,42,.15); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 52px; height: 52px;
  background: var(--color-primary-bg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.value-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.value-card p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--lh-relaxed); }

/* ── Process Band ── */
.process-band { background: var(--color-white); }
.about-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-process-grid > div > img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 20px;
  margin-top: var(--space-6);
  box-shadow: 0 20px 50px rgba(26,26,26,.12);
  display: block;
}
.about-process-grid p {
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.timeline { display: flex; flex-direction: column; gap: var(--space-4); padding-top: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-6);
  background: white;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}
.timeline-item:hover { box-shadow: 0 16px 40px rgba(26,26,26,.09); transform: translateX(4px); border-color: rgba(232,35,42,.15); }
.timeline-item > span {
  width: 52px; height: 52px;
  background: var(--color-primary);
  color: white;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-extrabold);
  flex-shrink: 0;
}
.timeline-item h3 { font-size: var(--text-xl); color: var(--color-dark); margin-bottom: var(--space-2); }
.timeline-item p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: var(--lh-relaxed); margin: 0; }
.timeline-item > div { min-width: 0; }

/* ── Culture Gallery ── */
.culture-section {}
.culture-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px;
  gap: 16px;
  border-radius: 24px;
  overflow: hidden;
}
.culture-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.culture-gallery img:hover { transform: scale(1.04); }
.culture-gallery > *:first-child {
  grid-row: span 1;
}

/* ── CTA ── */
.about-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.about-cta::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-cta .container { position: relative; z-index: 1; }
.about-cta h2 { color: white; font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: var(--space-4); }
.about-cta p  { color: rgba(255,255,255,.85); font-size: var(--text-lg); margin-bottom: var(--space-8); max-width: 560px; margin-inline: auto; }
.about-cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */

