/* ============================================================
   ABOUT PAGE — Core Styles
   ============================================================ */

/* ============ BASE / RESET ============ */
.about-page {
  --r: 0px;
  --r-sm: 0px;
}

/* ============ REVEAL ANIMATION ============ */
.ab-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.ab-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ EYEBROW / HEADING / DESC ============ */
.ab-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(240, 123, 28, .2);
  max-width: 200px;
}

.ab-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.ab-heading em {
  font-style: normal;
  color: var(--orange);
}

.ab-desc {
  font-family: var(--font-kr);
  font-size: 16px;
  color: var(--sub);
  line-height: 1.8;
  max-width: 640px;
}

/* ============ SECTION LAYOUT ============ */
.ab-section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
}

.ab-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ HERO ============ */
.ab-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(40px, 6vw, 80px) clamp(60px, 8vw, 100px);
  text-align: left;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.ab-hero-bg {
  position: absolute !important;
  inset: 0;
  background-image: url('images/torresall.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  z-index: 0 !important;
}

.ab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 0;
}

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

.ab-hero .ab-heading {
  font-size: clamp(3rem, 5vw + 1rem, 5.5rem);
  color: #fff;
  margin-bottom: 20px;
}

.ab-hero .ab-desc {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.9;
  margin: 0 0 0;
  max-width: 560px;
}

.ab-hero .ab-eyebrow {
  color: var(--orange);
  display: inline-flex;
  margin-bottom: 20px;
}

.ab-hero .ab-eyebrow::after {
  display: none;
}

/* Hero KPI */
.ab-hero-kpi {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.ab-hero-kpi-item {
  text-align: center;
}

.ab-hero-kpi-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.ab-hero-kpi-unit {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

.ab-hero-kpi-label {
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  margin-top: 8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

/* ============ STORY ============ */
.ab-story {
  background: var(--bg-alt);
}

.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-top: 48px;
}

.ab-story-text {
  font-family: var(--font-kr);
  font-size: 15px;
  color: var(--sub);
  line-height: 1.9;
}

.ab-story-text p {
  margin: 0 0 20px;
}

.ab-story-text strong {
  color: var(--text);
  font-weight: 600;
}

.ab-story-text .ab-highlight {
  color: var(--orange);
  font-weight: 600;
}

.ab-story-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--surface);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
}

.ab-story-quote cite {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 10px;
  font-style: normal;
}

.ab-story-visual {
  background: linear-gradient(135deg, rgba(240, 123, 28, .04), rgba(0, 196, 125, .03));
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-story-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.ab-story-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.03em;
  line-height: 1;
}

.ab-story-stat-label {
  font-family: var(--font-kr);
  font-size: 14px;
  color: var(--sub);
}

/* ============ PRINS PARTNERSHIP ============ */
.ab-prins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-top: 48px;
}

.ab-prins-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 32px;
  transition: all .4s var(--ease-smooth);
}

.ab-prins-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}

.ab-prins-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}

.ab-prins-card-title {
  font-family: var(--font-kr);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.ab-prins-card-desc {
  font-family: var(--font-kr);
  font-size: 14px;
  color: var(--sub);
  line-height: 1.7;
}

/* ============ CHAPTERS ============ */
.ab-chapters {
  background: var(--bg-alt);
}

.ab-chapter-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.ab-chapter-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(240, 123, 28, .1));
}

.ab-chapter {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  padding: 32px 0;
  position: relative;
}

.ab-chapter-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.ab-chapter-year {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 6px;
}

.ab-chapter-title {
  font-family: var(--font-kr);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.ab-chapter-desc {
  font-family: var(--font-kr);
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
}

.ab-chapter-desc strong {
  color: var(--text);
}

/* ============ TIMELINE ============ */
.ab-timeline-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  padding-bottom: 16px;
  margin-top: 48px;
}

.ab-timeline-wrap::-webkit-scrollbar {
  height: 4px;
}

.ab-timeline-wrap::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

.ab-timeline-track {
  display: flex;
  position: relative;
  padding: 40px 0 24px;
  min-width: max-content;
}

.ab-timeline-line {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(240, 123, 28, .15));
}

.ab-tl-item {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ab-tl-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.ab-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--orange);
  margin-bottom: 14px;
  z-index: 2;
  transition: transform .3s var(--ease-smooth);
}

.ab-tl-item:hover .ab-tl-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 5px rgba(240, 123, 28, .12);
}

.ab-tl-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 16px 14px;
  width: 184px;
  transition: all .4s var(--ease-smooth);
}

.ab-tl-item:hover .ab-tl-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-s);
}

.ab-tl-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.ab-tl-badge--found {
  background: rgba(240, 123, 28, .1);
  color: var(--orange);
}

.ab-tl-badge--tech {
  background: rgba(59, 130, 246, .1);
  color: #3b82f6;
}

.ab-tl-badge--turn {
  background: rgba(240, 123, 28, .15);
  color: #d4690e;
}

.ab-tl-badge--part {
  background: rgba(0, 196, 125, .1);
  color: #00a86b;
}

.ab-tl-badge--cert {
  background: rgba(139, 92, 246, .1);
  color: #8b5cf6;
}

.ab-tl-badge--award {
  background: linear-gradient(135deg, rgba(240, 123, 28, .15), rgba(255, 215, 0, .15));
  color: #d4690e;
}

.ab-tl-title {
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.ab-tl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ab-tl-list li {
  font-family: var(--font-kr);
  font-size: 11px;
  color: var(--sub);
  line-height: 1.6;
  padding-left: 10px;
  position: relative;
}

.ab-tl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .4;
}

/* ============ CREDENTIALS ============ */
.ab-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ab-cred-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: center;
  transition: all .4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.ab-cred-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff9f45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-smooth);
}

.ab-cred-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}

.ab-cred-card:hover::before {
  transform: scaleX(1);
}

.ab-cred-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.ab-cred-unit {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  opacity: .6;
}

.ab-cred-title {
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 8px;
}

.ab-cred-desc {
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}

/* ============ PARTNERS ============ */
.ab-partners {
  background: var(--bg-alt);
}

.ab-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ab-partner-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: all .4s var(--ease-smooth);
}

.ab-partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-s);
}

.ab-partner-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.ab-partner-role {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.ab-partner-desc {
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}

/* Partner info grid */
.ab-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.ab-info-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
}

.ab-info-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.ab-info-value {
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ============ CTA ============ */
.ab-cta {
  padding: clamp(80px, 12vh, 120px) 5vw;
  background: var(--bg-alt);
  text-align: center;
}

.ab-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.ab-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.ab-cta-btns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s var(--ease-smooth);
}

.ab-cta-btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240, 123, 28, .2);
}

.ab-cta-btn-primary:hover {
  background: #ff9f45;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(240, 123, 28, .3);
}

.ab-cta-btn-outline {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.ab-cta-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* ============ FOOTER OVERRIDES ============ */
.pf-footer {
  padding: 80px 5vw 40px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: #f8f8f8;
}

.pf-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.pf-footer-logo {
  height: 28px;
  margin-bottom: 16px;
}

.pf-footer-hours {
  margin-top: 20px;
  font-size: 13px;
  color: #78716c;
  line-height: 1.7;
}

.pf-footer-hours strong {
  color: #44403c;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .03em;
}

.pf-footer-col-title {
  font-family: Outfit, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.pf-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-footer-links a {
  font-size: 14px;
  color: #78716c;
  transition: color .3s;
  text-decoration: none;
}

.pf-footer-links a:hover {
  color: #f07b1c;
}

.pf-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  flex-wrap: wrap;
  gap: 16px;
}

.pf-footer-copy {
  font-family: Outfit, sans-serif;
  font-size: 12px;
  color: #78716c;
}

.pf-footer-legal {
  display: flex;
  gap: 20px;
}

.pf-footer-legal a {
  font-size: 12px;
  color: #78716c;
  transition: color .3s;
  text-decoration: none;
}

.pf-footer-legal a:hover {
  color: #f07b1c;
}

/* ============ MOBILE ACTION BAR ============ */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding: 8px 16px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .06);
}

.mobile-action-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.mobile-action-call {
  background: #f07b1c;
  color: #fff;
}

.mobile-action-chat {
  background: #f5f5f7;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, .06);
}

/* ============ MISSION / VISION ============ */
.ab-mv {
  padding: clamp(100px, 12vw, 160px) clamp(20px, 5vw, 60px);
  background: #0A0A0F;
  position: relative;
  overflow: hidden;
}

.ab-mv::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(240, 123, 28, .04) 0, transparent 60%);
  pointer-events: none;
}

.ab-mv-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ab-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.ab-mv-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.ab-mv-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.ab-mv-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-mv-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(240, 123, 28, .2);
}

.ab-mv-statement {
  font-family: var(--font-kr);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.ab-mv-desc {
  font-family: var(--font-kr);
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}

.ab-mv-divider {
  width: 1px;
  background: rgba(255, 255, 255, .06);
  display: none;
}

@media (max-width: 768px) {
  .ab-mv-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ============ PHOTO GRID ============ */
.ab-photo-grid img {
  transition: transform .6s var(--ease-smooth), filter .6s var(--ease-smooth);
}

.ab-photo-grid > div:hover img {
  transform: scale(1.05);
}

.ab-photo-grid > div {
  overflow: hidden;
  position: relative;
}

.ab-photo-grid > div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .15) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

.ab-photo-grid > div:hover::after {
  opacity: 1;
}

/* ============ ANIMATIONS ============ */
.ab-chapter-line-fill {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--orange);
  z-index: 1;
  transition: none;
}

.ab-chapter-dot.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(240, 123, 28, .15);
  animation: ab-dot-pulse 1.5s ease-in-out infinite;
}

@keyframes ab-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(240, 123, 28, .15);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(240, 123, 28, .3), 0 0 16px rgba(240, 123, 28, .15);
  }
}

.ab-hero .ab-heading .ab-char {
  display: inline-block;
  opacity: 0;
}

.ab-hero .ab-heading .ab-line {
  display: block;
  overflow: hidden;
}

.ab-hero .ab-heading .ab-line-inner {
  display: block;
  transform: translateY(110%);
}

.ab-cred-card.counted .ab-cred-num {
  text-shadow: 0 0 40px rgba(240, 123, 28, .2);
}

.ab-partner-card {
  transform-style: preserve-3d;
  perspective: 800px;
}

.ab-prins-card {
  transition: all .5s var(--ease-smooth);
}

.ab-prins-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
  border-color: rgba(240, 123, 28, .12);
}

.ab-story-quote {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
}

.ab-story-quote.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ PHOTO COMPONENTS ============ */
.ab-photo {
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-top: 16px;
}

.ab-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.ab-photo-sm img {
  height: 140px;
  object-fit: cover;
}

.ab-photo-md img {
  height: 180px;
  object-fit: cover;
}

.ab-photo-caption {
  font-family: var(--font-kr);
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.ab-photo-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ab-photo-row > div {
  flex: 1;
  min-width: 200px;
  border-radius: var(--r-sm);
  overflow: hidden;
}

.ab-photo-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ab-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.ab-photo-pair > div {
  border-radius: var(--r);
  overflow: hidden;
}

.ab-photo-pair img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ab-photo-pair {
    grid-template-columns: 1fr;
  }
  .ab-photo-pair img {
    height: 200px;
  }
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
  .ab-hero {
    min-height: 70vh;
    padding: 0 20px 48px;
  }
  .ab-hero .ab-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .ab-hero .ab-desc {
    font-size: 14px;
  }
  .ab-mv {
    padding: 64px 20px;
  }
  .ab-mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-mv-statement {
    font-size: 20px;
  }
  .ab-prins-grid,
  .ab-story-grid {
    grid-template-columns: 1fr;
  }
  .ab-photo-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ab-photo-grid img {
    height: 160px !important;
  }
  .ab-chapter {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }
  .ab-chapter-dot {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  .ab-chapter-line,
  .ab-chapter-line-fill {
    left: 18px;
  }
  .ab-chapter-title {
    font-size: 17px;
  }
  .ab-chapter-desc {
    font-size: 13px;
  }
  .ab-cred-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ab-cred-card {
    padding: 24px 20px;
  }
  .ab-cred-num {
    font-size: 32px;
  }
  .ab-tl-item {
    width: 170px;
  }
  .ab-tl-card {
    width: 154px;
    padding: 14px 12px;
  }
  .ab-prins-card {
    padding: 24px 20px;
  }
  .ab-section {
    padding: 64px 20px;
  }
  .pf-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ab-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .ab-cta-btns a {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ab-hero .ab-heading {
    font-size: 1.75rem;
  }
  .ab-cred-grid {
    grid-template-columns: 1fr;
  }
  .ab-photo-grid[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .ab-mv-statement {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
}

/* ============================================================
   ABOUT PAGE — Additional Mobile Responsive Fixes
   ============================================================ */
@media (max-width: 768px) {
  /* Timeline horizontal scroll — smooth touch */
  .ab-timeline-wrap {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 12px;
  }
  .ab-tl-item {
    scroll-snap-align: center;
  }

  /* Partner grid — 2 columns */
  .ab-partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ab-partner-card {
    padding: 24px 16px;
  }

  /* Info grid — single column */
  .ab-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Hero KPI — tighter spacing */
  .ab-hero-kpi {
    gap: clamp(16px, 3vw, 32px);
  }
  .ab-hero-kpi-num {
    font-size: clamp(28px, 7vw, 44px);
  }

  /* Photo grid images responsive */
  .ab-photo-row {
    flex-direction: column;
    gap: 8px;
  }
  .ab-photo-row img {
    height: 160px;
  }

  /* Story quote — full width */
  .ab-story-quote {
    padding: 20px;
    font-size: 15px;
  }

  /* Prins cards — ensure proper spacing */
  .ab-prins-card {
    margin-bottom: 12px;
  }

  /* CTA buttons — touch targets */
  .ab-cta-btns a {
    min-height: 48px;
    padding: 14px 24px;
  }

  /* Mobile action bar — ensure proper touch targets */
  .mobile-action-bar a {
    min-height: 44px;
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .ab-partner-grid {
    grid-template-columns: 1fr;
  }
  .ab-hero-kpi-num {
    font-size: clamp(24px, 6vw, 36px);
  }
  .ab-tl-item {
    width: 150px;
  }
  .ab-tl-card {
    width: 136px;
    padding: 12px 10px;
  }
  .ab-tl-title {
    font-size: 12px;
  }
}

/* MOBILE: Show everything immediately */
@media (max-width: 768px) {
  .ab-hero .ab-heading .ab-char { opacity: 1 !important; display: inline !important; }
  .ab-hero .ab-heading .ab-line { overflow: visible !important; }
  .ab-hero .ab-heading .ab-line-inner { transform: translateY(0) !important; }
  .ab-hero .ab-eyebrow,
  .ab-hero .ab-desc,
  .ab-hero .ab-heading,
  .ab-hero-kpi,
  .ab-reveal,
  .ab-mv-block,
  .ab-story-quote {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* Ensure hero text is readable over background */
.ab-hero .ab-heading,
.ab-hero .ab-desc {
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
}

/* Nav color + font fix */
.nav-links a { color: var(--orange) !important; font-family: 'Noto Sans KR', sans-serif !important; font-size: 15px !important; font-weight: 600 !important; letter-spacing: .02em !important; }
.nav-links a:visited { color: var(--orange) !important; }
.nav-links a.active { color: var(--orange) !important; }
.nav-links a:hover { color: var(--orange) !important; }
.nav-links a.nav-contact-btn,
.nav-links a.nav-contact-btn:visited,
.nav-links a.nav-contact-btn:hover { color: #fff !important; -webkit-text-fill-color: #fff !important; }

/* ============ ABOUT DARK MODE — GLASS ============ */
html:not([data-theme="light"]) .about-page {
  --text: #F0F0F0; --sub: #B0B0B0; --muted: #888;
  --border: rgba(255,255,255,.06); --border-light: rgba(255,255,255,.04);
  --surface: rgba(255,255,255,.03); --bg-alt: transparent;
  --shadow-s: 0 2px 8px rgba(0,0,0,.3); --shadow-m: 0 4px 16px rgba(0,0,0,.4);
}
html:not([data-theme="light"]) body { background: #0A0A0F !important; color: rgba(255,255,255,0.85) !important; }
html:not([data-theme="light"]) section { background: transparent !important; }

/* Headings */
html:not([data-theme="light"]) .ab-heading { color: #F5F5F5 !important; }
html:not([data-theme="light"]) .ab-desc { color: #B0B0B0 !important; }

/* Story section */
html:not([data-theme="light"]) .ab-story { background: transparent !important; }
html:not([data-theme="light"]) .ab-story-text { color: #B0B0B0 !important; }
html:not([data-theme="light"]) .ab-story-text strong { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-story-quote {
  background: rgba(255,255,255,.03) !important; border-left-color: var(--orange) !important; color: #F0F0F0 !important;
}
html:not([data-theme="light"]) .ab-story-quote cite { color: #888 !important; }
html:not([data-theme="light"]) .ab-story-visual {
  background: rgba(255,255,255,.02) !important; border-color: rgba(255,255,255,.06) !important;
}
html:not([data-theme="light"]) .ab-story-stat-label { color: #B0B0B0 !important; }

/* Prins cards — glass */
html:not([data-theme="light"]) .ab-prins-card {
  background: rgba(255,255,255,.03) !important; border-color: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
}
html:not([data-theme="light"]) .ab-prins-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3) !important; border-color: rgba(240,123,28,.12) !important; }
html:not([data-theme="light"]) .ab-prins-card-title { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-prins-card-desc { color: #B0B0B0 !important; }
html:not([data-theme="light"]) .ab-prins-card-icon { background: rgba(240,123,28,.08) !important; }

/* Timeline */
html:not([data-theme="light"]) .ab-tl-card {
  background: rgba(255,255,255,.03) !important; border-color: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important;
}
html:not([data-theme="light"]) .ab-tl-title { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-tl-list li { color: #B0B0B0 !important; }

/* Chapters */
html:not([data-theme="light"]) .ab-chapters { background: transparent !important; }
html:not([data-theme="light"]) .ab-chapter-title { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-chapter-desc { color: #B0B0B0 !important; }
html:not([data-theme="light"]) .ab-chapter-desc strong { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-chapter-dot { background: rgba(255,255,255,.03) !important; }

/* Credentials — glass */
html:not([data-theme="light"]) .ab-cred-card {
  background: rgba(255,255,255,.03) !important; border-color: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
}
html:not([data-theme="light"]) .ab-cred-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3) !important; }
html:not([data-theme="light"]) .ab-cred-title { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-cred-desc { color: #B0B0B0 !important; }

/* Partners — glass */
html:not([data-theme="light"]) .ab-partners { background: transparent !important; }
html:not([data-theme="light"]) .ab-partner-card {
  background: rgba(255,255,255,.03) !important; border-color: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
}
html:not([data-theme="light"]) .ab-partner-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.3) !important; }
html:not([data-theme="light"]) .ab-partner-name { color: #F0F0F0 !important; }
html:not([data-theme="light"]) .ab-partner-desc { color: #B0B0B0 !important; }

/* Info items */
html:not([data-theme="light"]) .ab-info-item { background: rgba(255,255,255,.03) !important; }
html:not([data-theme="light"]) .ab-info-label { color: #888 !important; }
html:not([data-theme="light"]) .ab-info-value { color: #F0F0F0 !important; }

/* CTA */
html:not([data-theme="light"]) .ab-cta { background: transparent !important; }
html:not([data-theme="light"]) .ab-cta-btn-outline {
  background: rgba(255,255,255,.04) !important; border-color: rgba(255,255,255,.1) !important; color: #F0F0F0 !important;
}

/* Footer */
html:not([data-theme="light"]) .pf-footer { background: rgba(10,10,15,.95) !important; color: #B0B0B0 !important; }
html:not([data-theme="light"]) .pf-footer-col-title { color: #B0B0B0 !important; }
html:not([data-theme="light"]) .pf-footer-links a { color: #888 !important; }
html:not([data-theme="light"]) .pf-footer-copy { color: #888 !important; }
html:not([data-theme="light"]) .pf-footer-legal a { color: #888 !important; }
html:not([data-theme="light"]) .pf-footer-hours { color: #888 !important; }
html:not([data-theme="light"]) .pf-footer-hours strong { color: #B0B0B0 !important; }
html:not([data-theme="light"]) .pf-footer-logo { filter: brightness(0) invert(1) !important; }

/* Mobile bar — glass */
html:not([data-theme="light"]) .mobile-action-bar {
  background: rgba(17,17,19,.85) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
  border-color: rgba(255,255,255,.06) !important;
}
html:not([data-theme="light"]) .mobile-action-bar a { color: #F0F0F0 !important; }

/* Narrator Bar — after hero */
.ab-narrator{padding:20px clamp(20px,5vw,60px);background:var(--bg)}
.ab-narrator-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;gap:16px;padding:16px 24px;border-bottom:1px solid var(--border-light)}
.ab-narrator-photo{width:48px;height:48px;border-radius:50%;object-fit:cover;flex-shrink:0;filter:grayscale(1) contrast(1.05)}
.ab-narrator-text{display:flex;flex-wrap:wrap;align-items:baseline;gap:4px 12px}
.ab-narrator-text strong{font-family:'Noto Sans KR',sans-serif;font-size:15px;font-weight:700;color:var(--text)}
.ab-narrator-title{font-family:'Noto Sans KR',sans-serif;font-size:12px;color:var(--muted);letter-spacing:.04em}
.ab-narrator-intro{font-family:Georgia,'Noto Serif KR',serif;font-size:13px;color:var(--sub);font-style:italic;margin:0;width:100%}
html:not([data-theme="light"]) .ab-narrator{background:#0A0A0F}
html:not([data-theme="light"]) .ab-narrator-inner{border-bottom-color:rgba(255,255,255,.06)}
html:not([data-theme="light"]) .ab-narrator-text strong{color:#F0F0F0}
html:not([data-theme="light"]) .ab-narrator-intro{color:rgba(255,255,255,.5)}
@media(max-width:768px){.ab-narrator-inner{padding:12px 16px;gap:12px}.ab-narrator-photo{width:40px;height:40px}.ab-narrator-text strong{font-size:14px}.ab-narrator-intro{font-size:12px}}

/* CEO Closing — Editorial */
.ab-closing{padding:clamp(60px,8vw,100px) clamp(20px,5vw,60px);background:var(--bg)}
.ab-closing-inner{max-width:560px;margin:0 auto;border-left:2px solid var(--orange);padding-left:28px;position:relative}
.ab-closing-content{flex:1;min-width:0}
.ab-closing-mark{font-family:Georgia,'Times New Roman',serif;font-size:48px;line-height:.6;color:var(--orange);margin-bottom:6px;user-select:none;opacity:.7}
.ab-closing-quote{margin:0;padding:0;border:0}
.ab-closing-quote p{font-family:Georgia,'Times New Roman','Noto Serif KR',serif;font-size:14px;line-height:1.9;color:var(--text);font-style:italic;margin:0 0 12px;letter-spacing:.01em;word-break:keep-all}
.ab-closing-quote p:last-of-type{margin-bottom:0}
.ab-closing-promise{font-weight:600;color:var(--orange);font-style:normal}
.ab-closing-rule{width:28px;height:2px;background:var(--orange);margin:18px 0 12px}
.ab-closing-byline{font-family:'Noto Sans KR',sans-serif;font-size:12px;color:var(--sub);display:flex;align-items:baseline;gap:8px}
.ab-closing-byline strong{font-weight:700;color:var(--orange);font-size:14px;letter-spacing:.02em}
.ab-closing-byline span{font-size:11px;opacity:.55;letter-spacing:.04em}
.ab-closing-photo{flex-shrink:0;width:90px}
.ab-closing-photo img{width:100%;height:auto;display:block;filter:grayscale(1) contrast(1.1);border-radius:50%;transition:filter .5s ease}
.ab-closing-photo:hover img{filter:grayscale(.3) contrast(1.1)}
html:not([data-theme="light"]) .ab-closing-quote p{color:rgba(255,255,255,.82)}
html:not([data-theme="light"]) .ab-closing{background:transparent}
@media(max-width:768px){.ab-closing-inner{flex-direction:column-reverse;align-items:center;text-align:center;border-left:none;border-top:2px solid var(--orange);padding-left:0;padding-top:24px;gap:16px}.ab-closing-photo{width:72px}.ab-closing-mark{font-size:36px}.ab-closing-quote p{font-size:13px;line-height:1.8}.ab-closing-rule{margin:14px auto 10px}.ab-closing-byline{justify-content:center}}
/* ============================================================
   about.html — Extracted inline styles
   Merge into about.css
   ============================================================ */

/* --- Photo Grids --- */
.ab-photo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.ab-photo-grid-4.ab-photo-grid--mt48 {
  margin-top: 48px;
}

.ab-photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.ab-photo-grid-4 > div,
.ab-photo-grid-2 > div {
  overflow: hidden;
}

.ab-photo-grid-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ab-photo-grid-img--tall {
  height: 260px;
}

.ab-photo-grid-img--snow {
  object-position: center 70%;
}

/* --- Standalone photo (single image with overflow wrapper) --- */
.ab-photo-standalone {
  overflow: hidden;
  margin-top: 40px;
}

.ab-photo-standalone img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.ab-photo-standalone--prins img {
  height: 360px;
}

.ab-photo-standalone--stako img {
  height: 280px;
  object-position: center;
}

/* --- Photo caption (extend existing .ab-photo-caption) --- */
.ab-photo-caption {
  text-align: center;
  margin-top: 8px;
}

/* --- Prins grid margin --- */
.ab-prins-grid--mt {
  margin-top: 48px;
}

/* --- Prins card stacked spacing --- */
.ab-prins-card + .ab-prins-card {
  margin-top: 20px;
}

/* --- Mini CTA --- */
.ab-mini-cta-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.ab-mini-cta-card {
  background: var(--ab-surface, #f8f7f5);
  border: 1px solid var(--ab-border, rgba(0,0,0,0.06));
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ab-mini-cta-text {
  font-family: var(--font-kr);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ab-text, #1a1a1a);
  margin: 0;
  line-height: 1.7;
}

.ab-mini-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ab-mini-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #F07B1C;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-kr);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ab-mini-cta-btn-primary:hover {
  opacity: 0.9;
}

.ab-mini-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: #F07B1C;
  border: 1px solid rgba(240,123,28,0.3);
  border-radius: 8px;
  font-family: var(--font-kr);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.ab-mini-cta-btn-outline:hover {
  border-color: #F07B1C;
}

/* --- Section alt background --- */
.ab-section--alt {
  background: var(--bg-alt);
}

/* --- CTA desc auto margin --- */
.ab-desc--centered {
  margin: 0 auto;
}


/* ============================================================
   PHASE 2 + 3: EDITORIAL REDESIGN — Dark First + Prose Layout
   Linear dark tone + Notion essay flow + ROTURN orange accent
   ============================================================ */

/* --- Phase 2: Dark First — Refined dark mode colors --- */
html[data-theme="dark"] body {
  background: #0A0A0F !important;
  color: rgba(255,255,255,0.85) !important;
}

html[data-theme="dark"] .ab-desc,
html[data-theme="dark"] .ab-story-prose p,
html[data-theme="dark"] .ab-prins-item-desc,
html[data-theme="dark"] .ab-mv-prose {
  color: rgba(255,255,255,0.7) !important;
}

html[data-theme="dark"] .ab-heading {
  color: rgba(255,255,255,0.95) !important;
}

/* Subtle gradient transitions between sections */
html[data-theme="dark"] .ab-section {
  background: transparent !important;
}

html[data-theme="dark"] .ab-mv--editorial {
  background: linear-gradient(180deg, #0A0A0F 0%, #0C0C14 50%, #0A0A0F 100%) !important;
}

html[data-theme="dark"] .ab-story--editorial {
  background: linear-gradient(180deg, #0A0A0F 0%, #0E0E12 50%, #0A0A0F 100%) !important;
}

html[data-theme="dark"] .ab-chapters--editorial {
  background: linear-gradient(180deg, #0A0A0F 0%, #0B0B12 50%, #0A0A0F 100%) !important;
}

html[data-theme="dark"] .ab-section--timeline {
  background: linear-gradient(180deg, #0A0A0F 0%, #0C0C11 50%, #0A0A0F 100%) !important;
}

html[data-theme="dark"] .ab-section--credentials {
  background: linear-gradient(180deg, #0A0A0F 0%, #0D0D14 50%, #0A0A0F 100%) !important;
}

html[data-theme="dark"] .ab-closing--climax {
  background: linear-gradient(180deg, #0A0A0F 0%, #0E0E16 50%, #0A0A0F 100%) !important;
}

/* --- Phase 3.1: Hero — Hidden eyebrow, scroll indicator --- */
.ab-eyebrow--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ab-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: ab-scroll-bounce 2s ease-in-out infinite;
}

@keyframes ab-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* --- Phase 3.2: Narrator Bar — Larger photo, no grayscale, larger text, fade bottom --- */
.ab-narrator-photo--lg {
  width: 64px !important;
  height: 64px !important;
  filter: none !important;
}

.ab-narrator-intro {
  font-size: 14px !important;
}

html[data-theme="dark"] .ab-narrator {
  background: #0A0A0F !important;
}

.ab-narrator-inner {
  border-bottom: none !important;
  position: relative;
}

.ab-narrator-inner::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(180deg, rgba(10,10,15,0.5), transparent);
  pointer-events: none;
}

/* --- Phase 3.3: Mission/Vision — Stacked Pull Quotes --- */
.ab-mv--editorial .ab-mv-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
  max-width: 720px;
  margin: 0 auto;
}

.ab-mv-label--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ab-mv-statement--pullquote {
  font-size: clamp(24px, 3.5vw, 40px) !important;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.03em;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
  margin-bottom: 20px;
}

.ab-mv-prose {
  font-family: var(--font-kr);
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin: 0;
}

/* --- Phase 3.4: Brand Story — Prose Flow --- */
.ab-section-inner--prose {
  max-width: 720px;
  margin: 0 auto;
}

.ab-narrator-aside {
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--orange);
  opacity: 0.8;
  margin: 32px 0 40px;
  padding-left: 20px;
  border-left: 2px solid rgba(240, 123, 28, 0.3);
  line-height: 1.6;
}

.ab-story-prose {
  font-family: var(--font-kr);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

.ab-story-prose p {
  margin: 0 0 24px;
}

.ab-story-prose strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

/* Stat strip — horizontal */
.ab-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ab-stat-strip-item {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.ab-stat-strip-item:last-child {
  border-right: none;
}

.ab-stat-strip .ab-story-stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.ab-stat-strip .ab-story-stat-label {
  font-family: var(--font-kr);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* Asymmetric photo layout */
.ab-photo-asymmetric {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.ab-photo-asymmetric-main {
  overflow: hidden;
  grid-row: span 3;
}

.ab-photo-asymmetric-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-photo-asymmetric-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
}

.ab-photo-asymmetric-side > div {
  overflow: hidden;
}

.ab-photo-asymmetric-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Phase 3.5: Prins Partnership — Narrative inline --- */
.ab-desc--prose {
  max-width: 720px;
  line-height: 1.9;
}

/* Breakout photo — wider than prose column */
.ab-photo-breakout {
  margin: 40px -60px;
  overflow: hidden;
}

.ab-photo-breakout img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Prins narrative items — inline flow */
.ab-prins-narrative {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0;
}

.ab-prins-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ab-prins-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(240, 123, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}

.ab-prins-item-title {
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 6px;
}

.ab-prins-item-desc {
  font-family: var(--font-kr);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 0;
}

/* Editorial photo with left-aligned caption */
.ab-photo-editorial {
  margin: 40px 0;
  overflow: hidden;
}

.ab-photo-editorial img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.ab-photo-caption--left {
  text-align: left !important;
}

/* --- Phase 3.6: Mini CTA — Subtle inline (no card) --- */
.ab-mini-cta-wrap--inline {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ab-mini-cta-wrap--inline .ab-mini-cta-card {
  display: none;
}

.ab-mini-cta-wrap--inline .ab-mini-cta-text {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

.ab-mini-cta-wrap--inline .ab-mini-cta-btn-primary {
  background: var(--orange);
  color: #fff;
}

.ab-mini-cta-wrap--inline .ab-mini-cta-btn-outline {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

/* --- Phase 3.7: Chapters — Refined timeline --- */
.ab-chapters--editorial .ab-chapter-dot {
  width: 36px;
  height: 36px;
  font-size: 11px;
  border-width: 2px;
}

.ab-chapters--editorial .ab-chapter-line {
  width: 1px;
  left: 18px;
}

.ab-chapters--editorial .ab-chapter-line-fill {
  left: 18px;
  width: 1px;
}

.ab-chapters--editorial .ab-chapter {
  grid-template-columns: 36px 1fr;
}

.ab-chapters--editorial .ab-chapter-body {
  max-width: 640px;
}

/* Photo duo — 2 asymmetric photos */
.ab-photo-duo {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.ab-photo-duo-wide,
.ab-photo-duo-narrow {
  overflow: hidden;
}

.ab-photo-duo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* --- Phase 3.8: Timeline — Simplified, thin line, subtle glow --- */
.ab-section--timeline .ab-timeline-line {
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(240, 123, 28, 0.08));
}

.ab-section--timeline .ab-tl-badge {
  display: none;
}

.ab-section--timeline .ab-tl-card {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.04);
}

/* Gradient fade on edges */
.ab-section--timeline .ab-timeline-wrap::before,
.ab-section--timeline .ab-timeline-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 3;
  pointer-events: none;
}

.ab-section--timeline .ab-timeline-wrap {
  position: relative;
}

.ab-section--timeline .ab-timeline-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #0A0A0F, transparent);
}

.ab-section--timeline .ab-timeline-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #0A0A0F, transparent);
}

/* --- Phase 3.9: Credentials — Compact inline rows --- */
.ab-cred-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.ab-cred-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ab-cred-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ab-cred-row .ab-cred-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
  text-align: right;
}

.ab-cred-row .ab-cred-unit {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.6;
}

.ab-cred-body {
  flex: 1;
  min-width: 0;
}

.ab-cred-row .ab-cred-title {
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin: 0 0 4px;
}

.ab-cred-row .ab-cred-desc {
  font-family: var(--font-kr);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* --- Phase 3.10: CEO Closing — Article Climax --- */
.ab-closing--climax .ab-closing-inner {
  max-width: 640px;
}

.ab-closing--climax .ab-closing-quote p {
  font-size: 18px !important;
  line-height: 1.8;
  color: rgba(255,255,255,0.85) !important;
}

.ab-closing--climax .ab-closing-promise {
  font-size: 22px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--orange) !important;
  display: block;
  margin-top: 16px;
  line-height: 1.5;
}

.ab-closing--climax .ab-closing-mark {
  font-size: 64px;
  color: var(--orange);
  opacity: 0.5;
}

/* --- Phase 3.11: CTA — Clean ending --- */
.ab-cta--minimal {
  padding: clamp(60px, 8vh, 100px) 5vw;
}

.ab-cta--minimal .ab-cta-inner {
  max-width: 560px;
}


/* ============================================================
   EDITORIAL MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  /* Prose column relaxes on mobile */
  .ab-section-inner--prose {
    max-width: 100%;
    padding: 0;
  }

  /* Stat strip stacks */
  .ab-stat-strip {
    flex-direction: column;
    gap: 0;
  }
  .ab-stat-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: left;
    padding: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-width: unset;
  }
  .ab-stat-strip-item:last-child {
    border-bottom: none;
  }
  .ab-stat-strip .ab-story-stat-num {
    font-size: 24px;
    min-width: 50px;
  }

  /* Asymmetric photo → stacked */
  .ab-photo-asymmetric {
    grid-template-columns: 1fr;
  }
  .ab-photo-asymmetric-main {
    grid-row: auto;
  }
  .ab-photo-asymmetric-side {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
  }
  .ab-photo-asymmetric-side img {
    height: 120px;
  }

  /* Breakout photo normalizes on mobile */
  .ab-photo-breakout {
    margin: 32px 0;
  }
  .ab-photo-breakout img {
    max-height: 300px;
  }

  /* Photo duo stacks */
  .ab-photo-duo {
    grid-template-columns: 1fr;
  }
  .ab-photo-duo img {
    height: 200px;
  }

  /* Prins items */
  .ab-prins-narrative {
    gap: 24px;
    margin: 32px 0;
  }

  /* Cred rows */
  .ab-cred-row {
    gap: 16px;
    padding: 20px 0;
  }
  .ab-cred-row .ab-cred-num {
    font-size: 28px;
    min-width: 60px;
  }

  /* CEO Closing climax */
  .ab-closing--climax .ab-closing-quote p {
    font-size: 15px !important;
  }
  .ab-closing--climax .ab-closing-promise {
    font-size: 18px !important;
  }

  /* Narrator aside */
  .ab-narrator-aside {
    font-size: 16px;
    margin: 24px 0 32px;
  }

  /* Scroll indicator */
  .ab-scroll-indicator {
    bottom: 16px;
  }

  /* MV pullquote */
  .ab-mv-statement--pullquote {
    font-size: 22px !important;
    padding-left: 16px;
  }

  /* Timeline edge fades */
  .ab-section--timeline .ab-timeline-wrap::before,
  .ab-section--timeline .ab-timeline-wrap::after {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .ab-photo-asymmetric-side {
    grid-template-columns: 1fr 1fr;
  }

  .ab-mv-statement--pullquote {
    font-size: 18px !important;
  }

  .ab-closing--climax .ab-closing-promise {
    font-size: 16px !important;
  }

  .ab-cred-row .ab-cred-num {
    font-size: 24px;
    min-width: 50px;
  }
}

/* ============================================================
   CINEMATIC SCROLL ANIMATIONS — Desktop Only (>768px)
   Initial states set via CSS, animated via gsap.to
   ============================================================ */

/* 1. Hero Parallax Zoom — initial scale */
@media (min-width: 769px) {
  .ab-hero-bg--cinematic {
    transform: scale(1);
    transform-origin: center center;
  }
}

/* 2. Photo Cinematic Reveals — initial hidden state */
@media (min-width: 769px) {
  .ab-cinematic-img {
    opacity: 0;
    transform: scale(1.05);
    will-change: opacity, transform;
  }
}

/* 3. Full-bleed Photo Parallax — handled by JS translateY */

/* 4. Heading Text Reveal */
@media (min-width: 769px) {
  .ab-heading-reveal-line {
    display: block;
    overflow: hidden;
  }
  .ab-heading-reveal-inner {
    display: block;
    transform: translateY(110%);
    will-change: transform;
  }
}

/* 5. Section Gradient Transitions — depth overlays */
@media (min-width: 769px) {
  .ab-section-depth::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
  }
  .ab-section-depth {
    position: relative;
  }
  .ab-section-depth > * {
    position: relative;
    z-index: 1;
  }
}

/* 6. CEO Closing Climax — initial states */
@media (min-width: 769px) {
  .ab-closing-p-hidden {
    opacity: 0;
    transform: translateY(20px);
  }
  .ab-closing-promise-glow {
    text-shadow: 0 0 0 transparent;
    transition: text-shadow 0.8s ease;
  }
  .ab-closing-promise-glow.ab-glow-active {
    text-shadow: 0 0 30px rgba(240, 123, 28, 0.4), 0 0 60px rgba(240, 123, 28, 0.15);
  }
}

/* 7. Narrator Aside Animations — initial states */
@media (min-width: 769px) {
  .ab-narrator-aside-hidden {
    opacity: 0;
    transform: translateX(-20px);
    border-left-color: transparent;
  }
}

/* 8. Stats Counter — handled by JS (already has counter code) */

/* Mobile: disable all cinematic initial states */
@media (max-width: 768px) {
  .ab-cinematic-img {
    opacity: 1 !important;
    transform: none !important;
  }
  .ab-heading-reveal-inner {
    transform: none !important;
  }
  .ab-closing-p-hidden {
    opacity: 1 !important;
    transform: none !important;
  }
  .ab-narrator-aside-hidden {
    opacity: 1 !important;
    transform: none !important;
    border-left-color: rgba(240, 123, 28, 0.3) !important;
  }
}

/* ============================================================
   WIRED-STYLE LIGHT THEME — Clean editorial on white
   Applied when data-theme="light" (default)
   ============================================================ */

/* --- Base / Body --- */
html[data-theme="light"] body {
  background: #FFFFFF;
  color: #1a1a1a;
}

html[data-theme="light"] .about-page {
  --text: #1a1a1a;
  --sub: #555;
  --muted: #999;
  --border: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.06);
  --surface: #f8f8f8;
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --shadow-s: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-m: 0 4px 16px rgba(0,0,0,0.08);
}

/* --- Typography: WIRED-inspired --- */
html[data-theme="light"] .ab-desc,
html[data-theme="light"] .ab-story-prose p,
html[data-theme="light"] .ab-prins-item-desc,
html[data-theme="light"] .ab-mv-prose {
  color: #333;
  font-size: 17px;
  line-height: 1.85;
}

html[data-theme="light"] .ab-heading {
  color: #1a1a1a;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

html[data-theme="light"] .ab-story-text {
  color: #333;
  font-size: 17px;
  line-height: 1.85;
}

html[data-theme="light"] .ab-story-text strong {
  color: #1a1a1a;
}

/* --- Sections: White / Light Gray alternating --- */
html[data-theme="light"] .ab-section {
  background: #FFFFFF;
}

html[data-theme="light"] .ab-section--alt,
html[data-theme="light"] .ab-story,
html[data-theme="light"] .ab-chapters,
html[data-theme="light"] .ab-partners {
  background: #FAFAFA;
}

/* Remove dark editorial gradients on light mode */
html[data-theme="light"] .ab-mv--editorial {
  background: #0A0A0F !important;
}

html[data-theme="light"] .ab-story--editorial {
  background: #FFFFFF !important;
}

html[data-theme="light"] .ab-chapters--editorial {
  background: #FAFAFA !important;
}

html[data-theme="light"] .ab-section--timeline {
  background: #FFFFFF !important;
}

html[data-theme="light"] .ab-section--credentials {
  background: #FAFAFA !important;
}

html[data-theme="light"] .ab-closing--climax {
  background: #FFFFFF !important;
}

/* --- Narrator Bar: Light --- */
html[data-theme="light"] .ab-narrator {
  background: #FFFFFF;
}

html[data-theme="light"] .ab-narrator-inner {
  border-bottom-color: rgba(0,0,0,0.08);
}

html[data-theme="light"] .ab-narrator-inner::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}

html[data-theme="light"] .ab-narrator-text strong {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-narrator-intro {
  color: #777;
}

/* --- Pull Quotes / Narrator Asides --- */
html[data-theme="light"] .ab-story-quote {
  background: transparent;
  border-left-color: var(--orange);
  color: #1a1a1a;
}

html[data-theme="light"] .ab-story-quote cite {
  color: #999;
}

html[data-theme="light"] .ab-narrator-aside {
  color: #1a1a1a;
  font-style: italic;
  border-left-color: rgba(240, 123, 28, 0.3);
}

/* --- Story Visual / Stats --- */
html[data-theme="light"] .ab-story-visual {
  background: #FAFAFA;
  border-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .ab-story-stat-label {
  color: #555;
}

html[data-theme="light"] .ab-stat-strip {
  border-top-color: rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.08);
}

html[data-theme="light"] .ab-stat-strip-item {
  border-right-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .ab-stat-strip .ab-story-stat-label {
  color: #777;
}

/* --- Prins Partnership: Light cards --- */
html[data-theme="light"] .ab-prins-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme="light"] .ab-prins-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(240,123,28,0.15);
}

html[data-theme="light"] .ab-prins-card-title {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-prins-card-desc {
  color: #555;
}

html[data-theme="light"] .ab-prins-card-icon {
  background: rgba(240,123,28,0.06);
}

html[data-theme="light"] .ab-prins-item-title {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-prins-item-desc {
  color: #555;
}

/* --- Photos: Clean on white --- */
html[data-theme="light"] .ab-photo img,
html[data-theme="light"] .ab-photo-grid-img,
html[data-theme="light"] .ab-photo-editorial img,
html[data-theme="light"] .ab-photo-breakout img,
html[data-theme="light"] .ab-photo-duo img,
html[data-theme="light"] .ab-photo-standalone img,
html[data-theme="light"] .ab-photo-asymmetric-main img,
html[data-theme="light"] .ab-photo-asymmetric-side img {
  border: 1px solid rgba(0,0,0,0.08);
}

/* Simplify photo reveals on light: fade only, no scale */
@media (min-width: 769px) {
  html[data-theme="light"] .ab-cinematic-img {
    opacity: 0;
    transform: none;
    will-change: opacity;
  }
}

html[data-theme="light"] .ab-photo-caption {
  font-size: 12px;
  color: #999;
}

/* --- Chapters: Timeline on white --- */
html[data-theme="light"] .ab-chapter-line {
  background: linear-gradient(180deg, #e0e0e0, rgba(224,224,224,0.3));
}

html[data-theme="light"] .ab-chapter-line-fill {
  background: var(--orange);
}

html[data-theme="light"] .ab-chapter-dot {
  background: #FFFFFF;
  border-color: var(--orange);
  color: var(--orange);
}

html[data-theme="light"] .ab-chapter-title {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-chapter-desc {
  color: #555;
}

html[data-theme="light"] .ab-chapter-desc strong {
  color: #1a1a1a;
}

/* --- Timeline: Light --- */
html[data-theme="light"] .ab-tl-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme="light"] .ab-tl-title {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-tl-list li {
  color: #555;
}

html[data-theme="light"] .ab-timeline-line {
  background: linear-gradient(90deg, #e0e0e0, rgba(224,224,224,0.3));
}

html[data-theme="light"] .ab-tl-dot {
  background: #FFFFFF;
}

/* Timeline edge fades — white version */
html[data-theme="light"] .ab-section--timeline .ab-timeline-wrap::before {
  background: linear-gradient(90deg, #FFFFFF, transparent);
}

html[data-theme="light"] .ab-section--timeline .ab-timeline-wrap::after {
  background: linear-gradient(270deg, #FFFFFF, transparent);
}

html[data-theme="light"] .ab-section--timeline .ab-tl-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.06);
}

/* --- Credentials: Clean rows on light --- */
html[data-theme="light"] .ab-cred-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme="light"] .ab-cred-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

html[data-theme="light"] .ab-cred-title {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-cred-desc {
  color: #555;
}

html[data-theme="light"] .ab-cred-row {
  border-bottom-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .ab-cred-row:first-child {
  border-top-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .ab-cred-row .ab-cred-title {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-cred-row .ab-cred-desc {
  color: #555;
}

/* --- Partners: Light --- */
html[data-theme="light"] .ab-partner-card {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme="light"] .ab-partner-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

html[data-theme="light"] .ab-partner-name {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-partner-desc {
  color: #555;
}

/* --- Info Items --- */
html[data-theme="light"] .ab-info-item {
  background: #FAFAFA;
}

html[data-theme="light"] .ab-info-label {
  color: #999;
}

html[data-theme="light"] .ab-info-value {
  color: #1a1a1a;
}

/* --- Mini CTA: Light gray bg --- */
html[data-theme="light"] .ab-mini-cta-card {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .ab-mini-cta-text {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-mini-cta-wrap--inline {
  border-top-color: rgba(0,0,0,0.06);
  border-bottom-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .ab-mini-cta-wrap--inline .ab-mini-cta-text {
  color: #555;
}

html[data-theme="light"] .ab-mini-cta-wrap--inline .ab-mini-cta-btn-outline {
  border-color: rgba(0,0,0,0.12);
  color: #333;
}

/* --- CEO Closing: Light --- */
html[data-theme="light"] .ab-closing {
  background: #FFFFFF;
}

html[data-theme="light"] .ab-closing-quote p {
  color: #1a1a1a !important;
}

html[data-theme="light"] .ab-closing--climax .ab-closing-quote p {
  color: #1a1a1a !important;
}

/* --- CTA Section: Light gray --- */
html[data-theme="light"] .ab-cta {
  background: #f5f5f5;
}

html[data-theme="light"] .ab-cta .ab-heading {
  color: #1a1a1a;
}

html[data-theme="light"] .ab-cta .ab-desc {
  color: #555;
}

html[data-theme="light"] .ab-cta-btn-outline {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.12);
  color: #1a1a1a;
}

/* --- Mission/Vision: Keep dark as contrast moment --- */
/* .ab-mv already has #0A0A0F background — no override needed */
/* Text inside MV stays white/light as designed */

/* --- Story Prose: Adapt for light --- */
html[data-theme="light"] .ab-story-prose {
  color: #333;
}

html[data-theme="light"] .ab-story-prose strong {
  color: #1a1a1a;
}

/* --- MV Pull Quotes on light (stays dark section, text is white) --- */
/* No changes needed — MV section retains its own dark bg */

/* --- Section Depth Overlay: transparent on light --- */
html[data-theme="light"] .ab-section-depth::before {
  opacity: 0;
}

/* --- Mobile Action Bar: stays light as-is --- */

/* --- Body font-size bump for WIRED reading experience --- */
html[data-theme="light"] .ab-story-text,
html[data-theme="light"] .ab-chapter-desc,
html[data-theme="light"] .ab-prins-card-desc,
html[data-theme="light"] .ab-partner-desc,
html[data-theme="light"] .ab-cred-desc,
html[data-theme="light"] .ab-closing-quote p,
html[data-theme="light"] .ab-desc {
  font-size: 17px;
  line-height: 1.85;
}

/* --- Prose max-width for readability --- */
html[data-theme="light"] .ab-section-inner--prose {
  max-width: 680px;
}


/* ============================================================
   AWARD-WINNING REDESIGN — 7 ACTS
   Editorial scrollytelling · kinetic typography · cinematic photos
   ============================================================ */

/* ---------- Design tokens (scoped) ---------- */
.about-page {
  --act-dark: #0a0a0c;
  --act-dark-2: #121216;
  --act-light: #ffffff;
  --act-gray: #f5f5f5;
  --act-text-dark: #1a1a1a;
  --act-text-muted: #666;
  --act-text-inv: rgba(255,255,255,0.88);
  --act-text-inv-muted: rgba(255,255,255,0.55);
  --act-orange: #F07B1C;
  --act-orange-glow: rgba(240, 123, 28, 0.35);
}

/* ---------- Base ACT container ---------- */
.about-page .ab-act {
  position: relative;
  padding: clamp(100px, 12vw, 200px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
}

.about-page .ab-act--dark {
  background: var(--act-dark);
  color: var(--act-text-inv);
}

.about-page .ab-act--light {
  background: var(--act-light);
  color: var(--act-text-dark);
}

.about-page .ab-act--fullbleed {
  padding: 0;
}

/* Shared eyebrow + headline + lead */
.about-page .ab-act-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--act-orange);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.about-page .ab-act-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--act-orange);
}

.about-page .ab-act-eyebrow--dark {
  color: var(--act-orange);
}

.about-page .ab-act-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 32px;
  color: inherit;
}

.about-page .ab-act-headline--light {
  color: var(--act-text-dark);
}

.about-page .ab-act-headline em {
  font-style: normal;
  color: var(--act-orange);
}

.about-page .ab-act-lead {
  font-family: var(--font-kr);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.85;
  color: var(--act-text-muted);
  max-width: 640px;
  margin: 0 0 48px;
  font-weight: 400;
}

.about-page .ab-act-lead--dark {
  color: var(--act-text-inv-muted);
}

.about-page .ab-act-body {
  max-width: 640px;
  font-family: var(--font-kr);
}

.about-page .ab-act-body-p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--act-text-muted);
  margin: 0 0 24px;
}

.about-page .ab-act-body-p strong {
  color: var(--act-text-dark);
  font-weight: 600;
}

.about-page .ab-act-body--dark .ab-act-body-p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.95;
}

.about-page .ab-act-body--dark .ab-act-body-p strong {
  color: #ffffff;
}

.about-page .ab-act-body--dark .ab-act-body-p .ab-highlight,
.about-page .ab-act .ab-highlight {
  color: var(--act-orange);
  font-weight: 600;
}

.about-page .ab-act-subhead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--act-text-dark);
  margin: 56px 0 20px;
  line-height: 1.2;
}


/* ============================================================
   ACT 0 — KINETIC HERO
   ============================================================ */
.about-page .ab-kinetic-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--act-dark);
  color: #ffffff;
  padding: clamp(120px, 15vh, 180px) clamp(24px, 6vw, 90px) clamp(100px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}

.about-page .ab-kinetic-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 30%, #ffffff 0, transparent 1px),
    radial-gradient(circle at 70% 60%, #ffffff 0, transparent 1px),
    radial-gradient(circle at 45% 80%, #ffffff 0, transparent 1px);
  background-size: 3px 3px, 5px 5px, 7px 7px;
  mix-blend-mode: screen;
}

.about-page .ab-kinetic-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: clamp(60px, 8vw, 120px) clamp(60px, 8vw, 120px);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.about-page .ab-kinetic-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.about-page .ab-kinetic-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--act-orange);
  margin-bottom: clamp(40px, 6vw, 80px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.about-page .ab-kinetic-eyebrow::before {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--act-orange);
}

.about-page .ab-kinetic-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
  color: #ffffff;
}

.about-page .ab-kinetic-line {
  display: block;
  overflow: hidden;
  padding: 0.02em 0 0.06em;
}

.about-page .ab-kinetic-line--accent {
  color: var(--act-orange);
  padding-left: 0.18em;
  position: relative;
}

.about-page .ab-kinetic-line--accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.08em;
  height: 0.25em;
  background: var(--act-orange);
  transform-origin: left;
}

.about-page .ab-kinetic-char {
  display: inline-block;
  will-change: transform, opacity;
}

.about-page .ab-kinetic-char--space {
  width: 0.35em;
  display: inline-block;
}

.about-page .ab-kinetic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 72px);
  margin-top: clamp(60px, 9vw, 120px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 820px;
}

.about-page .ab-kinetic-meta-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-page .ab-kinetic-meta-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.about-page .ab-kinetic-meta-val {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.about-page .ab-kinetic-scroll {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.about-page .ab-kinetic-scroll-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.about-page .ab-kinetic-scroll-line {
  display: inline-block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--act-orange), transparent);
  animation: abKineticScroll 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes abKineticScroll {
  0%, 100% { transform: scaleY(1); opacity: 0.9; }
  50% { transform: scaleY(0.35); opacity: 0.3; }
}


/* ============================================================
   ACT I — THE DISCOVERY (Full-bleed photo + sticky caption)
   ============================================================ */
.about-page .ab-act--discovery {
  display: grid;
  grid-template-columns: 45vw 55vw;
  min-height: 160vh;
  background: var(--act-light);
  padding: 0;
}

.about-page .ab-full-photo {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.about-page .ab-full-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-page .ab-full-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.about-page .ab-full-photo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.3) 0%, rgba(10,10,12,0.1) 40%, rgba(10,10,12,0.55) 100%);
  pointer-events: none;
}

.about-page .ab-sticky-caption {
  position: absolute;
  top: clamp(80px, 10vh, 140px);
  left: clamp(24px, 4vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ffffff;
  pointer-events: none;
  max-width: 280px;
}

.about-page .ab-sticky-caption--right {
  left: auto;
  right: clamp(24px, 4vw, 56px);
}

.about-page .ab-sticky-caption-act {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--act-orange);
}

.about-page .ab-sticky-caption-year {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
  margin: 4px 0;
}

.about-page .ab-sticky-caption-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.about-page .ab-sticky-caption-place {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.about-page .ab-act-prose {
  background: var(--act-light);
  padding: clamp(100px, 15vh, 200px) clamp(24px, 5vw, 80px) clamp(100px, 15vh, 200px);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 96px);
  max-width: 680px;
}

.about-page .ab-pull-quote {
  font-family: var(--font-kr);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--act-text-dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--act-orange);
  padding-left: clamp(20px, 2.5vw, 36px);
}

.about-page .ab-pull-quote-line {
  display: block;
  will-change: transform, opacity;
}

.about-page .ab-pull-quote-line--accent {
  color: var(--act-orange);
}

.about-page .ab-act-lead {
  font-weight: 400;
}

.about-page .ab-act-narrator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-page .ab-act-narrator-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.about-page .ab-act-narrator-text {
  font-family: var(--font-kr);
  font-size: 14px;
  line-height: 1.5;
  color: var(--act-text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-page .ab-act-narrator-text strong {
  color: var(--act-text-dark);
  font-weight: 700;
  font-size: 13px;
}


/* ============================================================
   ACT II — THE WAIT (Dark, giant "6", dramatic)
   ============================================================ */
.about-page .ab-act--wait {
  background: var(--act-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(120px, 15vh, 200px) clamp(24px, 6vw, 80px);
}

.about-page .ab-giant-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  user-select: none;
}

.about-page .ab-giant-number--dark .ab-giant-number-val {
  font-size: clamp(16rem, 55vw, 46rem);
  color: rgba(255,255,255,0.035);
  text-align: center;
  display: block;
}

.about-page .ab-giant-number--dark .ab-giant-number-unit {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(240, 123, 28, 0.4);
  position: absolute;
  bottom: clamp(100px, 15vh, 180px);
  left: 50%;
  transform: translateX(-50%);
}

.about-page .ab-act-center {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: left;
}

.about-page .ab-act--wait .ab-act-headline {
  color: #ffffff;
  margin-bottom: 40px;
}

.about-page .ab-act-photo-detail {
  margin: 64px 0 48px;
  max-width: 520px;
}

.about-page .ab-act-photo-detail picture {
  display: block;
  overflow: hidden;
}

.about-page .ab-act-photo-detail img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.25);
  transition: filter 0.6s ease;
}

.about-page .ab-act-photo-detail:hover img {
  filter: grayscale(0);
}

.about-page .ab-act-photo-caption {
  font-family: var(--font-kr);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--act-text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.about-page .ab-act-photo-caption--dark {
  color: rgba(255,255,255,0.5);
}

.about-page .ab-act-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 48px);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
}

.about-page .ab-act-ticker-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 180px;
}

.about-page .ab-act-ticker-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--act-orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-page .ab-act-ticker-label {
  font-family: var(--font-kr);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}


/* ============================================================
   ACT III — THE BREAKTHROUGH (Light, giant 8,500)
   ============================================================ */
.about-page .ab-act--breakthrough {
  background: var(--act-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(120px, 15vh, 200px) clamp(24px, 6vw, 80px);
}

.about-page .ab-giant-number--light .ab-giant-number-val {
  font-size: clamp(8rem, 30vw, 24rem);
  color: rgba(240, 123, 28, 0.08);
  text-align: center;
  display: block;
}

.about-page .ab-act-center--breakthrough {
  max-width: 780px;
  z-index: 2;
}

.about-page .ab-act--breakthrough .ab-act-lead {
  color: var(--act-text-dark);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.85;
  max-width: 680px;
}

.about-page .ab-act--breakthrough .ab-act-lead strong {
  color: var(--act-orange);
  font-weight: 700;
}

.about-page .ab-act-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 56px);
  margin: 56px 0 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-page .ab-act-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 160px;
}

.about-page .ab-act-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--act-text-dark);
  letter-spacing: -0.035em;
  line-height: 1;
}

.about-page .ab-act-stat--accent .ab-act-stat-num {
  color: var(--act-orange);
}

.about-page .ab-act-stat-label {
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--act-text-muted);
  line-height: 1.5;
}

.about-page .ab-act-photo-detail--light img {
  filter: none;
}


/* ============================================================
   ACT IV — THE PARTNERS (Photo collage)
   ============================================================ */
.about-page .ab-act--partners {
  background: var(--act-light);
  padding: clamp(120px, 15vh, 200px) clamp(24px, 6vw, 80px);
  position: relative;
}

.about-page .ab-act--partners .ab-sticky-caption {
  position: sticky;
  top: 120px;
  left: auto;
  right: 5vw;
  color: var(--act-text-dark);
  float: right;
  z-index: 1;
  max-width: 200px;
  margin-left: 32px;
  pointer-events: none;
}

.about-page .ab-act--partners .ab-sticky-caption-year {
  color: var(--act-text-dark);
  text-shadow: none;
  font-size: clamp(32px, 3.2vw, 48px);
}

.about-page .ab-act--partners .ab-sticky-caption-title {
  color: var(--act-text-dark);
}

.about-page .ab-act-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-page .ab-photo-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 32px);
  margin: 64px 0 24px;
  min-height: clamp(500px, 70vh, 860px);
}

.about-page .ab-photo-collage-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  overflow: hidden;
  background: var(--act-gray);
}

.about-page .ab-photo-collage-topright {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  background: var(--act-gray);
  aspect-ratio: 16 / 11;
}

.about-page .ab-photo-collage-overlap {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  background: var(--act-gray);
  aspect-ratio: 4 / 3;
  margin-top: clamp(-60px, -4vw, -40px);
  margin-left: clamp(-60px, -5vw, -48px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  z-index: 2;
}

.about-page .ab-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.about-page .ab-photo-collage:hover .ab-collage-img {
  transform: scale(1.03);
}

.about-page .ab-act-photo-caption--collage {
  text-align: left;
  margin: 18px 0 48px;
  font-size: 12px;
}

.about-page .ab-act-narrative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 3vw, 48px);
  margin: 56px 0;
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-page .ab-act-narrative-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-page .ab-act-narrative-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--act-text-dark);
  letter-spacing: -0.005em;
  padding-left: 12px;
  border-left: 2px solid var(--act-orange);
  line-height: 1.35;
}

.about-page .ab-act-narrative-desc {
  font-family: var(--font-kr);
  font-size: 14px;
  line-height: 1.75;
  color: var(--act-text-muted);
  margin: 0;
  padding-left: 14px;
}

.about-page .ab-act-kgm,
.about-page .ab-act-bias {
  max-width: 680px;
  margin-top: 48px;
}


/* ============================================================
   ACT V — THE NUMBERS (Credentials)
   ============================================================ */
.about-page .ab-act--numbers {
  background: var(--act-gray);
  padding: clamp(120px, 15vh, 200px) clamp(24px, 6vw, 80px);
}

.about-page .ab-act-numbers-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-page .ab-act--numbers .ab-act-headline em {
  color: var(--act-orange);
  font-style: normal;
}

.about-page .ab-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 3vw, 56px);
  margin-top: 72px;
}

.about-page .ab-number-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 32px 36px;
  background: var(--act-light);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 3px solid var(--act-orange);
}

.about-page .ab-number-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.04);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.about-page .ab-number-card:hover {
  transform: translateY(-4px);
}

.about-page .ab-number-card:hover::before {
  border-color: rgba(240, 123, 28, 0.3);
}

.about-page .ab-number-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 0.85;
}

.about-page .ab-number-val {
  font-family: var(--font-display);
  font-size: clamp(72px, 7vw, 120px);
  font-weight: 900;
  color: var(--act-orange);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.about-page .ab-number-val--text {
  font-size: clamp(52px, 5.5vw, 84px);
  letter-spacing: -0.02em;
}

.about-page .ab-number-plus {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--act-orange);
  letter-spacing: -0.01em;
  padding-bottom: 8px;
}

.about-page .ab-number-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--act-text-dark);
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-page .ab-number-desc {
  font-family: var(--font-kr);
  font-size: 13px;
  line-height: 1.75;
  color: var(--act-text-muted);
}


/* ============================================================
   ACT VI — THE JOURNEY (Timeline)
   ============================================================ */
.about-page .ab-act--journey {
  background: var(--act-light);
  padding: clamp(120px, 15vh, 200px) 0 clamp(80px, 10vh, 120px);
}

.about-page .ab-act-journey-inner {
  padding: 0 clamp(24px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.about-page .ab-act--journey .ab-act-lead {
  margin-bottom: 72px;
}

.about-page .ab-act--journey .ab-timeline-wrap {
  margin-top: 0;
}


/* ============================================================
   ACT VII — THE PROMISE (CEO Closing)
   ============================================================ */
.about-page .ab-act--promise {
  background: var(--act-dark);
  padding: clamp(140px, 18vh, 240px) clamp(24px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.about-page .ab-act--promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,123,28,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about-page .ab-act-promise-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-page .ab-act-promise-inner .ab-act-eyebrow {
  justify-content: center;
  color: var(--act-orange);
  margin-bottom: 48px;
}

.about-page .ab-act-promise-inner .ab-act-eyebrow::before {
  background: var(--act-orange);
}

.about-page .ab-promise-portrait {
  position: relative;
  width: clamp(140px, 18vw, 200px);
  height: clamp(140px, 18vw, 200px);
  margin-bottom: 56px;
}

.about-page .ab-promise-portrait-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(240, 123, 28, 0.35);
  animation: abPromiseRing 4s ease-in-out infinite;
}

.about-page .ab-promise-portrait-ring::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(240, 123, 28, 0.15);
}

@keyframes abPromiseRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}

.about-page .ab-promise-portrait-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
  z-index: 1;
}

.about-page .ab-promise-quote {
  margin: 0 0 56px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

.about-page .ab-promise-line {
  font-family: var(--font-kr);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0;
  letter-spacing: -0.005em;
}

.about-page .ab-promise-line-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.about-page .ab-promise-line--climax {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #ffffff;
  padding: 32px 0 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: text-shadow 0.8s ease;
}

.about-page .ab-promise-line--glow {
  color: #ffffff;
  text-shadow:
    0 0 32px rgba(240, 123, 28, 0.6),
    0 0 64px rgba(240, 123, 28, 0.3);
}

.about-page .ab-promise-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.about-page .ab-promise-signature-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(240, 123, 28, 0.6);
}

.about-page .ab-promise-signature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-kr);
}

.about-page .ab-promise-signature-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.about-page .ab-promise-signature-text span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}


/* ============================================================
   RESPONSIVE — Tablet & Mobile (84% mobile users)
   ============================================================ */
@media (max-width: 1024px) {
  .about-page .ab-act--discovery {
    grid-template-columns: 1fr;
  }

  .about-page .ab-full-photo {
    position: relative;
    height: 70vh;
  }

  .about-page .ab-act-prose {
    padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 60px);
    max-width: 100%;
  }

  .about-page .ab-sticky-caption {
    top: clamp(40px, 6vh, 80px);
  }

  .about-page .ab-photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .about-page .ab-photo-collage-main {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4 / 5;
  }

  .about-page .ab-photo-collage-topright {
    grid-column: 1;
    grid-row: 2;
  }

  .about-page .ab-photo-collage-overlap {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
    margin-left: 0;
  }

  .about-page .ab-act--partners .ab-sticky-caption {
    position: relative;
    top: auto;
    right: auto;
    float: none;
    margin-left: 0;
    margin-bottom: 24px;
  }

  .about-page .ab-act--partners .ab-sticky-caption-year {
    color: var(--act-text-dark);
  }
}

@media (max-width: 768px) {
  .about-page .ab-act {
    padding: clamp(72px, 10vh, 120px) clamp(20px, 5vw, 32px);
  }

  .about-page .ab-kinetic-hero {
    padding: clamp(100px, 14vh, 140px) clamp(20px, 5vw, 32px) clamp(80px, 10vh, 120px);
    min-height: 90vh;
  }

  .about-page .ab-kinetic-heading {
    font-size: clamp(3rem, 15vw, 6rem);
    line-height: 0.95;
  }

  .about-page .ab-kinetic-eyebrow {
    margin-bottom: 32px;
    font-size: 10px;
  }

  .about-page .ab-kinetic-meta {
    gap: 20px;
    margin-top: 48px;
    padding-top: 24px;
  }

  .about-page .ab-kinetic-meta-col {
    flex: 1 1 45%;
  }

  .about-page .ab-kinetic-scroll {
    display: none;
  }

  .about-page .ab-act-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-page .ab-pull-quote {
    font-size: clamp(24px, 6vw, 36px);
    padding-left: 18px;
  }

  .about-page .ab-sticky-caption {
    position: absolute;
    top: 32px;
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .about-page .ab-sticky-caption-year {
    font-size: clamp(36px, 10vw, 52px);
  }

  .about-page .ab-giant-number--dark .ab-giant-number-val,
  .about-page .ab-giant-number--light .ab-giant-number-val {
    font-size: 28vw;
  }

  .about-page .ab-giant-number--dark .ab-giant-number-unit {
    bottom: 60px;
    font-size: 11px;
  }

  .about-page .ab-act-ticker,
  .about-page .ab-act-stat-row {
    flex-direction: column;
    gap: 20px;
  }

  .about-page .ab-act-ticker-item,
  .about-page .ab-act-stat {
    flex: 1 1 100%;
  }

  .about-page .ab-numbers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page .ab-number-card {
    padding: 32px 24px 28px;
  }

  .about-page .ab-number-val {
    font-size: clamp(60px, 16vw, 96px);
  }

  .about-page .ab-act-narrative {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0;
  }

  .about-page .ab-act--promise {
    padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 32px);
  }

  .about-page .ab-promise-line {
    font-size: 16px;
  }

  .about-page .ab-promise-line--climax {
    font-size: 20px;
  }

  .about-page .ab-act-subhead {
    font-size: clamp(20px, 5vw, 26px);
    margin-top: 40px;
  }

  .about-page .ab-act-body-p {
    font-size: 15px;
    line-height: 1.85;
  }

  .about-page .ab-act-body--dark .ab-act-body-p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-page .ab-kinetic-heading {
    font-size: clamp(2.5rem, 14vw, 4.5rem);
  }

  .about-page .ab-pull-quote {
    font-size: 22px;
  }

  .about-page .ab-act-headline {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
}


/* ============================================================
   Reduced motion — respect user preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .about-page .ab-kinetic-char,
  .about-page .ab-pull-quote-line,
  .about-page .ab-giant-number,
  .about-page .ab-promise-line,
  .about-page .ab-promise-portrait,
  .about-page .ab-promise-line-hidden {
    opacity: 1 !important;
    transform: none !important;
  }

  .about-page .ab-kinetic-scroll-line,
  .about-page .ab-promise-portrait-ring {
    animation: none !important;
  }

  .about-page .ab-full-photo-img {
    transform: none !important;
  }
}


/* ============================================================
   PHASE 8 — POLISH & IMPROVEMENTS
   ============================================================ */

/* ---- FIX 1: Act II giant "6" character ---- */
.about-page .ab-act--wait {
  overflow: hidden;
}

.about-page .ab-giant-char {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
  user-select: none;
  flex-direction: column;
  gap: 0;
  mix-blend-mode: screen;
}

.about-page .ab-giant-char--wait .ab-giant-char-val {
  font-family: var(--font-display);
  font-size: clamp(20rem, 50vw, 40rem);
  font-weight: 900;
  color: rgba(240, 123, 28, 0.45);
  line-height: 0.8;
  letter-spacing: -0.08em;
  text-align: center;
  display: block;
  transform: translateY(-0.04em);
  text-shadow: 0 0 180px rgba(240, 123, 28, 0.35);
  -webkit-text-stroke: 1px rgba(240, 123, 28, 0.3);
}

.about-page .ab-giant-char--wait .ab-giant-char-label {
  font-family: var(--font-display);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(240, 123, 28, 0.55);
  text-transform: uppercase;
  text-align: center;
  margin-top: -24px;
  display: block;
}

/* ---- FIX 2: Narrator intro block ---- */
.about-page .ab-narrator-intro {
  background: var(--act-dark);
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
}

.about-page .ab-narrator-intro::before,
.about-page .ab-narrator-intro::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(240, 123, 28, 0.5), transparent);
  margin: 0 auto 40px;
}

.about-page .ab-narrator-intro::after {
  margin: 40px auto 0;
}

.about-page .ab-narrator-intro-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-page .ab-narrator-intro-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--act-orange);
  margin-bottom: 24px;
}

.about-page .ab-narrator-intro-line {
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ---- FIX 5: Narrator bridge sections ---- */
.about-page .ab-narrator-bridge {
  background: var(--act-light);
  padding: clamp(72px, 10vh, 120px) clamp(24px, 6vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page .ab-narrator-bridge--dark {
  background: var(--act-dark);
}

.about-page .ab-narrator-aside--bridge {
  font-family: Georgia, 'Noto Serif KR', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--act-text-dark);
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 0 12px 24px;
  border-left: 2px solid var(--act-orange);
  line-height: 1.7;
  text-align: left;
  opacity: 1;
}

.about-page .ab-narrator-bridge--dark .ab-narrator-aside--bridge {
  color: rgba(255, 255, 255, 0.82);
  border-left-color: rgba(240, 123, 28, 0.6);
}

/* ---- FIX 3: Act V Architectural number rows ---- */
.about-page .ab-numbers-rows {
  display: flex;
  flex-direction: column;
  margin-top: 72px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-page .ab-number-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 6vw, 88px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.about-page .ab-number-row-num {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 0.82;
}

.about-page .ab-number-row-val {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: var(--act-text-dark);
  letter-spacing: -0.06em;
  line-height: 0.82;
  display: inline-block;
}

.about-page .ab-number-row--accent .ab-number-row-val {
  color: var(--act-orange);
}

.about-page .ab-number-row-val--text {
  font-size: clamp(5rem, 11vw, 11rem);
  letter-spacing: -0.03em;
}

.about-page .ab-number-row-unit {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 700;
  color: var(--act-text-muted);
  letter-spacing: -0.01em;
  padding-bottom: clamp(16px, 2vw, 28px);
}

.about-page .ab-number-row--accent .ab-number-row-unit {
  color: var(--act-orange);
}

.about-page .ab-number-row-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}

.about-page .ab-number-row-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--act-text-dark);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.about-page .ab-number-row-desc {
  font-family: var(--font-kr);
  font-size: 15px;
  line-height: 1.8;
  color: var(--act-text-muted);
}

/* Hide legacy numbers grid if it still appears */
.about-page .ab-act--numbers .ab-numbers-grid {
  display: none;
}

/* ---- FIX 4: Act VI Timeline — cinematic redesign ---- */
.about-page .ab-act--journey-cinematic {
  background: linear-gradient(180deg, var(--act-light) 0%, #f3f2ee 100%);
}

.about-page .ab-act--journey-cinematic .ab-tl-badge {
  display: none;
}

.about-page .ab-act--journey-cinematic .ab-timeline-line {
  background: linear-gradient(90deg, var(--act-orange) 0%, rgba(240, 123, 28, 0.1) 100%);
  height: 1px;
  top: 82px;
}

.about-page .ab-act--journey-cinematic .ab-tl-item {
  width: 260px;
  padding: 0 16px;
}

.about-page .ab-act--journey-cinematic .ab-tl-year {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--act-text-dark);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 18px;
  opacity: 0.92;
}

.about-page .ab-act--journey-cinematic .ab-tl-dot {
  width: 10px;
  height: 10px;
  background: var(--act-orange);
  border: 2px solid var(--act-light);
  box-shadow: 0 0 0 1px var(--act-orange);
  margin-bottom: 22px;
}

.about-page .ab-act--journey-cinematic .ab-tl-card {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 0 0;
  width: 100%;
}

.about-page .ab-act--journey-cinematic .ab-tl-item:hover .ab-tl-card {
  transform: translateY(-2px);
  box-shadow: none;
  border-top-color: var(--act-orange);
}

.about-page .ab-act--journey-cinematic .ab-tl-title {
  font-family: var(--font-kr);
  font-size: 15px;
  font-weight: 700;
  color: var(--act-text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.about-page .ab-act--journey-cinematic .ab-tl-list li {
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--act-text-muted);
  line-height: 1.65;
  padding-left: 12px;
}

.about-page .ab-act--journey-cinematic .ab-tl-list li::before {
  background: var(--act-orange);
  opacity: 0.6;
}

/* Only show first 2 bullets for minimal cinematic look */
.about-page .ab-act--journey-cinematic .ab-tl-list li:nth-child(n+3) {
  display: none;
}

/* ---- FIX 6: (Story text clarification — handled via data-i18n in ko.json) ---- */

/* ---- FIX 7: Typography bump for editorial body text ---- */
.about-page .ab-prose,
.about-page .ab-act-lead.ab-prose,
.about-page .ab-act-body-p.ab-prose {
  font-size: 19px;
  line-height: 1.9;
}

.about-page .ab-act--breakthrough .ab-act-lead.ab-prose {
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.9;
}

/* ---- FIX 8: Act IV breakout photo ---- */
.about-page .ab-act-breakout-photo {
  position: relative;
  width: 100%;
  margin: clamp(72px, 10vh, 120px) 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--act-dark);
}

.about-page .ab-act-breakout-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-page .ab-act-breakout-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.about-page .ab-act-breakout-caption {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  left: clamp(20px, 4vw, 48px);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 14px;
  background: rgba(10, 10, 12, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---- FIX 8: Act VII atmospheric background photo ---- */
.about-page .ab-promise-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
  overflow: hidden;
}

.about-page .ab-promise-bg-photo picture,
.about-page .ab-promise-bg-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) grayscale(0.4);
}

.about-page .ab-promise-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 12, 0.7) 100%);
}

/* ---- FIX 10: Mobile Act 0 kinetic hero compactness ---- */
@media (max-width: 768px) {
  .about-page .ab-kinetic-hero {
    min-height: 90vh;
    padding: clamp(80px, 11vh, 120px) clamp(20px, 5vw, 32px) clamp(60px, 8vh, 100px);
  }

  .about-page .ab-kinetic-heading {
    font-size: clamp(2.5rem, 13vw, 5rem);
    line-height: 0.96;
  }

  .about-page .ab-kinetic-eyebrow {
    margin-bottom: 22px;
  }

  .about-page .ab-kinetic-meta {
    gap: 14px;
    margin-top: 32px;
    padding-top: 18px;
  }

  .about-page .ab-kinetic-meta-label {
    font-size: 9px;
  }

  .about-page .ab-kinetic-meta-val {
    font-size: 13px;
  }

  .about-page .ab-kinetic-scroll {
    display: none;
  }

  /* Phase 8 responsive adjustments */
  .about-page .ab-giant-char--wait .ab-giant-char-val {
    font-size: 56vw;
  }

  .about-page .ab-giant-char--wait .ab-giant-char-label {
    margin-top: -12px;
    font-size: 10px;
  }

  .about-page .ab-narrator-intro {
    padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 32px);
  }

  .about-page .ab-narrator-intro::before,
  .about-page .ab-narrator-intro::after {
    height: 32px;
    margin: 0 auto 28px;
  }

  .about-page .ab-narrator-intro::after {
    margin: 28px auto 0;
  }

  .about-page .ab-narrator-intro-label {
    font-size: 10px;
    margin-bottom: 18px;
  }

  .about-page .ab-narrator-intro-line {
    font-size: 17px;
    line-height: 1.7;
  }

  .about-page .ab-narrator-bridge {
    padding: clamp(48px, 8vh, 80px) clamp(20px, 5vw, 32px);
  }

  .about-page .ab-narrator-aside--bridge {
    font-size: 16px;
    padding-left: 18px;
  }

  /* Architectural number rows stack */
  .about-page .ab-number-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: clamp(36px, 7vw, 56px) 0;
  }

  .about-page .ab-number-row-val {
    font-size: clamp(5rem, 22vw, 9rem);
  }

  .about-page .ab-number-row-val--text {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .about-page .ab-number-row-unit {
    font-size: 22px;
    padding-bottom: 12px;
  }

  .about-page .ab-number-row-desc {
    font-size: 15px;
  }

  /* Journey cinematic mobile */
  .about-page .ab-act--journey-cinematic .ab-tl-item {
    width: 200px;
  }

  .about-page .ab-act--journey-cinematic .ab-tl-year {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  /* Typography bump mobile — slightly smaller than desktop but still bigger than default */
  .about-page .ab-prose,
  .about-page .ab-act-lead.ab-prose,
  .about-page .ab-act-body-p.ab-prose {
    font-size: 17px;
    line-height: 1.88;
  }

  /* Act IV breakout photo mobile */
  .about-page .ab-act-breakout-photo {
    width: 100%;
    margin: 48px 0;
    aspect-ratio: 4 / 3;
  }

  .about-page .ab-act-breakout-caption {
    bottom: 16px;
    left: 16px;
    font-size: 10px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .about-page .ab-kinetic-heading {
    font-size: clamp(2.2rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .about-page .ab-giant-char--wait .ab-giant-char-val {
    font-size: 68vw;
  }

  .about-page .ab-number-row-val {
    font-size: clamp(4.5rem, 24vw, 8rem);
  }
}

/* Reduced motion compatibility for Phase 8 elements */
@media (prefers-reduced-motion: reduce) {
  .about-page .ab-giant-char,
  .about-page .ab-narrator-intro-line,
  .about-page .ab-narrator-aside--bridge,
  .about-page .ab-number-row,
  .about-page .ab-act-breakout-photo {
    opacity: 1 !important;
    transform: none !important;
  }

  .about-page .ab-act-breakout-img,
  .about-page .ab-promise-bg-photo img {
    transform: none !important;
  }
}

/* ============ PHASE 9 — HERO CINEMATIC HYBRID ============ */
/* Video background + giant "13" number + scroll progress line */
.about-page .ab-kinetic-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.about-page .ab-kinetic-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.1) brightness(0.55);
  opacity: 0.35;
}
.about-page .ab-kinetic-video-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(10,10,12,0.6) 60%, rgba(10,10,12,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.3) 0%, rgba(10,10,12,0.7) 100%);
  pointer-events: none;
}

.about-page .ab-kinetic-giant {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(22rem, 42vw, 46rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: rgba(240, 123, 28, 0.08);
  -webkit-text-stroke: 1px rgba(240, 123, 28, 0.22);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  mix-blend-mode: screen;
  font-feature-settings: "tnum";
}

.about-page .ab-kinetic-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F07B1C);
  z-index: 10;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* Hero inner needs z-index above video/giant */
.about-page .ab-kinetic-hero .ab-kinetic-inner {
  position: relative;
  z-index: 3;
}
.about-page .ab-kinetic-hero .ab-kinetic-scroll {
  position: absolute;
  z-index: 3;
}

/* Grid and noise should layer between video and content */
.about-page .ab-kinetic-hero .ab-kinetic-grid,
.about-page .ab-kinetic-hero .ab-kinetic-noise {
  z-index: 2;
}

/* Mobile: hide giant number, simplify video */
@media (max-width: 768px) {
  .about-page .ab-kinetic-giant {
    font-size: clamp(16rem, 60vw, 24rem);
    right: -10vw;
    opacity: 0.6;
  }
  .about-page .ab-kinetic-video video {
    opacity: 0.28;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .ab-kinetic-video video {
    display: none;
  }
}
