/* =====================================================================
   about.css — White Boutique UAE
   About Us page styles. Black & white design — no gold.
   ===================================================================== */


/* ----- 1. Hero Banner ----------------------------------------------- */
.about-hero {
  text-align: center;
  color: var(--wb-white);
  background: var(--wb-black);
  padding: clamp(72px, 10vw, 140px) 20px;
}

.about-hero__eyebrow {
  display: inline-block;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}

.about-hero__title {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--wb-white);
}

.about-hero__subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255, 255, 255, .7);
}


/* ----- 2. Section Scaffolding --------------------------------------- */
.about-section {
  padding: clamp(56px, 8vw, 100px) 20px;
}

.about-section--alt {
  background: var(--wb-grey);
}

.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.about-eyebrow {
  display: inline-block;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--wb-muted);
  margin-bottom: 14px;
}

.about-section__header h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
}

/* Black underline after section titles */
.about-section__header h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--wb-black);
  margin: 16px auto 0;
}


/* ----- 3. Our Story ------------------------------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.about-story__text p {
  font-size: 16px;
  color: var(--wb-text);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--wb-grey);
}

.about-stat__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--wb-black);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--wb-muted);
}


/* ----- 4. Values Grid ----------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--wb-white);
  border: 1px solid var(--wb-line);
  transition: transform .3s var(--wb-ease), box-shadow .3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
}

.value-card__icon {
  font-size: 34px;
  color: var(--wb-black);
  margin-bottom: 16px;
}

.value-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 14px;
  color: var(--wb-muted);
  line-height: 1.5;
}


/* ----- 5. Process Steps --------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 28px 16px;
}

.process-step__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--wb-black);
  line-height: 1;
  margin-bottom: 14px;
}

.process-step__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--wb-muted);
  line-height: 1.5;
  max-width: 26ch;
  margin: 0 auto;
}

.process-step + .process-step {
  border-left: 1px solid var(--wb-line);
}


/* ----- 6. Partner CTA ----------------------------------------------- */
.about-cta {
  text-align: center;
  color: var(--wb-white);
  background: var(--wb-black);
  padding: clamp(56px, 9vw, 110px) 20px;
}

.about-cta h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--wb-white);
  margin-bottom: 16px;
}

.about-cta p {
  max-width: 540px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
}

.about-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ----- 7. Responsive ------------------------------------------------ */
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step + .process-step { border-left: none; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }
}
