/* ========================================
   LASH AND BEAUTY — About Page Styles
   ======================================== */

/* ---- Hero ---- */
.about-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #16213e 40%, #0f3443 100%);
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.2);
}
.about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0 4rem;
}
.about-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.about-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.about-hero__title em { color: #FFD700; font-style: italic; }
.about-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Story Section ---- */
.about-story {
  padding: 5rem 0;
  background: #fff;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-image__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #000000, #16213e);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.story-image__number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
}
.story-image__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.story-content__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.story-content__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.story-content__title em { color: #D4AF37; font-style: italic; }
.story-content p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid #eee;
}
.story-stat { text-align: center; }
.story-stat__number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.story-stat__label {
  font-size: 0.72rem;
  color: #999;
  font-weight: 500;
}

/* ---- Mission / Vision / Values ---- */
.about-mvv {
  padding: 4.5rem 0;
  background: #f8f7f5;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mvv-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem 2rem;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.mvv-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.mvv-card__icon--mission { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #2e7d32; }
.mvv-card__icon--vision { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1565c0; }
.mvv-card__icon--values { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #e65100; }
.mvv-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.mvv-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}

/* ---- Differentials ---- */
.about-diff {
  padding: 4.5rem 0;
  background: #fff;
}
.diff-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.diff-header__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.diff-header__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
}
.diff-header__title em { color: #D4AF37; font-style: italic; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diff-card {
  background: #f8f7f5;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #eee;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: transparent;
  background: #fff;
}
.diff-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #000000, #16213e);
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.diff-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.diff-card p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
}

/* ---- Timeline ---- */
.about-timeline {
  padding: 4.5rem 0;
  background: #f8f7f5;
}
.timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}
.timeline-header__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-header__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
}
.timeline-header__title em { color: #D4AF37; font-style: italic; }
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #D4AF37, #000000);
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.95rem;
  top: 0.2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D4AF37;
  border: 3px solid #f8f7f5;
  box-shadow: 0 0 0 3px #D4AF37;
}
.timeline-item__year {
  font-size: 0.75rem;
  font-weight: 800;
  color: #D4AF37;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.timeline-item__content {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #eee;
  transition: all 0.3s;
}
.timeline-item:hover .timeline-item__content {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.timeline-item__content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}
.timeline-item__content p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.55;
}

/* ---- CTA ---- */
.about-cta {
  padding: 4rem 0;
  background: #fff;
}
.cta-card {
  background: linear-gradient(135deg, #000000 0%, #16213e 50%, #0f3443 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFD700;
  margin: 0 auto 1.25rem;
  backdrop-filter: blur(8px);
}
.cta-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.cta-card__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mvv-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-hero__content { padding: 3.5rem 0 3rem; }
  .about-hero__title { font-size: 1.8rem; }
  .diff-grid { grid-template-columns: 1fr; }
  .story-stats { flex-direction: column; gap: 1rem; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .cta-card h2 { font-size: 1.4rem; }
  .timeline { padding-left: 2.5rem; }
  .timeline-item { padding-left: 1.5rem; }
  .timeline-item::before { left: -2.45rem; }
}
