/* ==========================================================================
   ABOUT PAGE STYLES — MELLOW DESIGN SYSTEM
   ========================================================================== */


/* ==========================================================================
   STORY TIMELINE SECTION (01 - 03 Inspired by Reference 1.png)
   ========================================================================== */
.story-section {
  position: relative;
  z-index: 10;
  margin-top: -120px !important;
  margin-bottom: 0;
  width: 100% !important;
}
.story-card {
  background: var(--dark) !important;
  color: var(--white);
  border: none !important;
  border-radius: 0 0 var(--r-card) var(--r-card) !important;
  position: relative;
  z-index: 10;
  padding: 240px 50px 120px !important;
  width: 100%;
}
@media (max-width: 900px) {
  .story-section {
    margin-top: -80px !important;
  }
  .story-card {
    padding: 160px 30px 80px !important;
  }
}
@media (max-width: 600px) {
  .story-section {
    margin-top: -50px !important;
  }
  .story-card {
    padding: 100px 10px 50px !important;
  }
}

.story-timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.timeline-item {
  display: flex;
  position: relative;
  min-height: 220px;
}

.timeline-track {
  width: 48px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 14px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(242, 27, 35, 0.6);
  animation: dotGlow 2.4s infinite ease-in-out;
}

/* Concentric Pulse Ring Growing Outwards & Fading */
.timeline-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  background: rgba(242, 27, 35, 0.2);
  opacity: 0;
  transform: scale(0.5);
  animation: concentricPulse 2.4s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
  pointer-events: none;
}

@keyframes concentricPulse {
  0% {
    transform: scale(0.5);
    opacity: 0.95;
  }
  65% {
    transform: scale(3.4);
    opacity: 0;
  }
  100% {
    transform: scale(3.8);
    opacity: 0;
  }
}

@keyframes dotGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(242, 27, 35, 0.5);
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 18px rgba(242, 27, 35, 0.95), 0 0 28px rgba(242, 27, 35, 0.6);
    transform: scale(1.15);
  }
  45% {
    box-shadow: 0 0 8px rgba(242, 27, 35, 0.5);
    transform: scale(1);
  }
}

/* Cascading Stagger across steps */
.timeline-item:nth-child(1) .timeline-dot,
.timeline-item:nth-child(1) .timeline-dot::before {
  animation-delay: 0s;
}
.timeline-item:nth-child(2) .timeline-dot,
.timeline-item:nth-child(2) .timeline-dot::before {
  animation-delay: 0.45s;
}
.timeline-item:nth-child(3) .timeline-dot,
.timeline-item:nth-child(3) .timeline-dot::before {
  animation-delay: 0.9s;
}
.timeline-item:nth-child(4) .timeline-dot,
.timeline-item:nth-child(4) .timeline-dot::before {
  animation-delay: 1.35s;
}
.timeline-item:nth-child(5) .timeline-dot,
.timeline-item:nth-child(5) .timeline-dot::before {
  animation-delay: 1.8s;
}

.timeline-line {
  position: absolute;
  top: 20px;
  bottom: -20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(30px, 6vw, 80px);
  padding-left: clamp(16px, 3vw, 36px);
  padding-bottom: clamp(60px, 8vw, 100px);
  align-items: start;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-num {
  font-family: var(--font-sans);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  margin-top: 0;
}

.timeline-title {
  font-family: var(--font-sans);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 480px;
  margin: 0;
}

.timeline-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding-top: 6px;
}

.timeline-right p {
  font-family: var(--font-sans);
  font-size: var(--text-lead);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 900px) {
  .timeline-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 50px;
  }
  .timeline-right {
    padding-top: 0;
  }
  .timeline-title {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .timeline-track {
    width: 28px;
  }
  .timeline-dot {
    width: 10px;
    height: 10px;
    margin-top: 12px;
  }
  .timeline-line {
    top: 18px;
    bottom: -18px;
  }
  .timeline-content {
    padding-left: 14px;
    padding-bottom: 40px;
  }
  .timeline-num {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  .timeline-title {
    font-size: 1.4rem;
  }
}

.values-wrap {
  margin-bottom: 0;
}
.values-card {
  background: var(--white) !important;
  border: none !important;
}
.values-inner {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.values__head {
  text-align: left;
  max-width: 100%;
  width: 100%;
  margin: 0 0 48px 0;
}
.values__head h1,
.values__title {
  font-size: var(--text-h1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
}
.values__head h1 .muted,
.values__title .muted {
  font-family: inherit;
  font-weight: 700 !important;
  color: var(--grey) !important;
}
@media (max-width: 900px) {
  .values__head {
    margin-bottom: 32px;
  }
}
@media (max-width: 900px) {
  }
@media (max-width: 600px) {
  }

/* ==========================================================================
   BRAND FILM / CINEMATIC VIDEO SECTION
   ========================================================================== */
.video-section {
  margin-bottom: 0;
}
.video-card {
  background: var(--off-white) !important;
  border: none !important;
}
.video-inner {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.video__head {
  text-align: left;
  max-width: 100%;
  width: 100%;
  margin: 0 0 48px 0;
}
.video__head h1,
.video__title {
  font-size: var(--text-h1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
}
.video__head h1 .muted,
.video__title .muted {
  font-family: inherit;
  font-weight: 700 !important;
  color: var(--grey) !important;
}
@media (max-width: 900px) {
  .video__head {
    margin-bottom: 32px;
  }
}

.video-player-wrap {
  width: 100%;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--grey-lt);
  position: relative;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 36px);
  pointer-events: none;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  align-self: center;
  margin: auto;
  pointer-events: auto;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  box-shadow: 0 0 24px rgba(242, 27, 35, 0.6);
}
.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 36px rgba(242, 27, 35, 0.85);
  background: var(--red-dark);
}
.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 2px;
}
.video-play-btn svg.pause-icon {
  margin-left: 0;
}
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  align-self: flex-start;
  pointer-events: auto;
}
.video-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: dotGlow 2s infinite ease-in-out;
}
@media (max-width: 600px) {
  .video-play-btn {
    width: 56px;
    height: 56px;
  }
  .video-play-btn svg {
    width: 22px;
    height: 22px;
  }
  .video-badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
}

/* ==========================================================================
   CRAFTSMANSHIP & TEXTILE SPECS
   ========================================================================== */
.craft-section {
  margin-bottom: 0;
}
.craft-card {
  background: var(--white) !important;
  border: none !important;
}
.craft-inner {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.craft__head {
  text-align: left;
  max-width: 100%;
  width: 100%;
  margin: 0 0 48px 0;
}
.craft__head h1,
.craft__title {
  font-size: var(--text-h1);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  margin-top: 8px;
}
.craft__head h1 .muted,
.craft__title .muted {
  font-family: inherit;
  font-weight: 700 !important;
  color: var(--grey) !important;
}
@media (max-width: 900px) {
  .craft__head {
    margin-bottom: 32px;
  }
}
.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 100%;
}
.craft-item {
  background: var(--off-white);
  border: 1px solid var(--grey-lt);
  border-radius: var(--r-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.craft-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  background: var(--red);
  border-color: var(--red);
}
.craft-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242, 27, 35, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.craft-item__icon svg {
  width: 24px;
  height: 24px;
}
.craft-item h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--black);
  transition: color var(--dur) var(--ease);
}
.craft-item p {
  font-size: var(--text-sm);
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 0;
  transition: color var(--dur) var(--ease);
}
.craft-item:hover .craft-item__icon {
  background: var(--white);
  color: var(--red);
}
.craft-item:hover h3 {
  color: var(--white);
}
.craft-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 900px) {
  .craft__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
  }
  .craft-item {
    padding: 28px 18px;
  }
}
@media (max-width: 600px) {
  .craft__grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .craft-item {
    padding: 24px 20px;
  }
  .craft-item:nth-child(1),
  .craft-item:nth-child(3) {
    width: calc(100% - 40px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }
  .craft-item:nth-child(2) {
    width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}








