/* About us page */

.section--sand { background: var(--cream-2); }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split__media {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--plum-deep);
}
.feature-split__text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--plum);
  margin-top: 0.6rem;
}
.feature-split__text p {
  color: var(--ink-soft);
  margin-top: 1rem;
}

.section--plum {
  background: var(--plum-deep);
  color: var(--cream);
  position: relative;
}
.section--plum .eyebrow { color: var(--gold); }
.section--plum .sec-head h2 { color: var(--cream); }
.section--plum .sec-head p { color: rgba(251, 245, 238, 0.78); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  padding: 30px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.why-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(217, 154, 78, 0.2);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.22rem; color: #fff; }
.why-card p { margin-top: 0.5rem; font-size: 0.95rem; color: rgba(251, 245, 238, 0.74); }

.divider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.divider-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
  opacity: 0.5;
}
.divider-dots i:nth-child(2) { opacity: 0.85; transform: scale(1.3); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 20px;
  max-width: 1080px;
  margin-inline: auto;
}
.member {
  text-align: center;
  max-width: 200px;
  margin-inline: auto;
}
.member .photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 152px;
  margin-inline: auto;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--terra), var(--terra-deep));
  border: none;
  box-shadow: 0 10px 28px -16px rgba(176, 81, 47, 0.35);
}
.member .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.member h3 { font-size: 1.08rem; color: var(--plum); margin-top: 12px; }
.member .role {
  color: var(--terra-deep);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.member p {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 8px;
}

.about-cta {
  text-align: center;
  color: var(--cream);
  background: linear-gradient(160deg, var(--plum-deep), var(--plum));
  padding: 86px 24px;
}
.about-cta .wrap { max-width: 720px; }
.about-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
}
.about-cta h2 em { font-style: italic; color: var(--gold); }
.about-cta p {
  color: rgba(251, 245, 238, 0.78);
  margin-top: 1rem;
  font-size: 1.1rem;
}
.about-cta .hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.about-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--cream);
}
.about-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .feature-split { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .member .photo { max-width: 140px; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .member { max-width: none; }
  .member .photo { max-width: 128px; }
}
@media (max-width: 380px) {
  .team-grid { grid-template-columns: 1fr; }
  .member .photo { max-width: 160px; }
}
