﻿:root {
  --nm-spacing-xl: clamp(5rem, 12vw, 8rem);
  --nm-spacing-lg: clamp(3.5rem, 8vw, 5rem);
  --nm-spacing-md: clamp(2.2rem, 6vw, 3.25rem);
  --nm-radius-lg: 24px;
  --nm-shadow-hero: 0 35px 65px rgba(10, 45, 57, 0.28);
}

.about-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(4rem, 10vw, 6rem);
  background: linear-gradient(
    135deg,
    #0f4c5f 0%,
    #126c88 50%,
    rgba(210, 143, 178, 0.95) 100%
  );
  color: #fff;
  overflow: hidden;
}

.about-page-body {
  padding-top: 0;
  overflow-x: clip;
}

.about-page-body #nm-mobile-cta-spacer {
  display: none;
}

.about-page-body .container {
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(255, 255, 255, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(210, 143, 178, 0.25),
      transparent 55%
    );
  pointer-events: none;
}

.about-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1.75rem;
}

.about-hero__title {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-hero__title span {
  color: var(--secondary);
}

.about-hero__copy {
  margin-top: 1.75rem;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
}

.about-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-hero__cta .btn {
  border-radius: 999px;
  padding: 1rem 2.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-hero__cta .btn-primary {
  background: #fff !important;
  color: #0f4c5f !important;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25) !important;
}

.about-hero__cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.35) !important;
}

.about-hero__cta .btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
}

.about-hero__cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-3px);
}

.about-hero__media {
  position: relative;
}

.about-hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.about-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.1),
    rgba(210, 143, 178, 0.15)
  );
  pointer-events: none;
}

.about-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  /* Show the full photo, never crop: this photo's real proportions are
       taller than the 4:5 frame, so "cover" was slicing off the top/bottom
       (object-position was only masking it). "contain" shows 100% of the
       image, letterboxed within the frame instead. */
  object-fit: contain;
}

.about-hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.metric-card__value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.metric-card__label {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.about-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.about-section--alt {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

/* About video feature */
.about-video {
  padding: 6rem 0;
  overflow: hidden;
  background: #0f4c5f;
  color: #fff;
}

.about-video__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  max-width: 1080px;
  margin: 0 auto;
}

.about-video .section-intro__eyebrow {
  color: #f3bfd9;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-video__title {
  max-width: 13ch;
  margin: 1.25rem 0 1.25rem;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-video__copy {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-video__details {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.about-video__details li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.about-video__details i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #d28fb2;
  color: #fff;
  font-size: 0.72rem;
}

.about-video__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.about-video__link:hover {
  background: #fff;
  color: #0f4c5f;
  transform: translateY(-2px);
}

.about-video__link:active {
  transform: translateY(0);
}

.about-video__media {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
}

.about-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #082f3b;
  box-shadow:
    22px 24px 0 rgba(210, 143, 178, 0.28),
    0 28px 60px rgba(4, 31, 40, 0.34);
}

.about-video__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #082f3b;
}

.about-video__caption {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(280px, 86%);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: #fff;
  color: #343a40;
  box-shadow: 0 16px 40px rgba(4, 31, 40, 0.28);
}

.about-video__caption-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #d28fb2;
  color: #fff;
  font-size: 0.75rem;
}

.about-video__caption span:last-child {
  display: grid;
  gap: 0.1rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.about-video__caption strong {
  color: #0f4c5f;
  font-size: 0.92rem;
}

@media (max-width: 991px) {
  .about-video__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    gap: 3rem;
  }

  .about-video__caption {
    right: -1rem;
  }
}

@media (max-width: 768px) {
  .about-video {
    padding: 4rem 0 4.5rem;
  }

  .about-video__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .about-video__title {
    max-width: 16ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .about-video__media {
    width: min(86%, 360px);
    justify-self: center;
  }

  .about-video__caption {
    right: -1.5rem;
    bottom: 1.5rem;
  }
}

@media (max-width: 420px) {
  .about-video__media {
    width: calc(100% - 1rem);
  }

  .about-video__frame {
    box-shadow: 12px 14px 0 rgba(210, 143, 178, 0.28);
  }

  .about-video__caption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1rem);
    margin: -1.25rem auto 0;
  }
}

.about-story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  margin-top: 3rem;
}

.about-story__media {
  position: relative;
}

.about-story__media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 76, 95, 0.15);
}

.about-story__image {
  border-radius: 24px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-story__badge {
  position: absolute;
  right: clamp(0.9rem, 4vw, 1.5rem);
  bottom: clamp(0.9rem, 4vw, 1.5rem);
  z-index: 2;
  max-width: min(70%, 230px);
  background: linear-gradient(135deg, #d28fb2 0%, #c17fa3 100%);
  color: #fff;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 12px 30px rgba(210, 143, 178, 0.4);
}

.about-story__copy {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.75rem;
}

.about-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f4c5f 0%, #126c88 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 76, 95, 0.25);
  transition: all 0.3s ease;
}

.about-story__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(15, 76, 95, 0.35);
  background: linear-gradient(90deg, #126c88 0%, #0f4c5f 100%);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: var(--nm-spacing-md);
}

.value-card,
.feature-card {
  border-radius: 22px;
  padding: 2.5rem 2rem;
  background: #fff;
  box-shadow: 0 10px 35px rgba(15, 76, 95, 0.08);
  border: 1px solid rgba(210, 143, 178, 0.15);
  transition: all 0.3s ease;
}

.value-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(15, 76, 95, 0.12);
  border-color: rgba(210, 143, 178, 0.3);
}

.value-card i,
.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(210, 143, 178, 0.12),
    rgba(210, 143, 178, 0.18)
  );
  color: #d28fb2;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.value-card h3,
.feature-card h3 {
  margin-bottom: 0.85rem;
  color: #0f4c5f;
  font-size: 1.25rem;
  font-weight: 700;
}

.value-card p,
.feature-card p {
  color: #4a5568;
  margin: 0;
  line-height: 1.75;
  font-size: 1.02rem;
}

.mission-card {
  max-width: 750px;
  margin: 3.5rem auto 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.04),
    rgba(210, 143, 178, 0.12)
  );
  border-radius: 26px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(210, 143, 178, 0.2);
  box-shadow: 0 12px 40px rgba(15, 76, 95, 0.08);
}

.mission-card h3 {
  color: #0f4c5f;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-card p {
  font-size: 1.18rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

.about-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  margin-top: 3rem;
}

.area-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 35px rgba(15, 76, 95, 0.08);
  border: 1px solid rgba(210, 143, 178, 0.15);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(15, 76, 95, 0.12);
  border-color: rgba(210, 143, 178, 0.3);
}

.area-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.area-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.08),
    rgba(15, 76, 95, 0.12)
  );
  color: #0f4c5f;
  font-size: 1.6rem;
}

.area-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f4c5f;
}

.area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4a5568;
}

.area-card li i {
  color: #d28fb2;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.area-card li strong {
  color: #0f4c5f;
  font-weight: 600;
}

.about-areas__footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.12rem;
  color: #4a5568;
}

.about-areas__footer a {
  color: #d28fb2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-areas__footer a:hover {
  color: #0f4c5f;
  text-decoration: underline;
}

.about-cta {
  position: relative;
  padding: clamp(4.5rem, 11vw, 6.5rem) 0;
  background: linear-gradient(
    135deg,
    #0f4c5f 0%,
    #126c88 50%,
    rgba(210, 143, 178, 0.9) 100%
  );
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(210, 143, 178, 0.2),
      transparent 50%
    );
  pointer-events: none;
}

.about-cta__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  margin-bottom: 1.75rem;
}

.about-cta__content h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-cta__content p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
}

.about-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.about-cta__buttons .btn {
  border-radius: 999px;
  padding: 1rem 2.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.about-cta__buttons .btn-primary {
  background: #fff !important;
  color: #0f4c5f !important;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25) !important;
}

.about-cta__buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.35) !important;
}

.about-cta__buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
}

.about-cta__buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-3px);
}

.about-cta__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.about-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-cta__badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.about-cta__badge i {
  font-size: 1.1rem;
  opacity: 0.95;
}

.about-cta__decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.about-cta__shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  top: -150px;
  left: -100px;
  animation: float-shape-1 20s ease-in-out infinite;
}

.about-cta__shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(210, 143, 178, 0.4),
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  animation: float-shape-2 18s ease-in-out infinite;
}

.about-cta__shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-shape 15s ease-in-out infinite;
}

@keyframes float-shape-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

@keyframes float-shape-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 20px) scale(1.15);
  }
}

@keyframes pulse-shape {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.12;
  }
}

.about-cta__eyebrow i {
  animation: bolt-pulse 2s ease-in-out infinite;
}

@keyframes bolt-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.about-map {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 76, 95, 0.12);
}

.about-map iframe {
  display: block;
  width: 100%;
}

/* ─── FAQ Section ─────────────────────────────────────────────── */
.about-faq {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 95, 0.08) 0%,
    rgba(210, 143, 178, 0.08) 100%
  );
}

.about-faq__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.2rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 76, 95, 0.12);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 76, 95, 0.14);
}

.faq-item__question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f4c5f;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item__question span {
  flex: 1;
  text-align: left;
}

.faq-item__question i {
  font-size: 1rem;
  color: #d28fb2;
  transition: transform 0.3s ease;
}

.faq-item__answer {
  max-height: 0;
  opacity: 0;
  padding: 0 1.75rem;
  color: #495057;
  font-size: 1rem;
  line-height: 1.7;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding 0.35s ease;
}

.faq-item__answer p {
  margin-bottom: 1.2rem;
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 1.75rem 1.6rem;
}

.faq-item.is-open .faq-item__question {
  color: #0a3544;
}

.faq-item.is-open .faq-item__question i {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-item__question {
    font-size: 1.02rem;
    padding: 1.15rem 1.4rem;
  }

  .faq-item__answer {
    padding: 0 1.4rem;
  }

  .faq-item.is-open .faq-item__answer {
    padding: 0 1.4rem 1.35rem;
  }
}

@media (max-width: 991px) {
  .about-page-body {
    padding-bottom: 56px;
  }

  .about-hero__layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .about-hero__content,
  .about-hero__media,
  .about-story__media {
    min-width: 0;
  }

  .about-hero__cta {
    justify-content: center;
  }

  .about-story__grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .about-story__badge {
    right: clamp(0.9rem, 4vw, 1.5rem);
    left: auto;
    transform: none;
  }

  .about-story__cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 2.75rem 0 3.25rem;
  }

  .about-hero__layout {
    gap: 2.25rem;
  }

  .about-hero__eyebrow {
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    margin-bottom: 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .about-hero__title {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .about-hero__copy {
    max-width: 34rem;
    margin: 1.25rem auto 0;
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-hero__cta {
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .about-hero__cta .btn,
  .about-story__cta,
  .about-cta__buttons .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .about-hero__cta .btn {
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
  }

  .about-hero__frame,
  .about-story__media-frame,
  .about-story__image {
    border-radius: 18px;
  }

  .about-hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 2rem;
  }

  .metric-card {
    min-width: 0;
    border-radius: 14px;
    padding: 1rem 0.6rem;
  }

  .metric-card__value {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    margin-bottom: 0.35rem;
  }

  .metric-card__label {
    display: block;
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .about-section {
    padding: 3.5rem 0;
  }

  #our-story.about-section {
    padding-top: 4.75rem;
  }

  .about-story__grid,
  .about-values__grid,
  .about-areas__grid,
  .values-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .about-story__copy {
    font-size: 1rem;
    line-height: 1.72;
    text-align: left;
  }

  .about-story__badge {
    max-width: 64%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.3;
    box-shadow: 0 10px 24px rgba(210, 143, 178, 0.38);
  }

  .about-story__cta {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
  }

  .value-card,
  .feature-card,
  .values-card,
  .values-highlight,
  .area-card,
  .mission-card {
    border-radius: 16px;
    padding: 1.5rem;
  }

  .values-highlight__title,
  .mission-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .values-highlight__copy,
  .values-highlight__list,
  .mission-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .values-highlight__badge {
    align-items: flex-start;
    gap: 0.85rem;
    text-align: left;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .values-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 1.1rem;
  }

  .values-card__title {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .values-card__copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .area-card__header {
    gap: 0.85rem;
  }

  .area-card__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .area-card__title {
    font-size: 1.05rem;
  }

  .area-card ul {
    margin-top: 1.15rem;
  }

  .area-card li {
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .about-cta {
    padding: 3.5rem 0;
  }

  .about-cta__buttons,
  .about-cta__badges {
    gap: 0.75rem;
  }
}

@media (max-width: 575px) {
  .about-hero__cta .btn,
  .about-cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .about-hero__cta,
  .about-cta__buttons {
    flex-direction: column;
  }

  .about-cta__badges {
    flex-direction: column;
    align-items: stretch;
  }

  .mission-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 359px) {
  .about-hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero__metrics .metric-card:last-child {
    grid-column: 1 / -1;
  }
}
