/* ══════════════════════════════════════════
   ABOUT-PAGE SPECIFIC STYLES
══════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6vw 4rem;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 80% at 100% 50%,
      rgba(249, 115, 22, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      rgba(249, 115, 22, 0.05) 0%,
      transparent 60%
    );
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 100%
  );
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s both;
}
.page-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  animation: fadeUp 0.7s 0.2s both;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.page-hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(0.93rem, 1.5vw, 1.12rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  animation: fadeUp 0.7s 0.35s both;
}

/* ── Story ── */
#story {
  background: var(--dark);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-left h2 {
  margin-bottom: 1.6rem;
}
.story-left p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.story-left p strong {
  color: var(--light);
  font-weight: 600;
}
.story-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
}
.story-card {
  position: absolute;
  background: var(--dark3);
  border: 1px solid rgba(249, 115, 22, 0.1);
  padding: 1.8rem 2rem;
  border-radius: 2px;
}
.story-card-main {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark3) 0%, #2a2a27 100%);
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.story-card-main .big-year {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--orange);
  opacity: 0.18;
  margin-bottom: 2rem;
}
.story-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.story-card-main p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.story-card-float {
  bottom: -1.5rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--orange);
  border: none;
  z-index: 2;
  padding: 1.2rem 1.5rem;
}
.story-card-float .float-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.story-card-float .float-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(38, 38, 36, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}
.story-card-top {
  top: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.story-card-top .top-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.story-card-top .top-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.story-card-top .top-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
}

/* ── Stats banner ── */
.stats-banner {
  background: var(--orange);
  padding: 4rem 6vw;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 2.5rem 2rem;
  background: rgba(38, 38, 36, 0.08);
  text-align: center;
  transition: background 0.25s;
}
.stat-item:hover {
  background: rgba(38, 38, 36, 0.18);
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(38, 38, 36, 0.6);
  margin-top: 0.4rem;
}

/* ── Mission & Vision ── */
#mission {
  background: var(--dark2);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
.mv-card {
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.mv-card.mission {
  background: var(--dark3);
}
.mv-card.vision {
  background: var(--orange);
}
.mv-card.vision h3,
.mv-card.vision p {
  color: var(--dark);
}
.mv-bg-num {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 800;
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  line-height: 1;
  opacity: 0.06;
  color: var(--light);
  pointer-events: none;
  letter-spacing: -0.06em;
}
.mv-card.vision .mv-bg-num {
  color: var(--dark);
  opacity: 0.1;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.mv-card p {
  line-height: 1.8;
  font-size: 1rem;
  color: var(--muted);
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.mv-card.mission .mv-icon {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}
.mv-card.vision .mv-icon {
  background: rgba(38, 38, 36, 0.12);
  color: var(--dark);
}

/* ── Values ── */
#values {
  background: var(--dark);
}
.values-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.values-sub {
  max-width: 380px;
  color: var(--muted);
  line-height: 1.7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--dark3);
  padding: 2.6rem 2.3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.value-card:hover {
  background: #3a3a38;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.value-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.91rem;
}

/* ── Process ── */
#process {
  background: var(--dark2);
}
.process-header {
  margin-bottom: 4rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  counter-reset: step;
}
.process-step {
  background: var(--dark3);
  padding: 2.6rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  counter-increment: step;
}
.process-step:hover {
  background: #3a3a38;
}
.process-step::after {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.process-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.process-connector {
  position: absolute;
  top: 3.2rem;
  right: -1px;
  width: 2px;
  height: 36px;
  background: rgba(249, 115, 22, 0.25);
  z-index: 1;
}
.process-step:last-child .process-connector {
  display: none;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.process-step p {
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

/* ── CTA banner ── */
.cta-banner {
  background: var(--dark3);
  border-top: 1px solid rgba(249, 115, 22, 0.12);
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
  padding: 6rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.cta-banner h2 {
  max-width: 600px;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: row;
}
/* ── RESPONSIVE (about-specific) ── */
@media (max-width: 900px) {
  .story-grid,
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .story-visual {
    max-width: 100%;
    aspect-ratio: unset;
    min-height: 280px;
    margin-top: 3rem;
  }
  .story-card-float {
    bottom: auto;
    top: -4rem;
    right: 1rem;
    left: auto;
  }
  .story-card-top {
    top: auto;
    left: 1rem;
    bottom: -4rem;
    right: auto;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 2.5rem 0.5rem;
  }
  .stats-banner {
    padding: 6vw;
  }
  .page-hero {
    padding: 7rem 5vw 3rem;
  }
}
