/* ========================================
   DIGITAL ATELIER — Global Styles
   ======================================== */

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

:root {
  --bg: #000000;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.4);
  --white-divider: rgba(255, 255, 255, 0.15);
  --font: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}

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

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

video {
  display: block;
  max-width: 100%;
}

.entrance__img {
  filter: none;
}

/* ========================================
   GLOBAL NAV + MENU
   ======================================== */

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  pointer-events: none;
  mix-blend-mode: difference;
}

.gnav__menu-btn {
  order: -1;
}

.gnav__logo,
.gnav__menu-btn {
  pointer-events: auto;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.gnav__logo:hover,
.gnav__menu-btn:hover {
  opacity: 0.5;
}

.gnav__menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.gnav__menu-btn-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.gnav__menu-btn-line span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}

/* When menu is open, hide hamburger lines */
body.menu-open .gnav {
  mix-blend-mode: normal;
}

body.menu-open .gnav__menu-btn-line span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

body.menu-open .gnav__menu-btn-line span:nth-child(2) {
  opacity: 0;
}

body.menu-open .gnav__menu-btn-line span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* ── Full-screen Menu Overlay ── */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

body.menu-open .menu-overlay {
  clip-path: inset(0 0 0 0);
}

.menu-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 100px 40px 120px;
  width: 100%;
  max-width: 900px;
}

.menu-overlay__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-open .menu-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the items */
body.menu-open .menu-overlay__item:nth-child(1) { transition-delay: 0.15s; }
body.menu-open .menu-overlay__item:nth-child(2) { transition-delay: 0.22s; }
body.menu-open .menu-overlay__item:nth-child(3) { transition-delay: 0.29s; }
body.menu-open .menu-overlay__item:nth-child(4) { transition-delay: 0.36s; }

/* Reset delays on close so they all disappear together */
body:not(.menu-open) .menu-overlay__item {
  transition-delay: 0s;
}

.menu-overlay__num {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--white-dim);
  flex-shrink: 0;
}

.menu-overlay__label {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease;
}

.menu-overlay__item:hover .menu-overlay__label {
  opacity: 0.5;
}

/* Menu footer — clock, socials, contact */
.menu-overlay__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

body.menu-open .menu-overlay__footer {
  opacity: 1;
  transform: translateY(0);
}

body:not(.menu-open) .menu-overlay__footer {
  transition-delay: 0s;
}

.menu-overlay__clock {
  font-family: var(--font);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-overlay__clock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white-dim);
  display: inline-block;
}

.menu-overlay__footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu-overlay__footer-link {
  font-family: var(--font);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-overlay__footer-link:hover {
  color: var(--white);
}

/* ── Nav responsive ── */

@media (max-width: 968px) {
  .gnav {
    padding: 22px 30px;
  }

  .menu-overlay__footer {
    padding: 22px 30px;
  }

  .menu-overlay__inner {
    padding: 90px 30px 110px;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .gnav {
    padding: 18px 20px;
  }

  .menu-overlay__inner {
    padding: 80px 20px 100px;
    align-items: flex-start;
    gap: 4px;
  }

  .menu-overlay__label {
    font-size: clamp(36px, 11vw, 56px);
  }

  .menu-overlay__footer {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .menu-overlay__footer-links {
    gap: 24px;
  }
}

/* ========================================
   ENTRANCE
   ======================================== */

.entrance {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
}

.entrance__half {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  overflow: hidden;
}

.entrance__half--top {
  top: 0;
}

.entrance__half--bottom {
  bottom: 0;
}

.entrance__img-wrap {
  position: absolute;
  width: 100%;
  height: 200%;
}

.entrance__half--top .entrance__img-wrap {
  top: 0;
}

.entrance__half--bottom .entrance__img-wrap {
  bottom: 0;
}

.entrance__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.entrance__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.entrance__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 28px);
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.entrance__letter {
  display: inline-block;
  opacity: 0;
}

.entrance__space {
  width: 0.35em;
}

.entrance__line {
  display: inline;
}

@media (max-width: 640px) {
  .entrance__text {
    font-size: clamp(14px, 4.5vw, 20px);
    white-space: normal;
    width: auto;
    line-height: 1.15;
  }

  .entrance__line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 968px) and (min-width: 641px) {
  .entrance__text {
    font-size: clamp(16px, 2.5vw, 24px);
  }
}

/* Lock body scroll during entrance */
body.entrance-active {
  overflow: hidden;
  height: 100vh;
}

/* Hide everything behind entrance until it's done */
body.entrance-active .gnav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

body.entrance-active .hero__bg {
  opacity: 0;
}

body.entrance-active .hero__content {
  visibility: hidden;
}

body.entrance-active .about,
body.entrance-active .industries,
body.entrance-active .work,
body.entrance-active .services,
body.entrance-active .reels,
body.entrance-active .investment,
body.entrance-active .fullwidth-img,
body.entrance-active .process,
body.entrance-active .cta-section,
body.entrance-active .footer {
  visibility: hidden;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Centered entrance-style hero text */
.hero__centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 28px);
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0;
}

.hero__centered-line {
  display: block;
}

.hero__centered-br {
  display: none;
}

@media (max-width: 640px) {
  .hero__centered {
    font-size: clamp(14px, 4.5vw, 20px);
    white-space: normal;
    width: 80%;
    line-height: 1.15;
  }

  .hero__centered-br {
    display: block;
  }
}

@media (max-width: 968px) and (min-width: 641px) {
  .hero__centered {
    font-size: clamp(16px, 2.5vw, 24px);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 90px 150px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__heading-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(48px, 8.3vw, 120px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.hero__subtitle {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 34px);
  line-height: 1.06;
  text-transform: uppercase;
  max-width: 554px;
  padding-right: 70px;
  overflow: hidden;
}

/* Split-word come-together animation */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) translateX(20px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 0.25em;
}

.split-word:nth-child(odd) {
  transform: translateY(-30px) translateX(-15px);
}

.split-word:nth-child(3n) {
  transform: translateY(25px) translateX(-20px);
}

.split-word.assembled {
  opacity: 1;
  transform: translateY(0) translateX(0);
  filter: blur(0px);
}

.typewriter-text {
  visibility: hidden;
}

.typewriter-text.active {
  visibility: visible;
}

.typewriter-cursor {
  font-weight: 100;
  opacity: 1;
  animation: cursorBlink 0.7s ease infinite;
  margin-left: 2px;
}

.typewriter-cursor.hidden {
  opacity: 0;
  animation: none;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 864px;
}

.hero__description {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
  max-width: 334px;
  padding-left: 40px;
  opacity: 0;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
  padding: 8px;
  opacity: 0;
  cursor: pointer;
  position: relative;
}

.cta__text {
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__slash {
  display: inline-block;
  width: 10px;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.cta__arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__cta:hover .cta__text {
  letter-spacing: 0.08em;
}

.hero__cta:hover .cta__slash {
  animation: slashSweep 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__cta:hover .cta__arrow {
  transform: translateX(6px);
}

@keyframes slashSweep {
  0%   { transform: translateX(0) rotate(0deg); }
  30%  { transform: translateX(8px) rotate(90deg); }
  60%  { transform: translateX(-4px) rotate(180deg); }
  100% { transform: translateX(0) rotate(360deg); }
}

/* Fade in elements */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   ABOUT — Scroll Highlight
   ======================================== */

.about {
  padding: 200px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.about__content {
  display: flex;
  justify-content: center;
}

.about__text {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.95vw, 28px);
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  max-width: 900px;
}

/* ========================================
   SELECTED WORK
   ======================================== */

.work {
  padding: 0 30px;
  max-width: 1440px;
  margin: 0 auto;
}

.work__header {
  padding: 8px 0;
  padding-left: calc(30% + 0px);
  margin-bottom: 135px;
}

.work__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.work__title-line {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(48px, 8.3vw, 120px);
  line-height: 1.02;
  text-transform: uppercase;
}

.work__title-line--2 {
  padding-left: 100px;
}

/* Reveal text animation */
.reveal-text {
  opacity: 0;
}

.reveal-text.revealed {
  opacity: 1;
}

.work__grid {
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.work__row {
  display: flex;
  align-items: center;
  gap: 61px;
}

.work__row--1 {
  gap: 61px;
}

.work__row--2 {
  justify-content: space-between;
}

.work__row--3 {
  gap: 61px;
}

.work__row-left {
  flex-shrink: 0;
  padding-left: 150px;
}

.work__row-right {
  display: flex;
  gap: 61px;
}

.work__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 402px;
  flex-shrink: 0;
}

.work__item--offset {
  padding-top: 50px;
}

.work__img-wrap {
  width: 100%;
  height: 384px;
  overflow: hidden;
  position: relative;
}

.work__img-wrap img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
  will-change: transform;
}

.work__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work__label {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.14;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hover blur + overlay */
.work__link .work__img-wrap img {
  transition: filter 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.work__link:hover .work__img-wrap img {
  filter: blur(5px);
  transform: scale(1.04);
}

.work__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 5, 0.38);
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work__link:hover .work__overlay {
  opacity: 1;
}

.work__view {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work__view .cta__slash {
  display: inline-block;
  width: 10px;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.work__view .cta__arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work__link:hover .work__view {
  opacity: 1;
  transform: translateY(0);
}

.work__link:hover .work__view .cta__slash {
  animation: slashSweep 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.work__link:hover .work__view .cta__arrow {
  transform: translateX(5px);
}

.work__side-text {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(16px, 1.95vw, 28px);
  line-height: 1.07;
  text-transform: uppercase;
  max-width: 255px;
  flex-shrink: 0;
}

.work__portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
  padding: 8px;
  cursor: pointer;
}

.work__portfolio-link:hover .cta__slash {
  animation: slashSweep 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.work__portfolio-link:hover .cta__arrow {
  transform: translateX(6px);
}

/* Floating image parallax */
.floating-img {
  will-change: transform;
}

/* ========================================
   WHAT WE DO — Services
   ======================================== */

.services {
  padding: 200px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.services__header {
  padding: 8px 60px;
  margin-bottom: 135px;
}

.services__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 606px;
}

.services__title-line {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(48px, 8.3vw, 120px);
  line-height: 1.02;
  text-transform: uppercase;
}

.services__title-line--2 {
  text-align: right;
  align-self: flex-end;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 60px;
  max-width: 932px;
  margin-left: auto;
}

.services__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  cursor: pointer;
}

.services__item > :first-child {
  display: flex;
  align-items: center;
}

.services__item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0;
  row-gap: 24px;
}

.services__num {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  grid-column: 1;
  grid-row: 1;
}

.services__name {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  grid-column: 2;
  grid-row: 1;
  transition: opacity 0.3s ease;
}

.services__tag {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  grid-column: 3;
  grid-row: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.services__divider {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 1px;
  background: var(--white-divider);
  width: 100%;
}

/* Hover card */
.services__hover-card {
  position: absolute;
  top: 50%;
  left: -380px;
  transform: translateY(-50%) translateX(12px) scale(0.97);
  width: 343px;
  background: var(--bg);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.5s;
}

.services__hover-card .services__hover-img img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.05);
}

.services__item:hover .services__hover-card {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
}

.services__item:hover .services__hover-card .services__hover-img img {
  transform: scale(1);
}

.services__item:hover .services__name {
  opacity: 0.6;
}

.services__item:hover .services__tag {
  opacity: 1;
}

.services__hover-img {
  position: relative;
  width: 343px;
  height: 351px;
  overflow: hidden;
}

.services__hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.services__hover-num {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  padding: 8px;
}

.services__hover-title {
  font-size: clamp(18px, 1.95vw, 28px);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: right;
  padding: 8px 12px;
}

.services__hover-desc {
  padding: 20px 10px;
  font-size: 12px;
  line-height: 1.17;
  text-transform: uppercase;
}

/* ========================================
   REELS
   ======================================== */

.reels {
  padding: 100px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.reels__grid {
  position: relative;
  width: 100%;
  /* Height based on Figma: tallest bottom edge (~943px) + padding */
  height: clamp(600px, 65vw, 960px);
  padding: 0 60px;
}

.reels__item {
  position: absolute;
  width: clamp(220px, 24.4%, 351px);
}

/* Positions from Figma — left is highest, middle lowest, right in between */
.reels__item--1 {
  left: 9%;
  top: 0;
}

.reels__item--2 {
  left: 38.7%;
  top: 17.5%;
}

.reels__item--3 {
  left: 66.7%;
  top: 6.5%;
}

.reels__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 351 / 563;
  overflow: hidden;
  cursor: pointer;
}

.reels__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover overlay — matches portfolio item hover style */
.reels__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 5, 0.38);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels__video-wrap:hover .reels__overlay {
  opacity: 1;
}

.reels__video-wrap:hover .reels__video {
  filter: blur(2px);
  transition: filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reels__unmute {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  padding: 0;
}

.reels__video-wrap:hover .reels__unmute {
  opacity: 1;
  transform: translateY(0);
}

.reels__unmute svg {
  flex-shrink: 0;
}

/* When unmuted — overlay only shows on hover, same as default */

/* ========================================
   INDUSTRIES — Horizontal Scroll Carousel
   ======================================== */

.industries {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.industries__track {
  display: flex;
  gap: 24px;
  padding: 0 60px;
  will-change: transform;
}

.industries__card {
  flex-shrink: 0;
  width: clamp(340px, 42vw, 580px);
  height: clamp(200px, 19vw, 274px);
  border: 1px solid var(--white-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: border-color 0.4s ease;
}

.industries__card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.industries__label {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  transition: letter-spacing 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industries__card:hover .industries__label {
  letter-spacing: 0.15em;
}

.industries__cta-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 60px 0;
}

.industries__cta {
  opacity: 1;
  border: 1px solid var(--white-divider);
  padding: 14px 28px;
  font-size: 12px;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.industries__cta:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 968px) {
  .industries {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .industries__track {
    gap: 16px;
    padding: 0 30px;
  }

  .industries__cta-wrap {
    padding: 40px 30px 0;
  }
}

@media (max-width: 640px) {
  .industries {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .industries__track {
    gap: 12px;
    padding: 0 20px;
  }

  .industries__card {
    width: 280px;
    height: 180px;
  }

  .industries__cta-wrap {
    padding: 32px 20px 0;
  }
}

/* ========================================
   INVESTMENT
   ======================================== */

.investment {
  padding: 0 60px 200px;
  max-width: 1440px;
  margin: 0 auto;
}

.investment__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.investment__title-wrap {
  padding-left: 60px;
}

.investment__title {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(48px, 8.3vw, 120px);
  line-height: 1.02;
  text-transform: uppercase;
}

.investment__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 680px;
  margin-left: auto;
  padding-right: 40px;
}

.investment__text {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.investment__text--main {
  color: var(--white-dim);
}

.investment__text--price {
  font-weight: 700;
  color: var(--white);
}

.investment__text--cta-line {
  color: var(--white-dim);
}

.investment__link {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--white-divider);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.investment__link:hover {
  border-color: var(--white);
  opacity: 0.7;
}

@media (max-width: 968px) {
  .investment {
    padding: 0 30px 120px;
  }

  .investment__title-wrap {
    padding-left: 20px;
  }

  .investment__body {
    padding-right: 0;
    max-width: 560px;
  }

  .investment__content {
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .investment {
    padding: 0 20px 80px;
  }

  .investment__title-wrap {
    padding-left: 8%;
  }

  .investment__body {
    max-width: 100%;
    margin-left: 0;
    padding-left: 8%;
  }

  .investment__content {
    gap: 40px;
  }
}

@media (max-width: 1200px) {
  .reels__grid {
    height: clamp(500px, 60vw, 750px);
  }
}

@media (max-width: 968px) {
  .reels {
    padding: 100px 0;
  }

  .reels__grid {
    height: clamp(450px, 58vw, 650px);
    padding: 0 30px;
  }

  .reels__item {
    width: clamp(180px, 28%, 280px);
  }
}

@media (max-width: 640px) {
  .reels {
    padding: 70px 0;
  }

  .reels__grid {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .reels__item {
    position: static;
    width: auto;
  }

  .reels__item--1 {
    width: 75%;
    align-self: flex-start;
    margin-left: 5%;
  }

  .reels__item--2 {
    width: 70%;
    align-self: flex-end;
    margin-right: 5%;
  }

  .reels__item--3 {
    width: 75%;
    align-self: flex-start;
    margin-left: 10%;
  }

  /* Always show overlay + button on mobile (no hover) */
  .reels__overlay {
    opacity: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .reels__unmute {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
  }

  .reels__video-wrap:hover .reels__unmute,
  .reels__video-wrap.is-playing .reels__unmute {
    transform: translateX(-50%);
  }
}

/* ========================================
   FULL WIDTH IMAGE
   ======================================== */

.fullwidth-img {
  width: calc(100% - 284px);
  margin: 0 auto;
  height: 785px;
  overflow: hidden;
  position: relative;
}

.fullwidth-img__inner {
  position: absolute;
  inset: -15% 0;
  will-change: transform;
}

.fullwidth-img__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullwidth-img__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ========================================
   OUR PROCESS
   ======================================== */

.process {
  padding: 200px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.process__header {
  padding: 8px 8px 8px 8px;
  padding-right: 300px;
  margin-bottom: 73px;
}

.process__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.process__title-line {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(48px, 8.3vw, 120px);
  line-height: 1.02;
  text-transform: uppercase;
  text-align: right;
  width: 100%;
}

.process__title-line--1 {
  padding-right: 40px;
}

.process__timeline {
  position: relative;
  max-width: 861px;
  margin: 135px auto 0;
  min-height: 824px;
}

.process__line-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.process__circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: var(--bg);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  position: absolute;
}

.process__circle--1 {
  top: 0;
}

.process__circle--2 {
  top: 50%;
  transform: translateY(-50%) scale(0);
}

.process__circle--3 {
  bottom: 0;
  transform: scale(0);
}

.process__circle.visible {
  opacity: 1;
  transform: scale(1);
}

.process__circle--2.visible {
  transform: translateY(-50%) scale(1);
}

.process__line {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.18);
  transition: none;
  z-index: 0;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 154px;
  padding: 8px;
  position: relative;
  z-index: 2;
}

.process__step {
  max-width: 615px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process__step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process__step--left {
  align-self: flex-start;
}

.process__step--right {
  align-self: flex-end;
  text-align: right;
}

.process__step--right .process__step-desc {
  padding-right: 20px;
}

.process__step--left .process__step-desc {
  padding-left: 20px;
}

.process__step-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process__step-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.95vw, 28px);
  line-height: 1.07;
  text-transform: uppercase;
}

/* ========================================
   FEATURED REEL
   ======================================== */

.featured-reel {
  padding: 120px 60px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.featured-reel__inner {
  width: clamp(320px, 48%, 700px);
}

.featured-reel__inner .reels__video-wrap {
  aspect-ratio: 351 / 563;
}

@media (max-width: 968px) {
  .featured-reel {
    padding: 80px 30px;
  }

  .featured-reel__inner {
    width: 55%;
  }
}

@media (max-width: 640px) {
  .featured-reel {
    padding: 60px 20px;
  }

  .featured-reel__inner {
    width: 80%;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 200px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.cta-section__heading {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cta-section__heading--3 {
  font-style: italic;
}

.cta-section__btn {
  margin-top: 60px;
  font-size: 14px;
  padding: 16px 32px;
  border: 1px solid var(--white-divider);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.cta-section__btn:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  border-top: 1px solid var(--white-divider);
  padding: 80px 60px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__tagline {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-dim);
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 80px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white-dim);
}

.footer__col a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__col a:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--white-divider);
}

.footer__copy,
.footer__credit {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.footer__legal {
  display: inline-flex;
  gap: 16px;
}

.footer__legal a {
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .hero__content {
    padding: 60px 60px;
  }


  .work__item {
    width: 300px;
  }

  .work__img-wrap {
    height: 288px;
  }

  .work__row-left {
    padding-left: 60px;
  }

  .services__hover-card {
    left: -320px;
    width: 300px;
  }

  .services__hover-img {
    width: 300px;
    height: 300px;
  }

  .fullwidth-img {
    width: calc(100% - 120px);
  }

  .process__header {
    padding-right: 100px;
  }
}

@media (max-width: 968px) {
  .hero__content {
    padding: 40px 30px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__description {
    padding-left: 0;
  }

  .about {
    padding: 120px 30px;
  }

  .work {
    padding: 0 20px;
  }

  .work__header {
    padding-left: 15%;
    margin-bottom: 80px;
  }

  .work__title-wrap {
    align-items: flex-end;
  }

  .work__title-line--2 {
    padding-left: 50px;
  }

  .work__grid {
    gap: 80px;
  }

  .work__row {
    flex-wrap: wrap;
    gap: 40px;
  }

  .work__row--2 {
    flex-direction: column;
  }

  .work__row-left {
    padding-left: 25%;
  }

  .work__row-right {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .work__item {
    width: calc(50% - 30px);
    max-width: 340px;
  }

  .work__item--offset {
    padding-top: 35px;
  }

  .work__item:nth-child(even) {
    margin-top: 30px;
  }

  .work__img-wrap {
    height: 280px;
  }

  .work__side-text {
    max-width: 200px;
    align-self: flex-end;
  }

  .services {
    padding: 120px 0;
  }

  .services__header {
    padding: 8px 30px;
    margin-bottom: 80px;
  }

  .services__list {
    padding: 0 30px;
  }

  .services__hover-card {
    display: none;
  }

  .services__item:hover .services__name {
    opacity: 1;
  }

  .fullwidth-img {
    width: calc(100% - 40px);
    height: 500px;
    margin-left: 24px;
    margin-right: 16px;
  }

  .process {
    padding: 120px 0;
  }

  .process__header {
    padding: 8px 30px;
    padding-right: 60px;
  }

  .process__timeline {
    margin: 80px 30px 0;
    padding: 0 20px;
  }

  .process__steps {
    gap: 100px;
  }

  .cta-section {
    padding: 120px 30px;
  }

  .cta-section__inner {
    align-items: flex-start;
    text-align: left;
  }

  .cta-section__heading--2 {
    padding-left: 10%;
  }

  .cta-section__heading--3 {
    align-self: flex-end;
  }

  .footer {
    padding: 60px 30px 30px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding: 30px 20px;
    gap: 32px;
  }

  .hero__title {
    white-space: normal;
    text-align: left;
  }

  .hero__subtitle {
    padding-right: 0;
    max-width: 100%;
  }

  .about {
    padding: 80px 20px;
  }

  /* Editorial offset on mobile — stagger the work items */
  .work {
    padding: 0 16px;
  }

  .work__header {
    padding-left: 10%;
    margin-bottom: 50px;
  }

  .work__title-wrap {
    align-items: flex-end;
  }

  .work__title-line--2 {
    padding-left: 25%;
  }

  .work__grid {
    gap: 50px;
  }

  .work__row {
    flex-direction: column;
    gap: 35px;
  }

  .work__row-left {
    padding-left: 20%;
  }

  .work__row-right {
    flex-direction: column;
    gap: 35px;
    width: 100%;
  }

  .work__item {
    width: 85%;
    max-width: none;
  }

  .work__item--offset {
    padding-top: 0;
  }

  /* Row 1: item 1 left, item 2 right */
  .work__item--1 {
    align-self: flex-start;
    margin-left: 5%;
  }

  .work__item--2 {
    align-self: flex-end;
    padding-top: 0;
  }

  /* Row 2: mirrored — item 3 right, item 4 left */
  .work__item--3 {
    align-self: flex-end;
    padding-top: 0;
  }

  .work__item--4 {
    align-self: flex-start;
    margin-left: 5%;
  }

  /* Row 3: same as row 1 */
  .work__item--5 {
    align-self: flex-start;
    margin-left: 5%;
  }

  .work__item--6 {
    align-self: flex-end;
    padding-top: 0;
  }

  .work__img-wrap {
    height: 240px;
  }

  .work__side-text {
    max-width: 180px;
    align-self: flex-end;
    text-align: right;
    padding-right: 5%;
  }

  /* Services mobile — editorial offset */
  .services__header {
    padding: 8px 20px;
    margin-bottom: 50px;
  }

  .services__title-wrap {
    max-width: none;
  }

  .services__title-line--1 {
    padding-left: 5%;
  }

  .services__title-line--2 {
    padding-right: 5%;
  }

  .services__list {
    padding: 0 20px;
  }

  .services__item {
    grid-template-columns: 30px 1fr auto;
  }

  .services__name {
    font-size: 18px;
  }

  .services__tag {
    display: none;
  }

  .fullwidth-img {
    width: calc(100% - 24px);
    height: 400px;
    margin-left: 16px;
    margin-right: 8px;
  }

  /* Process mobile — offset the line to the left */
  .process__header {
    padding-right: 15%;
    padding-left: 5%;
  }

  .process__title-line--1 {
    padding-right: 0;
    text-align: left;
  }

  .process__title-line:last-child {
    text-align: right;
    padding-left: 15%;
  }

  .process__timeline {
    margin: 60px 20px 0;
    min-height: 600px;
  }

  .process__line-track {
    left: 20px;
    transform: none;
  }

  .process__steps {
    gap: 80px;
    padding-left: 50px;
  }

  .process__step--right {
    align-self: flex-start;
    text-align: left;
  }

  .process__step--right .process__step-desc {
    padding-right: 0;
    padding-left: 20px;
  }

  /* CTA mobile — editorial offset */
  .cta-section {
    padding: 80px 20px;
  }

  .cta-section__inner {
    align-items: flex-start;
    text-align: left;
  }

  .cta-section__heading {
    font-size: clamp(36px, 12vw, 60px);
  }

  .cta-section__heading--2 {
    padding-left: 12%;
  }

  .cta-section__heading--3 {
    align-self: flex-end;
    padding-right: 5%;
  }

  .cta-section__btn {
    margin-top: 40px;
    align-self: center;
  }

  .footer__top {
    flex-direction: column;
    gap: 48px;
  }

  .footer__links {
    gap: 48px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
