/**
 * ÉTHÉRÉ — About Us page brand styling.
 * Uses :root variables from ethere-shop-brand.css
 */

/* ==========================================================================
   Page wrapper
   ========================================================================== */

.ethere-about-page {
  font-family: var(--ethere-font-body);
  color: var(--ethere-text);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* ==========================================================================
   1. Hero
   ========================================================================== */

.ethere-about-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.ethere-about-hero__title {
  font-family: var(--ethere-font-heading);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ethere-text);
  margin: 0 0 0.75rem;
}

.ethere-about-hero__subtitle {
  font-family: var(--ethere-font-body);
  font-size: 1rem;
  color: var(--ethere-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.ethere-about-hero__divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--ethere-green, #94c573);
  margin: 1.5rem auto 0;
  border-radius: 1px;
}

/* ==========================================================================
   Shared section title
   ========================================================================== */

.ethere-about-section-title {
  font-family: var(--ethere-font-heading);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ethere-text);
  border-bottom: 2px solid var(--ethere-green);
  padding-bottom: 0.5rem;
  margin: 0 0 1.5rem;
  display: inline-block;
}

.ethere-about-section-title--center {
  display: block;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   2. Brand Story — two-column
   ========================================================================== */

.ethere-about-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0 3rem;
}

.ethere-about-story__text p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--ethere-text-muted);
  margin: 0 0 1rem;
}

.ethere-about-story__text p:last-child {
  margin-bottom: 0;
}

.ethere-about-story__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--ethere-border, #e8e8e8);
  display: block;
}

.ethere-about-why__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--ethere-border, #e8e8e8);
  display: block;
}

/* ==========================================================================
   3. Mission & Values
   ========================================================================== */

.ethere-about-values {
  text-align: center;
  padding: 2rem 0 3rem;
}

.ethere-about-values__intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ethere-text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.ethere-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ethere-about-vcard {
  background: var(--ethere-white, #fff);
  border: 1px solid var(--ethere-border, #e8e8e8);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ethere-about-vcard:hover {
  border-color: rgba(148, 197, 115, 0.4);
  box-shadow: 0 6px 24px rgba(148, 197, 115, 0.1);
  transform: translateY(-3px);
}

.ethere-about-vcard__icon {
  width: 36px;
  height: 36px;
  stroke: var(--ethere-green, #94c573);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1rem;
}

.ethere-about-vcard__title {
  font-family: var(--ethere-font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ethere-text);
  margin: 0 0 0.6rem;
}

.ethere-about-vcard__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ethere-text-muted);
  margin: 0;
}

/* ==========================================================================
   4. Why Choose Us — image + list
   ========================================================================== */

.ethere-about-why {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0 3rem;
}

.ethere-about-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ethere-about-why__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.ethere-about-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--ethere-green, #94c573);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ethere-about-why__item strong {
  display: block;
  font-family: var(--ethere-font-heading);
  font-weight: 400;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  color: var(--ethere-text);
  margin-bottom: 0.2rem;
}

.ethere-about-why__item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ethere-text-muted);
  margin: 0;
}

/* ==========================================================================
   5. Call to Action banner
   ========================================================================== */

.ethere-about-cta {
  text-align: center;
  background: var(--ethere-text, #1a1a1a);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  margin: 1rem 0 0;
}

.ethere-about-cta__title {
  font-family: var(--ethere-font-heading);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ethere-white, #fff);
  margin: 0 0 0.75rem;
}

.ethere-about-cta__subtitle {
  font-family: var(--ethere-font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.ethere-about-cta__btn {
  display: inline-block;
  background: var(--ethere-green, #94c573);
  color: var(--ethere-white, #fff) !important;
  font-family: var(--ethere-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--ethere-green, #94c573);
  transition: background 0.2s, border-color 0.2s;
}

.ethere-about-cta__btn:hover {
  background: var(--ethere-green-dark, #7aad5a);
  border-color: var(--ethere-green-dark, #7aad5a);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .ethere-about-page {
    padding: 0 1rem 2rem;
  }

  .ethere-about-hero {
    padding: 2rem 0 1.5rem;
  }

  .ethere-about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ethere-about-story__image {
    order: -1;
  }

  .ethere-about-story__img {
    aspect-ratio: 16 / 9;
  }

  .ethere-about-values__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ethere-about-why {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ethere-about-why__image {
    order: -1;
  }

  .ethere-about-why__img {
    aspect-ratio: 16 / 9;
  }

  .ethere-about-cta {
    padding: 2.5rem 1.25rem;
    border-radius: 8px;
  }
}
