/* ─── /about page styles — scoped under .about-* and .section ─── */
/* These selectors cannot leak onto press/drop pages because they are
   unique class prefixes. Page-level tokens (--black, --gold, etc.)
   are declared inline in views/about.ejs same as views/press.ejs:16–24. */

/* ─── HERO ─── */
.about-hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-stamp {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.about-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 11vw, 128px);
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.about-hero-title span { color: var(--gold); }
.about-hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.about-hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--white);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ─── THESIS (long-form copy) ─── */
.about-thesis p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 22px;
}
.about-thesis-lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 28px !important;
}

/* ─── VÈVÈ MOTIFS ─── */
.about-veve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-veve-card {
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 32px 28px;
  border-radius: 4px;
}
.about-veve-symbol {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-veve-symbol svg { width: 100%; height: 100%; }
.about-veve-glyph-missing {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mid);
  padding: 20px;
  border: 1px dashed rgba(201,168,76,0.25);
  text-align: center;
}
.about-veve-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.about-veve-meaning {
  font-size: 13px;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}
.about-veve-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.about-veve-badge.on-product {
  color: var(--black);
  background: var(--gold);
}
.about-veve-badge.future {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  opacity: 0.85;
}
.about-veve-blurb {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── FOUNDER ─── */
.about-founder {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
}
.about-founder-photo {
  width: 200px;
  height: 240px;
  background: var(--black);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(201,168,76,0.4);
  letter-spacing: 2px;
}
.about-founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}
.about-founder-role {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.about-founder-bio {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 14px;
}

/* ─── LINK-BACK CTA ─── */
.about-linkback {
  text-align: center;
  padding: 100px 24px;
  background: var(--black);
}
.about-linkback-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.about-linkback-title span { color: var(--gold); }
.about-linkback-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.about-cta-button:hover { background: #b8963e; }
.about-cta-button.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.about-cta-button.secondary:hover { background: rgba(201,168,76,0.1); }

/* ─── FOOTER ─── */
.about-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--mid);
}
.about-footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-footer-logo span { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .about-veve-grid { grid-template-columns: 1fr; }
  .about-founder { grid-template-columns: 1fr; gap: 24px; }
  .about-founder-photo { width: 100%; height: 200px; }
}
