

.about-hero {
  position: relative;
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.6) 60%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A668 0%, transparent 100%);
  z-index: 2;
  opacity: 0.4;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero__content {
  max-width: 60%;
}

.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C9A668;
  display: block;
  margin-bottom: 0.5rem;
}

.about-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.about-hero__title span {
  color: #C9A668;
}

.about-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1rem;
}

.about-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.about-hero__breadcrumb a {
  color: #C9A668;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-hero__breadcrumb a:hover {
  color: #fff;
}

.about-hero__breadcrumb-separator {
  opacity: 0.3;
}

.about-hero__accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(201, 166, 104, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   Eyebrow Utility
   ============================================ */

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A668;
  position: relative;
  padding-left: 1rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: #C9A668;
  opacity: 0.6;
}

/* ============================================
   Overview Section
   ============================================ */

.about-overview {
  padding: 4rem 0 3.5rem;
  background: #f5f3ef;
}

.about-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-overview__image-wrapper {
  position: relative;
}

.about-overview__image-inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

.about-overview__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-overview__image-inner:hover .about-overview__image {
  transform: scale(1.02);
}

.about-overview__image-accent {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 48px;
  height: 48px;
  border-right: 3px solid #C9A668;
  border-bottom: 3px solid #C9A668;
  border-radius: 0 0 4px 0;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

.about-overview__content {
  display: flex;
  flex-direction: column;
}

.about-overview__eyebrow {
  color: #C9A668;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.about-overview__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: #C9A668;
  opacity: 0.6;
}

.about-overview__heading {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #0A1628;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-overview__heading span {
  color: #C9A668;
}

.about-overview__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #8896a8;
  margin-bottom: 0.75rem;
}

.about-overview__text--highlight {
  color: #0A1628;
  font-weight: 500;
  padding-left: 1.5rem;
  border-left: 2px solid #C9A668;
}

.about-overview__divider {
  width: 48px;
  height: 2px;
  background: #C9A668;
  margin: 1.5rem 0 1.5rem;
  opacity: 0.5;
}

.about-overview__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #0A1628;
  padding: 0.6rem 1.5rem 0.6rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.about-overview__cta:hover {
  background: #1a2a3e;
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
  color: #fff;
}

.about-overview__cta svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   What Makes Us Unique
   ============================================ */

.about-unique {
  padding: 4rem 0 3.5rem;
  background: #fff;
}

.about-unique__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-unique__eyebrow {
  color: #C9A668;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
  display: inline-block;
}

.about-unique__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: #C9A668;
  opacity: 0.6;
}

.about-unique__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #0A1628;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.about-unique__heading span {
  color: #C9A668;
}

.about-unique__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-unique__card {
  background: #f5f3ef;
  border-radius: 8px;
  border: 1px solid rgba(10, 22, 40, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-unique__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
  border-color: rgba(201, 166, 104, 0.12);
}

.about-unique__card--gold {
  background: linear-gradient(135deg, #f5f3ef 0%, rgba(201, 166, 104, 0.06) 100%);
  border-color: rgba(201, 166, 104, 0.12);
}

.about-unique__card--dark {
  background: #0A1628;
  border-color: #1a2a3e;
}

.about-unique__card--dark .about-unique__card-title {
  color: #fff;
}

.about-unique__card--dark .about-unique__card-text {
  color: rgba(255, 255, 255, 0.6);
}

.about-unique__card--dark .about-unique__card-number {
  color: #C9A668;
  opacity: 0.7;
}

.about-unique__card-inner {
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-unique__card-number {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C9A668;
  opacity: 0.5;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.5rem;
}

.about-unique__card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 0.5rem;
}

.about-unique__card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #8896a8;
  margin-bottom: 0;
}

.about-unique__card-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 166, 104, 0.04);
  transition: all 0.3s ease;
}

.about-unique__card:hover .about-unique__card-accent {
  width: 100px;
  height: 100px;
  background: rgba(201, 166, 104, 0.06);
}

/* ============================================
   Why Choose Us
   ============================================ */

.about-choose {
  padding: 4rem 0;
  background: #f5f3ef;
}

.about-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-choose__content {
  display: flex;
  flex-direction: column;
}

.about-choose__eyebrow {
  color: #C9A668;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
}

.about-choose__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: #C9A668;
  opacity: 0.6;
}

.about-choose__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #0A1628;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.about-choose__heading span {
  color: #C9A668;
}

.about-choose__divider {
  width: 48px;
  height: 2px;
  background: #C9A668;
  margin: 1rem 0 1.5rem;
  opacity: 0.5;
}

.about-choose__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #8896a8;
  margin-bottom: 0.75rem;
}

.about-choose__text--light {
  color: #0A1628;
}

.about-choose__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #0A1628;
  padding: 0.6rem 1.5rem 0.6rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  width: fit-content;
}

.about-choose__cta:hover {
  background: #1a2a3e;
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
  color: #fff;
}

.about-choose__cta svg {
  width: 16px;
  height: 16px;
}

.about-choose__image-wrapper {
  position: relative;
}

.about-choose__image-inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
  aspect-ratio: 4 / 3;
}

.about-choose__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-choose__image-inner:hover .about-choose__image {
  transform: scale(1.02);
}

.about-choose__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.3) 100%);
  pointer-events: none;
}

.about-choose__image-accent {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 48px;
  height: 48px;
  border-left: 3px solid #C9A668;
  border-top: 3px solid #C9A668;
  border-radius: 4px 0 0 0;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   Team Section
   ============================================ */

.about-team {
  padding: 4rem 0 3.5rem;
  background: #fff;
}

.about-team__header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

.about-team__header-left {
  display: flex;
  flex-direction: column;
}

.about-team__eyebrow {
  color: #C9A668;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
}

.about-team__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: #C9A668;
  opacity: 0.6;
}

.about-team__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #0A1628;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.about-team__heading span {
  color: #C9A668;
}

.about-team__header-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-team__intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #8896a8;
  max-width: 44ch;
}

.about-team__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #C9A668;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.about-team__link:hover {
  gap: 0.75rem;
}

.about-team__link svg {
  width: 16px;
  height: 16px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-team__card {
  text-decoration: none;
  display: block;
}

.about-team__card-inner {
  background: #f5f3ef;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.about-team__card:hover .about-team__card-inner {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
  border-color: rgba(201, 166, 104, 0.12);
}

.about-team__card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0A1628;
}

.about-team__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-team__card:hover .about-team__card-image {
  transform: scale(1.05);
}

.about-team__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 22, 40, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.about-team__card:hover .about-team__card-overlay {
  opacity: 1;
}

.about-team__card-view {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #C9A668;
  padding: 0.3rem 1.2rem;
  border-radius: 100px;
  transform: translateY(10px);
  transition: transform 0.2s ease;
}

.about-team__card:hover .about-team__card-view {
  transform: translateY(0);
}

.about-team__card-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-right: 2px solid #C9A668;
  border-bottom: 2px solid #C9A668;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: 0 0 4px 0;
}

.about-team__card:hover .about-team__card-accent {
  opacity: 0.5;
}

.about-team__card-content {
  padding: 1rem 1rem 0.75rem;
  text-align: center;
}

.about-team__card-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0A1628;
  line-height: 1.2;
  margin-bottom: 0.1rem;
  transition: color 0.2s ease;
}

.about-team__card:hover .about-team__card-name {
  color: #C9A668;
}

.about-team__card-role {
  font-size: 0.8rem;
  color: #8896a8;
  margin-bottom: 0.5rem;
}

.about-team__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A1628;
  transition: all 0.2s ease;
}

.about-team__card:hover .about-team__card-cta {
  color: #C9A668;
  gap: 0.75rem;
}

.about-team__card-cta svg {
  width: 13px;
  height: 13px;
}

.about-team__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #8896a8;
  padding: 2rem 0;
}

/* ============================================
   Client Focus
   ============================================ */

.about-client-focus {
  padding: 3.5rem 0;
  background: #0A1628;
  position: relative;
  overflow: hidden;
}

.about-client-focus::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 166, 104, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-client-focus__inner {
  position: relative;
  z-index: 1;
}

.about-client-focus__content {
  max-width: 60%;
}

.about-client-focus__eyebrow {
  color: #C9A668;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
}

.about-client-focus__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: #C9A668;
  opacity: 0.6;
}

.about-client-focus__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.about-client-focus__divider {
  width: 48px;
  height: 2px;
  background: #C9A668;
  margin: 1rem 0 1.5rem;
  opacity: 0.5;
}

.about-client-focus__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 48ch;
}

/* ============================================
   CTA Section
   ============================================ */

.about-cta {
  padding: 3rem 0;
  background: #f5f3ef;
}

.about-cta__inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}

.about-cta__image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.about-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-cta__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.6) 100%);
}

.about-cta__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  z-index: 2;
}

.about-cta__eyebrow {
  color: #C9A668;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.about-cta__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.5rem 0;
}

.about-cta__heading span {
  color: #C9A668;
}

.about-cta__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 40ch;
  margin-bottom: 1rem;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #C9A668;
  padding: 0.6rem 1.5rem 0.6rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.about-cta__btn:hover {
  background: #b8974a;
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 166, 104, 0.3);
  color: #fff;
}

.about-cta__btn svg {
  width: 16px;
  height: 16px;
}

.about-cta__hammer {
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
}

.about-cta__hammer img {
  height: 200px;
  width: auto;
  display: block;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .about-hero__content {
    max-width: 80%;
  }

  .about-overview__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-overview__image {
    height: 320px;
  }

  .about-unique__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-choose__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-choose__image-inner {
    aspect-ratio: 16 / 10;
  }

  .about-team__header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-team__intro {
    max-width: 100%;
  }

  .about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-client-focus__content {
    max-width: 80%;
  }

  .about-cta__hammer {
    display: none;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding: 120px 0 50px;
    min-height: 280px;
  }

  .about-hero__content {
    max-width: 100%;
  }

  .about-hero__title {
    font-size: 1.8rem;
  }

  .about-hero__subtitle {
    font-size: 0.9375rem;
  }

  .about-overview {
    padding: 2.5rem 0 2rem;
  }

  .about-overview__image {
    height: 240px;
  }

  .about-overview__heading {
    font-size: 1.6rem;
  }

  .about-overview__cta {
    width: 100%;
    justify-content: center;
  }

  .about-unique {
    padding: 2.5rem 0 2rem;
  }

  .about-unique__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-unique__card-inner {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .about-choose {
    padding: 2.5rem 0;
  }

  .about-choose__heading {
    font-size: 1.6rem;
  }

  .about-choose__cta {
    width: 100%;
    justify-content: center;
  }

  .about-team {
    padding: 2.5rem 0 2rem;
  }

  .about-team__heading {
    font-size: 1.6rem;
  }

  .about-team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-team__card-content {
    padding: 0.75rem;
  }

  .about-team__card-name {
    font-size: 0.875rem;
  }

  .about-team__card-role {
    font-size: 0.7rem;
  }

  .about-team__card-cta {
    font-size: 0.7rem;
  }

  .about-team__card-view {
    font-size: 0.6rem;
    padding: 0.2rem 0.8rem;
  }

  .about-client-focus {
    padding: 2.5rem 0;
  }

  .about-client-focus__content {
    max-width: 100%;
  }

  .about-client-focus__heading {
    font-size: 1.6rem;
  }

  .about-client-focus__text {
    font-size: 0.875rem;
  }

  .about-cta {
    padding: 2rem 0;
  }

  .about-cta__image-wrapper {
    height: 400px;
  }

  .about-cta__content {
    padding: 1rem 1.5rem;
    text-align: center;
    align-items: center;
  }

  .about-cta__heading {
    font-size: 1.4rem;
  }

  .about-cta__text {
    font-size: 0.875rem;
    max-width: 100%;
  }

  .about-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .about-team__card-content {
    padding: 0.5rem;
  }

  .about-team__card-name {
    font-size: 0.8rem;
  }

  .about-team__card-role {
    font-size: 0.65rem;
  }

  .about-team__card-cta {
    font-size: 0.65rem;
  }

  .about-team__card-view {
    font-size: 0.55rem;
    padding: 0.15rem 0.6rem;
  }
}

/* ============================================
   Dark Mode Support
   ============================================ */

@media (prefers-color-scheme: dark) {
  .about-overview {
    background: #0A1628;
  }

  .about-overview__heading {
    color: #fff;
  }

  .about-overview__text {
    color: rgba(255, 255, 255, 0.6);
  }

  .about-overview__text--highlight {
    color: #fff;
  }

  .about-overview__cta {
    background: #C9A668;
  }

  .about-overview__cta:hover {
    background: #b8974a;
  }

  .about-unique {
    background: #0A1628;
  }

  .about-unique__heading {
    color: #fff;
  }

  .about-unique__card {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .about-unique__card--gold {
    background: linear-gradient(135deg, #1a2a3e 0%, rgba(201, 166, 104, 0.06) 100%);
  }

  .about-unique__card--dark {
    background: #0A1628;
    border-color: #1a2a3e;
  }

  .about-unique__card-title {
    color: #fff;
  }

  .about-unique__card-text {
    color: rgba(255, 255, 255, 0.6);
  }

  .about-choose {
    background: #0A1628;
  }

  .about-choose__heading {
    color: #fff;
  }

  .about-choose__text {
    color: rgba(255, 255, 255, 0.6);
  }

  .about-choose__text--light {
    color: #fff;
  }

  .about-choose__cta {
    background: #C9A668;
  }

  .about-choose__cta:hover {
    background: #b8974a;
  }

  .about-team {
    background: #0A1628;
  }

  .about-team__heading {
    color: #fff;
  }

  .about-team__intro {
    color: rgba(255, 255, 255, 0.6);
  }

  .about-team__card-inner {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .about-team__card-name {
    color: #fff;
  }

  .about-team__card-role {
    color: rgba(255, 255, 255, 0.6);
  }

  .about-team__card-cta {
    color: #fff;
  }

  .about-team__card:hover .about-team__card-cta {
    color: #C9A668;
  }

  .about-client-focus {
    background: #0A1628;
  }

  .about-cta {
    background: #0A1628;
  }

  .about-cta__inner {
    background: #1a2a3e;
  }
}