﻿/* ==========================================================
   ABOUT PAGE v2 — Ultra-Premium Editorial Design
   PANTONE 606 C  → #C5A14A  (warm gold)
   PANTONE 2385 C → #D81E5B  (rich magenta)
   Background     → #0C0B11  (deep matte charcoal-black)
   ========================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   SHARED ABOUT TOKENS
   ============================================================ */  
.about-page-wrapper {
  background: #0C0B11;
  overflow-x: hidden;
}

/* ---- Keyframes ---- */
@keyframes ab-fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ab-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ab-goldPulse {
  0%,100% { opacity: 0.5; }
  50%     { opacity: 1;   }
}
@keyframes ab-magentaBreath {
  0%,100% { opacity: 0.18; transform: scale(1);    }
  50%     { opacity: 0.32; transform: scale(1.12); }
}
@keyframes ab-floatDot {
  0%   { transform: translateY(0); opacity: 0.15; }
  50%  { transform: translateY(-24px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 0.15; }
}

/* ============================================================
   1A. ABOUT HERO (ISOLATED)
   ============================================================ */
.ab2-hero {
  --ab2-ink: #f1ede4;
  --ab2-gold: #c5a14a;
  --ab2-magenta: #d81e5b;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 162px 0 124px;
  background: #0c0b11;
}

.ab2-hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 161, 74, 0.52), transparent);
  z-index: 4;
}

.ab2-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(12, 11, 17, 0), rgba(12, 11, 17, 0.92));
  z-index: 3;
}

.ab2-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/normal/group.1.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(0.98) contrast(0.94);
  z-index: 0;
}

.ab2-hero__overlay {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(90deg, rgba(8, 12, 26, 0.86) 0%, rgba(14, 14, 28, 0.76) 48%, rgba(24, 12, 25, 0.84) 100%),
    radial-gradient(circle at 22% 42%, rgba(9, 76, 112, 0.18) 0%, transparent 48%),
    radial-gradient(circle at 86% 18%, rgba(216, 30, 91, 0.12) 0%, transparent 44%); */
    background: linear-gradient(102deg, rgba(8, 12, 26, 0.86) 0%, rgb(62 62 109 / 76%) 48%, rgb(24 12 25 / 31%) 100%), radial-gradient(circle at 22% 42%, rgb(22 24 25 / 0%) 0%, transparent 48%), radial-gradient(circle at 86% 18%, rgb(216 30 91 / 0%) 0%, #312e2e00 44%);
  z-index: 2;
  pointer-events: none;
}

.ab2-hero .container {
  position: relative;
  z-index: 4;
}

.ab2-hero__content {
  max-width: 620px;
  animation: ab-fadeUp 0.85s ease both;
}

.ab2-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Myriad Pro", "Myriad", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ab2-gold);
  margin-bottom: 14px;
}

.ab2-hero__eyebrow::after {
  content: '';
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--ab2-gold), rgba(216, 30, 91, 0.9), transparent);
}

.ab2-hero__title {
  margin: 0 0 26px;
  /* font-family: "Franie", serif; */
  /* font-size: clamp(2.8rem, 7.2vw, 5.7rem); */
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--ab2-ink);
  text-shadow: 0 16px 30px rgba(0, 0, 0, 0.38);
}

.ab2-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(25, 31, 49, 0.52);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.ab2-hero__crumb-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Myriad Pro", "Myriad", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f1ede4;
  transition: color 0.25s ease;
}

.ab2-hero__crumb-link:hover {
  color: var(--ab2-gold);
}

.ab2-hero__crumb-link i {
  font-size: 0.92rem;
}

.ab2-hero__crumb-sep {
  font-size: 1.05rem;
  color: rgba(197, 161, 74, 0.9);
}

.ab2-hero__crumb-current {
  font-family: "Myriad Pro", "Myriad", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* ============================================================
   1. HERO
   ============================================================ */
:root {
  /* Updated to match reference colors */
  --theme-color: #D539B5;        /* Brand Purple */
  --theme-color-2: #CFB500;      /* Brand Gold */
  --title-color: #F9FAFB;        /* Primary Light Text */
  --body-color: #9CA3AF;         /* Muted Text */
  --smoke-color: rgba(17, 24, 39, 0.78); /* Glass effect background */
  --smoke-color2: rgba(5, 6, 14, 0.96);
  --black-color: #05040A;        /* Deep Background */
  --black-color-2: #9CA3AF;
  --black-color-3: #02010A;
  --dark-color: #05040A;
  --gray-color: rgba(255, 255, 255, 0.06); /* Subtle borders */
  --white-color: #ffffff;
  --light-color: #9CA3AF;
  --yellow-color: #D2C55F;
  --success-color: #10b981;
  --error-color: #dc3545;
  --border-color: rgba(148, 163, 184, 0.18);
  
  --title-font:  "Franie" serif !important;
  --body-font: "Canela" sans-serif !important;
  --style-font: "Franie" serif !important;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

 
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--ab-hero-line), rgba(255, 255, 255, 0));
  z-index: 4;
}

.ab-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(15, 17, 27, 0), rgba(12, 11, 17, 0.9));
  z-index: 1;
}

.ab-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 161, 74, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 161, 74, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.2;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 0;
}

.ab-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  animation: ab-magentaBreath 8s ease-in-out infinite;
  z-index: 0;
}

.ab-hero__orb--one {
  width: 320px;
  height: 320px;
  top: 110px;
  left: -100px;
  background: rgba(197, 161, 74, 0.3);
}

.ab-hero__orb--two {
  width: 440px;
  height: 440px;
  right: -120px;
  bottom: -140px;
  background: rgba(216, 30, 91, 0.33);
  animation-delay: 1.1s;
}

.ab-hero .container {
  position: relative;
  z-index: 3;
}

.ab-hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.ab-hero__content {
  max-width: 580px;
}

.ab-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ab-hero-font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ab-hero-accent);
  margin-bottom: 26px;
}

.ab-hero__label::before {
  content: '';
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--ab-hero-accent), var(--ab-hero-accent-soft));
}

.ab-hero__title {
  font-family: var(--ab-hero-font-heading);
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 1.03;
  color: var(--ab-hero-ink);
  margin-bottom: 20px;
}

.ab-hero__lead {
  font-family: var(--ab-hero-font-body);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ab-hero-soft-ink);
  max-width: 520px;
  margin-bottom: 34px;
}

.ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ab-hero .th-btn.blue-btn {
  font-family: var(--ab-hero-font-body);
  border-radius: 999px;
  padding: 14px 30px;
  background: linear-gradient(90deg, var(--ab-hero-accent), var(--ab-hero-accent-soft));
  color: #0c0b11;
  border: none;
}

.ab-hero__link {
  position: relative;
  font-family: var(--ab-hero-font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ab-hero-ink);
  padding-bottom: 6px;
}

.ab-hero__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ab-hero-accent), transparent);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ab-hero__link:hover::after {
  transform: scaleX(0.62);
}

.ab-hero__highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 0;
  margin: 0;
}

.ab-hero__highlights li {
  position: relative;
  padding-left: 20px;
  font-family: var(--ab-hero-font-body);
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--ab-hero-soft-ink);
}

.ab-hero__highlights li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 7px;
  background: linear-gradient(180deg, var(--ab-hero-accent), var(--ab-hero-accent-soft));
  box-shadow: 0 0 0 4px rgba(216, 30, 91, 0.22);
}

.ab-hero__visual {
  position: relative;
}

.ab-hero__photo-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(18, 22, 41, 0.28);
}

.ab-hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 161, 74, 0.42);
  border-radius: 28px;
  pointer-events: none;
  z-index: 2;
}

.ab-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ab-hero__stamp {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(18, 22, 41, 0.84);
  border: 1px solid rgba(197, 161, 74, 0.45);
  color: #fff;
  backdrop-filter: blur(6px);
  transform: rotate(-10deg);
}

.ab-hero__stamp span {
  font-family: var(--ab-hero-font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.76;
}

.ab-hero__stamp strong {
  font-family: var(--ab-hero-font-heading);
  font-size: 2rem;
  line-height: 1;
  margin-top: 6px;
  color: var(--ab-hero-accent);
}

.ab-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.ab-hero__stat-card {
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--ab-hero-panel);
  border: 1px solid rgba(197, 161, 74, 0.28);
  text-align: center;
}

.ab-hero__stat-value {
  display: block;
  font-family: var(--ab-hero-font-heading);
  font-size: 1.5rem;
  color: var(--ab-hero-ink);
  line-height: 1;
  margin-bottom: 5px;
}

.ab-hero__stat-label {
  display: block;
  font-family: var(--ab-hero-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ab-hero-soft-ink);
}

/* ============================================================
   2. BRAND STORY — Full-width split-screen
   ============================================================ */
.ab-story {
  position: relative;
  background: #0C0B11;
  overflow: hidden;
}

/* Subtle diagonal texture overlay */
.ab-story__texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(197,161,74,0.015) 0px,
    rgba(197,161,74,0.015) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
  z-index: 0;
}

.ab-story__split {
  min-height: 620px;
  position: relative;
  z-index: 1;
}

/* LEFT PANEL */
.ab-story__left {
  background: #100E1A;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 0;
  position: relative;
}
.ab-story__left-inner {
  padding: 0 60px 0 40px;
  max-width: 420px;
}

.ab-story__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C5A14A;
  opacity: 0.7;
  margin-bottom: 24px;
}

.ab-story__heading {
  font-family:var(--title-font);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #F0EDE6;
  margin: 0;
}
.ab-story__heading--gold {
  color: #C5A14A;
  font-style: italic;
  display: block;
}

/* Vertical gold divider */
.ab-story__divider {
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, #C5A14A 25%, #D81E5B 75%, transparent);
  z-index: 2;
}

/* RIGHT PANEL */
.ab-story__right {
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.ab-story__right-inner {
  padding: 0 60px 0 80px;
  max-width: 640px;
}

.ab-story__para {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.95;
  color: #8E8699;
  margin-bottom: 1.4rem;
}
.ab-story__para--lead {
  font-size: 1.12rem;
  color: #C4BDD0;
  font-weight: 300;
  line-height: 1.8;
}

/* Stat row */
.ab-story__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(197,161,74,0.15);
}
.ab-story__stat {
  flex: 1;
  text-align: center;
}
.ab-story__stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #C5A14A;
  line-height: 1;
  margin-bottom: 6px;
}
.ab-story__stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8E8699;
}
.ab-story__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(197,161,74,0.2);
}

/* ============================================================
   3. MISSION & VISION
   ============================================================ */
.ab-mv {
  position: relative;
  padding: 112px 0 122px;
  background:
    radial-gradient(circle at 86% -10%, rgba(216, 30, 91, 0.14) 0%, transparent 38%),
    radial-gradient(circle at 12% 108%, rgba(197, 161, 74, 0.14) 0%, transparent 42%),
    #0c0b11;
  overflow: hidden;
}

.ab-mv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(197, 161, 74, 0.014) 0px,
    rgba(197, 161, 74, 0.014) 1px,
    transparent 1px,
    transparent 56px
  );
  z-index: 0;
  pointer-events: none;
}

.ab-mv::after {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 720px;
  height: 360px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(216, 30, 91, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.ab-mv__bg-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(3px);
  animation: abMvOrbFloat 9s ease-in-out infinite;
}

.ab-mv__bg-orb--one {
  inset: auto auto -170px -170px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(197, 161, 74, 0.17) 0%, transparent 72%);
}

.ab-mv__bg-orb--two {
  top: -170px;
  right: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(216, 30, 91, 0.15) 0%, transparent 72%);
  animation-delay: 1.1s;
}

.ab-mv .container {
  position: relative;
  z-index: 2;
}

.ab-mv__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c5a14a;
  opacity: 0.84;
}

.ab-mv__headline {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.1vw, 3.5rem);
  line-height: 1.12;
  color: #f0ede6;
}

.ab-mv__intro {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.82;
  color: #8e8699;
}

.ab-mv__stage {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(197, 161, 74, 0.25);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  background: #0f0d17;
  isolation: isolate;
  backdrop-filter: blur(2px);
}

.ab-mv__stage::before {
  content: '';
  position: absolute;
  top: -16%;
  left: 49.8%;
  width: 4.4%;
  height: 132%;
  transform: skewX(-37deg);
  background: linear-gradient(180deg, rgba(197, 161, 74, 0.72) 0%, rgba(240, 237, 230, 0.38) 48%, rgba(216, 30, 91, 0.66) 100%);
  filter: drop-shadow(0 0 18px rgba(197, 161, 74, 0.28));
  z-index: 5;
  animation: abMvDividerPulse 6.4s ease-in-out infinite;
}

.ab-mv__stage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 161, 74, 0.65) 0%, rgba(216, 30, 91, 0.58) 100%);
  z-index: 6;
  pointer-events: none;
}

.ab-mv__stage-gloss {
  position: absolute;
  inset: -18% -42%;
  background: linear-gradient(112deg, transparent 40%, rgba(197, 161, 74, 0.14) 50%, rgba(216, 30, 91, 0.1) 56%, transparent 64%);
  z-index: 4;
  pointer-events: none;
  animation: abMvGloss 8s ease-in-out infinite;
}

.ab-mv-panel {
  position: relative;
  z-index: 3;
  padding: 52px 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ab-mv-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ab-mv-panel > * {
  position: relative;
  z-index: 1;
}

.ab-mv-panel--vision {
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  background: linear-gradient(138deg, #171328 0%, #121027 45%, #0d0e1f 100%);
  color: #f0ede6;
  animation: abMvSlideLeft 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ab-mv-panel--vision::before {
  background: linear-gradient(180deg, rgba(197, 161, 74, 0.08) 0%, transparent 50%);
}

.ab-mv-panel--mission {
  margin-left: -9%;
  padding-left: 17%;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(140deg, #181523 0%, #121220 58%, #0e111d 100%);
  color: #e6e0ec;
  animation: abMvSlideRight 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s both;
}

.ab-mv-panel--mission::before {
  background: linear-gradient(180deg, rgba(216, 30, 91, 0.08) 0%, transparent 52%);
}

.ab-mv__stage:hover .ab-mv-panel--vision {
  transform: translateX(-3px);
}

.ab-mv__stage:hover .ab-mv-panel--mission {
  transform: translateX(3px);
}

.ab-mv-panel__inner {
  width: 100%;
}

.ab-mv-panel--vision .ab-mv-panel__inner {
  max-width: 78%;
}

.ab-mv-panel--mission .ab-mv-panel__inner {
  max-width: 86%;
}

.ab-mv-panel__icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.ab-mv-panel--vision .ab-mv-panel__icon {
  color: #f0ede6;
  border: 1px solid rgba(197, 161, 74, 0.42);
  background: linear-gradient(135deg, rgba(197, 161, 74, 0.24), rgba(197, 161, 74, 0.06));
  box-shadow: 0 14px 32px rgba(197, 161, 74, 0.14);
  animation: abMvIconFloat 5s ease-in-out infinite;
}

.ab-mv-panel--mission .ab-mv-panel__icon {
  color: #f3d8e5;
  border: 1px solid rgba(216, 30, 91, 0.34);
  background: linear-gradient(135deg, rgba(216, 30, 91, 0.2), rgba(216, 30, 91, 0.05));
  box-shadow: 0 12px 28px rgba(216, 30, 91, 0.16);
  animation: abMvIconFloat 5s ease-in-out infinite 0.35s;
}

.ab-mv-panel__label {
  display: inline-block;
  /* font-family: 'Inter', sans-serif; */
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
}

.ab-mv-panel--vision .ab-mv-panel__label {
  color: #c5a14a;
}

.ab-mv-panel--mission .ab-mv-panel__label {
  color: #d35b86;
}

.ab-mv-panel--vision .ab-mv-panel__title {
  color: #f0ede6;
  text-shadow: 0 0 24px rgba(197, 161, 74, 0.08);
}

.ab-mv-panel--mission .ab-mv-panel__title {
  color: #ece7f1;
  text-shadow: 0 0 24px rgba(216, 30, 91, 0.08);
}

.ab-mv-panel__title {
  margin: 0;
  /* font-family: 'Franie', serif; */
  font-size: clamp(1.00rem, 2.3vw, 1.86rem);
  line-height: 1.28;
}

.ab-mv-panel__text {
  margin: 0;
  /* font-family: 'Inter', sans-serif; */
  font-size: 0.92rem;
  line-height: 1.68;
}

.ab-mv-panel--vision .ab-mv-panel__text {
  color: #b9b1c5;
}

.ab-mv-panel--mission .ab-mv-panel__text {
  color: #a9a1b7;
}

.ab-mv-panel__points {
  list-style: none;
  padding: 0;
  margin: 7px 0 0;
  display: grid;
  gap: 8px;
}

.ab-mv-panel__points li {
  position: relative;
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.89rem;
  line-height: 1.5;
}

.ab-mv-panel__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ab-mv-panel--vision .ab-mv-panel__points li {
  color: #cdc6d8;
}

.ab-mv-panel--vision .ab-mv-panel__points li::before {
  background: linear-gradient(180deg, #e0c57c, #c5a14a);
  box-shadow: 0 0 10px rgba(197, 161, 74, 0.5);
}

.ab-mv-panel--mission .ab-mv-panel__points li {
  color: #bdb5ca;
}

.ab-mv-panel--mission .ab-mv-panel__points li::before {
  background: linear-gradient(180deg, #ef6c9b, #d81e5b);
  box-shadow: 0 0 10px rgba(216, 30, 91, 0.32);
}

@keyframes abMvGloss {
  0% {
    transform: translateX(-14%) translateY(0);
    opacity: 0.26;
  }
  50% {
    transform: translateX(14%) translateY(-2%);
    opacity: 0.42;
  }
  100% {
    transform: translateX(-14%) translateY(0);
    opacity: 0.26;
  }
}

@keyframes abMvIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes abMvDividerPulse {
  0%, 100% { opacity: 0.82; }
  50% { opacity: 1; }
}

@keyframes abMvOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -10px); }
}

@keyframes abMvSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes abMvSlideRight {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes abMvStackReveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes abMvCardShimmer {
  0% {
    transform: translateX(-18%);
    opacity: 0.1;
  }
  45% {
    opacity: 0.45;
  }
  100% {
    transform: translateX(18%);
    opacity: 0.1;
  }
}

@keyframes abMvStageBreath {
  0%, 100% {
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(197, 161, 74, 0.08);
  }
  50% {
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(216, 30, 91, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-mv__bg-orb,
  .ab-mv__stage::before,
  .ab-mv__stage-gloss,
  .ab-mv-panel,
  .ab-mv-panel__icon,
  .ab-mv-panel::after,
  .ab-mv__stage {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-mv__stage::after {
    animation: none !important;
  }
}

/* ============================================================
   4. VISION — Centered oversized serif in magenta
   ============================================================ */
.ab-vision {
  position: relative;
  background: #0F0D19;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

/* Subtle architectural grid */
.ab-vision__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,161,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,161,74,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.ab-vision__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(216,30,91,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: ab-magentaBreath 6s ease-in-out infinite;
}

.ab-vision__inner {
  position: relative;
  z-index: 2;
}

.ab-vision__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C5A14A;
  opacity: 0.75;
  margin-bottom: 36px;
}

/* Oversized magenta serif headline */
.ab-vision__headline {
  font-family: 'Playfair Display', Georgia, serif;
  /* font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 700; */
  line-height: 1.1;
  color: #F0EDE6;
  margin-bottom: 44px;
}
.ab-vision__headline--mag {
  color: #D81E5B;
  font-style: italic;
  display: inline;
}

/* Diamond rule divider */
.ab-vision__rule-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}
.ab-vision__rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C5A14A);
}
.ab-vision__rule:last-child {
  transform: scaleX(-1);
}
.ab-vision__diamond {
  width: 8px; height: 8px;
  background: #C5A14A;
  transform: rotate(45deg);
  opacity: 0.7;
}

.ab-vision__body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #8E8699;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   5. VALUES — Three horizontal premium cards
   ============================================================ */
.ab-values {
  padding: 120px 0 130px;
  background: #0C0B11;
  position: relative;
  overflow: hidden;
}
.ab-values::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,161,74,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.ab-values__eyebrow {
  display: block;
  font-family: var(--title-font);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C5A14A;
  opacity: 0.7;
  margin-bottom: 16px;
}
.ab-values__heading {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #F0EDE6;
  margin-bottom: 0;
}

/* Value card */
.ab-vcard {
  position: relative;
  height: 100%;
  background: rgba(240,237,230,0.025);
  border: 1px solid rgba(197,161,74,0.22);
  border-radius: 3px;
  padding: 48px 38px 40px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}
.ab-vcard:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 30, 91, 0.5);
  box-shadow: 0 30px 70px rgba(216,30,91,0.12), 0 0 0 1px rgba(216,30,91,0.08);
}

/* Magenta hover glow */
.ab-vcard__glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(216,30,91,0.28) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ab-vcard:hover .ab-vcard__glow {
  opacity: 1;
}

.ab-vcard__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.ab-vcard__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #C5A14A;
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
}
.ab-vcard__top-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(197,161,74,0.45) 0%, transparent 100%);
}

.ab-vcard__title {
  font-family: var(--title-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: #F0EDE6;
  margin-bottom: 14px;
  line-height: 1.3;
}
.ab-vcard__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #8E8699;
  margin-bottom: 28px;
}

/* Footer accent */
.ab-vcard__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ab-vcard__footer-rule {
  width: 28px;
  height: 1px;
  background: #D81E5B;
  opacity: 0.6;
  flex-shrink: 0;
}
.ab-vcard__accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: #D81E5B;
  opacity: 0.8;
}

/* ============================================================
   6. FOUNDERS
   ============================================================ */
.ab-founders {
  position: relative;
  padding: 110px 0 120px;
  background: #0f0d17;
  overflow: hidden;
}

.ab-founders__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(197,161,74,0.18) 0%, transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(216,30,91,0.18) 0%, transparent 40%);
  pointer-events: none;
}

.ab-founders .container {
  position: relative;
  z-index: 2;
}

.ab-founders__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #C5A14A;
  opacity: 0.84;
  margin-bottom: 14px;
}

.ab-founders__title {
  font-family: var(--title-font);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.2;
  color: #F0EDE6;
  margin-bottom: 12px;
}

.ab-founders__intro {
  max-width: 640px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #A59AB3;
}

.ab-founders__grid {
  margin-top: 40px;
}

.ab-founders__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.ab-founders .th-btn.blue-btn {
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  background: linear-gradient(90deg, #d49c38, #cb5b7e);
  color: #0C0B11;
  box-shadow: 0 12px 26px rgba(216,30,91,0.28);
}

/* ============================================================
   7. STUDIO PHILOSOPHY
   ============================================================ */
.ab-philosophy {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.ab-philosophy__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(216,30,91,0.30) 0%, transparent 58%),
    linear-gradient(180deg, #0C0B11 0%, #140813 35%, #140813 65%, #0C0B11 100%);
  z-index: 0;
  animation: ab-magentaBreath 8s ease-in-out infinite;
}

/* Top and bottom framing lines */
.ab-philosophy__frame {
  position: absolute;
  left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,161,74,0.4) 30%, rgba(197,161,74,0.4) 70%, transparent);
  z-index: 2;
}
.ab-philosophy__frame--top    { top: 40px;    }
.ab-philosophy__frame--bottom { bottom: 40px; }

.ab-philosophy__container {
  position: relative;
  z-index: 3;
  padding: 120px 15px;
}

/* Decorative star mark */
.ab-philosophy__mark {
  margin-bottom: 40px;
}
.ab-philosophy__mark-inner {
  font-size: 1rem;
  color: #C5A14A;
  opacity: 0.6;
  letter-spacing: 0.3em;
}

/* Quote */
.ab-philosophy__quote {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-style: italic;
  font-size: clamp(1.10rem, 2.6vw, 2.1rem);
  line-height: 1.7;
  color: #C5A14A;
  text-align: center;
  border: none;
  padding: 15px;
  margin: 0 auto 44px;
  max-width: 820px;
  text-shadow: 0 0 60px rgba(197,161,74,0.25);
}

/* Attribution */
.ab-philosophy__attr-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.ab-philosophy__attr-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C5A14A);
}
.ab-philosophy__attr-rule:last-child {
  transform: scaleX(-1);
}
.ab-philosophy__attr-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(197,161,74,0.7);
}

/* ============================================================
   ABOUT PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .ab-hero__layout { gap: 34px; }
  .ab-story__left-inner  { padding: 0 40px 0 24px; }
  .ab-story__right-inner { padding: 0 30px 0 50px; }
}

@media (max-width: 1199px) {
  .ab-mv {
    padding: 98px 0 104px;
  }
  .ab-mv__stage {
    margin-top: 44px;
    grid-template-columns: 1fr;
    border-radius: 24px;
    animation: abMvStageBreath 7.2s ease-in-out infinite;
  }
  .ab-mv__stage::before {
    display: none;
  }
  .ab-mv__stage-gloss {
    inset: -12% -36%;
    animation-duration: 10s;
    opacity: 0.8;
  }
  .ab-mv-panel {
    margin: 0;
    padding: 40px 36px 34px;
    clip-path: none !important;
    gap: 10px;
    overflow: hidden;
    border-left: 1px solid rgba(197, 161, 74, 0.12);
    border-right: 1px solid rgba(216, 30, 91, 0.1);
    animation: abMvStackReveal 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }
  .ab-mv-panel::after {
    content: '';
    position: absolute;
    inset: -10% -40%;
    background: linear-gradient(112deg, transparent 42%, rgba(240, 237, 230, 0.12) 50%, transparent 58%);
    pointer-events: none;
    z-index: 0;
    animation: abMvCardShimmer 8.8s linear infinite;
  }
  .ab-mv-panel--vision {
    animation-delay: 0s;
  }
  .ab-mv-panel--mission {
    animation-delay: 0.18s;
  }
  .ab-mv-panel--vision::after {
    animation-delay: 0s;
  }
  .ab-mv-panel--mission::after {
    animation-delay: 2.8s;
  }
  .ab-mv-panel--vision {
    border-bottom: 1px solid rgba(197, 161, 74, 0.26);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%) !important;
  }
  .ab-mv-panel--mission {
    margin-left: 0;
    margin-top: -24px;
    padding-top: 54px;
    padding-left: 36px;
    padding-bottom: 92px;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%) !important;
  }
  .ab-mv-panel--vision .ab-mv-panel__inner,
  .ab-mv-panel--mission .ab-mv-panel__inner {
    max-width: 100%;
  }
  .ab-mv-panel__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.18rem;
    margin-bottom: 6px;
  }
  .ab-mv-panel__title {
    font-size: clamp(1.52rem, 2.9vw, 2rem);
  }
  .ab-mv-panel__text {
    font-size: 0.98rem;
    line-height: 1.75;
  }
  .ab-mv-panel__points li {
    font-size: 0.93rem;
    line-height: 1.56;
  }
  .ab-mv__stage:hover .ab-mv-panel--vision,
  .ab-mv__stage:hover .ab-mv-panel--mission {
    transform: none;
  }
}

@media (max-width: 991px) {
  .ab-hero {
    padding: 120px 0 72px;
  }
  .ab-hero__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ab-hero__content {
    max-width: 100%;
  }
  .ab-hero__highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ab-hero__visual {
    max-width: 620px;
    margin: 0 auto;
  }

  /* Story stacks vertically */
  .ab-story__split { flex-direction: column; }
  .ab-story__left  {
    justify-content: center;
    padding: 60px 24px;
  }
  .ab-story__left-inner  { padding: 0; text-align: center; }
  .ab-story__divider     { display: none; }
  .ab-story__right       { padding: 60px 24px; }
  .ab-story__right-inner { padding: 0; }
  .ab-story__stats       { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .ab-story__stat-divider { display: none; }

  .ab-mv { padding: 96px 0; }
  .ab-mv__stage {
    margin-top: 42px;
    grid-template-columns: 1fr;
    border-radius: 24px;
    animation: abMvStageBreath 6.8s ease-in-out infinite;
  }
  .ab-mv__stage::before {
    display: none;
  }
  .ab-mv__stage-gloss {
    inset: -12% -34%;
    animation-duration: 10s;
  }
  .ab-mv-panel {
    margin: 0;
    padding: 38px 32px 32px;
    gap: 10px;
    animation: abMvStackReveal 0.84s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }
  .ab-mv-panel::after {
    inset: -12% -46%;
    opacity: 0.92;
    animation-duration: 8s;
  }
  .ab-mv-panel--vision {
    animation-delay: 0s;
  }
  .ab-mv-panel--mission {
    animation-delay: 0.14s;
  }
  .ab-mv-panel--vision::after {
    animation-delay: 0s;
  }
  .ab-mv-panel--mission::after {
    animation-delay: 2.5s;
  }
  .ab-mv-panel--vision {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    border-bottom: 1px solid rgba(197, 161, 74, 0.26);
  }
  .ab-mv-panel--mission {
    margin-left: 0;
    margin-top: -28px;
    padding-top: 56px;
    padding-left: 32px;
    padding-bottom: 88px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }
  .ab-mv-panel--vision .ab-mv-panel__inner {
    max-width: 100%;
  }
  .ab-mv-panel--mission .ab-mv-panel__inner {
    max-width: 100%;
  }
  .ab-mv-panel__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.16rem;
    margin-bottom: 6px;
  }
  .ab-mv-panel__title {
    font-size: clamp(1.44rem, 2.6vw, 1.84rem);
  }
  .ab-mv-panel__text {
    font-size: 0.95rem;
    line-height: 1.72;
  }
  .ab-mv-panel__points li {
    font-size: 0.91rem;
    line-height: 1.52;
  }
  .ab-mv__stage:hover .ab-mv-panel--vision,
  .ab-mv__stage:hover .ab-mv-panel--mission {
    transform: none;
  }
  .ab-mv__headline { font-size: clamp(1.9rem, 4.8vw, 2.8rem); }
  .ab-mv__intro { max-width: 100%; margin: 0 auto; }

  .ab-vision { padding: 100px 0; }
  .ab-values { padding: 80px 0 90px; }
  .ab-founders { padding: 88px 0 96px; }
  .ab-founders__grid { margin-top: 34px; }
}

@media (max-width: 575px) {
  .ab-hero {
    padding: 104px 0 62px;
  }
  .ab-hero__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .ab-hero__lead {
    font-size: 1rem;
  }
  .ab-hero__actions {
    gap: 14px;
  }
  .ab-hero .th-btn.blue-btn {
    width: 100%;
    text-align: center;
  }
  .ab-hero__stamp {
    width: 96px;
    height: 96px;
    top: 14px;
    right: 14px;
  }
  .ab-hero__stamp strong {
    font-size: 1.6rem;
  }
  .ab-hero__stats {
    grid-template-columns: 1fr;
  }
  .ab-mv { padding: 74px 0; }
  .ab-mv__stage {
    margin-top: 30px;
    grid-template-columns: 1fr;
    border-radius: 16px;
    animation: abMvStageBreath 6s ease-in-out infinite;
  }
  .ab-mv__stage::before {
    display: none;
  }
  .ab-mv__stage-gloss {
    inset: -10% -48%;
    animation-duration: 11s;
    opacity: 0.95;
  }
  .ab-mv-panel {
    margin: 0;
    padding: 28px 20px 24px;
    clip-path: none !important;
    animation: abMvStackReveal 0.78s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }
  .ab-mv-panel::after {
    inset: -16% -56%;
    opacity: 0.8;
    animation-duration: 7.2s;
  }
  .ab-mv-panel--vision {
    animation-delay: 0s;
  }
  .ab-mv-panel--mission {
    animation-delay: 0.12s;
  }
  .ab-mv-panel--vision::after {
    animation-delay: 0s;
  }
  .ab-mv-panel--mission::after {
    animation-delay: 2.1s;
  }
  .ab-mv-panel__inner {
    max-width: 100% !important;
  }
  .ab-mv-panel--vision {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%) !important;
    border-bottom: 1px solid rgba(197, 161, 74, 0.24);
  }
  .ab-mv-panel--mission {
    margin-left: 0;
    margin-top: -18px;
    padding-top: 42px;
    padding-bottom: 98px;
    padding-left: 20px;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%) !important;
  }
  .ab-mv-panel__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.08rem;
    margin-bottom: 6px;
  }
  .ab-mv-panel__label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .ab-mv-panel__title {
    font-size: 1.52rem;
  }
  .ab-mv-panel__text {
    font-size: 0.94rem;
  }
  .ab-mv-panel__points li {
    font-size: 0.9rem;
    padding-left: 18px;
  }
  .ab-vcard { padding: 34px 24px 32px; }
  .ab-founders { padding: 72px 0 82px; }
  .ab-founders__intro { font-size: 0.94rem; }
  .ab-founders .th-btn.blue-btn {
    width: 100%;
    text-align: center;
  }
  .ab-philosophy__quote { font-size: 1.2rem; }
  .ab-philosophy__container { padding: 80px 15px; }
  .ab-philosophy__frame { left: 4%; right: 4%; }
}

/* ============================================================
   MISSION / VISION - PREMIUM TOUCH OVERRIDES
   ============================================================ */
@keyframes abMvTouchAurora {
  0% {
    transform: translateX(-20%) rotate(0deg);
    opacity: 0.22;
  }
  50% {
    transform: translateX(12%) rotate(1.2deg);
    opacity: 0.46;
  }
  100% {
    transform: translateX(-20%) rotate(0deg);
    opacity: 0.22;
  }
}

@keyframes abMvTouchFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes abMvTouchGlow {
  0%, 100% {
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(197, 161, 74, 0.08);
  }
  50% {
    box-shadow:
      0 34px 96px rgba(0, 0, 0, 0.66),
      0 0 0 1px rgba(216, 30, 91, 0.2);
  }
}

@keyframes abMvBulletPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.26);
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .ab-mv {
    padding: 102px 0 110px;
  }

  .ab-mv__stage {
    margin-top: 44px;
    border-radius: 26px;
    border: 1px solid transparent;
    background:
      linear-gradient(140deg, rgba(17, 15, 28, 0.96) 0%, rgba(15, 15, 28, 0.95) 100%) padding-box,
      linear-gradient(130deg, rgba(197, 161, 74, 0.62), rgba(216, 30, 91, 0.52), rgba(98, 68, 148, 0.5), rgba(197, 161, 74, 0.6)) border-box;
    animation: abMvTouchGlow 7.4s ease-in-out infinite;
  }

  .ab-mv__stage::after {
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    inset: -26% -56%;
    background: conic-gradient(
      from 120deg at 50% 50%,
      transparent 0deg,
      rgba(197, 161, 74, 0.24) 44deg,
      rgba(216, 30, 91, 0.2) 88deg,
      transparent 160deg,
      rgba(197, 161, 74, 0.16) 240deg,
      transparent 340deg
    );
    filter: blur(14px);
    animation: abMvTouchAurora 11s ease-in-out infinite;
    pointer-events: none;
  }

  .ab-mv__stage-gloss {
    inset: -18% -62%;
    opacity: 0.82;
    mix-blend-mode: screen;
    animation-duration: 8.8s;
  }

  .ab-mv-panel {
    padding: 42px 34px 36px;
    border-left: 1px solid rgba(197, 161, 74, 0.14);
    border-right: 1px solid rgba(216, 30, 91, 0.12);
    overflow: hidden;
    animation:
      abMvStackReveal 0.88s cubic-bezier(0.2, 0.75, 0.2, 1) both,
      abMvTouchFloat 8.2s ease-in-out infinite;
  }

  .ab-mv-panel::after {
    content: '';
    position: absolute;
    inset: -14% -50%;
    background: linear-gradient(110deg, transparent 44%, rgba(240, 237, 230, 0.16) 50%, transparent 58%);
    z-index: 0;
    pointer-events: none;
    animation: abMvCardShimmer 8.2s linear infinite;
  }

  .ab-mv-panel--vision {
    animation-delay: 0s, 0.1s;
  }

  .ab-mv-panel--mission {
    margin-top: -20px;
    padding-top: 52px;
    padding-bottom: 108px;
    animation-delay: 0.14s, 0.55s;
  }

  .ab-mv-panel--vision::after {
    animation-delay: 0s;
  }

  .ab-mv-panel--mission::after {
    animation-delay: 2.6s;
  }

  .ab-mv-panel__icon {
    box-shadow:
      0 14px 30px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(240, 237, 230, 0.06);
    animation: abMvIconFloat 4.8s ease-in-out infinite;
  }

  .ab-mv-panel__label {
    letter-spacing: 0.22em;
    text-shadow: 0 0 14px rgba(197, 161, 74, 0.22);
  }

  .ab-mv-panel__title {
    line-height: 1.22;
  }

  .ab-mv-panel__points li::before {
    animation: abMvBulletPulse 2.4s ease-in-out infinite;
  }
}

@media (max-width: 575px) {
  .ab-mv {
    padding: 78px 0 92px;
  }

  .ab-mv__stage {
    margin-top: 28px;
    border-radius: 18px;
    animation-duration: 6.6s;
  }

  .ab-mv__stage::after {
    inset: -32% -74%;
    filter: blur(16px);
    animation-duration: 10s;
  }

  .ab-mv__stage-gloss {
    inset: -22% -84%;
    opacity: 0.72;
    animation-duration: 9.4s;
  }

  .ab-mv-panel {
    padding: 30px 20px 24px;
    border-left: none;
    border-right: none;
    animation-duration: 0.72s, 7.4s;
  }

  .ab-mv-panel::after {
    inset: -20% -66%;
    opacity: 0.78;
    animation-duration: 7s;
  }

  .ab-mv-panel--vision {
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%) !important;
  }

  .ab-mv-panel--mission {
    margin-top: -14px;
    padding-top: 42px;
    padding-bottom: 132px;
    clip-path: polygon(0 4.5%, 100% 0, 100% 100%, 0 100%) !important;
  }

  .ab-mv-panel__title {
    font-size: 1.46rem;
  }

  .ab-mv-panel__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .ab-mv-panel__points li {
    font-size: 0.91rem;
    line-height: 1.5;
  }
}

@media (max-width: 991px) {
  .ab2-hero {
    min-height: 370px;
    padding: 136px 0 94px;
  }
  .ab2-hero__title {
    font-size: clamp(2.6rem, 8.8vw, 4.4rem);
  }
  .ab2-hero__content {
    max-width: 560px;
  }
  .ab2-hero__crumb {
    padding: 12px 16px;
  }
}

@media (max-width: 575px) {
  .ab2-hero {
    min-height: 320px;
    padding: 110px 0 72px;
  }
  .ab2-hero__title {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
  .ab2-hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }
  .ab2-hero__eyebrow::after {
    width: 44px;
  }
  .ab2-hero__crumb {
    width: 100%;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 11px 14px;
    gap: 10px;
  }
  .ab2-hero__crumb-link,
  .ab2-hero__crumb-current {
    font-size: 0.9rem;
  }
  .ab2-hero__crumb-link i {
    font-size: 0.82rem;
  }
}

