/* ── ABOUT PAGE ── */

/* Hero */
.about-hero {
  margin-top: 68px;
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.about-hero-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  flex-shrink: 0;
}
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.35) translateY(-8%);
  transform-origin: top center;
  display: block;
}
.about-hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.about-hero-text h1 span { color: var(--gold); }
.about-lead {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 600;
}
.about-hero-text p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* PG section */
.pg-section {
  padding: 80px 0;
  background: var(--white);
}
.pg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pg-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.pg-text p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pg-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.pg-img img {
  width: 100%; height: 380px;
  object-fit: cover;
  display: block;
}
.pg-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,21,50,.8), transparent);
  padding: 20px 16px 12px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* How I work */
.how-work-section {
  padding: 80px 0;
  background: var(--bg);
}
.how-work-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  text-align: center;
  margin-bottom: 48px;
}
.how-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.how-work-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 22px;
  border-top: 3px solid var(--gold);
}
.how-work-num {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 36px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 12px;
}
.how-work-item h3 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 10px;
}
.how-work-item p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

/* CTA */
.about-cta {
  padding: 80px 0;
  background: var(--navy);
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.about-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 460px;
}
.about-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-outline {
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  opacity: 1;
}

@media (max-width: 960px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { aspect-ratio: 4/3; max-width: 480px; }
  .pg-inner { grid-template-columns: 1fr; }
  .how-work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .how-work-grid { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; width: 100%; }
  .about-cta-btns .btn { text-align: center; }
}
