/* ==========================================================================
   ABOUT PAGE 
   ========================================================================== */

.about-page {
  background: #fff;
}

/* ==========================================================================
   ELEGANT HERO
   ========================================================================== */

.about-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.about-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 24px;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 32px;
  color: #000;
  letter-spacing: -0.02em;
}

.about-hero__text {
  font-size: 19px;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}

/* ==========================================================================
   VIDEO SECTIONS
   ========================================================================== */

.about-video {
  margin: 0;
  background: #000;
}

.about-video__container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.about-video__player {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

.about-video--small .about-video__container {
  max-width: 1200px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
}

.about-video--small .about-video__player {
  height: 60vh;
}

.about-video--small {
  padding: 80px 0;
  background: #f8f8f8;
}

/* ==========================================================================
   STORY SPLIT
   ========================================================================== */

.about-split {
  padding: 100px 0;
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #000;
  letter-spacing: -0.01em;
}

.about-split__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-split__text strong {
  font-weight: 600;
  color: #000;
}

/* ==========================================================================
   IMAGE GALLERY 4-GRID
   ========================================================================== */

.about-gallery {
  margin: 0;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.about-gallery__item {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */

.about-philosophy {
  padding: 120px 0;
  background: #f8f8f8;
}

.about-philosophy__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-title-center {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 40px;
  color: #000;
  letter-spacing: -0.01em;
}

.about-lead {
  font-size: 20px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 48px;
}

.about-quote {
  padding: 48px 60px;
  background: #fff;
  border-left: 4px solid var(--c-red);
  margin: 48px 0;
}

.about-quote p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: #000;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   FEATURE SECTIONS
   ========================================================================== */

.about-feature {
  padding: 100px 0;
}

.about-feature--reverse {
  background: #fafafa;
}

.about-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-feature--reverse .about-feature__text {
  order: 2;
}

.about-feature--reverse .about-feature__media {
  order: 1;
}

/* Mobile: Always image first, text second */
@media (max-width: 768px) {
  .about-feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-feature__media {
    order: 2 !important;
  }
  
  .about-feature__text {
    order: 1 !important;
  }
}

.about-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 16px;
}

.about-feature__text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.about-feature__text strong {
  font-weight: 600;
  color: #000;
}

.about-feature__media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-feature__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand List */
.about-brands {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.about-brands li {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

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

.about-brands strong {
  font-weight: 700;
  color: #000;
  font-size: 17px;
}

.about-emphasis {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #e5e5e5;
  font-weight: 500;
  color: #000;
}

/* ==========================================================================
   CLOSING STATEMENT
   ========================================================================== */

.about-closing {
  padding: 120px 0;
  background: #000;
  color: #fff;
}

.about-closing__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-closing .about-title-center {
  color: #fff;
  margin-bottom: 32px;
}

.about-closing .about-lead {
  color: #ccc;
  margin-bottom: 40px;
}

.about-signature {
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--c-red);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .about-hero {
    padding: 100px 0 80px;
  }

  .about-hero__title {
    font-size: 44px;
  }

  .about-split__grid {
    gap: 60px;
  }

  .about-feature__grid {
    gap: 60px;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero__title {
    font-size: 36px;
  }

  .about-hero__text {
    font-size: 17px;
  }

  .about-split {
    padding: 60px 0;
  }

  .about-split__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-subtitle {
    font-size: 22px;
  }

  .about-split__text p {
    font-size: 15px;
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
  }

  .about-philosophy {
    padding: 80px 0;
  }

  .about-title-center {
    font-size: 32px;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-quote {
    padding: 32px 24px;
  }

  .about-quote p {
    font-size: 20px;
  }

  .about-feature {
    padding: 60px 0;
  }

  .about-feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-feature--reverse .about-feature__text {
    order: 1;
  }

  .about-feature--reverse .about-feature__media {
    order: 2;
  }

  .about-feature__text p {
    font-size: 15px;
  }

  .about-brands li {
    font-size: 15px;
  }

  .about-video__player {
    height: 50vh;
  }

  .about-video--small .about-video__player {
    height: 40vh;
  }

  .about-closing {
    padding: 80px 0;
  }

  .about-signature {
    font-size: 24px;
  }
}




