:root {
  --bg: #000000;
  --panel: #000000;
  --line: #252533;
  --text: #f3f3f0;
  --muted: #9ca0ad;
  --accent: #f2b705;
  --banner-h: 50px;
  --screen-vh: 100dvh;
  --hero-snap-bottom: 54px;
  --hero-snap-size: 44px;
  --hero-snap-rail-width: 1px;
  --hero-snap-progress-width: 3px;
  --hero-caption-snap-gap: 6px;
  --hero-pull-offset: 0px;
  --hero-pull-mask-opacity: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  min-height: var(--screen-vh);
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  top: var(--banner-h);
  width: 100%;
  height: calc(var(--hero-pull-offset) + 2px);
  z-index: 55;
  background: #000;
  opacity: var(--hero-pull-mask-opacity);
  pointer-events: none;
}

.error {
  padding: 12px;
  border: 1px solid #ff5c5c;
  color: #ff5c5c;
}

.torus-hero {
  position: relative;
  width: 100%;
  height: var(--screen-vh);
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #040404;
  padding-top: var(--banner-h);
}

.torus-hero canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.06));
}

.torus-overlay {
  position: absolute;
  inset: 0;
  padding-top: calc(var(--banner-h) + 8px);
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 1fr);
  gap: 28px;
  align-items: start;
  pointer-events: none;
  z-index: 2;
}

  .torus-caption {
    color: #f3f3f0;
    font-size: clamp(42px, 7.5vh, 120px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.6px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    padding: 8px 10px;
  }

.torus-body {
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-align: right;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  padding: 8px 10px;
}

.torus-controls {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  z-index: 3;
  pointer-events: auto;
}

.torus-controls .panel {
  background: transparent;
  border: none;
  padding: 8px 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  margin: 0;
  width: 100%;
  min-width: 0;
}

.torus-controls h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: #e8e8e8;
}

.torus-controls .row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  font-size: 12px;
  color: #dcdcdc;
  white-space: nowrap;
  flex: 1 1 0;
  min-width: 0;
}

.torus-controls .row span {
  flex: 0 0 auto;
}

.torus-controls .row.mode-row {
  flex: 0 0 auto;
  width: auto;
}

.torus-controls .row.mode-row .torus-mode-btn {
  width: 80px;
  text-align: center;
  flex: 0 0 auto;
}

.torus-controls .row .value {
  min-width: 3ch;
}

.torus-controls .row input[type="range"] {
  width: 100%;
  flex: 1 1 auto;
  -webkit-appearance: none;
  appearance: none;
  height: 18px;
  background: transparent;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}

.torus-controls .row input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.torus-controls .row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 0;
  background: linear-gradient(
    to right,
    transparent 0 8px,
    rgba(255, 255, 255, 0.95) 8px 10px,
    transparent 10px 18px
  );
  margin-top: -8px;
}

.torus-controls .row input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.torus-controls .row input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 0;
  background: linear-gradient(
    to right,
    transparent 0 8px,
    rgba(255, 255, 255, 0.95) 8px 10px,
    transparent 10px 18px
  );
}

.torus-controls .value {
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #b0b4c0;
  display: inline-block;
  min-width: 4ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.torus-mode-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #f3f3f0;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  cursor: pointer;
}

.torus-cta {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding-bottom: 4px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  display: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.torus-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-snap-indicator {
  --snap-angle: 0deg;
  position: fixed;
  left: 50%;
  bottom: calc(var(--hero-snap-bottom) + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: var(--hero-snap-size);
  height: var(--hero-snap-size);
  border-radius: 50%;
  background: transparent;
  color: #f3f3f0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0) scale(0.92);
  transition:
    opacity 140ms ease,
    visibility 140ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 120ms ease;
}

.hero-snap-indicator::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: var(--hero-snap-rail-width) solid #f3f3f0;
  border-radius: 50%;
}

.hero-snap-indicator::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(#f3f3f0 var(--snap-angle), transparent 0deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--hero-snap-progress-width)), #000 calc(100% - var(--hero-snap-progress-width)));
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--hero-snap-progress-width)), #000 calc(100% - var(--hero-snap-progress-width)));
}

.hero-snap-arrow {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 23px;
  font-weight: 300;
  line-height: 0.85;
  transform: translateY(-1px);
}

.hero-snap-label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  color: currentColor;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-snap-indicator[data-direction="to-top"] {
  top: calc(var(--banner-h) + 14px);
  bottom: auto;
  transform: translate3d(-50%, -10px, 0) scale(0.92);
}

.hero-snap-indicator[data-direction="to-top"] .hero-snap-arrow {
  transform: translateY(1px);
}

.hero-snap-indicator.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.hero-snap-indicator.is-ready {
  transform: translate3d(-50%, 0, 0) scale(1.16);
}

.hero-snap-indicator.is-pulling-down {
  top: var(--hero-snap-pull-top, calc(var(--banner-h) - var(--hero-snap-size)));
  bottom: auto;
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(var(--hero-snap-pull-scale, 0.76));
  transition: none;
}

.hero-snap-indicator.is-disarming-down {
  z-index: 5;
}

.hero-snap-indicator.is-returning-home {
  top: var(--hero-snap-return-top, calc(var(--banner-h) + 14px));
  bottom: auto;
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(var(--hero-snap-return-scale, 1));
  transition: none;
}

.hero-snap-indicator.is-exiting {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(0);
  transition:
    opacity 90ms ease,
    transform 110ms ease;
}

.hero-snap-indicator.is-bounce {
  animation: heroSnapBounce 180ms ease-out both;
}

@keyframes heroSnapBounce {
  0% { transform: translate3d(-50%, 0, 0) scale(1); }
  45% { transform: translate3d(-50%, 9px, 0) scale(0.96); }
  100% { transform: translate3d(-50%, 0, 0) scale(1); }
}

.home-scroll-shell {
  position: relative;
  z-index: 10;
  transform: translate3d(0, var(--hero-pull-offset), 0);
  will-change: transform;
}

.hero-gallery {
  position: relative;
  height: calc(var(--screen-vh) - var(--banner-h));
  width: 100%;
  margin-bottom: 12px;
  overflow: hidden;
  background: #050505;
}

.project-gallery {
  padding: 42px clamp(16px, 4vw, 48px) 120px;
  scroll-margin-top: calc(var(--banner-h) + 18px);
}

.project-gallery h3 {
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.project-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1500px) {
  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  color: var(--text);
  text-decoration: none;
}

.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: transparent;
  overflow: hidden;
}

.project-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}

.project-thumb img.hover {
  opacity: 0;
}

.project-card.is-thumb-active .project-thumb img.hover {
  opacity: 1;
}

.project-card.is-thumb-active .project-thumb img.base {
  opacity: 0.4;
}

.project-card .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
  transition: background 0.3s ease;
}

.project-card .meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.project-meta-text {
  display: block;
  white-space: pre-line;
  min-width: 0;
}

.project-mobile-action {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .project-card:hover .meta {
    color: #f3f3f0;
  }

  .project-card:hover .divider {
    background: rgba(255, 255, 255, 1);
  }
}

.section-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.process-section {
  position: relative;
  width: 100%;
  height: calc(var(--screen-vh) * 0.5);
  overflow: hidden;
  background: #050505;
}

.process-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px clamp(16px, 4vw, 48px) 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.process-title {
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.process-body {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.6;
  color: #e7e7e2;
}

.materials-section {
  padding: 42px clamp(16px, 4vw, 48px) 120px;
  background: #050505;
}

.materials-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1fr);
  gap: clamp(36px, 4vw, 84px);
  align-items: start;
}

.materials-copy {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.materials-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.materials-body {
  display: grid;
  gap: 10px;
  max-width: 760px;
  color: #e7e7e2;
  font-size: 15px;
  line-height: 1.45;
}

.materials-body p {
  margin: 0;
}

.materials-shared-logos {
  max-width: 760px;
  padding-top: 8px;
}

.materials-accordion {
  min-width: 0;
  padding-left: clamp(24px, 2.4vw, 36px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.materials-accordion-list {
  display: grid;
}

.materials-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.materials-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.materials-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: #f3f3f0;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.materials-trigger:focus-visible {
  outline: none;
  color: #ffffff;
}

.materials-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f93a1;
  transition: color 0.22s ease;
}

.materials-icon::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform 220ms ease;
}

.materials-item.is-open .materials-icon {
  color: #f3f3f0;
}

.materials-item.is-open .materials-icon::after {
  content: "-";
  transform: rotate(0deg);
}

.materials-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.materials-item.is-open .materials-panel {
  grid-template-rows: 1fr;
}

.materials-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.materials-panel-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: start;
  padding: 6px 0 24px;
  transform: translate3d(0, -6px, 0);
  transition: transform 260ms ease;
}

.materials-item.is-open .materials-panel-content {
  transform: translate3d(0, 0, 0);
}

.materials-panel-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.materials-hook {
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.materials-panel-body {
  display: grid;
  gap: 10px;
  color: #e7e7e2;
  font-size: 15px;
  line-height: 1.45;
}

.materials-panel-body p {
  margin: 0;
}

.materials-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding-top: 2px;
}

.materials-logo {
  --logo-factor: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.78;
}

.materials-logo img {
  display: block;
  width: auto;
  height: calc(28px * var(--logo-factor));
  max-width: calc(180px * var(--logo-factor));
  object-fit: contain;
}

.materials-figure {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.materials-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.trusted-section {
  padding: 42px clamp(16px, 4vw, 48px) 120px;
  background: #050505;
}

.trusted-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.trusted-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  min-width: 0;
}

.trusted-logo {
  --logo-factor: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
}

.trusted-logo img {
  display: block;
  width: auto;
  height: calc(34px * var(--logo-factor));
  max-width: calc(190px * var(--logo-factor));
  object-fit: contain;
}


.gallery {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.gallery figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery img,
.gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.gallery .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.gallery.is-dragging .nav-zone,
.gallery.is-dragging .nav-arrow {
  pointer-events: none;
}

.gallery .slide.enter-from-right { transform: translateX(100%); }
.gallery .slide.enter-from-left { transform: translateX(-100%); }
.gallery .slide.exit-left { transform: translateX(-100%); opacity: 0.4; }
.gallery .slide.exit-right { transform: translateX(100%); opacity: 0.4; }

.gallery .nav-zone {
  position: absolute;
  top: 0;
  bottom: var(--nav-safe, 0px);
  width: 33%;
  z-index: 3;
  cursor: pointer;
}

.gallery .nav-zone.prev { left: 0; }
.gallery .nav-zone.next { right: 0; }

.gallery .nav-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #f3f3f0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease;
  opacity: 0.72;
  padding: 0;
}

.gallery .nav-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  opacity: 1;
  color: #ffffff;
}

.gallery .nav-arrow.prev {
  left: 16px;
}

.gallery .nav-arrow.next {
  right: 16px;
}

.gallery .nav-arrow[hidden] {
  display: none;
}

.gallery .nav-arrow svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.gallery .counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #e0e0e0;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 6px;
}

.gallery .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  color: #f3f3f0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 24px;
}

@media (max-width: 960px) {
  .torus-overlay {
    grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 0.8fr);
  }

  .torus-body {
    text-align: left;
  }

  .materials-shell {
    grid-template-columns: 1fr;
  }

  .materials-accordion {
    padding-left: 0;
    padding-top: 8px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .materials-figure {
    justify-content: flex-start;
  }

}

@media (max-width: 550px) {
  :root {
    --screen-vh: 100svh;
  }

  .hero-gallery {
    height: calc((var(--screen-vh) - var(--banner-h)) * 0.5);
    min-height: 260px;
  }

  .torus-hero,
  .torus-hero canvas {
    touch-action: none;
  }

  .torus-body {
    display: none;
  }

  .torus-controls {
    display: none;
  }

  .torus-cta {
    display: none;
  }

  .torus-caption {
    padding-left: 8px;
    padding-right: 16px;
    width: 100%;
    margin-top: 0;
    line-height: 0.98;
    letter-spacing: 0;
    font-size: var(--hero-caption-font-size, 52px);
    transform: translate3d(
      0,
      calc(var(--hero-caption-fit-offset, 0px) + var(--hero-caption-nudge, 0px)),
      0
    );
  }

  .torus-caption::before {
    content: "BRUIT ROSE PRODUCTION";
    display: block;
    color: rgba(243, 243, 240, 0.78);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    padding-bottom: 9px;
    margin-bottom: 13px;
    border-bottom: 1px solid rgba(243, 243, 240, 0.42);
  }

  .torus-caption::after {
    content: "";
    display: block;
    border-bottom: 1px solid rgba(243, 243, 240, 0.34);
    margin-top: 18px;
  }

  .project-gallery {
    padding: 28px clamp(16px, 4vw, 48px) 100px;
  }

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

  .project-card {
    gap: 8px;
  }

  .project-card .divider {
    margin-top: 4px;
    transition: background 90ms ease;
  }

  .project-card .meta {
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    overflow-wrap: anywhere;
    display: grid;
    grid-template-columns: 1em minmax(0, 1fr);
    column-gap: 0.38em;
    align-items: start;
  }

  .project-mobile-action {
    display: inline-block;
    width: 1em;
    color: #f3f3f0;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: 50% 50%;
    transition: transform 90ms ease, color 90ms ease;
  }

  .project-card.is-mobile-pressing .project-mobile-action {
    transform: translate3d(0, 0, 0) scale(1.16);
    color: #ffffff;
  }

  .project-card.is-mobile-pressing .divider {
    background: rgba(255, 255, 255, 0.78);
  }

  .materials-section {
    padding: 28px clamp(16px, 4vw, 48px) 100px;
  }

  .process-section {
    height: auto;
    min-height: calc((var(--screen-vh) - var(--banner-h)) * 0.5);
  }

  .process-overlay {
    height: auto;
    min-height: calc((var(--screen-vh) - var(--banner-h)) * 0.5);
    padding: 34px clamp(16px, 4vw, 48px) 42px;
  }

  .trusted-section {
    padding: 28px clamp(16px, 4vw, 48px) 100px;
  }

  .gallery .nav-arrow {
    width: 44px;
    height: 44px;
  }

  .gallery .nav-arrow.prev {
    left: 12px;
  }

  .gallery .nav-arrow.next {
    right: 12px;
  }
}
