/* ============================================================
   MR.DENIM — About Page: Ultra-Luxury Redesign
   Inspired by: Loro Piana · Brunello Cucinelli · Maison Margiela
   ============================================================ */

/* ══════════════════════════════════════════
   HEADER OVERRIDES
══════════════════════════════════════════ */
.about-page .announcement-bar {
  background-color: #000 !important;
  color: #fff !important;
}

.about-page .announcement-bar a,
.about-page .announcement-item,
.about-page .announcement-close {
  color: #fff !important;
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes heroImgReveal {
  from { transform: scale(1.15) translateX(-20px); }
  to   { transform: scale(1) translateX(0); }
}

@keyframes heroPanelSlide {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes goldLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes heroTextMask {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBobble {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ══════════════════════════════════════════
   HERO — SPLIT-SCREEN EDITORIAL
══════════════════════════════════════════ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

/* ── LEFT PANEL: IMAGE ── */
.about-hero-image-panel {
  position: relative;
  overflow: hidden;
  background: #111;
  clip-path: inset(0 100% 0 0);
  animation: heroPanelSlide 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  animation: heroImgReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  will-change: transform;
}

.about-hero-image-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.5) 30%,
    rgba(212, 175, 55, 0.8) 50%,
    rgba(212, 175, 55, 0.5) 70%,
    transparent 100%
  );
  z-index: 2;
}

.about-hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 40%);
  z-index: 1;
  pointer-events: none;
}

.about-hero-badge {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.4s forwards;
}

.about-hero-badge-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.about-hero-badge-name {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── RIGHT PANEL: TEXT ── */
.about-hero-text-panel {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  overflow: hidden;
}

.about-hero-text-panel::before {
  content: 'AB';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.about-hero-eyebrow-line {
  display: block;
  height: 1px;
  width: 48px;
  background: var(--color-gold);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  animation: goldLineGrow 0.8s var(--ease-luxury, cubic-bezier(0.25,0.46,0.45,0.94)) 1s forwards;
}

.about-hero-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  animation: heroFadeUp 0.7s ease 1.1s forwards;
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.5vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 36px;
  overflow: hidden;
}

.about-hero-headline-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.about-hero-headline-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}

.about-hero-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,0.9);
  text-stroke: 1px rgba(212,175,55,0.9);
}

.about-hero-rule {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 36px;
  transition: width 1s ease 1.6s;
}

.about-hero-subtitle {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 380px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.7s forwards;
  letter-spacing: 0.02em;
}

.about-hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 2.2s forwards;
}

.about-hero-scroll-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-scroll-dot-inner {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: scrollBobble 1.8s ease-in-out infinite;
}

.about-hero-scroll-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.about-stats {
  background: var(--color-black);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 48px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.about-stat {
  text-align: center;
  padding: 24px 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.about-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-stat + .about-stat {
  border-left: 1px solid rgba(212, 175, 55, 0.15);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
}

/* ══════════════════════════════════════════
   MAIN LAYOUT (Story & Craft)
══════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 120px 80px;
  align-items: start;
}

/* ── INFO COLUMN ── */
.about-info-col {
  padding-right: 80px;
  position: sticky;
  top: 120px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.about-info-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.about-section-tag::before,
.about-section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.about-section-tag span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 28px;
}

.about-title em {
  font-style: italic;
  color: var(--color-gold);
}

.about-desc {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 440px;
  font-weight: 300;
}

.about-desc p {
  margin-bottom: 1.5em;
}

.about-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 200px;
}

.about-signature-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
}

.about-signature-role {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── FEATURES COLUMN ── */
.about-features-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out) 0.15s, transform 0.9s var(--ease-out) 0.15s;
}

.about-features-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-features-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.about-features-wrapper::before,
.about-features-wrapper::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

.about-features-wrapper::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
}

.about-features-wrapper::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
}

.about-features-header {
  padding: 48px 56px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-features-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 10px;
}

.about-features-subtitle {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-features-list {
  padding: 0 56px 48px;
}

.about-feature {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.4s ease;
}

.about-feature:last-child {
  border-bottom: none;
}

.about-feature::before {
  content: '';
  position: absolute;
  left: -56px;
  right: -56px;
  top: 0;
  bottom: 0;
  background: rgba(212, 175, 55, 0.03);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.about-feature:hover::before {
  opacity: 1;
}

.about-feature > * {
  position: relative;
  z-index: 1;
}

.about-feature-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.about-feature:hover .about-feature-icon-wrap {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
}

.about-feature-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold);
}

.about-feature-text h3 {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.about-feature-text p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   TIMELINE (Dark Strip)
══════════════════════════════════════════ */
.about-timeline-strip {
  background: #0A0A0A;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.about-timeline-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-timeline-header span {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.about-timeline-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--color-white);
}

.about-timeline-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

/* Horizontal line connecting items */
.about-timeline-grid::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  z-index: 0;
}

.about-tl-item {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.about-tl-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-tl-item::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #0A0A0A;
}

.about-tl-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-gold);
  display: block;
  margin-bottom: 16px;
}

.about-tl-item h3 {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.about-tl-item p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   THE TEAM
══════════════════════════════════════════ */
.about-team-section {
  padding: 120px 80px;
  background: #000;
}

.about-team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-team-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-team-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.about-team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-team-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.about-team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.about-team-card:hover .about-team-img {
  transform: scale(1.05);
}

.about-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
  opacity: 0.6;
}

.about-team-info {
  padding: 32px;
  text-align: center;
}

.about-team-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.about-team-info .role {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.about-team-info .bio {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .about-layout {
    padding: 100px 60px;
    gap: 0;
  }
  .about-info-col {
    padding-right: 60px;
  }
  .about-team-section,
  .about-timeline-strip {
    padding: 100px 60px;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: auto;
  }
  .about-hero-image-panel {
    height: 55vh;
  }
  .about-hero-text-panel {
    padding: 56px 40px 48px;
    min-height: auto;
  }
  .about-hero-scroll {
    display: none;
  }
  .about-layout {
    grid-template-columns: 1fr;
    padding: 80px 40px;
    gap: 80px;
  }
  .about-info-col {
    padding-right: 0;
    position: static;
  }
  .about-stats {
    padding: 40px;
  }
  .about-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
  .about-timeline-grid::before {
    display: none;
  }
  .about-tl-item::before {
    display: none;
  }
  .about-tl-item {
    padding-top: 0;
  }
  .about-team-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    grid-template-rows: 50vh auto;
  }
  .about-hero-image-panel {
    height: 50vh;
  }
  .about-hero-text-panel {
    padding: 40px 24px;
  }
  .about-hero-headline {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }
  .about-stats {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .about-stat + .about-stat {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }
  .about-layout {
    padding: 60px 24px;
    gap: 64px;
  }
  .about-features-header {
    padding: 32px 28px 28px;
  }
  .about-features-list {
    padding: 0 28px 32px;
  }
  .about-feature::before {
    left: -28px;
    right: -28px;
  }
  .about-timeline-strip,
  .about-team-section {
    padding: 80px 24px;
  }
  .about-timeline-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-team-grid-layout {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   LIGHT MODE OVERRIDES (About Us)
======================================================= */
html.light-mode .about-hero {
  background: #FAFAFA;
}
html.light-mode .about-hero-image-panel {
  background: #FAFAFA;
}
html.light-mode .about-hero-text-panel {
  background: #FAFAFA;
}
html.light-mode .about-hero-text-panel::before {
  color: rgba(0,0,0,0.05);
}
html.light-mode .about-hero-headline {
  color: #000000;
  font-weight: 400;
}
html.light-mode .about-hero-subtitle {
  color: #000000;
  font-weight: 500;
}
html.light-mode .about-hero-rule {
  background: rgba(0,0,0,0.2);
}
html.light-mode .about-hero-scroll-label {
  color: #000000;
  font-weight: 600;
}
html.light-mode .about-hero-badge-year {
  color: #000000;
  font-weight: 600;
}

html.light-mode .about-stats {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.15);
}
html.light-mode .about-stat + .about-stat {
  border-left-color: rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  html.light-mode .about-stat + .about-stat {
    border-top-color: rgba(0,0,0,0.15);
  }
}
html.light-mode .about-stat-label {
  color: #000000;
  font-weight: 600;
}

html.light-mode .about-layout {
  background: #FAFAFA;
}
html.light-mode .about-title {
  color: #000000;
  font-weight: 400;
}
html.light-mode .about-desc {
  color: #000000;
  font-weight: 500;
}
html.light-mode .about-signature-role {
  color: #000000;
  font-weight: 600;
}

html.light-mode .about-features-wrapper {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.15);
}
html.light-mode .about-features-header {
  border-bottom-color: rgba(0,0,0,0.15);
}
html.light-mode .about-features-title {
  color: #000000;
  font-weight: 400;
}
html.light-mode .about-features-subtitle {
  color: #000000;
  font-weight: 600;
}
html.light-mode .about-feature {
  border-bottom-color: rgba(0,0,0,0.1);
}
html.light-mode .about-feature-text p {
  color: #000000;
  font-weight: 400;
}
html.light-mode .about-feature-icon-wrap {
  border-color: rgba(212, 175, 55, 0.6);
}

html.light-mode .about-timeline-strip {
  background: #FAFAFA;
  border-top-color: rgba(0,0,0,0.1);
  border-bottom-color: rgba(0,0,0,0.1);
}
html.light-mode .about-timeline-header h2 {
  color: #000000;
  font-weight: 400;
}
html.light-mode .about-tl-item h3 {
  color: #000000;
  font-weight: 600;
}
html.light-mode .about-tl-item p {
  color: #000000;
  font-weight: 500;
}
html.light-mode .about-timeline-grid::before {
  background: rgba(212, 175, 55, 0.4);
}

html.light-mode .about-team-section {
  background: #FFFFFF;
}
html.light-mode .about-team-card {
  background: #FAFAFA;
  border-color: rgba(0,0,0,0.15);
}
html.light-mode .about-team-info h3 {
  color: #000000;
  font-weight: 400;
}
html.light-mode .about-team-info .bio {
  color: #000000;
  font-weight: 500;
}
