/* ============================================
   BRAND WILD — About Page Styles
   ============================================ */

/* --- About Intro (replaces harsh split hero) --- */
.about-intro {
  margin-top: 70px;
  padding-top: var(--section-padding);
  text-align: center;
}

.about-intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.about-intro__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-intro__text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Story blocks (image + text, contained) --- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.story--reverse {
  direction: rtl;
}

.story--reverse > * {
  direction: ltr;
}

.story__image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.story__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.story__image-wrap:hover .story__image {
  transform: scale(1.03);
}

.story__content h3 {
  margin-bottom: 1rem;
}

/* --- Services Detail --- */
.services-detail__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.services-detail__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.services-detail__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.services-detail__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-top: 0.25rem;
}

.services-detail__label {
  font-family: var(--font-heading);
  color: var(--teal);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.services-detail__desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- What to Expect --- */
.expect__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.expect__step {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.expect__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.expect__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.expect__step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.expect__step p {
  font-size: 0.95rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story--reverse {
    direction: ltr;
  }

  .services-detail__list {
    grid-template-columns: 1fr;
  }

  .expect__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
