:root {
  --about-black: #050505;
  --about-white: #fff;
  --about-muted: #6f6f6f;
  --about-line: rgba(0, 0, 0, 0.12);
  --about-font: var(--koe-rmd-font, "IBM Plex Sans JP", "Helvetica Neue", Arial, sans-serif);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.about-page {
  margin: 0;
  background: var(--about-white);
  color: var(--about-black);
  font-family: var(--about-font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.about-hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.about-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  padding: clamp(20px, 2.1vw, 34px) clamp(28px, 3.7vw, 70px);
  pointer-events: none;
}

.about-logo,
.about-desktop-nav,
.about-header-actions {
  pointer-events: auto;
}

.about-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(128px, 11.7vw, 216px);
  line-height: 0;
  transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
}

.about-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-desktop-nav {
  display: flex;
  position: fixed;
  top: clamp(40px, 3.1vw, 58px);
  right: clamp(38px, 3.7vw, 70px);
  z-index: 1002;
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-right: 0;
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: none;
}

.about-desktop-nav a {
  color: #fff;
  opacity: 0.72;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.about-desktop-nav a:hover,
.about-desktop-nav a[aria-current="page"] {
  opacity: 1;
}

.about-contact-pill {
  color: #111;
  text-decoration: none;
}

.about-desktop-menu-lines {
  position: relative;
  display: none;
  width: 42px;
  height: 28px;
  margin-left: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.35));
}

.about-desktop-menu-lines span {
  position: absolute;
  right: 0;
  width: 26px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: top 180ms ease, transform 180ms ease;
}

.about-desktop-menu-lines span:first-child {
  top: 9px;
}

.about-desktop-menu-lines span:last-child {
  top: 17px;
}

.about-desktop-nav.is-scrolled {
  top: clamp(24px, 2vw, 38px);
  gap: 0;
}

.about-desktop-nav.is-scrolled .about-desktop-menu-lines {
  display: block;
}

.about-desktop-nav.is-scrolled a {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 134px;
  padding: 8px 0;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.about-desktop-nav.is-scrolled a:nth-of-type(2) {
  top: calc(100% + 42px);
}

.about-desktop-nav.is-scrolled a:nth-of-type(3) {
  top: calc(100% + 72px);
}

.about-desktop-nav.is-scrolled a:nth-of-type(4) {
  top: calc(100% + 102px);
}

.about-desktop-nav.is-scrolled.is-open a {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.about-desktop-nav.is-open .about-desktop-menu-lines span:first-child {
  top: 14px;
  transform: rotate(24deg);
}

.about-desktop-nav.is-open .about-desktop-menu-lines span:last-child {
  top: 14px;
  transform: rotate(-24deg);
}

.about-header-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.1vw, 30px);
}

.about-contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 118px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-menu-lines {
  position: relative;
  width: 44px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
}

.about-menu-lines span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: currentColor;
}

.about-menu-lines span:first-child {
  top: 10px;
}

.about-menu-lines span:last-child {
  top: 18px;
}

.about-mobile-nav {
  display: none;
}

.about-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease;
}

@media (min-width: 981px) {
  .about-header {
    padding: var(--koe-logo-desktop-top, 17px) var(--koe-logo-desktop-left, 24px);
  }

  .about-logo {
    width: var(--koe-logo-desktop-width, 149px);
    max-width: var(--koe-logo-desktop-width, 149px);
    flex: 0 0 var(--koe-logo-desktop-width, 149px);
  }

  .about-logo img {
    width: var(--koe-logo-desktop-width, 149px);
    max-width: var(--koe-logo-desktop-width, 149px);
  }
}

.about-mobile-menu a {
  display: block;
  padding: 12px;
  color: #050505;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.about-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.about-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
  color: #fff;
  isolation: isolate;
}

.about-hero-media,
.about-hero-video,
.about-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-media,
.about-hero-video {
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.88) contrast(1.06) brightness(0.82);
}

.about-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 50% 43%, rgba(0, 0, 0, 0.12), transparent 28%);
}

.about-hero-marquee {
  position: absolute;
  top: clamp(154px, 19vh, 196px);
  left: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.66);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(2px);
  font-size: clamp(10px, 0.66vw, 12px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.about-hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding-block: 8px;
  animation: about-hero-marquee 38s linear infinite;
  will-change: transform;
}

@keyframes about-hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 17px), 0, 0);
  }
}

.about-hero-content {
  position: absolute;
  left: clamp(174px, 17.1vw, 340px);
  bottom: clamp(120px, 15vh, 185px);
  z-index: 2;
  width: min(860px, calc(100vw - 72px));
  transform: none;
}

.about-hero-content > p:last-child {
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin: 0;
  font-size: clamp(18px, 1.05vw, 22px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.about-hero-content span {
  display: block;
}

.about-hero-content span:first-child {
  white-space: nowrap;
}

.about-hero-content span:nth-child(2) {
  max-width: 940px;
}

.about-services {
  background: #fff;
}

.about-service {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(76px, 0.28fr) minmax(360px, 0.9fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3.2vw, 56px);
  --about-service-block-gap: clamp(34px, 3.8vw, 64px);
  padding: var(--about-service-block-gap) clamp(22px, 4.2vw, 82px);
  border-top: 0;
}

.about-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 3vw, 56px);
  right: clamp(22px, 3vw, 56px);
  height: 1px;
  background: var(--about-line);
}

.about-service-copy,
.about-service-gallery {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-service-gallery {
  transition-delay: 120ms;
}

.about-service.is-visible .about-service-copy,
.about-service.is-visible .about-service-gallery {
  opacity: 1;
  transform: translateY(0);
}

.about-service.is-visible .about-service-capabilities li {
  opacity: 1;
  transform: translateY(0);
}

.about-service-flip .about-service-copy {
  order: initial;
}

.about-service-copy {
  align-self: start;
  padding-top: clamp(20px, 2vw, 38px);
}

.about-service-rank {
  position: sticky;
  top: 118px;
  align-self: start;
  padding-top: 0;
}

.about-service-rank span {
  display: block;
  margin-bottom: 4px;
  color: var(--about-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-service-rank strong {
  display: block;
  font-size: clamp(54px, 5.8vw, 108px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.about-service-label {
  margin: 0 0 20px;
  color: var(--about-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-service-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 4.2vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-service-copy p:not(.about-service-label) {
  max-width: 560px;
  margin: clamp(22px, 3vw, 42px) 0 0;
  color: #272727;
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1.62;
  letter-spacing: -0.015em;
}

.about-service-copy p:not(.about-service-label) + p {
  margin-top: 18px;
}

.about-service-capabilities {
  display: block;
  max-width: 620px;
  margin: clamp(38px, 4.2vw, 64px) 0 0;
  color: #050505;
}

.about-cap-label {
  display: block;
  margin-bottom: clamp(14px, 1.2vw, 22px);
  color: #2f2f2f;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: lowercase;
}

.about-service-capabilities ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-service-capabilities li {
  margin: 0;
  color: #050505;
  font-size: clamp(22px, 2.1vw, 38px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-service-capabilities li:nth-child(1) { transition-delay: 180ms; }
.about-service-capabilities li:nth-child(2) { transition-delay: 215ms; }
.about-service-capabilities li:nth-child(3) { transition-delay: 250ms; }
.about-service-capabilities li:nth-child(4) { transition-delay: 285ms; }
.about-service-capabilities li:nth-child(5) { transition-delay: 320ms; }
.about-service-capabilities li:nth-child(6) { transition-delay: 355ms; }
.about-service-capabilities li:nth-child(7) { transition-delay: 390ms; }
.about-service-capabilities li:nth-child(8) { transition-delay: 425ms; }
.about-service-capabilities li:nth-child(9) { transition-delay: 460ms; }
.about-service-capabilities li:nth-child(10) { transition-delay: 495ms; }

.about-service-primary .about-service-copy p:not(.about-service-label):not(.about-service-capabilities) {
  max-width: 560px;
}

.about-service-gallery {
  position: relative;
  align-self: stretch;
  --about-gallery-row-height: clamp(210px, 16vw, 270px);
  height: calc((var(--about-gallery-row-height) * 2) + 18px);
  min-height: 0;
  overflow: hidden;
  background: transparent;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0, #000 7%, #000 93%, rgba(0, 0, 0, 0.88) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0, #000 7%, #000 93%, rgba(0, 0, 0, 0.88) 100%);
}

.about-service-track {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 18px;
  height: auto;
  min-height: 0;
  grid-auto-rows: var(--about-gallery-row-height);
  animation: about-gallery-roll 16s linear infinite;
  will-change: transform;
}

.about-service-track-reverse {
  animation-name: about-gallery-roll-reverse;
}

.about-service-gallery:hover .about-service-track {
  animation-play-state: running;
}

.about-service-track img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: #ddd;
}

@media (min-width: 901px) {
  .about-service-copy {
    position: relative;
    left: clamp(-28px, -1.6vw, -16px);
  }

  .about-service-copy p:not(.about-service-label),
  .about-service-capabilities {
    margin-left: clamp(28px, 3.8vw, 68px);
  }

  .about-service-gallery {
    --about-gallery-gap: 18px;
    height: 100%;
    min-height: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .about-service-track {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    gap: var(--about-gallery-gap);
    height: 100%;
    grid-auto-rows: calc((100% - var(--about-gallery-gap)) / 2 + 34px);
    animation-name: about-gallery-roll-desktop;
    animation-duration: 16s;
  }

  .about-service-track-reverse {
    animation-name: about-gallery-roll-desktop-reverse;
  }
}

@keyframes about-gallery-roll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, calc(-50% - 9px), 0);
  }
}

@keyframes about-gallery-roll-reverse {
  from {
    transform: translate3d(0, calc(-50% - 9px), 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes about-gallery-roll-desktop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, calc(-150% - 129px), 0);
  }
}

@keyframes about-gallery-roll-desktop-reverse {
  from {
    transform: translate3d(0, calc(-150% - 129px), 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.about-view-works-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(62px, 8vw, 112px) 22px clamp(92px, 10vw, 150px);
  border-top: 0;
}

.about-view-works-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 3vw, 56px);
  right: clamp(22px, 3vw, 56px);
  height: 1px;
  background: var(--about-line);
}

.about-view-works {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #222;
  text-decoration: none;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-view-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 34px;
  border-radius: 999px;
  background: #242424;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
}

.about-view-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.about-view-works:hover .about-view-icon {
  transform: translateX(4px);
  background: #000;
}

@keyframes about-contact-fade-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .about-header {
    grid-template-columns: auto 1fr;
    z-index: 1100;
    padding: 0;
  }

  .about-logo {
    position: fixed;
    top: var(--koe-logo-mobile-top, 26px);
    left: var(--koe-logo-mobile-left, 22px);
    z-index: 1102;
    width: var(--koe-logo-mobile-width, 118px);
    max-width: var(--koe-logo-mobile-width, 118px);
  }

  .about-logo img {
    width: var(--koe-logo-mobile-width, 118px);
    max-width: var(--koe-logo-mobile-width, 118px);
  }

  .about-header.is-logo-hidden .about-logo {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    pointer-events: none;
  }

  .about-desktop-nav {
    display: none;
  }

  .about-header-actions {
    position: static;
    display: block;
    justify-self: auto;
    width: auto;
    height: auto;
    pointer-events: none;
  }

  .about-mobile-nav {
    position: fixed;
    top: 74px;
    right: 22px;
    z-index: 1099;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 156px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .about-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-mobile-nav a {
    color: #111;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
  }

  .about-hero-marquee {
    top: 108px;
  }

  .about-contact-pill {
    position: fixed;
    top: var(--koe-header-contact-mobile-top, 23px);
    right: var(--koe-header-contact-mobile-right, 76px);
    z-index: 1102;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: var(--koe-header-contact-gap, 8px);
    width: var(--koe-header-contact-rendered-width, 117px);
    min-width: var(--koe-header-contact-rendered-width, 117px);
    height: var(--koe-header-contact-height, 36px);
    min-height: var(--koe-header-contact-height, 36px);
    padding: var(--koe-header-contact-padding, 0 16px);
    box-sizing: border-box;
    border: var(--koe-header-contact-border, 1px solid rgba(0, 0, 0, 0.14));
    background: var(--koe-header-contact-bg, rgba(255, 255, 255, 0.82));
    box-shadow: var(--koe-header-contact-shadow, 0 10px 28px rgba(0, 0, 0, 0.08));
    backdrop-filter: blur(16px);
    color: var(--koe-header-contact-color, #050505);
    font-size: var(--koe-header-contact-font-size, 11px);
    font-weight: var(--koe-header-contact-font-weight, 600);
    letter-spacing: var(--koe-header-contact-letter-spacing, 0.07em);
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
    pointer-events: auto;
    animation: about-contact-fade-in 700ms ease both;
  }

  .about-contact-pill span:first-child {
    color: inherit;
    font-size: var(--koe-header-contact-font-size, 11px);
    font-weight: var(--koe-header-contact-font-weight, 600);
    letter-spacing: var(--koe-header-contact-letter-spacing, 0.07em);
    line-height: 1;
  }

  .about-contact-pill span[aria-hidden="true"] {
    display: none;
  }

  .about-contact-pill::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 5px;
    height: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }

  .about-menu-lines {
    position: fixed;
    top: var(--koe-header-menu-mobile-top, 25px);
    right: var(--koe-header-menu-mobile-right, 22px);
    z-index: 1102;
    width: var(--koe-header-menu-width, 36px);
    height: var(--koe-header-menu-height, 30px);
    transform: none;
    pointer-events: auto;
  }

  .about-menu-lines span {
    transition: top 180ms ease, transform 180ms ease;
  }

  .about-header.is-menu-open .about-menu-lines span:first-child {
    top: 14px;
    transform: rotate(28deg);
  }

  .about-header.is-menu-open .about-menu-lines span:last-child {
    top: 14px;
    transform: rotate(-28deg);
  }

  .about-hero-content {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-hero-content span:first-child {
    white-space: normal;
  }

  .about-service,
  .about-service-flip {
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 34px 12px 28px;
    border-top: 0;
  }

  .about-service::before,
  .about-service-flip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--about-line);
  }

  .about-service-rank {
    position: static;
    display: block;
    padding-top: 0;
  }

  .about-service-rank span {
    margin-bottom: 9px;
  }

  .about-service-rank strong {
    font-size: clamp(54px, 16vw, 74px);
  }

  .about-service-copy {
    padding: 18px 10px 0 32px;
  }

  .about-service-copy h2 {
    max-width: 360px;
    font-size: clamp(28px, 8.5vw, 42px);
    line-height: 1.1;
  }

  .about-service-copy p:not(.about-service-label) {
    font-size: 16px;
  }

  .about-service-capabilities {
    grid-template-columns: 1fr;
    margin-top: clamp(28px, 8vw, 42px);
    margin-bottom: 0;
    padding-inline: 0;
  }

  .about-cap-label {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .about-service-capabilities li {
    font-size: clamp(21px, 6vw, 29px);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  .about-service-gallery {
    width: calc(100% + 24px);
    min-height: 0;
    height: auto;
    max-height: none;
    margin-top: clamp(32px, 8vw, 48px);
    margin-inline: -12px;
    background: transparent;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .about-service-track {
    position: relative;
    inset: auto;
    display: flex;
    width: max-content;
    gap: 10px;
    height: auto;
    min-height: 0;
    animation: about-gallery-roll-mobile 34s linear infinite;
  }

  .about-service-track-reverse {
    animation-name: about-gallery-roll-mobile;
  }

  .about-service-track img {
    flex: 0 0 min(78vw, 330px);
    width: min(78vw, 330px);
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .about-hero-content {
    left: 50%;
    bottom: clamp(76px, 11svh, 110px);
    width: min(336px, calc(100vw - 48px));
    transform: translateX(-50%);
  }

  .about-hero-media,
  .about-hero-video {
    opacity: 0.74;
  }

  .about-hero-content > p:last-child {
    max-width: 336px;
    gap: 11px;
    font-size: clamp(13px, 3.45vw, 15.5px);
    font-weight: 500;
    line-height: 1.34;
  }

  .about-hero-content span:first-child {
    white-space: normal;
  }

  .about-service-copy p:not(.about-service-label) {
    font-size: clamp(12.5px, 3.35vw, 14px);
    line-height: 1.56;
  }

  .about-service-primary .about-service-copy p:not(.about-service-label):not(.about-service-capabilities) {
    font-size: clamp(12px, 3.2vw, 13.5px);
    line-height: 1.55;
  }

  .about-service-primary .about-service-capabilities {
    margin-top: clamp(38px, 10vw, 58px);
  }

  .about-service-primary .about-service-capabilities li {
    font-size: clamp(19px, 5.5vw, 25px);
  }

  .about-service-gallery:hover .about-service-track {
    animation-play-state: running;
  }
}

@keyframes about-gallery-roll-mobile {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 5px), 0, 0);
  }
}

@keyframes about-gallery-roll-mobile-reverse {
  from {
    transform: translate3d(calc(-50% - 5px), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .about-view-icon {
    transition: none;
  }

  .about-service-track {
    animation: none;
  }
}
