/* ═══════════════════════════════════════════════
   NAARI — About Us Page Styles
   Uses global :root tokens from style.css
═══════════════════════════════════════════════ */

/* ── Page-level offset for fixed header ── */
.aboutus-page {
  padding-top: 114px; /* exact header height (80 nav + 34 strip) */
}

/* ─────────────────────────────────────────────
   CINEMATIC HERO
   ───────────────────────────────────────────── */
.au-hero {
  position: relative;
  background: linear-gradient(135deg, #0f0202 0%, #2d0606 45%, #0f0202 100%);
  padding: 24px 0 40px;
  overflow: hidden;
  text-align: center;
}

.au-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(217,28,28,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% -10%, rgba(217,28,28,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating orbs */
.au-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: au-float 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.au-orb-1 {
  width: 360px; height: 360px;
  background: #D91C1C;
  top: -80px; right: -60px;
  animation-delay: 0s;
}
.au-orb-2 {
  width: 260px; height: 260px;
  background: #FAB0B0;
  bottom: -40px; left: -40px;
  animation-delay: 3s;
}
.au-orb-3 {
  width: 180px; height: 180px;
  background: #FFD93D;
  top: 30%; left: 10%;
  opacity: 0.10;
  animation-delay: 1.5s;
}

@keyframes au-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 15px) scale(1.08); }
}

.au-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.au-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  animation: au-fade-down 0.7s ease both;
}

.au-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: au-fade-up 0.8s 0.1s ease both;
}
.au-hero h1 em {
  font-style: normal;
  color: #FFD93D;
}

.au-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: au-fade-up 0.8s 0.2s ease both;
}

/* Stats row inside hero */
.au-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: au-fade-up 0.9s 0.35s ease both;
}
.au-stat {
  text-align: center;
}
.au-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #FFD93D;
  line-height: 1;
}
.au-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.3px;
}



/* ─────────────────────────────────────────────
   FOUNDER SECTION
───────────────────────────────────────────── */
.au-founder-section {
  padding: 96px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle bg pattern */
.au-founder-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,28,28,0.04) 0%, transparent 70%);
  right: -100px; top: -100px;
  pointer-events: none;
}

.au-founder-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Founder Image Card ── */
.au-founder-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
}

.au-img-tilt {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 28px;
  will-change: transform;
}
.au-img-tilt:hover {
  transform: rotateY(-6deg) rotateX(4deg) scale(1.025);
}

.au-founder-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(217,28,28,0.18),
    0 4px 16px rgba(0,0,0,0.08);
}

/* Removed overlay to ensure image clarity */
.au-founder-img-wrap::after {
  content: none;
}

.au-founder-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* decorative frame ring */
.au-founder-card::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(217,28,28,0.18);
  border-radius: 36px;
  pointer-events: none;
  animation: au-ring-pulse 3s ease-in-out infinite;
}

@keyframes au-ring-pulse {
  0%,100% { opacity:0.18; transform: scale(1); }
  50%      { opacity:0.38; transform: scale(1.012); }
}

/* name badge below image */
.au-founder-badge {
  margin-top: 24px;
  text-align: center;
}
.au-founder-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1C1C1E;
  margin-bottom: 4px;
}
.au-founder-title {
  font-size: 13px;
  font-weight: 600;
  color: #D91C1C;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.au-founder-title::before,
.au-founder-title::after {
  content: '';
  width: 28px;
  height: 1px;
  background: #D91C1C;
  opacity: 0.4;
}

/* ── Founder Story Copy ── */
.au-founder-copy {}

.au-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,28,28,0.07);
  border: 1px solid rgba(217,28,28,0.18);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #D91C1C;
  margin-bottom: 20px;
}

.au-founder-copy h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: #1C1C1E;
  line-height: 1.18;
  margin-bottom: 20px;
}
.au-founder-copy h2 span {
  color: #D91C1C;
}

.au-founder-copy p {
  font-size: 15.5px;
  color: #4A4A52;
  line-height: 1.82;
  margin-bottom: 16px;
}

.au-pull-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid #D91C1C;
  background: rgba(217,28,28,0.04);
  border-radius: 0 14px 14px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1E;
  line-height: 1.55;
  font-style: italic;
}

.au-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.au-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #D91C1C;
  color: #fff;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(217,28,28,0.32);
  transition: background 0.26s, transform 0.26s, box-shadow 0.26s;
}
.au-btn-primary:hover {
  background: #B51515;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,28,28,0.40);
  color: #fff;
}

.au-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid rgba(28,28,30,0.15);
  color: #1C1C1E;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.26s, color 0.26s, background 0.26s, transform 0.26s;
}
.au-btn-ghost:hover {
  border-color: #D91C1C;
  color: #D91C1C;
  background: rgba(217,28,28,0.05);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   VALUES SECTION
───────────────────────────────────────────── */
.au-values-section {
  background: #FDF5F5;
  padding: 88px 0;
  border-top: 1px solid rgba(217,28,28,0.07);
  border-bottom: 1px solid rgba(217,28,28,0.07);
}

.au-values-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.au-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.au-section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #1C1C1E;
  margin-bottom: 12px;
}
.au-section-head h2 span { color: #D91C1C; }
.au-section-head p {
  font-size: 15px;
  color: #8A8A96;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.au-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.au-value-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid rgba(217,28,28,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}
.au-value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D91C1C, #FAB0B0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.au-value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(217,28,28,0.12); }
.au-value-card:hover::before { transform: scaleX(1); }

.au-value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(217,28,28,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.au-value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1C1C1E;
  margin-bottom: 10px;
}
.au-value-card p {
  font-size: 13.5px;
  color: #4A4A52;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   MISSION BAND
───────────────────────────────────────────── */
.au-mission-band {
  background: linear-gradient(135deg, #1a0505 0%, #3d0808 50%, #1a0505 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.au-mission-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(217,28,28,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.au-mission-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.au-mission-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.au-mission-band h2 em {
  font-style: normal;
  color: #FFD93D;
}
.au-mission-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
}
.au-mission-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #FFD93D;
  color: #1C1C1E;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
  transition: transform 0.26s, box-shadow 0.26s, background 0.26s;
}
.au-mission-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,0.50);
  background: #ffe866;
  color: #1C1C1E;
}

/* ─────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────── */
.au-journey-section {
  background: #fff;
  padding: 96px 0;
}
.au-journey-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.au-timeline {
  position: relative;
  padding-left: 36px;
  margin-top: 48px;
}
.au-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #D91C1C 0%, rgba(217,28,28,0.1) 100%);
}

.au-tl-item {
  position: relative;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.au-tl-item.au-visible {
  opacity: 1;
  transform: none;
}

.au-tl-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #D91C1C;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(217,28,28,0.25);
}

.au-tl-year {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #D91C1C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.au-tl-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #1C1C1E;
  margin-bottom: 6px;
}
.au-tl-item p {
  font-size: 14px;
  color: #4A4A52;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */
.au-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.au-reveal.au-visible {
  opacity: 1;
  transform: none;
}

@keyframes au-fade-up {
  from { opacity:0; transform: translateY(22px); }
  to   { opacity:1; transform: none; }
}
@keyframes au-fade-down {
  from { opacity:0; transform: translateY(-12px); }
  to   { opacity:1; transform: none; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .au-founder-wrap { grid-template-columns: 1fr; gap: 48px; max-width: 560px; }
  .au-values-grid  { grid-template-columns: repeat(2, 1fr); }
  .au-stats { gap: 28px; }
}

@media (max-width: 640px) {
  .au-hero { padding: 96px 0 64px; }
  .au-values-grid { grid-template-columns: 1fr; }
  .au-stats { gap: 24px; }
  .au-stat-num { font-size: 28px; }
  .au-founder-section { padding: 64px 0 56px; }
  .au-values-section { padding: 64px 0; }
  .au-mission-band { padding: 72px 0; }
  .au-journey-section { padding: 64px 0; }
  .au-cta-row { flex-direction: column; }
  .au-btn-primary, .au-btn-ghost { justify-content: center; }
}
