/* About Us page template */

.wk-about-main {
  background: var(--color-surface-pure);
}

/* ─── Hero ─── */
.wk-about-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.wk-about-hero__media {
  position: absolute;
  inset: 0;
  background-color: #1a1c1d;
  background-size: cover;
  background-position: center;
}

.wk-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(26, 28, 29, 0.6), transparent);
  z-index: 1;
}

.wk-about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.wk-about-hero__copy {
  max-width: 640px;
}

.wk-about-hero__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 33px);
  font-weight: 800;
  line-height: 1.3;
}

.wk-about-hero__text {
  margin: 0 0 44px;
  max-width: 32rem;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.9;
}

.wk-about-hero__btn {
  box-shadow: 0 6px 16px -6px rgba(111, 171, 80, 0.4);
}

.wk-about-hero__btn i {
  font-size: 18px;
}

/* ─── Story ─── */
.wk-about-story {
  background: var(--color-surface-pure);
}

.wk-about-story.section,
.wk-about-values.section,
.wk-about-team.section,
.wk-about-cta.section {
  padding: 56px 0;
}

.wk-about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.wk-about-story__media {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-surface-sunken) center/cover no-repeat;
  box-shadow: var(--shadow-float);
}

.wk-about-story__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wk-about-story__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.4;
}

.wk-about-story__text {
  margin: 0 0 16px;
  color: var(--color-slate);
  font-size: 16px;
  line-height: 1.85;
}

.wk-about-story__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.wk-about-story__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: var(--color-brand-soft);
}

.wk-about-story__badge i {
  font-size: 28px;
  color: var(--color-primary);
}

.wk-about-story__badge span {
  font-size: 14.5px;
  font-weight: 700;
}

/* ─── Stats ─── */
.wk-about-stats {
  padding: 64px 0;
  background: var(--color-ink);
  color: #fff;
}

.wk-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  text-align: center;
}

.wk-about-stats__value {
  margin-bottom: 4px;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
  color: var(--color-brand);
}

.wk-about-stats__label {
  font-size: 13px;
  opacity: 0.7;
}

/* ─── Values ─── */
.wk-about-values {
  background: #f3f3f5;
}

.wk-about-values__head {
  text-align: center;
  justify-content: center;
}

.wk-about-values__head .section-head__copy {
  max-width: 720px;
  margin: 0 auto;
}

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

.wk-about-values__card {
  background: var(--color-surface-pure);
  border: 1px solid rgba(226, 226, 228, 0.5);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.wk-about-values__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px -28px rgba(0, 0, 0, 0.24);
}

.wk-about-values__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wk-about-values__icon i {
  font-size: 28px;
  color: var(--color-primary);
}

.wk-about-values__card h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.4;
}

.wk-about-values__card p {
  margin: 0;
  color: var(--color-slate);
  font-size: 15px;
  line-height: 1.85;
}

/* ─── Team ─── */
.wk-about-team {
  background: var(--color-surface-pure);
}

.wk-about-team__head {
  text-align: center;
  justify-content: center;
}

.wk-about-team__head .section-head__copy {
  max-width: 720px;
  margin: 0 auto;
}

.wk-about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.wk-about-team__photo {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--color-surface-sunken) center/cover no-repeat;
  filter: grayscale(1);
  box-shadow: var(--shadow-card);
  transition: filter 0.5s ease, box-shadow 0.5s ease;
}

.wk-about-team__member:hover .wk-about-team__photo {
  filter: grayscale(0);
  box-shadow: var(--shadow-float);
}

.wk-about-team__member h3 {
  margin: 0 0 4px;
  font-size: 23px;
  font-weight: 800;
}

.wk-about-team__member p {
  margin: 0;
  color: var(--color-primary);
  font-size: 13px;
}

/* ─── CTA ─── */
.wk-about-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: var(--color-ink);
  color: #fff;
  padding: 44px;
}

.wk-about-cta__glow {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 256px;
  height: 256px;
  margin-top: -128px;
  margin-inline-end: -128px;
  border-radius: 50%;
  background: var(--color-brand);
  filter: blur(100px);
  opacity: 0.2;
}

.wk-about-cta__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.wk-about-cta__copy {
  max-width: 36rem;
  text-align: center;
}

.wk-about-cta__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
}

.wk-about-cta__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.8;
}

.wk-about-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.wk-about-cta__btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.wk-about-cta__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ─── Responsive ─── */
@media (min-width: 640px) {
  .wk-about-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}

@media (min-width: 768px) {
  .wk-about-story__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wk-about-stats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wk-about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wk-about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wk-about-cta__layout {
    flex-direction: row;
  }

  .wk-about-cta__copy {
    text-align: start;
  }
}

@media (min-width: 1024px) {
  .wk-about-values__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wk-about-team__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
