.about-page {
  background: radial-gradient(1200px 640px at -8% -8%, #f5f8ff 0%, rgba(245, 248, 255, 0) 50%),
    radial-gradient(1000px 500px at 105% 18%, #f9f3e8 0%, rgba(249, 243, 232, 0) 50%),
    #fff;
}

.about-hero {
  padding-top: 22px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.about-copy {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 22px;
  padding: 34px 34px 28px;
  box-shadow: 0 14px 32px rgba(14, 39, 84, 0.08);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-copy h1 {
  margin: 7px 0 6px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.about-subtitle {
  margin: 0;
  color: #c28f2c;
  font-size: clamp(1.08rem, 1.7vw, 2rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.about-copy .title-line {
  margin: 13px 0 14px;
}

.about-copy p {
  margin: 0 0 14px;
  color: #26354e;
  line-height: 1.52;
  font-size: 1.05rem;
  max-width: 52ch;
}

.about-feature-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 10px 10px 0;
}

.mini-feature + .mini-feature {
  border-left: 1px solid #dfd7ca;
  padding-left: 12px;
}

.mini-feature img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.mini-feature h2 {
  margin: 0;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.06;
}

.mini-feature p {
  margin: 6px 0 0;
  font-size: 0.93rem;
  color: #35465f;
  line-height: 1.45;
}

.about-hero-media {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid #ead9ba;
  min-height: 620px;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team {
  padding-top: 22px;
}

.team h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
}

.team .title-line {
  margin: 12px auto 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 320px));
  justify-content: center;
  gap: 16px;
}

.team-card {
  border: 1px solid #e7dac8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.team-card-body {
  padding: 12px 14px 14px;
  text-align: center;
}

.team-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.96;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.team-card .role {
  margin: 4px 0 10px;
  color: #c28f2c;
  font-weight: 600;
  font-size: 1rem;
}

.team-card p {
  margin: 0;
  color: #2d3b52;
  font-size: 0.95rem;
  line-height: 1.45;
}

.commitment {
  margin-top: 26px;
  background: linear-gradient(95deg, #082350 0%, #0f2f69 45%, #113777 100%);
  color: #f1f5ff;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
}

.commitment-intro .footer-lockup {
  gap: 10px;
}

.commitment-intro .footer-lockup img {
  width: 56px;
  height: 56px;
}

.commitment-intro .footer-lockup h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.9rem);
  line-height: 0.96;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.commitment-intro p {
  margin: 12px 0 0;
  color: #dce8ff;
  line-height: 1.56;
  max-width: 44ch;
}

.commitment-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.commitment-items article {
  border-left: 1px solid rgba(239, 245, 255, 0.38);
  padding-left: 14px;
}

.commitment-items img {
  width: 44px;
  height: 44px;
}

.commitment-items h4 {
  margin: 8px 0 5px;
  font-size: 1.45rem;
  color: #ffd58c;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.commitment-items p {
  margin: 0;
  color: #e6efff;
  line-height: 1.5;
  font-size: 0.93rem;
}

@media (max-width: 1180px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    min-height: 410px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .commitment-items article {
    border-left: 0;
    border-top: 1px solid rgba(239, 245, 255, 0.38);
    padding-left: 0;
    padding-top: 12px;
  }
}

@media (max-width: 760px) {
  .about-copy {
    padding: 24px 20px;
  }

  .about-feature-strip {
    grid-template-columns: 1fr;
  }

  .mini-feature + .mini-feature {
    border-left: 0;
    border-top: 1px solid #dfd7ca;
    padding-left: 0;
    padding-top: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 260px;
  }

  .commitment-items {
    grid-template-columns: 1fr;
  }
}
