/* ============================================================
   NOVARA — About Page  (fresh redesign)
   ============================================================ */

.about-body { background: var(--night); }

/* ── HERO ─────────────────────────────────────────────────── */
.ab-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(31,135,114,0.32) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 80%, rgba(201,162,74,0.16) 0%, transparent 55%),
              linear-gradient(180deg, #04140F 0%, #0D4438 100%);
}

.ab-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.ab-eyebrow {
  font-family: var(--font-mono-mod);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: ab-fadein 0.8s var(--ease-out) 0.3s forwards;
}

.ab-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: ab-slideup 0.9s var(--ease-out) forwards;
}
.ab-line:nth-child(1) { animation-delay: 0.5s; }
.ab-line:nth-child(2) { animation-delay: 0.7s; }
.ab-line-fit { white-space: nowrap; }
.ab-line-gold { color: var(--gold-warm); }
.ab-h1 em { font-style: italic; color: var(--gold-warm); }

.ab-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(247,241,230,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: ab-fadein 0.8s var(--ease-out) 1.2s forwards;
}

.ab-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: ab-fadein 0.8s var(--ease-out) 1.4s forwards;
}

/* Buttons */
.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-mono-mod);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ab-btn-primary:hover { background: var(--gold-warm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,74,0.35); }

.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1px solid rgba(247,241,230,0.25);
  color: var(--cream);
  font-family: var(--font-mono-mod);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.ab-btn-ghost:hover { border-color: rgba(247,241,230,0.55); background: rgba(247,241,230,0.07); transform: translateY(-2px); }

/* Scroll indicator */
.ab-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: ab-fadein 0.8s ease 2s forwards;
}
.ab-hero-scroll span {
  font-family: var(--font-mono-mod);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.35);
}
.ab-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(247,241,230,0.35), transparent);
  animation: ab-scrollpulse 2s ease-in-out infinite;
}
@keyframes ab-scrollpulse { 0%,100% { opacity:0.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.15); } }

@keyframes ab-fadein  { to { opacity:1; } }
@keyframes ab-slideup { to { opacity:1; transform:translateY(0); } }


/* ── STATS ────────────────────────────────────────────────── */
.ab-stats {
  background: var(--forest-deep);
  border-top: 1px solid rgba(43,168,138,0.15);
  border-bottom: 1px solid rgba(43,168,138,0.15);
  padding: 52px clamp(20px, 5vw, 80px);
}
.ab-stats-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.ab-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ab-stat.ab-visible { opacity: 1; transform: translateY(0); }
.ab-stat:nth-child(2)  { transition-delay: 0.1s; }
.ab-stat:nth-child(4)  { transition-delay: 0.2s; }
.ab-stat:nth-child(6)  { transition-delay: 0.3s; }

.ab-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold-warm);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ab-stat-plus, .ab-stat-pct { font-size: 0.55em; color: var(--gold); vertical-align: super; }
.ab-stat-label {
  font-family: var(--font-mono-mod);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.5);
  margin-top: 6px;
}
.ab-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(247,241,230,0.12);
  flex-shrink: 0;
}


/* ── IDENTITY ─────────────────────────────────────────────── */
.ab-identity {
  padding: clamp(80px, 10vw, 130px) clamp(20px, 6vw, 80px);
  background: #F7F1E6;
}
.ab-identity-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) {
  .ab-identity-inner { grid-template-columns: 1fr; gap: 50px; }
}

/* 3D Card Stack */
.ab-identity-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ab-identity-visual.ab-visible { opacity: 1; transform: translateX(0); }

.ab-card-stack { position: relative; width: 280px; height: 320px; }

.ab-card {
  position: absolute;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 60px rgba(13,68,56,0.18);
  overflow: hidden;
}
.ab-card-back {
  width: 260px; height: 300px;
  top: 30px; left: 30px;
  background: linear-gradient(135deg, #0D4438, #1F8772);
  transform: rotate(6deg);
  opacity: 0.6;
}
.ab-card-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.ab-card-mid {
  width: 265px; height: 305px;
  top: 16px; left: 14px;
  background: #F0EDE6;
  transform: rotate(3deg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.ab-card-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(13,68,56,0.12);
}
.ab-card-line.short { width: 60%; }

.ab-card-front {
  width: 270px; height: 310px;
  top: 0; left: 0;
  background: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(0deg);
  transition: transform 0.4s ease;
  z-index: 2;
}
.ab-card-front:hover { transform: rotate(-2deg) translateY(-4px); }

.ab-card-icon { font-size: 1.6rem; color: #C9A24A; }
.ab-card-tag {
  font-family: var(--font-mono-mod);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1F8772;
  font-weight: 600;
}
.ab-card-title-sm {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #0D4438;
  line-height: 1.2;
}
.ab-card-body-sm { font-size: 0.82rem; color: #5B6D68; line-height: 1.5; }
.ab-card-seal { margin-top: auto; width: 40px; align-self: flex-end; }

/* Floating orbs */
.ab-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ab-orb-1 {
  width: 80px; height: 80px;
  top: -20px; right: 20px;
  background: radial-gradient(circle, rgba(201,162,74,0.35), transparent 70%);
  animation: ab-float 6s ease-in-out infinite;
}
.ab-orb-2 {
  width: 50px; height: 50px;
  bottom: 20px; left: 0;
  background: radial-gradient(circle, rgba(31,135,114,0.4), transparent 70%);
  animation: ab-float 8s ease-in-out infinite 1.5s;
}
.ab-orb-3 {
  width: 30px; height: 30px;
  top: 40%; left: -10px;
  background: radial-gradient(circle, rgba(224,191,114,0.5), transparent 70%);
  animation: ab-float 5s ease-in-out infinite 0.8s;
}

/* Identity text */
.ab-identity-text {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.ab-identity-text.ab-visible { opacity: 1; transform: translateX(0); }

.ab-section-eyebrow {
  font-family: var(--font-mono-mod);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1F8772;
  margin-bottom: 12px;
}
.ab-section-eyebrow.light { color: rgba(247,241,230,0.5); }

.ab-section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0D4438;
  margin-bottom: 24px;
}
.ab-section-h2.light { color: var(--cream); }

.ab-section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #3A4F49;
  margin-bottom: 16px;
}
.ab-section-body.light { color: rgba(247,241,230,0.75); }

.ab-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ab-pill {
  padding: 6px 16px;
  border: 1px solid rgba(31,135,114,0.3);
  border-radius: 100px;
  font-family: var(--font-mono-mod);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #1F8772;
  background: rgba(31,135,114,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.ab-pill:hover { background: rgba(31,135,114,0.12); border-color: rgba(31,135,114,0.5); }


/* ── WHY ──────────────────────────────────────────────────── */
.ab-why {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 6vw, 80px);
  background: linear-gradient(135deg, #04140F 0%, #0D4438 60%, #14695A 100%);
}
.ab-why-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ab-why-shape-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(31,135,114,0.18) 0%, transparent 70%);
}
.ab-why-shape-2 {
  width: 300px; height: 300px;
  bottom: -80px; left: 10%;
  background: radial-gradient(circle, rgba(201,162,74,0.14) 0%, transparent 70%);
}
.ab-why-shape-3 {
  width: 180px; height: 180px;
  top: 30%; left: 40%;
  border: 1px solid rgba(224,191,114,0.1);
  background: transparent;
  animation: ab-spin 30s linear infinite;
}

.ab-why-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .ab-why-inner { grid-template-columns: 1fr; gap: 50px; }
}

.ab-why-text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ab-why-text.ab-visible { opacity: 1; transform: translateY(0); }

.ab-quote-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(224,191,114,0.2);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.ab-quote-block.ab-visible { opacity: 1; transform: translateY(0); }
.ab-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}
.ab-quote-text {
  font-family: var(--font-stylish);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
}
.ab-quote-attr {
  font-family: var(--font-mono-mod);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(247,241,230,0.4);
  text-transform: uppercase;
}


/* ── VALUES ───────────────────────────────────────────────── */
.ab-values {
  padding: clamp(80px, 10vw, 130px) clamp(20px, 6vw, 80px);
  background: #F7F1E6;
}
.ab-values-inner { max-width: 1160px; margin: 0 auto; }
.ab-values-header { margin-bottom: 60px; }

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .ab-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ab-values-grid { grid-template-columns: 1fr; } }

.ab-val-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,68,56,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(28px);
}
.ab-val-card.ab-visible { opacity: 1; transform: translateY(0); }
.ab-val-card:nth-child(2) { transition-delay: 0.08s; }
.ab-val-card:nth-child(3) { transition-delay: 0.16s; }
.ab-val-card:nth-child(4) { transition-delay: 0.24s; }
.ab-val-card:nth-child(5) { transition-delay: 0.32s; }
.ab-val-card:nth-child(6) { transition-delay: 0.40s; }

.ab-val-card:hover { transform: translateY(-6px) !important; box-shadow: 0 16px 48px rgba(13,68,56,0.14); }

.ab-val-card-gold { background: linear-gradient(135deg, #0D4438, #1F8772); }
.ab-val-card-gold .ab-val-title { color: var(--cream); }
.ab-val-card-gold .ab-val-body  { color: rgba(247,241,230,0.7); }
.ab-val-card-gold .ab-val-number { color: rgba(255,255,255,0.06); }

.ab-val-card-dark { background: #0D4438; }
.ab-val-card-dark .ab-val-title { color: var(--cream); }
.ab-val-card-dark .ab-val-body  { color: rgba(247,241,230,0.65); }
.ab-val-card-dark .ab-val-number { color: rgba(255,255,255,0.06); }

.ab-val-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ic, #1F8772) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ic, #1F8772);
  /* fallback for browsers without color-mix */
  background: rgba(31,135,114,0.1);
}
.ab-val-icon-wrap svg { width: 24px; height: 24px; color: inherit; }

.ab-val-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #0D4438;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ab-val-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #5B6D68;
}
.ab-val-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 200;
  color: rgba(13,68,56,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}


/* ── MISSION ──────────────────────────────────────────────── */
.ab-mission {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) clamp(20px, 8vw, 120px);
  background: var(--night);
  text-align: center;
}
.ab-mission-bg { position: absolute; inset: 0; pointer-events: none; }
.ab-mission-shape {
  position: absolute;
  border-radius: 50%;
}
.ab-ms-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(31,135,114,0.12) 0%, transparent 65%);
}
.ab-ms-2 {
  width: 400px; height: 400px;
  bottom: -120px; right: 5%;
  background: radial-gradient(circle, rgba(201,162,74,0.1) 0%, transparent 65%);
}
.ab-ms-3 {
  width: 200px; height: 200px;
  top: 30%; left: 50%;
  border: 1px solid rgba(224,191,114,0.08);
  background: transparent;
  animation: ab-spin 40s linear infinite;
}

.ab-mission-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ab-mission-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--cream);
  margin-top: 20px;
  margin-bottom: 40px;
}
.ab-mission-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.ab-mission-sub {
  font-family: var(--font-mono-mod);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,241,230,0.4);
}


/* ── APPROACH ─────────────────────────────────────────────── */
.ab-approach {
  padding: clamp(80px, 10vw, 130px) clamp(20px, 6vw, 80px);
  background: #F7F1E6;
}
.ab-approach-inner { max-width: 1160px; margin: 0 auto; }
.ab-approach-header {
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ab-approach-header.ab-visible { opacity: 1; transform: translateY(0); }

.ab-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 860px) {
  .ab-steps { flex-direction: column; gap: 0; }
  .ab-step-arrow { transform: rotate(90deg); margin: 0 auto; }
}

.ab-step {
  flex: 1;
  padding: 32px 28px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(13,68,56,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.ab-step.ab-visible { opacity: 1; transform: translateY(0); }
.ab-step:nth-child(1) { transition-delay: 0s; }
.ab-step:nth-child(3) { transition-delay: 0.1s; }
.ab-step:nth-child(5) { transition-delay: 0.2s; }
.ab-step:nth-child(7) { transition-delay: 0.3s; }
.ab-step:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 36px rgba(13,68,56,0.12); }

.ab-step-num {
  font-family: var(--font-mono-mod);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #94A39E;
  margin-bottom: 12px;
}
.ab-step-icon { width: 28px; height: 28px; margin-bottom: 16px; }
.ab-step-icon svg { width: 100%; height: 100%; }
.ab-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #0D4438;
  margin-bottom: 10px;
}
.ab-step-body { font-size: 0.85rem; line-height: 1.7; color: #5B6D68; }

.ab-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #C9A24A;
  padding: 0 10px;
  margin-top: 60px;
  flex-shrink: 0;
}


/* ── SIGN-OFF ─────────────────────────────────────────────── */
.ab-signoff {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 160px) clamp(20px, 8vw, 120px);
  background: linear-gradient(160deg, #04140F 0%, #0D4438 50%, #14695A 100%);
  text-align: center;
}
.ab-signoff-shapes { position: absolute; inset: 0; pointer-events: none; }
.ab-sf-shape { position: absolute; }

.ab-sf-1 {
  width: 500px; height: 500px;
  top: -160px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,168,138,0.18) 0%, transparent 65%);
}
.ab-sf-2 {
  width: 300px; height: 300px;
  bottom: -60px; right: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,74,0.15) 0%, transparent 65%);
}
.ab-sf-3 {
  width: 160px; height: 160px;
  top: 20%; right: 20%;
  border: 1px solid rgba(224,191,114,0.15);
  border-radius: 50%;
  animation: ab-spin 25s linear infinite;
}
.ab-sf-4 {
  width: 80px; height: 80px;
  bottom: 25%; left: 18%;
  border: 1.5px solid rgba(43,168,138,0.2);
  border-radius: 20px;
  transform: rotate(20deg);
  animation: ab-float 7s ease-in-out infinite;
}

.ab-signoff-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ab-signoff-badge {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 28px;
  animation: ab-float 4s ease-in-out infinite;
  display: inline-block;
}
.ab-signoff-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}
.ab-signoff-h2 em { font-style: italic; color: var(--gold-warm); }
.ab-signoff-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(247,241,230,0.55);
  line-height: 1.7;
  margin-bottom: 44px;
}
.ab-signoff-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
