:root {
  color-scheme: light;
  --paper: #f2f3f4;
  --paper-texture: var(--paper);
  --paper-texture-size: auto;
  --ink: #1f211f;
  --muted: #6a655e;
  --line: rgba(31, 33, 31, 0.18);
  --charcoal: #111310;
  --white: #ffffff;
  --header-text: rgba(226, 222, 211, 0.82);
  --header-text-soft: rgba(226, 222, 211, 0.68);
  --ui-font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --nav-height: 128px;
  --content-offset: 66px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--ui-font);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-shell {
  min-height: 100vh;
}

.project-hero {
  height: 100vh;
  padding-top: var(--content-offset);
  display: grid;
  grid-template-columns: minmax(320px, 32vw) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
}

.project-title {
  margin: 0 0 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  white-space: nowrap;
}

.project-title small {
  display: block;
  margin-top: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Segoe UI", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  font-style: normal;
}

.project-intro {
  display: flex;
  height: calc(100vh - var(--content-offset));
  flex-direction: column;
  justify-content: flex-start;
  max-width: none;
  padding: clamp(34px, 6vh, 74px) clamp(42px, 6vw, 104px) 42px clamp(42px, 9vw, 118px);
}

.intro-line {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.1vw, 18px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}

.intro-copy {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "PingFang SC", serif;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.85;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 16px;
  min-width: 174px;
  min-height: 46px;
  margin-top: 46px;
  padding: 0 24px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.discover-link::after {
  content: none;
}

.discover-link::before {
  content: "↓";
  font-size: 21px;
  line-height: 1;
}

.hero-media {
  height: calc(100vh - var(--content-offset));
  min-height: 0;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

.bleed-image {
  width: 100%;
  height: 82vh;
  max-height: 100vh;
  object-fit: cover;
}

.caption-scene {
  --caption-top-space: 40px;
  --caption-bottom-space: 120px;
  --caption-text-height: 30px;
  display: grid;
  grid-template-rows:
    minmax(0, calc(100vh - var(--caption-top-space) - var(--caption-bottom-space) - var(--caption-text-height)))
    var(--caption-bottom-space)
    var(--caption-text-height);
  height: 100vh;
  margin-top: 0;
  padding-top: var(--caption-top-space);
  background: var(--white);
}

.caption-scene img {
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption-line {
  display: grid;
  grid-row: 3;
  align-items: center;
  justify-items: center;
  min-height: 30px;
  padding: 0 24px;
  color: #3b3833;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.caption-line p {
  max-width: 1120px;
  margin: 0;
}

.full-screen-image {
  height: 100vh;
  background: var(--paper);
}

.full-screen-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.editorial-slider {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(520px, 2.05fr) minmax(250px, 0.75fr);
  gap: clamp(20px, 2.2vw, 44px);
  align-items: end;
  min-height: 100vh;
  padding: calc(var(--content-offset) + 44px) clamp(42px, 7.4vw, 152px) clamp(48px, 6vw, 92px);
  background: var(--paper);
  color: var(--ink);
}

.editorial-slide {
  display: none;
  grid-template-columns: minmax(240px, 0.78fr) minmax(440px, 1.12fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 3.8vw, 72px);
  align-items: end;
  min-height: calc(100vh - var(--content-offset) - 92px);
}

.editorial-slide.is-active {
  display: grid;
  animation: slideIn 0.46s ease both;
}

.editorial-slide.is-leaving {
  display: grid;
  animation: slideOut 0.34s ease both;
}

.slider-quote {
  align-self: center;
  display: grid;
  gap: 0.04em;
  max-width: 420px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 58px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
  text-transform: uppercase;
}

.slider-quote span {
  display: block;
  white-space: nowrap;
}

.slider-media {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(18px, 1.4vw, 24px);
  align-items: end;
}

.slider-thumb-viewport,
.slider-main-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.68 / 1;
  background: #ebe8e1;
}

.slider-thumb-viewport {
  width: min(30.6vh, 340px);
  height: min(45vh, 500px);
}

.slider-main-viewport {
  width: min(54.4vh, 598px);
  height: min(80vh, 880px);
}

.slider-thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-main-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--slider-enter, 100%), 0, 0);
  transition: transform 0.74s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slider-main-image.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slider-main-image.is-leaving {
  z-index: 2;
  opacity: 1;
  transform: translate3d(var(--slider-exit, -100%), 0, 0);
}

.slider-copy {
  align-self: end;
  position: relative;
  z-index: 6;
  max-width: 360px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 7;
  margin-bottom: 28px;
}

.slider-arrow {
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow:focus {
  outline: none;
}

.slider-arrow:focus-visible {
  outline: 1px solid rgba(31, 33, 31, 0.28);
  outline-offset: 4px;
}

.slider-count,
.carousel-count {
  display: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1;
  color: rgba(31, 33, 31, 0.58);
}

.slider-copy h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 30px);
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
}

.slider-copy p {
  margin: 0;
  color: #3f3b35;
  font-family: Georgia, "Times New Roman", "PingFang SC", serif;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.8;
}

.slider-copy-panel {
  display: none;
}

.slider-copy-panel.is-active {
  display: block;
}

.text-image-chapter {
  min-height: 155vh;
  padding: clamp(116px, 10.5vw, 188px) clamp(44px, 7.4vw, 152px) clamp(92px, 8vw, 148px);
  background: #f7f4ee;
}

.text-image-copy {
  max-width: 860px;
}

.text-image-copy h2 {
  margin: 0 0 clamp(60px, 6vw, 94px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.8vw, 84px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.text-image-copy h3 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 28px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.text-image-copy p {
  max-width: 720px;
  margin: 0;
  color: #3f3b35;
  font-family: Georgia, "Times New Roman", "PingFang SC", serif;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.85;
}

.text-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(76px, 12vw, 246px);
  align-items: start;
  max-width: 1640px;
  margin-top: clamp(72px, 7.4vw, 118px);
}

.text-image-grid img {
  width: 100%;
  aspect-ratio: 0.68 / 1;
  height: auto;
  object-fit: cover;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(var(--slide-enter, 40px));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(var(--slide-exit, -40px));
  }
}

.statement {
  display: grid;
  min-height: 56vh;
  place-items: center;
  padding: calc(var(--content-offset) + 34px) clamp(22px, 7vw, 112px) clamp(54px, 7vw, 92px);
  text-align: center;
}

.statement p {
  max-width: 1180px;
  margin: 0 auto;
  font-family: "Songti SC", "STSong", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.18;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
  min-height: 100vh;
  padding: var(--content-offset) clamp(22px, 5vw, 78px) clamp(60px, 8vw, 112px);
}

.image-pair img:first-child {
  margin-top: clamp(80px, 14vh, 160px);
}

.image-pair img {
  aspect-ratio: 4 / 5;
  max-height: calc(100vh - var(--content-offset) - 70px);
  object-fit: cover;
}

.case-sticky-scroll {
  --frame-y: clamp(64px, 11vh, 126px);
  --frame-x: clamp(64px, 5vw, 120px);
  --canvas-pad-top: 50px;
  --canvas-pad-left: 50px;
  --canvas-pad-right: 50px;
  --canvas-pad-bottom: 50px;
  position: relative;
  min-height: calc(430vh + var(--canvas-pad-top));
  padding: var(--frame-y) var(--frame-x);
  background: var(--paper);
}

.case-sticky-frame {
  position: sticky;
  top: calc(var(--canvas-pad-top) * -1);
  height: calc(100vh + var(--canvas-pad-top));
  min-height: 0;
}

.case-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(34px, 5.2vw, 92px);
  width: 100%;
  height: 100%;
  padding: var(--canvas-pad-top) var(--canvas-pad-right) var(--canvas-pad-bottom) var(--canvas-pad-left);
  background: #ffffff;
  overflow: hidden;
}

.case-story-viewport {
  height: calc(100% + var(--canvas-pad-bottom));
  overflow: hidden;
}

.case-story-strip {
  display: grid;
  gap: clamp(42px, 7vh, 76px);
  transform: translate3d(0, calc(var(--story-shift, 0) * -1px), 0);
  will-change: transform;
}

.case-story-image {
  width: 100%;
  height: calc(100vh - (var(--frame-y) * 2) - var(--canvas-pad-top));
  min-height: 0;
  object-fit: cover;
}

.case-story-image.is-tall {
  height: calc(100vh - (var(--frame-y) * 2) - var(--canvas-pad-top));
}

.case-sticky-copy {
  display: flex;
  justify-self: end;
  width: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 0 clamp(22px, 3vh, 42px);
}

.case-copy-main {
  max-width: 520px;
}

.case-copy-kicker {
  margin: 0 0 clamp(26px, 4.4vh, 48px);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(14px, 1.08vw, 20px);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.32;
  text-transform: uppercase;
}

.case-copy-title {
  margin: 0 0 clamp(28px, 4vh, 44px);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(42px, 5.2vw, 86px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.case-copy-title small {
  display: block;
  margin-top: 18px;
  font-family: var(--ui-font);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 300;
  line-height: 1.2;
}

.case-copy-body {
  max-width: 460px;
  margin: 0;
  color: #6a655f;
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 2.02;
}

.case-project-meta {
  max-width: 460px;
  margin: 0;
  opacity: var(--meta-opacity, 0);
  transform: translateY(calc((1 - var(--meta-opacity, 0)) * 18px));
  transition: opacity 0.2s linear, transform 0.2s linear;
}

.case-project-meta div {
  margin-top: 15px;
}

.case-project-meta dt {
  display: inline;
  margin-right: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 0.95vw, 18px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.case-project-meta dd {
  display: inline;
  margin: 0;
  color: #2b2a27;
  font-family: Georgia, "Times New Roman", "PingFang SC", serif;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.5;
}

.case-project-meta .meta-services dd {
  display: block;
  margin-top: 9px;
  line-height: 1.7;
}

.light-chapter {
  padding: clamp(66px, 10vw, 132px) clamp(22px, 6vw, 96px);
  background: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.section-grid img {
  aspect-ratio: 4 / 5;
  max-height: 100vh;
  object-fit: cover;
}

.section-text h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
}

.section-text p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2.05;
}

.closing-gallery {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: var(--content-offset) 0 0;
  background: var(--paper);
}

body,
.project-hero,
.caption-scene,
.full-screen-image,
.editorial-slider,
.text-image-chapter,
.statement,
.image-pair,
.light-chapter,
.closing-gallery {
  background: var(--paper);
}

.closing-gallery .carousel-arrow {
  color: rgba(236, 234, 226, 0.92);
}

.carousel-track {
  position: relative;
  width: 100vw;
  height: calc(100vh - var(--content-offset));
  overflow: hidden;
}

.carousel-track img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: translateX(var(--carousel-enter, 100%));
  transition: transform 0.74s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-track img.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0);
}

.carousel-track img.is-leaving {
  z-index: 2;
  opacity: 1;
  transform: translateX(var(--carousel-exit, -100%));
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(236, 234, 226, 0.92);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-arrow:focus {
  outline: none;
}

.carousel-arrow:focus-visible {
  outline: 1px solid rgba(236, 234, 226, 0.45);
  outline-offset: 4px;
}

.carousel-arrow.prev {
  left: clamp(18px, 4vw, 72px);
}

.carousel-arrow.next {
  right: clamp(18px, 4vw, 72px);
}

.carousel-count {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 6;
  transform: translateX(-50%);
}

@media (max-width: 860px) {
  :root {
    --nav-height: 88px;
    --content-offset: 58px;
  }

  .section-grid,
  .text-image-grid {
    grid-template-columns: 1fr;
  }

  .project-hero {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
    padding-top: var(--content-offset);
  }

  .project-intro {
    height: auto;
    padding: 44px 42px 38px;
  }

  .project-title {
    white-space: normal;
  }

  .hero-media {
    height: auto;
    min-height: 0;
    padding: 0 18px 38px;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .caption-scene {
    display: block;
    height: auto;
    margin-top: 0;
    padding: var(--content-offset) 18px 44px;
  }

  .caption-scene img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .caption-line {
    min-height: 0;
    margin-top: 26px;
    padding: 0 4px;
    font-size: clamp(18px, 5vw, 30px);
    line-height: 1.25;
    white-space: normal;
  }

  .case-sticky-scroll {
    min-height: auto;
    padding: 18px;
  }

  .case-sticky-frame {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .case-canvas {
    display: block;
    height: auto;
    padding: 30px 18px 34px;
  }

  .case-sticky-copy {
    display: block;
    padding: 0 0 28px;
  }

  .case-copy-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .case-copy-title {
    margin-bottom: 22px;
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.05;
  }

  .case-copy-title small {
    margin-top: 10px;
    font-size: 22px;
  }

  .case-copy-body {
    font-size: 14px;
    line-height: 1.9;
  }

  .case-project-meta {
    margin-top: 26px;
    opacity: 1;
    transform: none;
  }

  .case-project-meta div {
    margin-top: 12px;
  }

  .case-story-viewport {
    height: auto;
    margin-block: 0;
    overflow: visible;
  }

  .case-story-strip {
    gap: 22px;
    transform: none !important;
  }

  .case-story-image,
  .case-story-image.is-tall {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .full-screen-image {
    height: 100svh;
    padding-top: var(--content-offset);
    display: grid;
    place-items: center;
  }

  .full-screen-image img {
    width: 100%;
    height: calc(100svh - var(--content-offset));
    object-fit: contain;
    object-position: center;
  }

  .editorial-slider {
    grid-template-columns: 1fr;
    padding: calc(var(--content-offset) + 30px) 22px 58px;
  }

  .slider-quote {
    font-size: clamp(34px, 10vw, 52px);
  }

  .slider-quote span {
    white-space: normal;
  }

  .slider-controls {
    gap: 14px;
    margin-bottom: 20px;
  }

  .slider-arrow {
    display: grid;
    place-items: center;
    width: 38px;
    height: 32px;
    color: rgba(31, 33, 31, 0.82);
    font-size: 26px;
  }

  .slider-count {
    display: inline-block;
    margin-left: 4px;
  }

  .slider-media {
    grid-template-columns: 1fr;
  }

  .slider-thumb-viewport,
  .slider-main-viewport {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 0.68 / 1;
    background: var(--paper);
  }

  .slider-main-viewport {
    width: min(100%, 440px);
    height: auto;
  }

  .slider-thumb-image,
  .slider-main-image {
    object-fit: contain;
    object-position: center;
  }

  .text-image-chapter {
    padding: calc(var(--content-offset) + 34px) 22px 58px;
  }

  .text-image-copy h2 {
    font-size: clamp(36px, 10vw, 58px);
    margin-bottom: 34px;
  }

  .text-image-copy p {
    max-width: none;
  }

  .text-image-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 44px;
  }

  .text-image-grid img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img:first-child {
    margin-top: 0;
  }

  .fact-row {
    grid-template-columns: 88px 1fr;
  }

  .carousel-track {
    width: 100%;
    height: calc(100svh - var(--content-offset));
    background: var(--paper);
  }

  .carousel-track img {
    object-fit: contain;
    object-position: center;
  }

  .carousel-arrow {
    top: calc(var(--content-offset) + ((100svh - var(--content-offset)) / 2));
    width: 40px;
    height: 40px;
    color: rgba(31, 33, 31, 0.86);
    background: rgba(242, 243, 244, 0.58);
    border: 1px solid rgba(31, 33, 31, 0.12);
    border-radius: 999px;
    font-size: 28px;
    text-shadow: none;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
  }

  .closing-gallery .carousel-arrow {
    color: rgba(31, 33, 31, 0.86);
    text-shadow: none;
  }

  .carousel-count {
    display: block;
    bottom: 24px;
    padding: 7px 10px;
    background: rgba(242, 243, 244, 0.62);
    border: 1px solid rgba(31, 33, 31, 0.1);
    border-radius: 999px;
    color: rgba(31, 33, 31, 0.66);
    backdrop-filter: blur(10px);
  }

  .slider-arrow:focus-visible,
  .carousel-arrow:focus-visible {
    outline: none;
  }

  .carousel-arrow.prev {
    left: 14px;
  }

  .carousel-arrow.next {
    right: 14px;
  }

  .closing-gallery {
    min-height: 100svh;
    padding: var(--content-offset) 0 0;
  }
}


.slider-main-viewport,
.editorial-slider,
.carousel-track {
  cursor: grab;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  user-select: none;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: visible;
}

.site-shell {
  overflow-x: clip;
}

.slider-main-viewport.is-dragging,
.editorial-slider.is-dragging,
.carousel-track.is-dragging {
  cursor: grabbing;
}

.film-strip-track {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.film-strip-track > img {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  display: block !important;
  flex: 0 0 100%;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
  backface-visibility: hidden;
}


