/* =====================
   ABOUT PAGE — uses tokens from style.css
   ===================== */

/* ---- Scroll Reveal ---- */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce) {
  .reveal,.reveal-left,.reveal-right { transition:none; opacity:1; transform:none; }
}

/* ---- Hero ---- */
/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; overflow: hidden; margin-top: var(--nav-h); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,21,43,0.88) 0%, rgba(8,21,43,0.75) 45%, rgba(15,52,96,0.50) 100%); z-index: 1; }
.hero-fade { position: absolute; inset: 0; background: #fff; opacity: 0; z-index: 3; pointer-events: none; transition: opacity 0.05s linear; }
.hero-content { position: relative; z-index: 4; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; width: 100%; will-change: transform, opacity; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); background: rgba(200,151,58,0.12); border: 1px solid rgba(200,151,58,0.25); padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(44px, 5.8vw, 80px); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 4px; }
.hero-content h2 { font-family: var(--font); font-size: clamp(40px, 5.2vw, 74px); font-weight: 800; color: var(--white); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 28px; }
.hero-content p { font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,0.75); max-width: 500px; margin-bottom: 8px; line-height: 1.65; }
.hero-sub { font-size: 14px !important; color: rgba(255,255,255,0.50) !important; margin-bottom: 40px !important; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 10px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; letter-spacing: -0.01em; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.30); }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.80); padding: 14px 4px; border-bottom: 1.5px solid rgba(255,255,255,0.25); transition: color 0.2s, border-color 0.2s; }
.btn-hero-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-stat { flex: 1; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat:first-child { padding-left: 0; } .hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-serif); font-size: clamp(24px, 2.4vw, 36px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 4px; }
.hero-stat-num span { color: var(--gold); } .hero-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }



/* TICKER */
.ticker-strip { background: var(--navy); padding: 12px 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ticker-inner { display: flex; white-space: nowrap; animation: tickerScroll 32s linear infinite; will-change: transform; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 32px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.08); }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }



/* ---- Values split ---- */
.about-split {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1.2fr; gap:48px; align-items:center;
  max-width:var(--max-w); margin:0 auto; padding:0 40px 80px;
}
.about-img { border-radius:20px; overflow:hidden; position:relative; aspect-ratio:1/1; }
.about-img img { width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0; }
.img-badge {
  position:absolute; bottom:20px; left:20px;
  background:var(--offwhite); color:#fff; font-size:12px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; padding:8px 16px; border-radius:100px;
}

.about-values { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.value-item {
  padding:28px 24px; border-bottom:1px solid var(--light-gray); border-right:1px solid var(--light-gray);
  transition:background .25s;
}
.value-item:nth-child(even) { border-right:none; }
.value-item:nth-child(3), .value-item:nth-child(4) { border-bottom:none; }
.value-item:hover { background:color-mix(in srgb, var(--accent) 5%, transparent); }
.value-icon { font-size:22px; color:var(--accent); line-height:1; margin-bottom:12px; }
.value-item h3 { font-size:16px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.value-item p { color:var(--text-soft); font-size:13.5px; line-height:1.6; }

/* ---- Stat Ticker ---- */
.stat-ticker {
  background:var(--navy); overflow:hidden; padding:18px 0; border-top:1px solid rgba(255,255,255,.08);
}
.ticker-track { display:flex; }
.ticker-inner {
  display:flex; align-items:center; gap:32px; white-space:nowrap;
  animation:ticker 28s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { color:#fff; font-size:14px; font-weight:400; }
.ticker-item strong { font-weight:700; color:var(--accent); margin-right:5px; }
.ticker-sep { color:rgba(255,255,255,.3); font-size:18px; }
.stat-ticker:hover .ticker-inner { animation-play-state:paused; }

/* ---- Manifesto ---- */
.manifesto {
  position:relative; overflow:hidden;
  background:var(--offwhite); padding:100px 40px;
  text-align:center;
}
.manifesto-inner { position:relative; z-index:1; max-width:780px; margin:0 auto; }
.manifesto .eyebrow {
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--accent); margin-bottom:32px;
}
.manifesto-quote {
  display:flex; flex-direction:column; gap:6px; margin:0 0 32px;
}
.manifesto-quote .line {
  display:block; font-family:var(--font-serif); font-size:clamp(36px,5vw,64px);
  font-weight:400; color:var(--navy); line-height:1.1;
}
.manifesto-quote .line.italic { font-style:italic; color:var(--accent); }
.manifesto-body {
  color:var(--text-soft); font-size:16px; line-height:1.75; max-width:560px; margin:0 auto;
}
.manifesto-bg-num {
  position:absolute; right:-40px; top:50%; transform:translateY(-50%);
  font-size:280px; font-family:var(--font-serif); color:color-mix(in srgb, var(--navy) 5%, transparent);
  line-height:1; pointer-events:none; user-select:none;
  animation:floatNum 8s ease-in-out infinite alternate;
}
@keyframes floatNum { from{transform:translateY(-50%) scale(1)} to{transform:translateY(-48%) scale(1.04)} }

/* ---- Team ---- */
.about-team { max-width:var(--max-w); margin:0 auto; padding:80px 40px; }
.eyebrow {
  font-size:11.5px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--accent);
}
.about-team h2 {
  font-family:var(--font-serif); font-size:36px; font-weight:400;
  color:var(--navy); margin-top:10px; margin-bottom:40px;
}
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.team-card {
  border-radius:16px; overflow:hidden; background:var(--offwhite);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(0,32,64,.1); }
.team-img-wrap { position:relative; overflow:hidden; }
.team-img-wrap img {
  width:100%; aspect-ratio:4/3.4; object-fit:cover; display:block;
  transition:transform .5s var(--ease);
}
.team-card:hover .team-img-wrap img { transform:scale(1.06); }
.team-overlay {
  position:absolute; inset:0; background:color-mix(in srgb, var(--navy) 82%, transparent);
  display:flex; align-items:flex-end; padding:20px;
  opacity:0; transition:opacity .3s var(--ease);
}
.team-card:hover .team-overlay,
.team-card.touch-active .team-overlay { opacity:1; }
.team-overlay p { color:#fff; font-size:13.5px; line-height:1.6; margin:0; }
.team-info { padding:18px 20px; }
.team-info h4 { font-size:17px; font-weight:600; color:var(--navy); }
.team-info span { display:block; font-size:12.5px; color:var(--accent); font-weight:600; margin-top:4px; letter-spacing:.03em; }

/* ---- Newsletter ---- */
.about-newsletter {
  max-width:var(--max-w); margin:0 auto 80px; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:var(--navy); border-radius:20px; overflow:hidden;
}
.newsletter-text { padding:60px 48px; }
.newsletter-text h2 {
  font-family:var(--font-serif); font-size:32px; font-weight:400; color:#fff; line-height:1.2;
}
.newsletter-text p { margin-top:14px; color:rgba(255,255,255,.65); font-size:14.5px; max-width:360px; line-height:1.65; }
.newsletter-text form {
  display:flex; margin-top:28px; border-radius:10px; overflow:hidden;
  border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.08); max-width:400px;
}
.newsletter-text input {
  flex:1; border:none; outline:none; padding:13px 16px;
  font-size:13.5px; font-family:var(--font); background:transparent; color:#fff;
}
.newsletter-text input::placeholder { color:rgba(255,255,255,.45); }
.newsletter-text button {
  background:var(--accent); color:#fff; border:none; cursor:pointer;
  padding:13px 20px; font-size:12px; font-weight:700; letter-spacing:.05em;
  text-transform:uppercase; transition:opacity .2s;
}
.newsletter-text button:hover { opacity:.85; }
.newsletter-img img { width:100%; height:100%; object-fit:cover; display:block; min-height:320px; }

/* ---- Responsive ---- */
@media (max-width:960px) {
  .about-split { grid-template-columns:1fr; }
  .about-img img { min-height:280px; }
  .about-newsletter { grid-template-columns:1fr; }
  .newsletter-text { padding:40px 28px; }
  .newsletter-img img { min-height:220px; }
  .team-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:640px) {
  .about-hero-inner { padding:80px 20px 40px; }
  .about-hero-inner h1 { font-size:38px; }
  .about-split { padding:0 20px 56px; }
  .about-values { grid-template-columns:1fr; }
  .value-item:nth-child(even) { border-right:1px solid var(--light-gray); }
  .value-item:nth-child(3) { border-bottom:1px solid var(--light-gray); }
  .manifesto { padding:64px 20px; }
  .manifesto-bg-num { display:none; }
  .about-team { padding:56px 20px; }
  .team-grid { grid-template-columns:1fr; }
  .about-newsletter { margin-bottom:56px; }
}