/* ============================================================
   CAPITAL BUILD — About Page
   ============================================================ */

.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(380px, 55vh, 520px);
  padding:
    calc(var(--header-height, 80px) + var(--topbar-height, 42px) + 2.5rem)
    0 3.5rem;
  background: #060F1F;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 31, 0.45) 0%,
    rgba(6, 15, 31, 0.82) 55%,
    #060F1F 100%
  );
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-hero__content {
  max-width: 42rem;
}

.about-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.4);
}

.about-hero__crumbs a {
  color: rgba(247, 245, 240, 0.65);
  text-decoration: none;
}

.about-hero__crumbs a:hover {
  color: #C9A84C;
}

.about-hero__crumb-current {
  color: #C9A84C;
}

.about-hero__eyebrow {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
}

.about-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F7F5F0;
}

.about-hero__text {
  margin: 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.72);
}

/* Story */
.story-section {
  padding: 5rem 0;
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.story-grid__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(11, 29, 58, 0.25);
  background: #0B1D3A;
}

.story-grid__media::before {
  content: "";
  display: block;
  padding-top: 115%;
}

.story-grid__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: #C9A84C;
  border-top-left-radius: 12px;
  text-align: center;
}

.story-grid__badge strong {
  display: block;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 2.25rem;
  line-height: 1;
  color: #060F1F;
}

.story-grid__badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B1D3A;
}

.story-grid__copy .section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7a2e;
}

.story-grid__copy h2 {
  margin: 0 0 1.25rem;
}

.story-grid__copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #5c6b7e;
}

.story-grid__copy strong {
  color: #0B1D3A;
}

/* Values */
.values-section {
  padding: 5rem 0;
  background: #F7F5F0;
}

.values-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.value-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px -16px rgba(11, 29, 58, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 16px 36px -18px rgba(11, 29, 58, 0.16);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
  border-radius: 10px;
  background: #0B1D3A;
  color: #C9A84C;
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: 1.25rem;
  color: #0B1D3A;
}

.value-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5c6b7e;
}

/* Accreditations */
.accreditations {
  padding: 2.75rem 0;
  background: #060F1F;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.accreditations__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  opacity: 0.75;
}

.accreditations__text {
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #F7F5F0;
  letter-spacing: 0.02em;
}

/* CTA */
.about-cta {
  padding: 4.5rem 0;
  background: #0B1D3A;
  text-align: center;
}

.about-cta__box {
  max-width: 32rem;
  margin: 0 auto;
}

.about-cta__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading, "DM Serif Display", serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: #F7F5F0;
}

.about-cta__text {
  margin: 0 0 1.75rem;
  color: rgba(247, 245, 240, 0.65);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .value-card {
    transition: none;
  }
  .value-card:hover {
    transform: none;
  }
}