/**
 * Leather 1X — About Widgets
 * Story, Timeline, Brand Values, Video CTA
 * Dark theme with glassmorphism, gold accents, scroll-reveal
 */

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL (shared)
   ══════════════════════════════════════════════════════════════ */

.l1x-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.l1x-reveal.l1x-revealed {
  opacity: 1;
  transform: translateY(0);
}

.l1x-reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.l1x-revealed .l1x-reveal-stagger > *,
.l1x-reveal-stagger.l1x-stagger-ready > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .l1x-reveal,
  .l1x-reveal.l1x-revealed,
  .l1x-reveal-stagger > *,
  .l1x-revealed .l1x-reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   1. ABOUT STORY
   ══════════════════════════════════════════════════════════════ */

.l1x-about {
  padding: 80px 0;
}

.l1x-about__container {
  width: min(100% - 32px, var(--container, 1360px));
  margin: 0 auto;
}

.l1x-about__card {
  border: 1px solid rgba(201, 169, 106, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 48px;
  transition: box-shadow 0.35s ease;
}

.l1x-about__card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.l1x-about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

/* Kicker pill */
.l1x-about__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 106, 0.16);
  background: rgba(201, 169, 106, 0.04);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
  width: fit-content;
}

.l1x-about__kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Title */
.l1x-about__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 24px;
}

/* Paragraphs */
.l1x-about__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 0 16px;
}

.l1x-about__text:last-of-type {
  margin-bottom: 28px;
}

/* CTA */
.l1x-about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 106, 0.30);
  background: linear-gradient(180deg, rgba(138, 63, 24, 0.96), rgba(90, 38, 12, 0.96));
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}

.l1x-about__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 106, 0.50);
  box-shadow: 0 8px 24px rgba(138, 63, 24, 0.3);
  color: rgba(255, 255, 255, 0.94);
}

/* Stats */
.l1x-about__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.l1x-about__stat {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 106, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.l1x-about__stat:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 106, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.l1x-about__stat-value {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.l1x-about__stat-label {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 4px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 920px) {
  .l1x-about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .l1x-about__stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .l1x-about__card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .l1x-about {
    padding: 48px 0;
  }

  .l1x-about__title {
    font-size: 1.6rem;
  }

  .l1x-about__card {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

/* ══════════════════════════════════════════════════════════════
   2. TIMELINE
   ══════════════════════════════════════════════════════════════ */

.l1x-timeline {
  padding: 80px 0;
}

.l1x-timeline__container {
  width: min(100% - 32px, var(--container, 1360px));
  margin: 0 auto;
  max-width: 720px;
}

.l1x-timeline__heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 48px;
  text-align: center;
}

.l1x-timeline__track {
  position: relative;
  padding-left: 40px;
}

.l1x-timeline__line {
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 169, 106, 0.15));
  border-radius: 2px;
}

.l1x-timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.l1x-timeline__item:last-child {
  padding-bottom: 0;
}

.l1x-timeline__dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg, #000);
  box-shadow: 0 0 0 4px rgba(201, 169, 106, 0.10);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.l1x-timeline__item:hover .l1x-timeline__dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 169, 106, 0.18);
}

.l1x-timeline__year {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 6px;
}

.l1x-timeline__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 480px) {
  .l1x-timeline {
    padding: 48px 0;
  }

  .l1x-timeline__track {
    padding-left: 32px;
  }

  .l1x-timeline__dot {
    left: -32px;
    width: 12px;
    height: 12px;
  }

  .l1x-timeline__line {
    left: 5px;
  }

  .l1x-timeline__heading {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
}

/* ══════════════════════════════════════════════════════════════
   3. BRAND VALUES
   ══════════════════════════════════════════════════════════════ */

.l1x-values {
  padding: 80px 0;
}

.l1x-values__container {
  width: min(100% - 32px, var(--container, 1360px));
  margin: 0 auto;
  max-width: 960px;
}

.l1x-values__heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 48px;
  text-align: center;
}

.l1x-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.l1x-values__card {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 106, 0.12);
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.l1x-values__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 106, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.l1x-values__icon {
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 0;
}

.l1x-values__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.l1x-values__desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .l1x-values__grid {
    grid-template-columns: 1fr;
  }

  .l1x-values {
    padding: 48px 0;
  }

  .l1x-values__heading {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .l1x-values__card {
    padding: 24px 22px;
  }
}

/* ══════════════════════════════════════════════════════════════
   4. VIDEO CTA
   ══════════════════════════════════════════════════════════════ */

.l1x-video {
  padding: 80px 0;
}

.l1x-video__container {
  width: min(100% - 32px, var(--container, 1360px));
  margin: 0 auto;
  max-width: 900px;
}

.l1x-video__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 106, 0.12);
  margin-bottom: 40px;
}

.l1x-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}

.l1x-video__embed:hover iframe {
  filter: brightness(1) contrast(1);
}

.l1x-video__content {
  text-align: center;
}

.l1x-video__heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 14px;
}

.l1x-video__subtext {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 28px;
}

.l1x-video__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 106, 0.30);
  background: linear-gradient(180deg, rgba(138, 63, 24, 0.96), rgba(90, 38, 12, 0.96));
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.l1x-video__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 106, 0.50);
  box-shadow: 0 8px 24px rgba(138, 63, 24, 0.3);
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 480px) {
  .l1x-video {
    padding: 48px 0;
  }

  .l1x-video__embed {
    border-radius: 14px;
    margin-bottom: 28px;
  }

  .l1x-video__heading {
    font-size: 1.5rem;
  }
}
