.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--brand-charcoal);
  background: #ffffff;
  padding: 0;
}

.about-hero::before {
  content: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: var(--line);
}

.about-hero-grid {
  position: relative;
  z-index: 3;
  min-height: clamp(280px, 30vw, 360px);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(58px, 5.2vw, 82px) 0 clamp(28px, 3.8vw, 48px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.about-hero h1 {
  margin: 0;
  color: var(--brand-charcoal);
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-hero h1::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 12px;
  background: var(--brand-blue-deep);
}

.about-hero-copy {
  width: min(28%, 340px);
  min-height: 0;
  margin-right: clamp(0px, 1.6vw, 28px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.about-hero-copy p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(11px, 0.72vw, 12px);
  line-height: 1.55;
}

.about-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-hero-visual picture,
.about-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-hero-visual img {
  object-fit: cover;
  object-position: center;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.hero-link [data-lucide] {
  width: 18px;
  height: 18px;
  transition: transform 170ms ease;
}

.hero-link:hover [data-lucide] {
  transform: translateX(3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row.centered {
  justify-content: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 24px;
  font-weight: 600;
  transition: 170ms ease;
}

.button [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button.primary {
  color: #ffffff;
  background: var(--brand-black);
}

.button.primary:hover {
  background: var(--brand-charcoal);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--slate);
  border-color: #cbd5e1;
  background: #ffffff;
}

.button.secondary:hover {
  border-color: var(--slate);
  background: #f8fafc;
}

.section {
  padding: 84px 0;
  background: #ffffff;
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.about-copy p {
  margin: 0 0 22px;
  color: #374151;
  font-size: 21px;
  line-height: 1.65;
}

.brand-intro-section {
  padding: 72px 0 88px;
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 72px;
  align-items: end;
}

.brand-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
  color: var(--brand-blue-deep);
}

.brand-intro h2 {
  max-width: 760px;
  margin: 0;
  color: #111827;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
}

.brand-intro-copy p {
  margin: 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.6;
}

.brand-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 30px;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-card,
.value-card,
.compare-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.stat-card {
  min-height: 150px;
  padding: 24px;
}

.stat-number {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.stat-card h3,
.value-card h3,
.compare-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 20px;
}

.stat-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
}

.team-shell {
  overflow: hidden;
  border: 1px solid rgba(183, 194, 200, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 246, 0.74)),
    #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.team-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 34px 10px;
  text-align: center;
}

.team-copy p {
  margin: 0;
  color: #374151;
  font-size: 20px;
  line-height: 1.5;
}

.team-track-wrap {
  overflow: hidden;
  padding: 24px 0 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.team-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: team-scroll 38s linear infinite;
}

.team-track.is-paused {
  animation-play-state: paused;
}

.team-card {
  position: relative;
  width: 268px;
  flex: 0 0 auto;
  text-align: center;
}

.team-avatar {
  position: relative;
  width: 240px;
  height: 315px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(183, 194, 200, 0.74);
  border-radius: 8px;
  color: #6f8799;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 239, 243, 0.72)),
    linear-gradient(145deg, #f8fafc, #d8e2ea);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 18px 36px rgba(61, 62, 69, 0.11);
}

.team-avatar::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.team-avatar.has-photo {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 249, 0.92)),
    #ffffff;
}

.team-avatar.has-photo::after {
  display: none;
}

.team-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: calc(100% + 10px);
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(8px);
}

.team-avatar [data-lucide] {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  stroke-width: 1.8;
}

.team-card p {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  padding: 28px 22px;
  text-align: center;
}

.value-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--brand-charcoal);
  background: var(--brand-silver-soft);
}

.value-icon [data-lucide] {
  width: 28px;
  height: 28px;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.compare-card {
  padding: 32px;
}

.compare-card.highlight {
  color: #ffffff;
  border-color: var(--brand-charcoal);
  background: var(--brand-charcoal);
}

.compare-card.highlight h3 {
  color: #ffffff;
}

.compare-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.compare-card li {
  display: flex;
  gap: 10px;
  color: #4b5563;
}

.compare-card.highlight li {
  color: #ffffff;
}

.compare-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.compare-arrow {
  display: grid;
  place-items: center;
  color: var(--green);
}

.compare-arrow [data-lucide] {
  width: 52px;
  height: 52px;
  stroke-width: 1.8;
}

.philosophy {
  position: relative;
  color: #111827;
  background: #ffffff;
  padding: clamp(70px, 7vw, 96px) 0 clamp(72px, 7vw, 98px);
}

.philosophy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(960px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.philosophy-inner::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 0 auto 30px;
  background: var(--brand-blue-deep);
}

.final-cta-inner {
  max-width: 840px;
  text-align: center;
}

.philosophy h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #111827;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.08;
}

.final-cta h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
}

.philosophy p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.7;
}

.philosophy .philosophy-lede {
  color: #111827;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.52;
}

.company-profile {
  padding: clamp(78px, 7.4vw, 108px) 0;
  background: #ffffff;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  gap: clamp(48px, 5.8vw, 92px);
  align-items: center;
}

.company-profile-copy h2 {
  margin: 0 0 30px;
  color: #2f3136;
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.08;
}

.company-profile-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 18px;
  color: #8b8d93;
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.company-profile-copy p:last-child {
  margin-bottom: 0;
}

.company-profile-media {
  margin: 0;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.42;
  border-radius: 24px;
  background: #eef2f5;
}

.company-profile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.certificates {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.certificate-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.48fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 74px);
  align-items: center;
}

.certificate-intro {
  max-width: 480px;
}

.certificate-intro .eyebrow {
  color: var(--brand-blue-deep);
}

.certificate-intro h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(44px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1.08;
}

.certificate-intro p:not(.eyebrow) {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.65;
}

.certificate-slider-wrap {
  position: relative;
  min-width: 0;
}

.certificate-slider-wrap::before {
  content: none;
}

.certificate-slider {
  overflow: hidden;
  padding: 28px 0 24px;
}

.certificate-card {
  position: relative;
  z-index: 1;
  margin: 0;
  height: auto;
}

.certificate-frame {
  position: relative;
  aspect-ratio: 0.72;
  display: grid;
  place-items: center;
  padding: clamp(12px, 1.4vw, 20px);
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    #ffffff;
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.certificate-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 5px;
  pointer-events: none;
}

.certificate-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.certificate-card.swiper-slide-active .certificate-frame {
  transform: translateY(-14px);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.certificate-card figcaption {
  display: none;
}

.certificate-slider-controls {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) auto;
  gap: 28px;
  align-items: center;
}

.certificate-progress {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
}

.certificate-progress .swiper-pagination-progressbar-fill {
  border-radius: inherit;
  background: linear-gradient(90deg, #111827 0%, #5f9fc7 100%);
}

.certificate-arrows {
  display: flex;
  gap: 10px;
}

.certificate-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 999px;
  color: #111827;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.certificate-arrow:hover {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
  transform: translateY(-1px);
}

.certificate-arrow [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.certificate-arrow.swiper-button-disabled {
  opacity: 0.34;
  cursor: default;
  pointer-events: none;
}

.final-cta {
  background: #ffffff;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 21px;
}

.final-cta-actions {
  width: 100%;
  justify-content: center;
}

.final-cta-actions .button {
  min-width: 198px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes team-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .about-grid,
  .compare-grid,
  .brand-intro,
  .company-profile-grid,
  .certificate-showcase {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 36px;
  }

  .about-hero-copy {
    width: min(38%, 340px);
    margin-right: 0;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certificate-intro {
    max-width: 760px;
  }

  .certificate-intro h2 {
    font-size: 44px;
  }

  .certificate-slider {
    padding-top: 10px;
  }

  .brand-intro {
    gap: 34px;
  }

  .brand-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -12px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .about-hero {
    padding: 0;
  }

  .about-hero::after {
    content: none;
  }

  .about-hero-visual {
    inset: 0;
  }

  .about-hero-visual img {
    object-position: center;
  }

  .about-hero-grid {
    min-height: clamp(220px, 62vw, 300px);
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(90px, 25vw, 122px) 0 0 clamp(24px, 7vw, 42px);
  }

  .about-hero h1 {
    color: #ffffff;
    font-size: clamp(17px, 5vw, 22px);
    text-shadow: 0 2px 12px rgba(23, 23, 23, 0.42);
  }

  .about-hero h1::after {
    width: 26px;
    height: 2px;
    margin-top: 7px;
    background: #5f9fc7;
  }

  .about-hero-copy {
    width: min(52%, 210px);
    min-height: auto;
    margin-right: 0;
    padding: 0;
  }

  .about-hero-copy p {
    max-width: 210px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(9px, 2.55vw, 11px);
    line-height: 1.42;
    text-shadow: 0 2px 10px rgba(23, 23, 23, 0.42);
  }

  .about-hero-copy p br {
    display: none;
  }

  .button-row,
  .button-row.centered {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .brand-intro-section {
    padding: 60px 0 72px;
  }

  .philosophy {
    padding: 54px 0 60px;
  }

  .philosophy::after {
    width: calc(100% - 36px);
  }

  .philosophy-inner::before {
    width: 42px;
    margin-bottom: 22px;
  }

  .philosophy h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .philosophy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.62;
  }

  .philosophy .philosophy-lede {
    font-size: 18px;
  }

  .company-profile {
    padding: 58px 0 64px;
  }

  .company-profile-grid {
    gap: 30px;
  }

  .company-profile-copy h2 {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.12;
  }

  .company-profile-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .company-profile-media {
    aspect-ratio: 1.18;
    border-radius: 18px;
  }

  .certificate-showcase {
    gap: 30px;
  }

  .certificate-intro h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .certificate-intro p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .certificate-slider-wrap::before {
    content: none;
  }

  .certificate-slider {
    overflow: hidden;
    padding: 0 0 18px;
  }

  .certificate-card.swiper-slide-active .certificate-frame {
    transform: none;
  }

  .certificate-frame {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 0.72;
    padding: 12px;
    box-shadow:
      0 10px 24px rgba(15, 23, 42, 0.07),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }

  .certificate-card figcaption {
    display: none;
  }

  .certificate-slider-controls {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .certificate-arrows {
    justify-content: flex-end;
  }

  .certificate-arrow {
    width: 40px;
    height: 40px;
  }

  .brand-intro h2 {
    font-size: 40px;
  }

  .brand-intro-copy p {
    font-size: 18px;
  }

  .brand-keywords {
    gap: 14px 18px;
  }

  .team-track-wrap {
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent);
    mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent);
  }

  .team-shell {
    margin-inline: -8px;
  }

  .team-copy {
    padding: 28px 18px 4px;
  }

  .team-card {
    width: 172px;
  }

  .team-avatar {
    width: 150px;
    height: 197px;
    margin-bottom: 15px;
  }

  .team-avatar [data-lucide] {
    width: 46px;
    height: 46px;
  }

  .team-card p {
    font-size: 15px;
  }
}

/* About page redesign: extends the original visual system and hero. */
.brand-story-section {
  padding: clamp(84px, 8vw, 126px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f4f7f9 70%, #f4f7f9 100%);
}

.brand-story-shell {
  position: relative;
}

.brand-story-header {
  margin-bottom: clamp(50px, 6vw, 86px);
}

.story-eyebrow {
  margin: 0 0 18px;
  color: #62656d;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.brand-story-title h2,
.purpose-heading h2,
.values-heading h2,
.leadership-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.brand-story-title h2 {
  max-width: 720px;
}

.brand-story-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  box-shadow: 0 28px 70px rgba(23, 23, 23, 0.08);
}

.story-origin,
.story-belief {
  min-height: 540px;
  padding: clamp(38px, 5vw, 70px);
}

.story-origin {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  background: var(--brand-charcoal);
}

.story-origin > p:first-child {
  max-width: 540px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.story-origin blockquote {
  max-width: 520px;
  margin: 0 0 54px;
  color: #ffffff;
  font-size: clamp(25px, 2.15vw, 34px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.story-origin > p:last-child {
  max-width: 540px;
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.story-belief {
  display: flex;
  flex-direction: column;
  background: #eaf2f6;
}

.story-belief h3 {
  max-width: 820px;
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 2.8vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.story-belief > p:not(.brand-story-signature) {
  max-width: 780px;
  margin: 34px 0 0;
  color: #52606a;
  font-size: 17px;
  line-height: 1.75;
}

.brand-story-signature {
  margin: auto 0 0 !important;
  padding-top: 46px;
  color: #111827 !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.purpose-section {
  color: #ffffff;
  background: var(--brand-charcoal);
}

.purpose-heading {
  max-width: 900px;
  margin: 0 0 clamp(44px, 5vw, 72px);
  text-align: left;
}

.purpose-heading h2 {
  color: #ffffff;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.purpose-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 4vw, 58px);
  background: #303239;
}

.purpose-card-blue {
  background: var(--brand-blue-deep);
}

.purpose-card h3 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(27px, 2.55vw, 39px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.purpose-card > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.purpose-card-blue > p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.values-section {
  background: var(--soft);
}

.values-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.values-heading > p {
  max-width: 460px;
  margin: 0;
  color: #62656d;
  font-size: 18px;
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cfd8de;
  border-left: 1px solid #cfd8de;
}

.about-value-card {
  min-height: 320px;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid #cfd8de;
  border-bottom: 1px solid #cfd8de;
  background: rgba(255, 255, 255, 0.58);
}

.about-value-card h3 {
  margin: clamp(38px, 4vw, 64px) 0 18px;
  color: #111827;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}

.about-value-card > p:last-child {
  max-width: 500px;
  margin: 0;
  color: #62656d;
  font-size: 17px;
  line-height: 1.65;
}

.leadership-section {
  padding-bottom: clamp(90px, 9vw, 140px);
}

.leadership-heading {
  max-width: 920px;
  margin: 0 0 clamp(46px, 6vw, 80px);
  text-align: left;
}

.leader-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  min-height: 620px;
  margin-bottom: clamp(86px, 9vw, 134px);
  background: var(--brand-charcoal);
}

.leader-photo {
  overflow: hidden;
  background: #f1f1f1;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.leader-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 86px);
}

.leader-copy blockquote {
  margin: 0;
  color: #ffffff;
  font-size: clamp(27px, 2.75vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.leader-copy > p:last-child {
  max-width: 650px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.team-heading {
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.team-heading h3 {
  max-width: 620px;
  margin: 0;
  color: #111827;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  text-align: left;
}

.static-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px) clamp(16px, 2.5vw, 32px);
}

.static-team-photo {
  overflow: hidden;
  aspect-ratio: 0.78;
  background: linear-gradient(145deg, #f8fafb, #e7edf0);
}

.static-team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.static-team-card > p {
  margin: 17px 0 0;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1024px) {
  .brand-story-content {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .values-heading {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .brand-story-content,
  .purpose-grid,
  .values-heading,
  .about-values-grid,
  .leader-feature {
    grid-template-columns: 1fr;
  }

  .brand-story-section {
    background: #ffffff;
  }

  .brand-story-header {
    margin-bottom: 38px;
  }

  .brand-story-title h2 {
    font-size: 32px;
  }

  .story-eyebrow {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .story-origin,
  .story-belief {
    min-height: 0;
    padding: 34px 24px 40px;
  }

  .story-origin blockquote {
    font-size: 24px;
  }

  .story-origin > p:last-child {
    margin-top: 42px;
    padding-top: 0;
  }

  .story-belief h3 {
    font-size: 28px;
  }

  .story-belief > p:not(.brand-story-signature) {
    margin-top: 26px;
  }

  .brand-story-signature {
    margin-top: 34px !important;
    padding-top: 0;
    font-size: 16px;
  }

  .purpose-card {
    min-height: 370px;
    padding: 30px 24px;
  }

  .values-heading {
    gap: 24px;
  }

  .about-values-grid {
    border-left: 0;
  }

  .about-value-card {
    min-height: 290px;
    border-left: 1px solid #cfd8de;
  }

  .leader-feature {
    min-height: 0;
  }

  .leader-photo {
    aspect-ratio: 0.82;
  }

  .leader-copy {
    padding: 40px 24px 48px;
  }

  .team-heading h3 {
    text-align: left;
  }

  .static-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }

  .static-team-card > p {
    margin-top: 11px;
    font-size: 14px;
  }

}

/* Editorial About layout inspired by the reference site's long-form structure. */
.about-editorial {
  padding: clamp(76px, 7vw, 112px) 0 clamp(96px, 9vw, 144px);
  background: #ffffff;
}

.about-editorial-inner {
  max-width: 1240px;
}

.editorial-chapter + .editorial-chapter {
  margin-top: clamp(92px, 9vw, 142px);
}

.editorial-chapter > h2 {
  margin: 0 0 38px;
  color: var(--brand-blue-deep);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.editorial-block {
  margin-bottom: 54px;
}

.editorial-block h3 {
  margin: 0 0 8px;
  color: var(--brand-blue-deep);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.editorial-block p {
  max-width: 1160px;
  margin: 0 0 14px;
  color: #4e5968;
  font-size: 18px;
  line-height: 1.72;
}

.editorial-block p:last-child {
  margin-bottom: 0;
}

.editorial-story {
  margin-bottom: 76px;
}

.editorial-story > h3 {
  margin-bottom: 30px;
}

.editorial-story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 10vw, 150px);
  padding: 8px 20px 0;
}

.editorial-story-column p {
  margin: 0 0 34px;
  color: #4e5968;
  font-size: 18px;
  line-height: 1.72;
}

.editorial-story-opening {
  color: #26303d !important;
  font-size: 21px !important;
  line-height: 1.58 !important;
}

.editorial-story-signature {
  margin-top: 46px !important;
  color: #26303d !important;
  font-family: monospace;
  font-size: 18px !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.editorial-emphasis {
  margin: 24px auto 0 !important;
  color: var(--brand-blue-deep) !important;
  font-size: 20px !important;
  font-weight: 700;
  text-align: center;
}

.editorial-values {
  margin-bottom: 0;
}

.editorial-values-list {
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
}

.editorial-values-list article + article {
  margin-top: 22px;
}

.editorial-values-list h4 {
  margin: 0 0 4px;
  color: var(--brand-blue-deep);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.editorial-values-list p {
  max-width: none;
  margin: 0;
}

.editorial-people .editorial-block blockquote {
  max-width: 900px;
  margin: 30px auto 0;
  color: #2f3742;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.editorial-leader {
  width: min(390px, 100%);
  margin: 48px auto 80px;
  text-align: center;
}

.editorial-leader img {
  width: 100%;
  display: block;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
  background: #f7f7f7;
}

.editorial-leader figcaption,
.editorial-team-member figcaption {
  margin-top: 14px;
  color: #26303d;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.editorial-team-intro {
  margin-bottom: 34px;
}

.editorial-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 30px;
}

.editorial-team-member {
  min-width: 0;
  margin: 0;
}

.editorial-team-member img {
  width: 100%;
  display: block;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
  background: #f7f7f7;
}

.team-building-showcase {
  margin-top: clamp(82px, 8vw, 124px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #ffffff;
}

.team-building-feature {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #1f2933;
}

.team-building-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 31, 0.7) 0%, rgba(15, 23, 31, 0.18) 40%, rgba(15, 23, 31, 0.04) 70%);
}

.team-building-feature > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: center 62%;
}

.team-building-feature-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(44px, 5vw, 78px) 0;
  color: #ffffff;
  text-align: center;
}

.team-building-feature-copy > p:first-child {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-building-feature-copy h3 {
  max-width: 920px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.team-building-feature-copy > p:last-child {
  max-width: 900px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

.team-building-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 24px);
  padding: clamp(12px, 1.25vw, 24px);
  background: #ffffff;
}

.team-building-photo {
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8edf0;
}

.team-building-photo:nth-child(7) {
  grid-column: 3 / span 4;
}

.team-building-photo:nth-child(8) {
  grid-column: 7 / span 4;
}

.team-building-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .about-editorial {
    padding: 62px 0 84px;
  }

  .editorial-chapter + .editorial-chapter {
    margin-top: 84px;
  }

  .editorial-chapter > h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .editorial-block {
    margin-bottom: 44px;
  }

  .editorial-block h3 {
    font-size: 19px;
  }

  .editorial-block p {
    font-size: 16px;
    line-height: 1.72;
  }

  .editorial-story {
    margin-bottom: 58px;
  }

  .editorial-story > h3 {
    margin-bottom: 24px;
  }

  .editorial-story-columns {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .editorial-story-column p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .editorial-story-opening {
    font-size: 19px !important;
  }

  .editorial-story-signature {
    margin-top: 36px !important;
    font-size: 15px !important;
    white-space: normal;
  }

  .editorial-emphasis {
    font-size: 18px !important;
    text-align: left;
  }

  .editorial-values-list {
    text-align: left;
  }

  .editorial-values-list h4 {
    font-size: 19px;
  }

  .editorial-people .editorial-block blockquote {
    font-size: 21px;
    text-align: left;
  }

  .editorial-leader {
    width: min(310px, 100%);
    margin: 38px auto 62px;
  }

  .editorial-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .editorial-leader figcaption,
  .editorial-team-member figcaption {
    margin-top: 10px;
    font-size: 14px;
  }

  .team-building-showcase {
    margin-top: 68px;
  }

  .team-building-feature {
    aspect-ratio: 4 / 5;
  }

  .team-building-feature::after {
    background:
      linear-gradient(180deg, rgba(15, 23, 31, 0.34) 0%, rgba(15, 23, 31, 0.14) 28%, rgba(15, 23, 31, 0.03) 58%, rgba(15, 23, 31, 0) 100%);
  }

  .team-building-feature > img {
    object-position: center 64%;
  }

  .team-building-feature-copy {
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 0;
    text-shadow: 0 2px 10px rgba(15, 23, 31, 0.34);
  }

  .team-building-feature-copy h3 {
    font-size: 32px;
  }

  .team-building-feature-copy > p:last-child {
    margin-top: 18px;
    font-size: 16px;
  }

  .team-building-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .team-building-photo,
  .team-building-photo:nth-child(7),
  .team-building-photo:nth-child(8) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}
