.about-page {
  --about-deep: #282c2b;
  --about-charcoal: #353938;
  --about-cream: #f4f0e8;
  --about-soft: #faf8f4;
  --about-copy: #575d5b;
}

.about-page .landing-main {
  overflow: clip;
}

.about-page .eyebrow {
  margin: 0 0 18px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 80px));
  margin: 0 0 clamp(76px, 8vw, 124px);
  overflow: hidden;
  background: #09111b;
  grid-template-columns: 1fr;
}

.about-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgb(5 12 21 / 88%) 0%, rgb(5 12 21 / 68%) 28%, rgb(5 12 21 / 16%) 54%, rgb(5 12 21 / 0%) 76%);
  content: "";
  pointer-events: none;
}

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

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

.about-hero-media picture {
  position: absolute;
  inset: 0;
}

.about-hero-media img,
.about-hero-media video {
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.about-hero-video {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(48%, 720px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 116px) var(--gutter);
}

.about-hero-copy .eyebrow {
  color: #ff8275;
}

.about-hero-copy h1 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-size: clamp(50px, 4.7vw, 74px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .about-hero-copy h1 {
    background: linear-gradient(108deg, #fff 0%, #fff2d5 34%, #ffd071 66%, #ff8174 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
  }
}

.about-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.about-hero-copy h1 span:last-child {
  position: relative;
  margin-top: 0.18em;
  padding-left: clamp(32px, 4vw, 64px);
}

.about-hero-copy h1 span:last-child::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(20px, 2.4vw, 38px);
  height: 5px;
  background: #ff7468;
  content: "";
  transform: translateY(-50%);
}

.about-hero-facts {
  display: grid;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(90px, 9vw, 150px);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-hero-facts li {
  min-height: 142px;
  padding: 4px clamp(24px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.about-hero-facts li:last-child {
  border-right: 1px solid var(--line);
}

.about-hero-facts span,
.about-hero-facts strong,
.about-hero-facts small {
  display: block;
}

.about-hero-facts span {
  margin-bottom: 32px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-hero-facts strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.about-hero-facts small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.about-section {
  padding: clamp(92px, 10vw, 164px) var(--gutter);
}

.about-section h2 {
  margin: 0;
  color: var(--coral-deep);
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .about-section h2 {
    background: linear-gradient(108deg, var(--ink) 0%, var(--ink) 42%, var(--coral-deep) 74%, #885700 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
  }
}

.about-story {
  display: grid;
  max-width: 1600px;
  align-items: center;
  margin-inline: auto;
  padding-top: 0;
  gap: clamp(64px, 8vw, 132px);
  grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
}

.about-story-copy {
  max-width: 650px;
}

.about-story-copy h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.about-story-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--about-copy);
  font-size: 15px;
  line-height: 1.9;
}

.about-story-copy .lead-copy {
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 650;
  line-height: 1.75;
}

.about-story-gallery {
  min-width: 0;
  margin: 0;
}

.story-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  background: var(--about-cream);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.story-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.story-carousel-track {
  position: relative;
  display: flex;
  height: min(39vw, 590px);
  min-height: 500px;
  gap: clamp(12px, 1.4vw, 22px);
  padding-inline: 11%;
}

.story-slide {
  position: relative;
  flex: 0 0 78%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--about-cream);
  opacity: 0.45;
  scroll-snap-align: center;
  transform: scale(0.9);
  transition: opacity 320ms ease, transform 320ms ease;
}

.story-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slide:nth-child(1) img {
  object-position: 42% center;
}

.story-slide:nth-child(2) img {
  object-position: 48% center;
}

.story-slide:nth-child(3) img {
  object-position: 54% center;
}

.story-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.about-story-gallery > .story-slide {
  min-height: min(39vw, 590px);
}

.about-story-gallery > .story-slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  background: rgb(5 12 21 / 82%);
  color: var(--white);
  font-size: 11px;
  line-height: 1.65;
}

.story-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  gap: 20px;
}

.story-carousel-controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.story-carousel-controls > button:hover,
.story-carousel-controls > button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.story-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease;
}

.story-carousel-dots button.is-active {
  width: 24px;
  background: var(--coral-deep);
}

.about-offices {
  background: var(--about-cream);
}

.section-heading-split {
  display: grid;
  max-width: 1480px;
  align-items: end;
  margin: 0 auto clamp(58px, 7vw, 92px);
  gap: 72px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
}

.section-heading-split > p {
  margin: 0 0 8px;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.85;
}

.office-grid {
  display: grid;
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-grid article {
  min-width: 0;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.office-grid article:first-child {
  border-left: 1px solid var(--line);
}

.office-landmark {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #d8d4cc;
}

.office-landmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.office-grid article:hover .office-landmark img {
  transform: scale(1.035);
}

.office-card-copy {
  position: relative;
  min-height: 240px;
  padding: 30px clamp(28px, 3vw, 46px) 38px;
}

.office-card-copy > span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 850;
}

.office-card-copy > i {
  position: absolute;
  top: 28px;
  right: 34px;
  color: var(--coral-deep);
  font-size: 25px;
}

.office-grid h3 {
  margin: 58px 0 18px;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.04em;
}

.office-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.about-team {
  max-width: 1600px;
  margin-inline: auto;
}

.team-heading {
  display: grid;
  max-width: 1480px;
  margin: 0 auto clamp(68px, 7vw, 106px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  column-gap: 72px;
}

.team-heading .eyebrow,
.team-heading h2 {
  grid-column: 1;
}

.team-heading h2 {
  font-size: clamp(40px, 3.6vw, 56px);
  white-space: nowrap;
}

.team-heading > p:last-child {
  align-self: end;
  margin: 0 0 8px;
  color: var(--about-copy);
  font-size: 14px;
  line-height: 1.85;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.team-grid {
  display: grid;
  max-width: 1480px;
  margin: 0 auto;
  gap: clamp(56px, 6vw, 94px) clamp(24px, 4vw, 58px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  min-width: 0;
}

.team-card > i {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--about-soft);
  color: var(--coral-deep);
  font-size: clamp(42px, 5vw, 72px);
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--about-soft);
  border-radius: 50%;
  transition: transform 280ms ease;
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--about-soft);
  border-radius: 50%;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  object-position: 50% 48%;
  transform: none;
}

.team-card:hover img {
  transform: translateY(-5px);
}

.team-card-ceo:hover .team-card-photo img {
  transform: scale(1.025);
}

.team-card h3 {
  margin: 22px 0 5px;
  font-size: clamp(17px, 1.55vw, 22px);
  letter-spacing: -0.025em;
}

.team-card p {
  margin: 0;
  color: var(--about-copy);
  font-size: 12px;
  font-weight: 650;
}

.about-method {
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  background: var(--about-deep);
  color: var(--white);
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
}

.method-heading {
  max-width: 650px;
}

.method-heading .eyebrow {
  color: #ff8b7d;
}

.method-heading > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 14px;
  line-height: 1.9;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 28%);
  list-style: none;
}

.method-list li {
  display: grid;
  padding: 30px 0;
  gap: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  grid-template-columns: 50px minmax(0, 1fr);
}

.method-list li > span {
  color: #ff8b7d;
  font-size: 11px;
  font-weight: 850;
}

.method-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.method-list p {
  margin: 0;
  color: rgb(255 255 255 / 56%);
  font-size: 12px;
  line-height: 1.75;
}

.about-values {
  display: grid;
  gap: clamp(72px, 9vw, 150px);
  background: var(--about-soft);
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
}

.values-list {
  border-top: 2px solid var(--ink);
}

.values-list article {
  display: grid;
  padding: 24px 0;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px minmax(0, 1fr);
}

.values-list article > span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 850;
}

.values-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.values-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.about-cta {
  background: var(--coral);
}

@media (max-width: 1180px) {
  .about-story {
    gap: 64px;
    grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  }

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

  .about-method,
  .about-values {
    gap: 72px;
  }
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 620px;
  }

  .about-hero::before {
    background: linear-gradient(90deg, rgb(5 12 21 / 90%) 0%, rgb(5 12 21 / 65%) 42%, rgb(5 12 21 / 8%) 78%);
  }

  .about-hero-copy {
    width: min(58%, 520px);
  }

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

  .about-hero-facts li:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .about-story,
  .section-heading-split,
  .team-heading,
  .about-method,
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    max-width: 720px;
  }

  .story-carousel-track {
    height: 560px;
    min-height: 0;
  }

  .section-heading-split,
  .team-heading {
    gap: 34px;
  }

  .team-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .team-heading h2 {
    white-space: normal;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .office-grid article,
  .office-grid article:first-child {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .office-grid article:first-child {
    border-top: 0;
  }

  .about-method,
  .about-values {
    gap: 64px;
  }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: 720px;
    margin: 0 0 70px;
  }

  .about-hero::before {
    inset: 0;
    background: linear-gradient(180deg, rgb(5 12 21 / 72%) 0%, rgb(5 12 21 / 38%) 25%, rgb(5 12 21 / 0%) 52%, rgb(5 12 21 / 16%) 100%);
  }

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

  .about-hero-media img {
    width: 100%;
    margin: 0;
    object-position: center top;
  }

  .about-hero-video {
    display: none;
  }

  .about-hero-copy {
    width: 100%;
    justify-content: flex-start;
    padding: 66px 24px 32px;
  }

  .about-hero-copy h1 {
    max-width: 330px;
    font-size: clamp(38px, 11vw, 48px);
  }

  .about-hero-copy h1 span:last-child {
    padding-left: 24px;
  }

  .about-hero-copy h1 span:last-child::before {
    width: 14px;
    height: 3px;
  }

  .about-hero-facts {
    padding: 0 24px 78px;
    grid-template-columns: 1fr;
  }

  .about-hero-facts li,
  .about-hero-facts li:nth-child(3) {
    min-height: 112px;
    padding: 22px 18px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .about-hero-facts li:first-child {
    border-top: 0;
  }

  .about-hero-facts span {
    margin-bottom: 14px;
  }

  .about-section {
    padding: 76px 24px;
  }

  .about-section h2 {
    font-size: 38px;
  }

  .about-story {
    gap: 54px;
  }

  .about-story-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .about-story-copy .lead-copy {
    font-size: 18px;
  }

  .about-story-gallery {
    width: calc(100% + 24px);
  }

  .story-carousel-track {
    height: 410px;
    gap: 10px;
    padding-inline: 9%;
  }

  .story-slide {
    flex-basis: 82%;
  }

  .story-carousel-controls {
    padding-right: 24px;
  }

  .office-card-copy {
    min-height: 220px;
    padding-inline: 26px;
  }

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

  .team-card h3 {
    margin-top: 16px;
    font-size: 16px;
  }

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

  .method-list li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .about-values {
    gap: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-video {
    display: none;
  }

  .about-page *,
  .about-page *::before,
  .about-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
