/* ===================================================================
   MERADA GAYRİMENKUL — Hakkımızda (dark / cinematic / awwwards)
   =================================================================== */

:root {
  --ink: #0d0d0e;
  --ink-2: #121214;
  --ink-3: #17171a;
  --panel: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --yellow: #ffcb08;
  --yellow-soft: #ffe98a;
  --white: #f7f6f3;
  --muted: rgba(247, 246, 243, 0.66);
  --muted-2: rgba(247, 246, 243, 0.42);
  --maxw: 1240px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body.immersive-page {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.immersive-page::selection { background: var(--yellow); color: #111; }

img { display: block; max-width: 100%; }

.ab-wrap {
  width: min(var(--maxw), 100% - 40px);
  margin-inline: auto;
}

/* ---------- Shared display type ---------- */
.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.ab-eyebrow span {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}
.ab-eyebrow--center { justify-content: center; width: 100%; }

.ab-section-head {
  margin: 0 0 56px;
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.ab-section-head--left { text-align: left; }
.ab-section-sub {
  max-width: 620px;
  margin: -34px auto 56px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hl { color: var(--yellow); }

.ab-lead {
  margin: 0 0 22px;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--white);
  font-weight: 500;
}
.ab-body {
  margin: 0 0 20px;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.ab-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.ab-btn i { font-size: 1.15rem; transition: transform 0.4s var(--ease); }
.ab-btn:hover i { transform: translate(3px, -3px); }
.ab-btn--primary { background: var(--yellow); color: #141414; }
.ab-btn--primary:hover { background: var(--yellow-soft); }
.ab-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.ab-btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ---------- Grain overlay ---------- */
.ab-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  filter: url(#meradaGrain) contrast(160%) brightness(120%);
  background: rgba(0, 0, 0, 0.001);
}

/* ===================================================================
   HERO
   =================================================================== */
.ab-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 160px clamp(20px, 5vw, 70px) 86px;
  overflow: hidden;
  isolation: isolate;
}
.ab-hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.ab-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: heroPan 18s ease-out forwards;
}
@keyframes heroPan { to { transform: scale(1.0) translateY(-1.5%); } }
.ab-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.20) 28%, rgba(8,8,9,0.78) 78%, rgba(8,8,9,0.97) 100%),
    linear-gradient(75deg, rgba(8,8,9,0.85) 0%, rgba(8,8,9,0.30) 52%, rgba(8,8,9,0) 100%);
}

.ab-hero__inner { position: relative; z-index: 3; width: min(var(--maxw), 100%); margin-inline: auto; }

.ab-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.ab-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,203,8,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,203,8,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255,203,8,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,203,8,0); }
}

.ab-hero__title {
  margin: 0 0 28px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.ab-hero__title em { color: var(--yellow); font-style: normal; }
.ab-line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.ab-line__in { display: block; will-change: transform; }

.ab-hero__copy {
  max-width: 600px;
  margin: 0 0 36px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  color: rgba(247,246,243,0.82);
}
.ab-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.ab-hero__meta {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 92px;
  z-index: 3;
  display: grid;
  gap: 14px;
  text-align: right;
}
.ab-hero__meta-item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
.ab-hero__meta-item span {
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  margin-right: 8px;
}

.ab-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.ab-scrollcue__line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--yellow), transparent);
  position: relative; overflow: hidden;
}
.ab-scrollcue__line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--yellow);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { top: -50%; } 100% { top: 100%; } }
.ab-scrollcue__txt {
  font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
}

/* ===================================================================
   MARQUEE
   =================================================================== */
.ab-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding: 20px 0;
}
.ab-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.ab-marquee__track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.ab-marquee__track i { color: var(--yellow); font-style: normal; font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================================
   STORY
   =================================================================== */
.ab-story { padding: clamp(80px, 12vw, 160px) 0; }
.ab-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.ab-story__head {
  margin: 0 0 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.ab-signature {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.ab-signature__mark {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--yellow); color: #141414;
  font-family: "Bebas Neue", sans-serif; font-size: 2rem;
}
.ab-signature__name { font-weight: 700; font-size: 1.05rem; }
.ab-signature__role { color: var(--muted); font-size: 0.9rem; }

.ab-story__media { position: relative; }
.ab-story__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9);
  aspect-ratio: 4 / 5;
}
.ab-story__frame img {
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.ab-story__badge {
  position: absolute;
  left: -22px; bottom: 36px;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(20,20,22,0.86);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.9);
}
.ab-story__badge-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem; line-height: 0.8; color: var(--yellow);
}
.ab-story__badge-num span { font-size: 1.6rem; }
.ab-story__badge-txt { font-size: 0.82rem; line-height: 1.3; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ab-story__vlabel {
  position: absolute;
  top: 18px; right: -14px;
  writing-mode: vertical-rl;
  font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted-2);
}

/* ===================================================================
   STATS
   =================================================================== */
.ab-stats {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,203,8,0.05), transparent 60%),
    var(--ink-2);
}
.ab-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.ab-stat {
  background: var(--ink-2);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.4s ease;
}
.ab-stat:hover { background: var(--ink-3); }
.ab-stat__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1; color: var(--yellow);
  letter-spacing: 0.01em;
}
.ab-stat__label {
  margin-top: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===================================================================
   MANIFESTO
   =================================================================== */
.ab-manifesto {
  padding: clamp(90px, 16vw, 200px) 0;
  border-top: 1px solid var(--line);
}
.ab-manifesto__quote {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}
.ab-manifesto__quote .w {
  display: inline-block;
  color: rgba(247,246,243,0.22);
  transition: color 0.3s ease;
}
.ab-manifesto__quote .w.hl { color: rgba(255,203,8,0.22); }
.gsap-ready .ab-manifesto__quote .w { will-change: color; }

/* ===================================================================
   TIMELINE
   =================================================================== */
.ab-timeline {
  padding: clamp(80px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}
.ab-tl { position: relative; max-width: 940px; margin: 0 auto; }
.ab-tl__spine {
  position: absolute;
  left: 110px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}
.ab-tl__progress {
  position: absolute; inset: 0;
  background: linear-gradient(var(--yellow), var(--yellow-soft));
  transform: scaleY(0); transform-origin: top;
  box-shadow: 0 0 16px rgba(255,203,8,0.5);
}
.ab-tl__item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 20px 0;
}
.ab-tl__item::before {
  content: "";
  position: absolute;
  left: 104px; top: 30px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--yellow);
  z-index: 2;
}
.ab-tl__year {
  text-align: right;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem; color: var(--yellow);
  line-height: 1;
}
.ab-tl__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, background 0.4s ease;
}
.ab-tl__card:hover { transform: translateX(8px); border-color: var(--line-strong); background: rgba(255,255,255,0.05); }
.ab-tl__card h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; }
.ab-tl__card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.98rem; }
.ab-tl__card--now {
  border-color: rgba(255,203,8,0.45);
  background: linear-gradient(120deg, rgba(255,203,8,0.08), rgba(255,255,255,0.02));
}

/* ===================================================================
   MISSION & VISION
   =================================================================== */
.ab-mv { padding: clamp(80px, 11vw, 140px) 0; border-top: 1px solid var(--line); }
.ab-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ab-mv__card {
  position: relative;
  padding: 48px 42px;
  border-radius: 24px;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(255,203,8,0.07), transparent 55%),
    var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.ab-mv__card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--yellow);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.ab-mv__card:hover::after { transform: scaleY(1); }
.ab-mv__icon {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,203,8,0.12);
  border: 1px solid rgba(255,203,8,0.3);
  color: var(--yellow); font-size: 1.7rem;
  margin-bottom: 24px;
}
.ab-mv__tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.ab-mv__card h3 { margin: 0 0 16px; font-size: 1.55rem; line-height: 1.2; font-weight: 700; }
.ab-mv__card p { margin: 0; color: var(--muted); line-height: 1.8; }

/* ===================================================================
   VALUES
   =================================================================== */
.ab-values { padding: clamp(80px, 11vw, 140px) 0; border-top: 1px solid var(--line); background: var(--ink-2); }
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ab-value {
  position: relative;
  padding: 38px 30px 34px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s ease, background 0.45s ease;
}
.ab-value:hover { transform: translateY(-8px); border-color: rgba(255,203,8,0.4); background: rgba(255,255,255,0.045); }
.ab-value__no {
  position: absolute; top: 18px; right: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem; color: rgba(255,255,255,0.06);
  transition: color 0.45s ease;
}
.ab-value:hover .ab-value__no { color: rgba(255,203,8,0.25); }
.ab-value__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,203,8,0.1);
  color: var(--yellow); font-size: 1.6rem;
  margin-bottom: 22px;
  transition: background 0.45s ease, color 0.45s ease;
}
.ab-value:hover .ab-value__icon { background: var(--yellow); color: #141414; }
.ab-value h4 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; }
.ab-value p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 0.95rem; }

/* ===================================================================
   WHY / APPROACH
   =================================================================== */
.ab-why { padding: clamp(80px, 11vw, 150px) 0; border-top: 1px solid var(--line); }
.ab-why__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.ab-why__intro .ab-btn { margin-top: 14px; }
.ab-why__list { display: grid; gap: 16px; }
.ab-feat {
  display: flex; gap: 20px;
  padding: 26px 28px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}
.ab-feat:hover { transform: translateX(8px); border-color: rgba(255,203,8,0.35); }
.ab-feat > i {
  flex: none;
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(255,203,8,0.1);
  color: var(--yellow); font-size: 1.5rem;
}
.ab-feat h4 { margin: 0 0 6px; font-size: 1.1rem; font-weight: 700; }
.ab-feat p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.95rem; }

/* ===================================================================
   TEAM
   =================================================================== */
.ab-team { padding: clamp(80px, 11vw, 140px) 0; border-top: 1px solid var(--line); background: var(--ink-2); }
.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ab-tm { perspective: 1400px; }
.ab-tm__inner {
  position: relative;
  width: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
}
.ab-tm:hover .ab-tm__inner,
.ab-tm:focus-within .ab-tm__inner { transform: rotateY(180deg); }
.ab-tm__face {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center;
}
.ab-tm__front { justify-content: center; text-align: center; }
.ab-tm__photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid rgba(255,203,8,0.5);
  padding: 4px;
  margin-bottom: 22px;
  background: var(--ink-3);
}
.ab-tm__name { margin: 0; font-size: 1.25rem; font-weight: 700; }
.ab-tm__rule {
  width: 40px; height: 2px; border-radius: 2px;
  background: var(--yellow); margin: 12px 0;
}
.ab-tm__title { margin: 0 0 14px; color: var(--yellow); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.ab-tm__desc { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.ab-tm__flag {
  position: absolute; top: 16px; right: 18px;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2);
}

.ab-tm__back {
  transform: rotateY(180deg);
  justify-content: center; text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,203,8,0.08), transparent 60%),
    var(--ink-3);
}
.ab-tm__back h5 { margin: 0 0 4px; font-size: 1.1rem; font-weight: 700; }
.ab-tm__back .ab-tm__rule { margin: 12px auto 22px; }
.ab-tm__row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--muted); font-size: 0.9rem; margin-bottom: 8px;
}
.ab-tm__row i { color: var(--yellow); }
.ab-tm__contacts {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 24px;
}
.ab-tm__contacts a {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--white); font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.ab-tm__contacts a:hover { transform: translateY(-4px); background: var(--yellow); color: #141414; border-color: var(--yellow); }

/* ===================================================================
   CTA
   =================================================================== */
.ab-cta {
  position: relative;
  padding: clamp(90px, 14vw, 170px) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(80% 120% at 50% 120%, rgba(255,203,8,0.16), transparent 60%),
    var(--ink);
}
.ab-cta__inner { text-align: center; max-width: 780px; margin-inline: auto; }
.ab-cta__head {
  margin: 0 0 22px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
}
.ab-cta__copy { margin: 0 auto 38px; max-width: 600px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.ab-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===================================================================
   REVEAL (only active when gsap-ready)
   =================================================================== */
.gsap-ready .reveal-up { opacity: 0; transform: translateY(46px); }
.gsap-ready .reveal-fade { opacity: 0; }
.gsap-ready .ab-line__in { transform: translateY(110%); }
.gsap-ready .ab-tl__item { opacity: 0; transform: translateY(40px); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1000px) {
  .ab-story__grid { grid-template-columns: 1fr; }
  .ab-story__media { max-width: 460px; margin-inline: auto; order: -1; }
  .ab-why__grid { grid-template-columns: 1fr; }
  .ab-mv__grid { grid-template-columns: 1fr; }
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-team__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-hero__meta { display: none; }
}

@media (max-width: 720px) {
  .ab-wrap { width: min(var(--maxw), 100% - 28px); }
  .ab-hero { padding: 130px 20px 70px; min-height: 92svh; }
  .ab-stats__grid { grid-template-columns: 1fr 1fr; }
  .ab-tl__spine { left: 8px; }
  .ab-tl__item { grid-template-columns: 1fr; gap: 8px; padding-left: 38px; }
  .ab-tl__item::before { left: 2px; top: 8px; }
  .ab-tl__year { text-align: left; }
  .ab-team__grid { grid-template-columns: 1fr; }
  .ab-tm__inner { min-height: 400px; }
  .ab-section-head { margin-bottom: 40px; }
}

@media (max-width: 460px) {
  .ab-values__grid { grid-template-columns: 1fr; }
  .ab-stats__grid { grid-template-columns: 1fr; }
  .ab-btn { width: 100%; justify-content: center; }
  .ab-hero__actions { width: 100%; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  .ab-hero__img { animation: none; transform: scale(1.04); }
  .ab-marquee__track { animation: none; }
  .ab-scrollcue__line::after,
  .ab-dot { animation: none; }
  .gsap-ready .reveal-up,
  .gsap-ready .reveal-fade,
  .gsap-ready .ab-tl__item { opacity: 1; transform: none; }
  .gsap-ready .ab-line__in { transform: none; }
  * { scroll-behavior: auto !important; }
}
