:root {
  --ink: #07120e;
  --ink-2: #0d1d16;
  --ink-3: #173126;
  --paper: #f3f1e9;
  --paper-2: #e7e5db;
  --white: #ffffff;
  --lime: #c9ff3d;
  --lime-2: #9fcd23;
  --sun: #ffd35a;
  --muted: #9ba9a1;
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(7, 18, 14, .13);
  --radius: 28px;
  --radius-sm: 17px;
  --max: 1440px;
  --gutter: clamp(18px, 4vw, 68px);
  --ease: cubic-bezier(.22, .78, .24, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, .22);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font: inherit;
}
button {
  color: inherit;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus {
  transform: translateY(0);
}
.page-progress {
  position: fixed;
  z-index: 1100;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 255, 61, .07), transparent 67%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s;
}
body.has-pointer .cursor-glow {
  opacity: 1;
}
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 19px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, padding .35s;
}
.site-header.scrolled, .site-header.force-dark {
  padding-top: 13px;
  padding-bottom: 13px;
  background: rgba(7, 18, 14, .84);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
.brand img {
  width: 142px;
  height: 50px;
  object-fit: contain;
}
.site-nav {
  justify-self: right;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
}
.site-nav > a:not(.nav-call) {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--lime);
  transition: right .3s var(--ease);
}
.site-nav > a:hover, .site-nav > a[aria-current="page"] {
  color: #fff;
}
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after {
  right: 0;
}
.nav-call {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: 12px;
  transition: .3s;
}
.nav-call:hover {
  background: var(--lime)!important;
  border-color: var(--lime)!important;
  color: var(--ink)!important;
}
.menu-button {
  display: none;
  position: relative;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(0, 0, 0, .12);
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 19px;
  height: 1px;
  background: #fff;
  transition: transform .3s, top .3s;
}
.menu-button span:first-child {
  top: 18px;
}
.menu-button span:nth-child(2) {
  top: 26px;
}
.menu-button[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}
.menu-button[aria-expanded="true"] span:nth-child(2) {
  top: 22px;
  transform: rotate(-45deg);
}
main {
  position: relative;
  z-index: 1;
}
.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section {
  padding: clamp(90px, 11vw, 180px) var(--gutter);
}
.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.section-kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.section-kicker::before, .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--lime);
}
.section-kicker.dark, .eyebrow.dark {
  color: #66756e;
}
.display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7.4vw, 126px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.062em;
}
.display em {
  color: var(--lime);
  font-style: italic;
}
.display.dark {
  color: var(--ink);
}
.display.dark em {
  color: #759518;
}
.h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.8vw, 90px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.052em;
}
.h2 em {
  color: var(--lime);
  font-style: italic;
}
.lead {
  font-size: clamp(21px, 2.2vw, 34px);
  line-height: 1.3;
  letter-spacing: -.03em;
}
.copy {
  color: #a9b5af;
  font-size: 16px;
  line-height: 1.75;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
  cursor: pointer;
}
.button--lime {
  background: var(--lime);
  color: var(--ink);
}
.button--lime:hover {
  background: #e0ff90;
}
.white{
	color: #ffffff!important;
}

.button--ghost {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.button--ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}
.button--dark {
  background: var(--ink);
  color: #fff;
}
.button--dark:hover {
  background: var(--ink-3);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.link-arrow::after {
  content: "↗";
  font-size: 17px;
  transition: transform .3s;
}
.link-arrow:hover::after {
  transform: translate(4px, -4px);
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: .08s;
}
.reveal-delay-2 {
  transition-delay: .16s;
}
.reveal-delay-3 {
  transition-delay: .24s;
}
.image-reveal {
  overflow: hidden;
}
.image-reveal img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1.2s var(--ease), transform 1.2s var(--ease);
}
.image-reveal.visible img {
  clip-path: inset(0);
  transform: scale(1);
}
/* Home scroll-frame hero */
.frame-hero {
  position: relative;
  height: 440vh;
  background: #020504;
}
.frame-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.frame-canvas, .frame-fallback, .hero-shade, .hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.frame-fallback {
  z-index: 0;
  background: url("../assets/images/projects/project-39.jpg") center/cover no-repeat;
  transform: scale(1.04);
}
.frame-canvas {
  z-index: 1;
}
.hero-shade {
  z-index: 2;
  background: linear-gradient(90deg, rgba(2, 5, 4, .93) 0%, rgba(2, 5, 4, .52) 47%, rgba(2, 5, 4, .22) 72%, rgba(2, 5, 4, .72) 100%), linear-gradient(0deg, rgba(2, 5, 4, .72), transparent 45%);
}
.hero-grid {
  z-index: 2;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  top: 52%;
  width: min(760px, 63vw);
  transform: translateY(-44%);
}
.hero-copy--b, .hero-copy--c {
  opacity: 0;
  visibility: hidden;
}
.hero-copy h1, .hero-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(62px, 8.6vw, 154px);
  line-height: .84;
  letter-spacing: -.064em;
}
.hero-copy h1 em, .hero-copy h2 em {
  color: var(--lime);
  font-style: italic;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #b8c2bd;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 33px;
  flex-wrap: wrap;
}
.hero-rail {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 42px;
  display: grid;
  grid-template-columns: auto 160px auto;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  letter-spacing: .1em;
}
.hero-rail div {
  height: 1px;
  background: rgba(255, 255, 255, .2);
}
.hero-rail i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  bottom: 39px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201, 255, 61, .08);
}
.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 70px);
  min-height: 90px;
  padding: 18px var(--gutter);
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
}
.signal-strip span {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.signal-strip i {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  opacity: .55;
}
/* Home about */
.home-about {
  background: var(--paper);
  color: var(--ink);
}
.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}
.home-about__copy {
  padding-top: 28px;
}
.home-about__copy .lead {
  margin: 0 0 28px;
}
.home-about__copy .copy {
  color: #607069;
}
.home-about__visual {
  position: relative;
  min-height: 720px;
  border-radius: var(--radius);
  background: #dfe6db;
  overflow: hidden;
}
.home-about__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 38%, rgba(201, 255, 61, .65), transparent 29%), linear-gradient(145deg, #eff2e9, #ced8ca);
}
.home-about__visual img {
  position: absolute;
  z-index: 1;
  width: 76%;
  max-height: 78%;
  object-fit: contain;
  left: 12%;
  bottom: 4%;
  filter: drop-shadow(0 40px 44px rgba(30, 56, 42, .18));
  transform: translateY(var(--parallax-y, 0));
}
.home-about__visual-label {
  position: absolute;
  z-index: 2;
  inset: 28px 28px auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: #4e5f57;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.value-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 15px;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.value-row article {
  min-height: 240px;
  padding: 30px 26px;
  border-right: 1px solid var(--dark-line);
}
.value-row article:last-child {
  border-right: 0;
}
.value-row span {
  color: #76867e;
  font-size: 11px;
}
.value-row h3 {
  margin: 42px 0 14px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.03em;
}
.value-row p {
  margin: 0;
  color: #68766f;
  line-height: 1.6;
  font-size: 14px;
}
/* Services */
.home-services {
  background: var(--ink-2);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .38fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 70px;
}
.services-head .copy {
  margin: 0;
}
.service-deck {
  display: grid;
  gap: 14px;
}
.service-panel {
  position: relative;
  min-height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}
.service-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease);
}
.service-panel:hover > img {
  transform: scale(1.09);
}
.service-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 8, .92), rgba(4, 11, 8, .48) 58%, rgba(4, 11, 8, .15)), linear-gradient(0deg, rgba(4, 11, 8, .72), transparent 50%);
}
.service-panel__content {
  position: absolute;
  z-index: 1;
  inset: auto auto 0 0;
  width: min(660px, 65%);
  padding: clamp(28px, 5vw, 68px);
}
.service-panel__index {
  position: absolute;
  z-index: 1;
  top: 26px;
  right: 28px;
  font: 400 clamp(45px, 7vw, 90px)/1 Georgia, serif;
  color: rgba(255, 255, 255, .22);
}
.service-panel h3 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 74px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.05em;
}
.service-panel p {
  color: #bec7c2;
  line-height: 1.7;
}
.service-panel .link-arrow {
  margin-top: 15px;
}
/* Process */
.process {
  background: var(--paper);
  color: var(--ink);
}
.process-grid {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: clamp(50px, 9vw, 140px);
}
.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}
.process-intro .copy {
  color: #607069;
  max-width: 520px;
}
.process-steps {
  counter-reset: process;
  border-top: 1px solid var(--dark-line);
}
.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  padding: 38px 0 48px;
  border-bottom: 1px solid var(--dark-line);
}
.process-step::before {
  content: "0"counter(process);
  color: #718078;
  font-size: 12px;
  letter-spacing: .1em;
}
.process-step h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -.035em;
}
.process-step p {
  margin: 0;
  max-width: 700px;
  color: #64726b;
  line-height: 1.7;
}
/* New project gallery: vertical wheel -> horizontal reel */
.project-reel {
  --reel-height: 360vh;
  position: relative;
  height: var(--reel-height);
  background: #050b08;
}
.project-reel__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  padding: 110px 0 34px;
}
.project-reel__top {
  width: min(var(--max), 100%);
  margin: 0 auto 35px;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.project-reel__top h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(52px, 6vw, 96px);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.055em;
}
.project-reel__top h2 em {
  color: var(--lime);
  font-style: italic;
}
.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.project-filters button {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: transparent;
  color: #a7b2ac;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
}
.project-filters button:hover, .project-filters button.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.project-reel__viewport {
  overflow: visible;
}
.project-reel__track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 0 var(--gutter);
  will-change: transform;
  transform: translate3d(var(--reel-x, 0), 0, 0);
}
.project-card {
  position: relative;
  flex: 0 0 min(35vw, 520px);
  height: min(61vh, 660px);
  min-height: 420px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #18241e;
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
}
.project-card.featured {
  flex-basis: min(63vw, 960px);
}
.project-card[hidden] {
  display: none;
}
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform .85s var(--ease), filter .5s;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 8, 5, .9), transparent 55%), linear-gradient(90deg, rgba(2, 8, 5, .25), transparent);
}
.project-card:hover img {
  transform: scale(1.085);
  filter: saturate(1.08);
}
.project-card__number {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  font-size: 11px;
  backdrop-filter: blur(8px);
}
.project-card__meta {
  position: absolute;
  z-index: 2;
  inset: auto 28px 28px;
}
.project-card__meta small {
  display: block;
  color: var(--lime);
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-card__meta strong {
  display: block;
  max-width: 700px;
  font: 400 clamp(29px, 3.4vw, 56px)/.98 Georgia, serif;
  letter-spacing: -.04em;
}
.project-card__meta span {
  display: block;
  margin-top: 14px;
  color: #bdc6c1;
  font-size: 13px;
}
.project-reel__footer {
  position: absolute;
  z-index: 4;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7f8d86;
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  pointer-events: none;
}
.project-reel__footer i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .16);
}
.project-reel__footer b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(var(--project-progress, 0));
  transform-origin: left;
}
.project-reel__mobile-actions {
  display: none;
}
/* Testimonials */
.testimonials {
  background: var(--paper);
  color: var(--ink);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: .46fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.testimonial-side {
  position: sticky;
  top: 130px;
}
.testimonial-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 42px;
}
.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  background: transparent;
  cursor: pointer;
}
.testimonial-controls button:hover {
  background: var(--ink);
  color: #fff;
}
.testimonial-stage {
  min-height: 520px;
  position: relative;
}
.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: clamp(35px, 6vw, 75px);
  border-radius: var(--radius);
  background: #e3e8df;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .55s var(--ease);
}
.testimonial.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.testimonial blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(31px, 4vw, 59px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.testimonial figcaption {
  position: absolute;
  left: clamp(35px, 6vw, 75px);
  bottom: clamp(35px, 6vw, 65px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial figcaption img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial figcaption b, .testimonial figcaption small {
  display: block;
}
.testimonial figcaption small {
  margin-top: 4px;
  color: #6d7a73;
}
/* Contact CTA and footer */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1fr minmax(270px, .38fr);
  gap: 60px;
  align-items: end;
}
.cta-band h2 {
  margin: 0;
  font: 400 clamp(54px, 8vw, 130px)/.85 Georgia, serif;
  letter-spacing: -.065em;
}
.cta-band p {
  line-height: 1.65;
}
.cta-band .button--dark {
  margin-top: 18px;
}
.cta-band__art {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: min(33vw, 500px);
  opacity: .2;
  transform: rotate(-10deg);
  pointer-events: none;
	    height: 100%;
}
.site-footer {
  padding: 70px var(--gutter) 26px;
  background: #030806;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  padding-bottom: 65px;
}
.footer-brand img {
  width: 142px;
}
.footer-about {
  margin-top: 25px;
  max-width: 360px;
  color: #86958d;
  line-height: 1.7;
}
.footer-col h3 {
  margin: 0 0 21px;
  color: #66746d;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-col a, .footer-col p {
  display: block;
  margin: 0 0 13px;
  color: #bec6c2;
  font-size: 14px;
  line-height: 1.5;
}
.footer-col a:hover {
  color: var(--lime);
}
.footer-bottom {
  width: min(var(--max), 100%);
  margin: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #647169;
  font-size: 11px;
}
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
}
.whatsapp-float svg {
  width: 28px;
}
/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 150px var(--gutter) 70px;
  background: #07110d;
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--hero-parallax, 0));
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 6, .9), rgba(3, 9, 6, .35) 68%, rgba(3, 9, 6, .64)), linear-gradient(0deg, rgba(3, 9, 6, .88), transparent 60%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.page-hero__content .display {
  max-width: 1160px;
}
.page-hero__bottom {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, .35fr);
  gap: 50px;
  align-items: end;
}
.page-hero__bottom p {
  margin: 0;
  color: #b1bdb7;
  line-height: 1.7;
}
.page-hero__index {
  justify-self: end;
  font: 400 clamp(62px, 8vw, 120px)/1 Georgia, serif;
  color: rgba(255, 255, 255, .2);
}
/* About page */
.story {
  background: var(--paper);
  color: var(--ink);
}
.story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 9vw, 140px);
}
.story-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
.story-copy .lead {
  margin-top: 0;
}
.story-copy .copy {
  color: #5e6e66;
}
.story-quote {
  margin: 58px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--dark-line);
  font: italic 400 clamp(32px, 4vw, 58px)/1.1 Georgia, serif;
  letter-spacing: -.04em;
}
.timeline {
  background: var(--ink-2);
}
.timeline-list {
  margin-top: 75px;
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  gap: 35px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item time {
  color: var(--lime);
  font: 400 30px Georgia, serif;
}
.timeline-item h3 {
  margin: 0;
  font: 400 30px Georgia, serif;
}
.timeline-item p {
  margin: 0;
  color: #96a39c;
  line-height: 1.65;
}
.mission-vision {
  background: var(--paper);
  color: var(--ink);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mv-card {
  min-height: 580px;
  padding: clamp(32px, 5vw, 70px);
  border-radius: var(--radius);
  background: #dde5da;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mv-card:nth-child(2) {
  background: var(--ink);
  color: #fff;
}
.mv-card h2 {
  margin: 0;
  font: 400 clamp(50px, 6vw, 88px)/.92 Georgia, serif;
  letter-spacing: -.05em;
}
.mv-card p, .mv-card li {
  line-height: 1.7;
}
.mv-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.mv-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.about-collage {
  background: var(--paper);
  padding-top: 0;
}
.about-collage__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 16px;
}
.about-collage figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dce4d8;
}
.about-collage figure:first-child {
  min-height: 620px;
  display: grid;
  place-items: center;
}
.about-collage figure:first-child img {
  width: 70%;
  max-height: 80%;
  object-fit: contain;
}
.about-collage figure:last-child img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
/* Services page */
.service-index {
  background: var(--paper);
  color: var(--ink);
}
.service-index__grid {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: clamp(45px, 8vw, 130px);
}
.service-side-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 8px;
}
.service-side-nav a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--dark-line);
  color: #65736c;
}
.service-side-nav a:hover {
  color: var(--ink);
}
.service-detail {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(30px, 6vw, 90px);
  padding: 0 0 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid var(--dark-line);
}
.service-detail:last-child {
  margin-bottom: 0;
}
.service-detail__media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
}
.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail__copy {
  align-self: center;
}
.service-detail__copy > span {
  color: #718078;
  font-size: 11px;
  letter-spacing: .12em;
}
.service-detail h2 {
  margin: 18px 0 25px;
  font: 400 clamp(44px, 5vw, 76px)/.94 Georgia, serif;
  letter-spacing: -.05em;
}
.service-detail p {
  color: #5e6d65;
  line-height: 1.75;
}
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 28px 0 34px;
}
.service-features span {
  padding: 14px 15px;
  border-radius: 12px;
  background: #e4e7df;
  font-size: 13px;
}
.service-detail:nth-child(even) .service-detail__media {
  order: 2;
}
/* Gallery page: editorial project stories */
.gallery-page {
  background: var(--paper);
  color: var(--ink);
}
.gallery-toolbar {
  position: sticky;
  z-index: 20;
  top: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px var(--gutter);
  background: rgba(243, 241, 233, .88);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(16px);
}
.gallery-toolbar p {
  margin: 0;
  color: #66746d;
  font-size: 12px;
}
.gallery-toolbar .project-filters {
  justify-content: flex-start;
}
.gallery-toolbar .project-filters button {
  color: #5f6d66;
  border-color: var(--dark-line);
}
.gallery-toolbar .project-filters button:hover, .gallery-toolbar .project-filters button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.project-stories {
  padding: 70px var(--gutter) 150px;
}
.project-story {
  width: min(var(--max), 100%);
  margin: 0 auto 130px;
  display: grid;
  grid-template-columns: minmax(210px, .35fr) minmax(0, 1fr);
  gap: clamp(35px, 7vw, 110px);
  align-items: center;
}
.project-story:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(210px, .35fr);
}
.project-story:nth-child(even) .project-story__copy {
  order: 2;
}
.project-story[hidden] {
  display: none;
}
.project-story__copy {
  align-self: end;
  padding-bottom: 16px;
}
.project-story__copy > span {
  color: #75837c;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-story h2 {
  margin: 18px 0;
  font: 400 clamp(40px, 5vw, 76px)/.94 Georgia, serif;
  letter-spacing: -.05em;
}
.project-story p {
  color: #627169;
  line-height: 1.7;
}
.project-story button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.project-story__media {
  position: relative;
  min-height: min(68vw, 750px);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.project-story__media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.project-story:hover .project-story__media img {
  transform: scale(1.045);
}
.project-story__badge {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 22px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(7, 18, 14, .78);
  color: #fff;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.gallery-empty {
  display: none;
  text-align: center;
  padding: 100px 20px;
}
/* Contact page */
.contact-page {
  background: var(--paper);
  color: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(50px, 9vw, 140px);
}
.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 45px;
}
.contact-details a {
  padding: 18px 0;
  border-bottom: 1px solid var(--dark-line);
}
.contact-details small, .contact-details b {
  display: block;
}
.contact-details small {
  margin-bottom: 7px;
  color: #748179;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
}
.contact-details b {
  font-size: 18px;
  font-weight: 500;
}
.contact-form {
  padding: clamp(28px, 5vw, 65px);
  border-radius: var(--radius);
  background: #dfe5dc;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #5f6d66;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 18, 14, .24);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--ink);
}
.contact-form textarea {
  resize: vertical;
}
.form-note {
  color: #77837d;
  font-size: 11px;
  line-height: 1.5;
}
.map-panel {
  background: var(--paper);
  padding: 0 var(--gutter) 150px;
}
.map-panel iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(.25) contrast(1.04);
}
/* Lightbox */
.lightbox {
  width: min(1100px, 94vw);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #020503;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: visible;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(8px);
}
.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 22px;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(3, 8, 5, .75);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lightbox__close {
  top: -18px;
  right: -18px;
  font-size: 28px;
}
.lightbox__prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__caption {
  padding: 16px 22px 20px;
  color: #b9c3be;
}
@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .site-nav {
    gap: 18px;
  }
  .nav-call {
    display: none;
  }
  .home-about__grid, .services-head, .process-grid, .testimonials-grid, .story-grid, .service-index__grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .home-about__visual {
    min-height: 620px;
  }
  .value-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-row article:nth-child(2) {
    border-right: 0;
  }
  .value-row article:nth-child(-n+2) {
    border-bottom: 1px solid var(--dark-line);
  }
  .process-intro, .testimonial-side, .story-aside, .service-side-nav {
    position: relative;
    top: auto;
  }
  .service-side-nav {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    overflow-x: auto;
  }
  .service-side-nav a {
    white-space: nowrap;
  }
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail:nth-child(even) .service-detail__media {
    order: 0;
  }
  .service-detail__media {
    min-height: 500px;
  }
  .project-reel__top {
    grid-template-columns: 1fr;
  }
  .project-filters {
    justify-content: flex-start;
  }
  .project-card {
    flex-basis: min(48vw, 550px);
  }
  .project-card.featured {
    flex-basis: min(72vw, 850px);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --radius: 20px;
  }
  .site-header {
    padding: 12px 18px;
  }
  .brand img {
    width: 118px;
    height: 42px;
  }
  .menu-button {
    display: block;
    justify-self: end;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 90px 30px 40px;
    background: rgba(4, 11, 8, .97);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .site-nav.open {
    transform: translateX(0);
  }
  .site-nav > a:not(.nav-call) {
    font: 400 39px/1 Georgia, serif;
    letter-spacing: -.04em;
    text-transform: none;
    color: #fff;
  }
  .site-nav > a:not(.nav-call)::after {
    display: none;
  }
  .nav-call {
    display: inline-flex;
    margin-top: 10px;
  }
  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }
  .display {
    font-size: clamp(48px, 15vw, 75px);
  }
  .h2 {
    font-size: clamp(42px, 12vw, 66px);
  }
  .cursor-glow {
    display: none;
  }
  .frame-hero {
    height: 330vh;
  }
  .hero-copy {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 94px;
    width: auto;
    transform: none;
  }
  .hero-copy h1, .hero-copy h2 {
    font-size: clamp(55px, 16vw, 86px);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-actions {
    gap: 8px;
  }
  .button {
    min-height: 50px;
    padding-inline: 19px;
  }
  .scroll-cue {
    display: none;
  }
  .hero-rail {
    left: 18px;
    right: 18px;
    bottom: 25px;
    grid-template-columns: auto 1fr auto;
  }
  .signal-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .home-about__grid {
    gap: 40px;
  }
  .home-about__visual {
    min-height: 500px;
  }
  .value-row {
    display: block;
  }
  .value-row article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }
  .value-row article:last-child {
    border-bottom: 0;
  }
  .service-panel {
    min-height: 560px;
  }
  .service-panel__content {
    width: 100%;
    padding: 28px;
  }
  .service-panel h3 {
    font-size: 47px;
  }
  .process-step {
    grid-template-columns: 45px 1fr;
    gap: 16px;
  }
  .project-reel {
    height: auto !important;
    padding: 90px 0;
  }
  .project-reel__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    padding: 0;
  }
  .project-reel__top {
    margin-bottom: 30px;
  }
  .project-reel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .project-reel__viewport::-webkit-scrollbar {
    display: none;
  }
  .project-reel__track {
    transform: none !important;
    padding-right: 18px;
  }
  .project-card, .project-card.featured {
    flex-basis: 86vw;
    height: 63vh;
    min-height: 480px;
    scroll-snap-align: start;
  }
  .project-card__meta strong {
    font-size: 37px;
  }
  .project-reel__footer {
    display: none;
  }
  .project-reel__mobile-actions {
    display: flex;
    gap: 10px;
    padding: 20px 18px 0;
  }
  .project-reel__mobile-actions button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: transparent;
  }
  .testimonials-grid {
    gap: 35px;
  }
  .testimonial-stage {
    min-height: 570px;
  }
  .testimonial {
    padding: 30px;
  }
  .testimonial blockquote {
    font-size: 34px;
  }
  .testimonial figcaption {
    left: 30px;
    bottom: 30px;
  }
  .cta-band__grid {
    grid-template-columns: 1fr;
  }
  .cta-band__art {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    min-height: 82svh;
    padding: 130px 18px 42px;
  }
  .page-hero__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-hero__index {
    justify-self: start;
  }
  .timeline-item {
    grid-template-columns: 75px 1fr;
  }
  .timeline-item p {
    grid-column: 2;
  }
  .mv-grid, .about-collage__grid {
    grid-template-columns: 1fr;
  }
  .mv-card {
    min-height: 500px;
  }
  .about-collage figure:first-child, .about-collage figure:last-child img {
    min-height: 470px;
  }
  .service-side-nav {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    padding-bottom: 10px;
  }
  .service-detail {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
  .service-detail__media {
    min-height: 430px;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .gallery-toolbar {
    top: 65px;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 13px;
  }
  .gallery-toolbar .project-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 3px;
  }
  .gallery-toolbar .project-filters button {
    white-space: nowrap;
  }
  .project-stories {
    padding-top: 55px;
    padding-bottom: 90px;
  }
  .project-story, .project-story:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 85px;
  }
  .project-story:nth-child(even) .project-story__copy {
    order: 0;
  }
  .project-story__media {
    min-height: 74vh;
  }
  .contact-grid {
    gap: 45px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .map-panel {
    padding-bottom: 90px;
  }
  .map-panel iframe {
    height: 430px;
  }
  .lightbox {
    width: 94vw;
  }
  .lightbox__close {
    top: 8px;
    right: 8px;
  }
  .lightbox__prev {
    left: 8px;
  }
  .lightbox__next {
    right: 8px;
  }
}
/* Mobile robustness overrides */
@media (max-width: 760px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  img, video, canvas, iframe {
    max-width: 100%;
  }
  canvas, iframe {
    display: block;
  }
  .site-header {
    padding-top: max(12px, env(safe-area-inset-top));
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }
  .site-nav {
    min-height: 100dvh;
    padding-top: max(90px, calc(env(safe-area-inset-top) + 76px));
    padding-right: max(30px, env(safe-area-inset-right));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
    padding-left: max(30px, env(safe-area-inset-left));
  }
  .project-card, .project-card.featured {
    height: min(63svh, 560px);
    min-height: 420px;
  }
  .testimonial-stage {
    min-height: 520px;
  }
  .mv-card {
    min-height: 420px;
  }
  .about-collage figure:first-child, .about-collage figure:last-child img {
    min-height: 380px;
  }
  .service-detail__media {
    min-height: 360px;
  }
  .project-story__media {
    height: min(70svh, 560px);
    min-height: 420px;
  }
  .map-panel iframe {
    height: clamp(340px, 58svh, 430px);
  }
}
@media (max-width: 420px) {
  .site-nav > a:not(.nav-call) {
    font-size: 34px;
  }
  .project-card, .project-card.featured {
    min-height: 390px;
  }
  .testimonial-stage {
    min-height: 500px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .image-reveal {
    opacity: 1;
    transform: none;
  }
  .image-reveal img {
    clip-path: none;
    transform: none;
  }
  .frame-hero {
    height: 100svh;
  }
  .frame-sticky {
    position: relative;
  }
  .hero-copy--a {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .hero-copy--b, .hero-copy--c {
    display: none;
  }
  .project-reel {
    height: auto !important;
    padding: 90px 0;
  }
  .project-reel__sticky {
    position: relative;
    height: auto;
  }
  .project-reel__viewport {
    overflow-x: auto;
  }
  .project-reel__track {
    transform: none !important;
  }
}