:root {
  --bg: #000000;
  --bg-2: #000000;
  --cream: #ffffff;
  --muted: #b0b0b0;
  --gold: #ffffff;
  --mint: #9a9ea6;
  --line: rgba(255, 255, 255, 0.2);
  --card: #101010;
  --card-shine: linear-gradient(165deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.03) 32%, transparent 64%);
  --card-stroke: rgba(255, 255, 255, 0.16);
  --card-stroke-hover: rgba(255, 255, 255, 0.78);
  --card-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  --card-shadow-hover: 0 26px 58px rgba(0, 0, 0, 0.5);
  --accent: #1e174a;
  --btn-dark: #505050;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

#home,
#about,
#services,
#contact {
  scroll-margin-top: 88px;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter", "Open Sans", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

.cursor,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 6px;
  height: 6px;
  background: #fff;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: width 0.28s var(--ease), height 0.28s var(--ease);
}

@media (pointer: fine) {
  body {
    cursor: none;
  }

  .cursor,
  .cursor-ring {
    display: block;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: grid;
  place-items: center;
}

.loader-inner {
  text-align: center;
}

.loader strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  display: block;
}

.loader span {
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.loader-bar {
  width: min(320px, 70vw);
  height: 2px;
  background: var(--line);
  margin: 28px auto 0;
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.wrap {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 4vw;
  background: #000000;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

body.feat-on .site-nav {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links > a,
.nav-drop > a {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  position: relative;
}

.nav-links > a::after,
.nav-drop > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after,
.nav-drop > a:hover::after,
.nav-drop > a.is-active::after,
.nav-drop:hover > a::after {
  width: 100%;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.nav-drop > a:hover,
.nav-drop > a.is-active {
  color: var(--cream);
}

.nav-drop {
  position: relative;
  padding: 18px 0;
  margin: -18px 0;
}

.nav-drop::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 89;
  width: 560px;
  height: 20px;
  transform: translateX(-50%);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(540px, calc(100vw - 24px));
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #2b2b2b;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), visibility 0.15s var(--ease);
  transition-delay: 0.16s;
  z-index: 90;
}

.nav-drop:hover .nav-menu,
.nav-drop:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-menu a {
  display: block;
  padding: 10px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: #3a3a3a;
}

.nav-sub {
  list-style: none;
  margin: 10px 0 0 8px;
  padding: 0;
}

.nav-sub a {
  font-size: clamp(1rem, 3vw, 1.25rem) !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.brand img {
  width: 168px;
  max-width: 168px;
  height: auto;
  filter: invert(1);
}

.brand small {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
}

.nav-toggle i {
  top: 23px;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: "";
  left: 0;
}

.nav-toggle i::before {
  top: -6px;
}

.nav-toggle i::after {
  top: 6px;
}

body.menu-open .nav-toggle i {
  background: transparent;
}

body.menu-open .nav-toggle i::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .nav-toggle i::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-screen {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 70;
  display: flex;
  align-items: center;
  padding: 12vh 8vw;
  clip-path: circle(0% at 100% 0);
  pointer-events: none;
}

.nav-screen.open {
  pointer-events: auto;
}

.nav-screen ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-screen a {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: inline-block;
}

.nav-screen a:hover {
  color: var(--gold);
}

.nav-meta {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  color: var(--muted);
  max-width: 16rem;
}

.home-screen {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #000;
  overflow: hidden;
}

.hero {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 100px 6.5vw 32px;
  position: relative;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 100% 48%;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000 0%, #000 30%, rgba(0, 0, 0, 0.55) 46%, rgba(0, 0, 0, 0.08) 62%, transparent 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 14%, transparent 86%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-copy-col {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  display: block;
  font-size: clamp(0.68rem, 0.72vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 22px;
  max-width: 36rem;
  line-height: 1.55;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.35rem, 4.15vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
  font-weight: 700;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.hero h1 .line span {
  display: inline-block;
}

.split .word,
.split-title .word {
  display: inline-block;
  white-space: nowrap;
}

.split .ch,
.split-title .ch {
  display: inline-block;
  will-change: transform, opacity;
}

.split .ch.space,
.split-title .ch.space {
  width: 0.28em;
}

.gold {
  color: var(--gold);
}

.hero-copy {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
}

.hero .hero-copy {
  max-width: 34.5rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero .btn {
  border-radius: 999px;
  padding: 13px 24px 13px 26px;
  font-size: 14px;
  font-weight: 500;
}

.hero .btn-arrow {
  width: 15px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transform: none !important;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn-gold {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-gold:hover {
  background: #505050;
  color: #ffffff;
  border-color: #505050;
  transform: none;
}

.btn-line {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-line:hover {
  background: #ffffff;
  color: #000000;
  transform: none;
}

.frame {
  position: relative;
  height: calc(100% - 8px);
  min-height: 0;
  min-width: 0;
  align-self: stretch;
  margin-right: -2vw;
  margin-top: 0;
  overflow: hidden;
  background: transparent;
}

.frame video,
.frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 78% center;
  background: #000;
  mix-blend-mode: screen;
}

.frame-cap {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rail {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

.rail-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: rail 32s linear infinite;
  padding: clamp(10px, 1.6vh, 18px) 0;
}

.rail-track b {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.5rem);
  padding: 0 clamp(20px, 2.4vw, 36px);
  white-space: nowrap;
  position: relative;
}

.rail-track-rev {
  animation: rail-rev 40s linear infinite;
  padding: 0 0 14px;
  opacity: 0.38;
}

.rail-track-rev b {
  font-size: 1.05rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.rail-track b::after {
  content: "●";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  color: var(--gold);
}

@keyframes rail {
  to {
    transform: translateX(-50%);
  }
}

@keyframes rail-rev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.h-pin {
  overflow: hidden;
}

.h-track {
  display: flex;
  height: 100vh;
  width: max-content;
}

.h-slide {
  width: 100vw;
  height: 100vh;
  padding: 12vh 8vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.h-slide .num {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

.h-slide h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin: 8px 0 16px;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.h-slide p {
  color: var(--muted);
  max-width: 28rem;
}

.work-board,
.work-rest,
.mini-grid,
.choose-grid,
.industry-grid,
.svc-tiles,
.office-grid,
.eco-flow,
.partner-row {
  perspective: 1200px;
}

.work-card,
.mini-card,
.choose-grid article,
.industry-grid span,
.svc-tiles article,
.office-card,
.form-card,
.block,
.eco-flow b,
.partner-row b {
  transform-style: preserve-3d;
}

.work {
  padding: 8vh 0 4vh;
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 0 3vw 28px;
}

.work-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 3vw;
}

.work-rest {
  gap: 20px;
  padding: 40px 3vw 8vh;
}

.work-rest .work-card.is-split {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  min-height: 0;
}

.work-rest .work-card.is-split.is-flip {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
}

.work-rest .work-media {
  min-height: 0;
  height: 220px;
}

.work-rest .work-media img {
  object-fit: cover;
  object-position: center;
}

.work-rest .work-card.is-split .work-copy {
  padding: 28px 32px;
}

.work-rest .work-copy h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
}

.work-rest .work-copy p {
  font-size: 0.92rem;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #0c0c0c;
  color: #fff;
  min-height: 48vh;
  border: 1px solid var(--card-stroke);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-stroke-hover);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.work-card.is-wide {
  grid-column: 1 / -1;
  min-height: 62vh;
}

.work-card.is-split {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 44vh;
}

.work-card.is-split.is-flip {
  grid-template-columns: 0.85fr 1.15fr;
}

.work-card.is-split.is-flip .work-media {
  order: 2;
}

.work-card.is-split.is-flip .work-copy {
  order: 1;
}

.work-card.is-wide > img,
.work-card.is-tile > img,
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.work-card.is-wide > img,
.work-card.is-tile > img {
  position: absolute;
  inset: 0;
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-media {
  min-height: 44vh;
  overflow: hidden;
}

.work-card.is-wide .work-copy,
.work-card.is-tile .work-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 32px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 32%, rgba(0, 0, 0, 0.88) 100%);
}

.work-card.is-split .work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.work-copy span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.work-copy h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.work-copy p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.55;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  padding: 28px 3vw 8vh;
}

.more-grid a,
.industry-grid span,
.choose-grid article,
.office-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid var(--card-stroke);
  border-radius: 20px;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.more-grid a:hover,
.choose-grid article:hover,
.office-card:hover,
.industry-grid span:hover {
  border-color: var(--card-stroke-hover);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.choose-grid article {
  min-height: 132px;
}

.more-grid small,
.choose-grid small {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.more-grid h3,
.choose-grid h3,
.office-card h3 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.more-grid p,
.choose-grid p,
.office-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.industry-grid span {
  font-family: "Poppins", sans-serif;
  padding: 18px 16px;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
}

.partner-row b {
  font-weight: 500;
  padding: 12px 18px;
  border: 1px solid var(--card-stroke);
  border-radius: 999px;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.partner-row b:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

.eco-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 28px;
}

.eco-flow b {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid var(--card-stroke);
  border-radius: 999px;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.eco-flow b:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

.choose-grid,
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.feat {
  padding: 6vh 0 0;
}

.feat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 0 2vw 18px;
}

.feat-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feat-pin {
  position: relative;
}

.feat-viewport {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 14px 10vh;
}

.feat-card {
  position: relative;
  height: 92vh;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}

.feat-pin.is-stack .feat-viewport {
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.feat-pin.is-stack .feat-card {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 94vh;
  min-height: 0;
  border-radius: 24px;
  will-change: transform, height;
}

.feat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease);
}

.feat-card.is-active img {
  transform: scale(1);
  animation: featKen 7s ease-out forwards;
}

@keyframes featKen {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.feat-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, transparent 24%, transparent 62%, rgba(0, 0, 0, 0.32) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 30%, transparent 62%, rgba(0, 0, 0, 0.4) 100%);
}

.feat-name {
  position: absolute;
  left: 32px;
  top: 24px;
  right: 32px;
  z-index: 3;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}

.feat-card.is-active .feat-name {
  opacity: 0;
}

.feat-pills,
.feat-go,
.feat-meta,
.feat-foot {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.feat-card.is-active .feat-pills,
.feat-card.is-active .feat-go,
.feat-card.is-active .feat-meta,
.feat-card.is-active .feat-foot {
  opacity: 1;
  pointer-events: auto;
}

.feat-pin:not(.is-stack) .feat-pills,
.feat-pin:not(.is-stack) .feat-go,
.feat-pin:not(.is-stack) .feat-meta,
.feat-pin:not(.is-stack) .feat-foot {
  opacity: 1;
  pointer-events: auto;
}

.feat-pin:not(.is-stack) .feat-name {
  opacity: 0;
}

.feat-pills {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.feat-pills span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: #fff;
}

.feat-go {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.feat-go span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s var(--ease);
}

.feat-go svg {
  width: 22px;
  height: 22px;
}

.feat-go:hover span {
  transform: scale(1.08);
}

.feat-meta {
  position: absolute;
  right: 36px;
  top: 32px;
  z-index: 3;
  width: min(18rem, 42vw);
}

.feat-meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.feat-meta-row + .feat-meta-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.feat-meta b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.feat-meta span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
}

.feat-meta small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.feat-foot {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 3;
  max-width: 18rem;
}

.feat-foot small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.feat-foot h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feat-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}

.feat-pin.is-stack .feat-all {
  position: absolute;
  left: 50%;
  bottom: 28px;
  margin: 0;
}

.h-visual {
  height: 52vh;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.h-visual.is-fit::after {
  display: none;
}

.h-visual.reveal img {
  will-change: transform;
}

.h-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 45%);
  pointer-events: none;
}

.h-visual img,
.h-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapter {
  padding: clamp(64px, 10vh, 120px) 0;
}

.about-story {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16vh 8vw 12vh;
}

.about-story .section-kicker {
  margin-bottom: 18px;
}

.about-story h1,
.about-story .split-title {
  max-width: 16em;
  margin: 0 auto 28px;
  font-size: clamp(1.5rem, 1.15rem + 2.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.about-sub {
  margin: 0 auto 16px;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-sub:last-child {
  margin-bottom: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

#gcc .split-title {
  text-align: center;
  max-width: 16em;
  margin-left: auto;
  margin-right: auto;
}

.chapter h2,
.split-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 1.05rem + 1.5vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.22;
  font-weight: 700;
  overflow: visible;
  max-width: 100%;
}

.sticky-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}

.sticky-media {
  position: sticky;
  top: 16vh;
  height: 68vh;
  border-radius: 32px;
  overflow: hidden;
}

.sticky-media img,
.sticky-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block {
  padding: 32px 30px;
  margin-bottom: 16px;
  border: 1px solid var(--card-stroke);
  border-radius: 20px;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.block h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin: 0 0 10px;
}

.block p {
  color: var(--muted);
  max-width: 36rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.stat {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.stat-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  margin-bottom: 16px;
}

.stat b {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  display: block;
}

.address-band {
  margin: 40px 4vw 0;
  padding: 64px;
  border-radius: 36px;
  background: #1e174a;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.address-band h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
}

.form-shell {
  min-height: auto;
  padding: clamp(96px, 14vh, 140px) 4vw 8vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 0;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: 18%;
  right: 8%;
  animation: floaty 8s ease-in-out infinite;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: var(--mint);
  bottom: 10%;
  left: 6%;
  animation: floaty 10s ease-in-out infinite reverse;
}

@keyframes floaty {
  50% {
    transform: translateY(-24px);
  }
}

.form-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--card);
  background-image: var(--card-shine);
  border: 1px solid var(--card-stroke-hover);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 0;
  width: 100%;
}

.field select {
  appearance: none;
}

.field select option {
  color: #000;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--gold);
  transform: translateY(-2px);
}

.field input.is-invalid,
.field input.is-invalid:focus {
  border-bottom-color: #e35d5d;
}

.site-foot {
  padding: 72px 4vw 28px;
  border-top: 1px solid var(--line);
  background: #000;
  color: var(--muted);
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px 32px;
  padding-bottom: 36px;
}

.foot-brand p,
.foot-grid p {
  margin: 0 0 10px;
  max-width: 28rem;
  line-height: 1.55;
  font-size: 0.92rem;
}

.foot-brand {
  padding-top: 4px;
}

.foot-brand .brand {
  margin-bottom: 18px;
}

.foot-grid a {
  color: #fff;
}

.foot-grid a:hover {
  color: var(--muted);
}

.foot-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 4px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.foot-links .section-kicker {
  display: none;
}

.foot-links p {
  margin: 0;
  max-width: none;
  width: auto;
}

.foot-links a {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .foot-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 40px;
  }
}

.foot-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.foot-bar a {
  color: #fff;
}

.draw-line {
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
}

.svc-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 18vh 6vw 8vh;
}

.svc-hero.is-copy {
  grid-template-columns: 1fr;
  max-width: 1100px;
  align-content: center;
}

.svc-hero.is-copy h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 16ch;
}

.svc-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 1.1rem + 2.2vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 16px;
}

.svc-hero h1 .line {
  display: block;
  overflow: hidden;
  white-space: normal;
}

.svc-visual {
  height: min(68vh, 560px);
  border-radius: 16px;
  overflow: hidden;
}

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

.svc-visual.is-fit {
  height: min(62vh, 520px);
}

.svc-visual.is-fit img,
.h-visual.is-fit img {
  object-fit: cover;
  object-position: center;
}

.svc-body {
  max-width: 44rem;
}

.svc-body p {
  color: var(--muted);
  font-size: 1.05rem;
}

.svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 12px;
}

.svc-cols h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.svc-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.svc-points li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.svc-points b {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.svc-points h3 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.svc-points p {
  margin: 0;
  color: var(--muted);
}

.svc-banner {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 1.1rem + 2vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  font-weight: 600;
  margin: 0;
}

.svc-note {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40rem;
  line-height: 1.65;
}

.svc-story {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14vh 8vw;
  perspective: 900px;
}

.svc-cine {
  margin: 0;
  max-width: 18em;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 1.15rem + 2.2vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.28;
  color: #fff;
}

.svc-cine .cine-word {
  display: inline-block;
  margin-right: 0.28em;
}

.svc-cine-sub {
  margin: 28px 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.svc-shot {
  position: relative;
  margin: 0 4vw 6vh;
  height: min(58vh, 560px);
  border-radius: 24px;
  overflow: hidden;
}

.svc-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.svc-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.svc-shot.is-dooh img { object-position: 70% center; }
.svc-shot.is-pr img { object-position: center 40%; }
.svc-shot.is-pub img { object-position: center center; }
.svc-shot.is-mob img { object-position: 60% center; }
.svc-shot.is-apps img { object-position: center center; }

.svc-shot.is-tall {
  height: min(72vh, 720px);
}

.svc-shot.is-round {
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  margin: 0 auto 8vh;
  border-radius: 50%;
}

.svc-hero.is-split {
  grid-template-columns: 1.05fr 0.95fr;
}

.svc-hero.is-overlay {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  padding: 0;
  display: block;
  overflow: hidden;
}

.svc-hero.is-overlay .svc-shot {
  margin: 0;
  height: 100%;
  border-radius: 0;
}

.svc-hero.is-overlay .svc-shot::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.78) 100%);
}

.svc-hero.is-overlay .svc-overlay {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 8vh;
  z-index: 2;
  max-width: min(40rem, calc(100vw - 12vw));
  will-change: transform, opacity;
}

.svc-hero.is-overlay .svc-shot img {
  transform-origin: 50% 50%;
}

.svc-bleed {
  position: relative;
  display: block;
  width: 100%;
  margin: 6vh 0 10vh;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.svc-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

.svc-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.svc-cap {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 9%;
  z-index: 2;
  max-width: 34rem;
}

.svc-cap small {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.svc-cap h3 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 600;
}

.svc-bleed.is-mall img { object-position: center 58%; }
.svc-bleed.is-desk img { object-position: center 42%; }
.svc-bleed.is-page img { object-position: center 52%; }
.svc-bleed.is-night img { object-position: 38% center; }
.svc-bleed.is-ui img { object-position: center 48%; }

.svc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.svc-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.svc-list b {
  display: block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.svc-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.svc-duo article {
  padding: 32px;
  border: 1px solid var(--card-stroke);
  border-radius: 20px;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.svc-duo article:hover {
  transform: translateY(-6px);
  border-color: var(--card-stroke-hover);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.svc-duo h3 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.svc-duo p {
  margin: 0;
  color: var(--muted);
}

.orbit {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  margin: 0 auto;
}

.orbit svg {
  width: 100%;
  height: 100%;
  animation: orbit-spin 22s linear infinite;
}

.orbit text {
  fill: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.orbit-core {
  position: absolute;
  inset: 28%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 6vw 8vh;
}

.svc-stats div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.svc-stats b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.svc-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: tile;
}

.svc-tiles article {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 26px;
  min-height: 138px;
  border: 1px solid var(--card-stroke);
  border-radius: 20px;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.svc-tiles article:hover {
  border-color: var(--card-stroke-hover);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.svc-tiles article::before {
  content: counter(tile, decimal-leading-zero);
  counter-increment: tile;
  display: block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.svc-tiles h3 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.svc-tiles p {
  margin: 0;
  color: var(--muted);
}

.svc-wipe,
.svc-bar,
.svc-veil,
.svc-linebar {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

.svc-wipe {
  inset: 0 auto 0 0;
  width: 0;
  background: #fff;
}

.svc-bar {
  top: 0;
  bottom: 0;
  width: 0;
  background: #000;
}

.svc-bar.is-left {
  left: 0;
}

.svc-bar.is-right {
  right: 0;
}

.svc-veil {
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: #000;
}

.svc-linebar {
  left: 6vw;
  bottom: 5.5vh;
  height: 2px;
  width: 0;
  background: #fff;
}

.svc-stage {
  width: 100%;
  overflow: hidden;
}

.svc-tiles.is-horizon {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 6vw;
}

.svc-tiles.is-horizon article {
  flex: 0 0 auto;
  width: min(340px, 72vw);
  min-height: 220px;
}

.svc-tiles.is-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  overflow: hidden;
}

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

.svc-tiles.is-stack {
  position: relative;
  height: 78vh;
}

.svc-tiles.is-stack article {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}

.svc-tiles.is-swap {
  position: relative;
  min-height: 78vh;
}

.svc-tiles.is-swap article {
  position: absolute;
  width: min(420px, 86vw);
}

.svc-tiles.is-fan {
  perspective: 1400px;
}

.svc-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0 28px;
  overflow: hidden;
}

.svc-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}

.svc-quote {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0;
}

.svc-need {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-need li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.svc-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 0 6vw 10vh;
}

.svc-next a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--card-stroke);
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.svc-next a small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svc-next a:hover {
  border-color: #fff;
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.page-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16vh 8vw 8vh;
}

.page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 1.15rem + 2.2vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: 0 auto;
  max-width: 16em;
}

.page-hero .hero-copy {
  margin: 28px auto 0;
  max-width: 40rem;
  text-align: center;
}

.svc-stack {
  padding: 0 4vw 80px;
}

.svc-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  margin-bottom: 16px;
  border: 1px solid var(--card-stroke);
  border-radius: 22px;
  align-items: center;
  background: var(--card);
  background-image: var(--card-shine);
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.svc-row:hover {
  transform: translateY(-4px);
  border-color: var(--card-stroke-hover);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.svc-row img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.outline-word {
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 4vh 0;
  font-weight: 600;
}

.section-kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  counter-reset: mini;
}

.mini-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  background-image: var(--card-shine);
  border: 1px solid var(--card-stroke);
  border-radius: 22px;
  padding: 26px 24px 28px;
  min-height: 214px;
  opacity: 1;
  box-shadow: var(--card-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  outline: none;
}

.mini-card::before {
  counter-increment: mini;
  content: counter(mini, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.mini-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.mini-card.is-on,
.mini-card:hover,
.mini-card:focus-visible {
  opacity: 1;
  border-color: #ffffff;
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mini-card.is-on::after,
.mini-card:hover::after,
.mini-card:focus-visible::after {
  opacity: 1;
}

.mini-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.22rem;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.mini-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.mini-card a {
  color: var(--gold);
  font-weight: 600;
}

#contact.form-shell {
  min-height: auto;
  padding-top: 14vh;
  padding-bottom: 8vh;
}

#contact.form-shell h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 12px;
}

@media (max-width: 1100px) {
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .work-copy h3 {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
  }

  .svc-row {
    grid-template-columns: 64px minmax(0, 1.2fr) minmax(0, 0.9fr);
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 3.6vw, 3.35rem);
    margin-bottom: 18px;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .chapter {
    padding: 64px 0;
  }

  .svc-hero.is-overlay .svc-overlay {
    bottom: 6vh;
  }
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .cursor,
  .cursor-ring {
    display: none !important;
  }

  .hero,
  .h-slide,
  .sticky-split,
  .address-band,
  .form-shell,
  .fields,
  .svc-row,
  .mini-grid,
  .about-cards,
  .work-board,
  .work-card.is-split,
  .work-card.is-split.is-flip,
  .more-grid,
  .industry-grid,
  .choose-grid,
  .office-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 32px;
    padding-top: 24px;
  }

  .foot-links a {
    white-space: normal;
  }

  .about-story {
    min-height: auto;
    padding: 16vh 6vw 8vh;
  }

  .svc-hero.is-overlay {
    height: auto;
    min-height: 100svh;
  }

  .svc-hero.is-overlay .svc-shot {
    height: 100svh;
  }

  .hero {
    min-height: 100svh;
    padding: 18vh 6vw 48px;
    align-items: end;
  }

  .hero-visual img {
    object-position: 82% 40%;
  }

  .hero-copy-col {
    max-width: none;
  }

  .hero-kicker {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.9rem);
    margin-bottom: 20px;
  }

  .hero h1 .line {
    white-space: normal;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .svc-hero h1 .line {
    white-space: normal;
  }

  .svc-hero.is-overlay .svc-overlay {
    left: 6vw;
    right: 6vw;
    bottom: 8vh;
    max-width: none;
  }

  .svc-story {
    min-height: 52vh;
    padding: 10vh 6vw;
  }

  .svc-cine {
    max-width: none;
  }

  .frame {
    height: 46vh;
    transform: none;
  }

  .h-track,
  .h-slide {
    display: block;
    width: 100%;
    height: auto;
  }

  .h-slide {
    padding: 64px 6vw;
  }

  .h-visual {
    height: 42vh;
    margin-top: 20px;
  }

  .sticky-media {
    position: relative;
    top: 0;
    height: 42vh;
  }

  .svc-cols,
  .svc-hero.is-split,
  .svc-stats,
  .svc-tiles,
  .svc-tiles.is-rows,
  .svc-list,
  .svc-duo,
  .svc-next {
    grid-template-columns: 1fr;
  }

  .svc-tiles.is-horizon {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .svc-tiles.is-horizon article {
    width: auto;
    min-height: 132px;
  }

  .svc-tiles.is-stack,
  .svc-tiles.is-swap {
    height: auto;
    min-height: 0;
  }

  .svc-tiles.is-stack article,
  .svc-tiles.is-swap article {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
  }

  .svc-bleed {
    aspect-ratio: auto;
    height: 56vh;
  }

  .svc-visual {
    height: 42vh;
  }

  .work-head {
    flex-direction: column;
    padding: 0 6vw 18px;
  }

  .work-board {
    padding: 0 6vw;
  }

  .work-rest {
    padding: 28px 6vw 8vh;
  }

  .work-card,
  .work-card.is-wide,
  .work-card.is-tile,
  .work-media {
    min-height: 42vh;
  }

  .work-rest .work-card.is-split,
  .work-rest .work-card.is-split.is-flip {
    min-height: 0;
  }

  .work-rest .work-media {
    height: 180px;
    min-height: 180px;
  }

  .work-card.is-split.is-flip .work-media,
  .work-card.is-split.is-flip .work-copy {
    order: 0;
  }

  .work-copy h3 {
    font-size: 1.55rem;
  }

  .feat-viewport {
    padding: 0 8px 8vh;
  }

  .feat-card,
  .feat-pin.is-stack .feat-card {
    left: 8px;
    right: 8px;
    height: 88vh;
    border-radius: 18px;
  }

  .feat-name,
  .feat-foot {
    left: 18px;
    right: 18px;
  }

  .feat-meta {
    display: none;
  }

  .feat-pills {
    left: 14px;
    top: 14px;
  }

  .feat-go {
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
  }

  .feat-foot h3 {
    font-size: 1.5rem;
  }
}


/* ---- Bilingual animated headings (English -> Emirati Arabic -> repeat) ---- */
.split-title.is-bi {
  overflow: visible;
}

.bihead-track {
  display: grid;
  justify-items: inherit;
}

.bihead-item {
  grid-area: 1 / 1;
  will-change: opacity, transform;
  animation: biCycle 6.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.bihead-item[lang="en"] {
  opacity: 1;
}

.bihead-item[lang="ar"] {
  opacity: 0;
  animation-delay: 3.2s;
  font-family: "Tajawal", "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

@keyframes biCycle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  6% {
    opacity: 1;
    transform: translateY(0);
  }
  44% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body {
    cursor: auto;
  }

  /* Keep only English visible when motion is reduced */
  .bihead-item[lang="ar"] {
    display: none;
  }
}
