/* About Us page */

.about-page .header.header--solid {
  background:
    linear-gradient(180deg, rgba(8, 14, 27, 0.96) 0%, rgba(7, 12, 23, 0.95) 100%);
  backdrop-filter: blur(14px) saturate(155%);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.about-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-inverse);
  padding: calc(var(--header-h) + 54px) 0 64px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 64% 56% at 12% 12%, rgba(212, 183, 106, 0.18) 0%, transparent 54%),
    radial-gradient(ellipse 50% 44% at 84% 72%, rgba(212, 183, 106, 0.11) 0%, transparent 56%),
    linear-gradient(160deg, rgba(5, 10, 24, 0.78) 6%, rgba(11, 22, 48, 0.76) 62%, rgba(16, 31, 64, 0.74) 100%),
    var(--hero-bg-image, url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1920&q=80")) center 35% / cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 10, 24, 0.22) 0%, rgba(5, 10, 24, 0.55) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(212, 183, 106, 0.32);
  background: rgba(12, 20, 40, 0.52);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.72rem, 1.4vw, 0.8125rem);
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.about-hero__badge::before {
  content: "✓";
  color: var(--gold-300);
  font-weight: 700;
}

.about-hero__content h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  line-height: 1.06;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 24px rgba(5, 10, 24, 0.34);
}

.about-hero__content > p {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

.about-hero__trust {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.about-hero__trust span {
  border: 1px solid rgba(212, 183, 106, 0.26);
  background: rgba(12, 20, 40, 0.48);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero__trust span::before {
  content: "✓ ";
  color: var(--gold-300);
}

.about-story-section {
  background: #f7f7f5;
  padding: clamp(56px, 7vw, 80px) 0;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 48px);
  align-items: center;
}

.about-story__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.about-story__media:hover img {
  transform: scale(1.03);
}

.about-story__copy .section-head__eyebrow {
  margin-bottom: 10px;
}

.about-story__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 14px;
}

.about-story__copy p,
.about-story__copy > div p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-story__copy .btn {
  margin-top: 8px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.about-pillar {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-0);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.about-pillar:hover {
  border-color: rgba(197, 160, 89, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.about-pillar::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  margin: 0 auto 10px;
}

.about-contact-strip {
  padding: clamp(40px, 5vw, 56px) 0;
  background: var(--navy-900);
  color: var(--text-inverse);
}

.about-contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.about-contact-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-contact-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold-300);
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid rgba(212, 183, 106, 0.32);
}

.about-contact-strip__item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.about-contact-strip__item a,
.about-contact-strip__item span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
}

.about-contact-strip__item a:hover {
  color: var(--gold-300);
}

.about-values .why-us__grid {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-contact-strip__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    order: -1;
  }
}
