/* KZE Organic Beauty — About Page v1
   Shared tokens, reset, header, footer, announce bar, breadcrumb,
   page-intro, section-header and responsive shell rules are now in:
   ../shared/shell.css

   Only about-specific extensions remain below. */

/* About page extensions */

.about-intro .page-intro__h1 em {
  color: var(--gold-deep);
  font-style: normal;
}

.about-story,
.about-store {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-story__copy,
.about-store__copy {
  display: grid;
  gap: 1.2rem;
}

.about-story__copy h2,
.about-store__copy h2,
.about-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.about-story__copy p,
.about-store__copy p,
.about-cta p {
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.8;
}

.about-media-card {
  overflow: hidden;
  border-radius: 28px;
  background: #eee5da;
  box-shadow: var(--shadow);
}

.about-media-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-media-card--soft img {
  aspect-ratio: 1 / 1;
}

.about-values-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(17, 27, 17, 0.06);
}

.about-value-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
}

.about-value-card p {
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-feature-list {
  display: grid;
  gap: 1rem;
}

.about-feature-list li {
  padding: 1rem 0 1rem 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  position: relative;
}

.about-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.48rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-deep);
}

.about-feature-list strong {
  color: var(--text);
}

.about-cta {
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19, 33, 19, 0.95), rgba(45, 74, 45, 0.92)),
    #132113;
  box-shadow: var(--shadow);
}

.about-cta .label,
.about-cta h2,
.about-cta p {
  color: #f6efe5;
}

.about-cta .label {
  color: #d8bf78;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.about-cta .btn--ghost {
  background: #ffffff;
  color: var(--text);
  border-color: #ffffff;
}

.about-cta .btn--ghost:hover {
  background: #ffffff;
  color: var(--text);
  border-color: #ffffff;
}

@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-story,
  .about-store {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }

  .about-store__media {
    order: 2;
  }

  .about-store__copy {
    order: 1;
  }
}
