/* ═══════════════════════════════════════════
   PAGES/ABOUT.CSS — About page styles
═══════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────────────────── */
.about-hero {
  padding: 110px 0 0;
  position: relative;
  overflow: hidden;
}
.about-hero-glow {
  position: absolute;
  top: -15%; right: -8%;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,144,58,0.1) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none;
}
.about-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}
.about-h1 {
  font-family: var(--ser);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 760px;
}
.about-h1 em { font-style: normal; color: var(--ember); }
.about-lead {
  font-size: 1.1rem;
  color: var(--cream-d);
  max-width: 600px;
  line-height: 1.85;
  font-family: var(--ser);
  font-weight: 400;
  margin-bottom: 64px;
}

/* ── Manifesto band ──────────────────────────────────────────────────────── */
.about-manifesto {
  background: var(--ink-2);
  border-top: 1px solid var(--gold-l);
  border-bottom: 1px solid var(--gold-l);
  padding: 60px 0;
  margin-bottom: 0;
}
.manifesto-text {
  font-family: var(--ser);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.45;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text em { color: var(--ember); font-style: normal; }

/* ── Story section ───────────────────────────────────────────────────────── */
.about-story {
  padding: 100px 0;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  background: var(--ink-2);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0600 0%, #0d1222 100%);
}
.story-visual-text {
  position: relative;
  z-index: 1;
  font-family: var(--disp);
  font-size: 6rem;
  color: rgba(237,229,216,0.06);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}
.story-visual-badge {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--ember);
  padding: 14px 20px;
  z-index: 2;
}
.story-visual-badge span {
  display: block;
  font-family: var(--disp);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}
.story-visual-badge small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-content .srv-tag { margin-bottom: 18px; }
.story-h2 {
  font-family: var(--ser);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.story-body {
  font-size: 0.95rem;
  color: var(--cream-d);
  line-height: 1.85;
}
.story-body p { margin-bottom: 18px; }
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--cream); font-weight: 700; }

/* ── Values section ──────────────────────────────────────────────────────── */
.about-values {
  background: var(--paper);
  padding: 100px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--paper-2);
  margin-top: 56px;
}
.value-card {
  background: var(--paper);
  padding: 48px 44px;
  position: relative;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--ember);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}
.value-card:hover::before { transform: scaleY(1); }
.value-num {
  font-family: var(--disp);
  font-size: 3rem;
  color: rgba(26,22,15,0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.value-title {
  font-family: var(--ser);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark-text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.value-desc {
  font-size: 0.875rem;
  color: rgba(26,22,15,0.55);
  line-height: 1.8;
}

/* ── Numbers band ────────────────────────────────────────────────────────── */
.about-numbers {
  padding: 80px 0;
  background: var(--ink-3);
  border-top: 1px solid var(--gold-l);
  border-bottom: 1px solid var(--gold-l);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--gold-l);
}
.number-item:last-child { border-right: none; }
.number-val {
  font-family: var(--disp);
  font-size: 3.5rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.number-val em { color: var(--ember); font-style: normal; }
.number-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-m);
  margin-top: 8px;
  display: block;
}

/* ── Process section ─────────────────────────────────────────────────────── */
.about-process {
  padding: 100px 0;
}
.process-timeline {
  margin-top: 56px;
  position: relative;
  padding-left: 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--ember), var(--gold), transparent);
}
.timeline-item {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 56px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--ink-2);
  border: 2px solid var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--disp);
  font-size: 1.1rem;
  color: var(--ember);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.timeline-content h3 {
  font-family: var(--ser);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  padding-top: 14px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--cream-d);
  line-height: 1.8;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
.about-cta {
  background: var(--ink-2);
  border-top: 1px solid var(--gold-l);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(229,54,26,0.12) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.about-cta h2 {
  font-family: var(--ser);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.about-cta p {
  font-size: 1rem;
  color: var(--cream-d);
  margin-bottom: 36px;
}
.cta-button-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--cream-d);
  color: var(--cream-d);
  font-family: var(--ser);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { gap: 20px; }
  .process-timeline::before { left: 20px; }
  .timeline-dot { width: 40px; height: 40px; font-size: 0.9rem; }
  .value-card { padding: 32px 24px; }
}
