:root {
  --black: #050505;
  --graphite: #111111;
  --ice: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.64);
  --gold: #c8a46a;
  --copper: #b9875a;
  --blue: #0b1220;
  --line: rgba(245, 245, 245, 0.12);
  --glass: rgba(10, 10, 10, 0.48);
  --font-display: "General Sans", "Satoshi", "Neue Montreal", "Inter", system-ui, sans-serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;
  --ease-luxury: cubic-bezier(.19,1,.22,1);
  --ease-soft: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--black);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  color: var(--ice);
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 135, 90, 0.12), transparent 28rem),
    radial-gradient(circle at 10% 55%, rgba(11, 18, 32, 0.92), transparent 38rem),
    var(--black);
  font-family: var(--font-body);
  line-height: 1.58;
  overflow-x: hidden;
  cursor: none;
  font-synthesis: none;
}

a, button, input, textarea, select { font: inherit; color: inherit; }
a {
  text-decoration: none;
  text-underline-offset: 0.24em;
}
button { background: none; border: 0; cursor: none; }
img, video { display: block; max-width: 100%; }
img { height: auto; }

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.cursor-dot, .cursor-ring {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 1;
  will-change: left, top, opacity, transform;
  transition: opacity 0.18s ease, transform 0.18s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(200, 164, 106, 0.85);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 164, 106, 0.45);
  border-radius: 50%;
}
.cursor-ring.is-hover {
  width: 58px;
  height: 58px;
  border-color: rgba(245, 245, 245, 0.58);
  box-shadow: 0 0 22px rgba(245,245,245,0.08);
}
.cursor-ring.is-contact {
  width: 68px;
  height: 68px;
  border-color: rgba(200, 164, 106, 0.82);
  box-shadow: 0 0 38px rgba(184, 135, 90, 0.22);
}
body.is-scrolling .cursor-dot,
body.is-scrolling .cursor-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}
body.modal-open.is-scrolling .cursor-dot,
body.modal-open.is-scrolling .cursor-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 1px solid rgba(200,164,106,0.9);
  outline-offset: 5px;
  box-shadow: 0 0 0 4px rgba(200,164,106,0.12);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.64), rgba(5, 5, 5, 0.18));
  backdrop-filter: blur(20px);
  transition: background 0.35s var(--ease-soft), height 0.35s var(--ease-soft), border-color 0.35s ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(5, 5, 5, 0.76);
  border-color: rgba(200,164,106,0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(178px, 17vw, 270px);
  height: 48px;
  overflow: hidden;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 48px);
}
.desktop-nav a {
  position: relative;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,245,245,0.76);
  transition: color 0.25s ease, transform 0.25s var(--ease-soft);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transition: right 0.34s var(--ease-luxury);
}
.desktop-nav a:hover { color: var(--ice); transform: translateY(-1px); }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a.is-active { color: var(--ice); }
.desktop-nav a.is-active::after {
  right: 0;
  background: linear-gradient(90deg, var(--gold), rgba(200,164,106,0.15));
  box-shadow: 0 0 16px rgba(200,164,106,0.34);
}

.talk-link, .btn, .small-link, .mobile-talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(245, 245, 245, 0.2);
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: border-color 0.32s var(--ease-soft), box-shadow 0.32s var(--ease-soft), transform 0.32s var(--ease-soft), background 0.32s var(--ease-soft), color 0.32s ease;
}
.talk-link {
  height: 42px;
  padding: 0 20px;
  font-size: 0.72rem;
}
.talk-link:hover, .btn:hover, .small-link:hover, .mobile-talk:hover {
  border-color: rgba(200, 164, 106, 0.78);
  box-shadow: 0 0 38px rgba(184, 135, 90, 0.2);
  transform: translateY(-2px);
}
.talk-link:active, .btn:active, .small-link:active, .mobile-talk:active {
  transform: translateY(0) scale(0.985);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: var(--ice);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  gap: 40px;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(28px);
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(.19,1,.22,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: grid; gap: 22px; text-align: center; }
.mobile-menu a { text-transform: uppercase; letter-spacing: 0.18em; font-family: var(--font-display); font-size: clamp(2rem, 9vw, 4.8rem); }
.mobile-talk { justify-self: center; padding: 18px 26px; font-size: 0.75rem; }

.brand-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.brand-image-banner {
  display: block;
  isolation: isolate;
}
.brand-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.02);
  animation: brandImageReveal 1.2s cubic-bezier(.19,1,.22,1) both;
}
.brand-image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(245,245,245,0.08) 48%, transparent 54%),
    radial-gradient(circle at 10% 48%, rgba(245,245,245,0.08), transparent 12rem),
    radial-gradient(circle at 92% 48%, rgba(44,102,255,0.14), transparent 13rem);
  mix-blend-mode: screen;
  opacity: 0;
  animation: brandLightSweep 2.6s 0.25s cubic-bezier(.19,1,.22,1) both;
}
.brand-banner-top {
  height: clamp(136px, 12.8vw, 200px);
  margin-top: 82px;
  display: grid;
  grid-template-columns: minmax(150px, 23vw) 1fr minmax(260px, 29vw);
  align-items: center;
}
.brand-banner-symbol {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(14px, 1.45vw, 28px);
}
.brand-banner-symbol img {
  display: block;
  width: clamp(76px, 7.8vw, 124px);
  height: clamp(76px, 7.8vw, 124px);
  object-fit: contain;
}
.brand-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  color: #f5f5f5;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-banner-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.26em;
  padding-left: 0.26em;
}
.brand-studio {
  width: min(94%, 430px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  margin-top: clamp(8px, 0.8vw, 13px);
  font-size: clamp(0.92rem, 1.45vw, 1.55rem);
  letter-spacing: 0.45em;
  padding-left: 0.45em;
}
.brand-studio i { height: 1px; background: rgba(245,245,245,0.88); }
.brand-banner-copy p {
  margin: clamp(8px, 0.8vw, 13px) 0 0;
  font-size: clamp(0.58rem, 0.8vw, 0.88rem);
  line-height: 1.45;
  letter-spacing: 0.2em;
}
.brand-banner-residence {
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.brand-banner-residence img,
.footer-vr img,
.footer-residence img {
  position: absolute;
  top: 0;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
}
.brand-banner-residence img,
.footer-residence img { right: 0; }
.footer-vr img { left: 0; }
.brand-banner-copy > * {
  opacity: 0;
  animation: brandTextReveal 1.05s cubic-bezier(.19,1,.22,1) forwards;
}
.brand-banner-copy > :nth-child(2) { animation-delay: 0.12s; }
.brand-banner-copy > :nth-child(3) { animation-delay: 0.24s; }
@keyframes brandTextReveal {
  from { opacity: 0; transform: translate3d(0, 13px, 0); filter: blur(5px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
@keyframes brandImageReveal {
  from { opacity: 0; transform: scale(1.025); filter: blur(8px) contrast(1.04); }
  to { opacity: 1; transform: scale(1); filter: blur(0) contrast(1.04) saturate(1.02); }
}
@keyframes brandLightSweep {
  0% { opacity: 0; transform: translateX(-22%); }
  38% { opacity: 0.72; }
  100% { opacity: 0.18; transform: translateX(22%); }
}

.section { position: relative; z-index: 2; padding: clamp(88px, 10vw, 160px) 6vw; }
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.98) contrast(1.05);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.72) 34%, rgba(5,5,5,0.22) 64%, rgba(5,5,5,0.7) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.42) 0%, rgba(5,5,5,0.06) 46%, rgba(5,5,5,0.92) 100%);
}
.hero-grid { width: min(760px, 100%); max-width: 760px; padding-top: 0; transform: translateY(-3vh); }
.eyebrow, .section-kicker {
  margin: 0 0 26px;
  color: rgba(245,245,245,0.62);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  line-height: 1.8;
}
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 8.6vw, 10.8rem);
  line-height: 0.88;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}
.hero-title span { display: block; }
.accent { color: var(--gold); text-shadow: 0 0 46px rgba(200, 164, 106, 0.22); }
.hero-sub {
  margin: 32px 0 0;
  color: rgba(245,245,245,0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}
.hero-copy {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 0;
}
.hero-investment {
  max-width: min(860px, 92vw);
  margin: 46px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(200,164,106,0.42);
  color: rgba(245,245,245,0.82);
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  line-height: 1.72;
  text-shadow: 0 0 22px rgba(0,0,0,0.56);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.btn {
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.72rem;
  background: rgba(245,245,245,0.03);
  will-change: transform, box-shadow;
}
.btn-primary {
  background: linear-gradient(135deg, rgba(200,164,106,0.92), rgba(185,135,90,0.75));
  color: #080808;
  border-color: rgba(200,164,106,0.9);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(217,184,123,0.96), rgba(196,143,95,0.82));
}
.btn-ghost span { color: var(--gold); }

.experience-orbit {
  position: absolute;
  right: 7vw;
  bottom: 21vh;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(200,164,106,0.42);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle, rgba(200,164,106,0.12), rgba(5,5,5,0.04) 66%);
  box-shadow: 0 0 70px rgba(184,135,90,0.15), inset 0 0 38px rgba(245,245,245,0.04);
  animation: none;
}
.experience-orbit::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245,245,245,0.1);
  border-radius: inherit;
}
.experience-orbit span, .experience-orbit strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.61rem;
}
.experience-orbit strong { color: var(--gold); margin-top: 4px; }
.hero-side {
  position: absolute;
  left: 2.4vw;
  bottom: 28vh;
  writing-mode: vertical-rl;
  color: rgba(245,245,245,0.4);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.6rem;
}

.stats-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -72px 6vw 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,17,17,0.72), rgba(5,5,5,0.72));
  backdrop-filter: blur(26px);
}
.stat {
  min-height: 142px;
  padding: 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat span {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 300;
}
.stat sup { color: var(--gold); font-size: 1.4rem; }
.stat p {
  margin: 7px 0 0;
  color: rgba(245,245,245,0.58);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  line-height: 1.8;
}

.section-gateway {
  z-index: 2;
  padding-top: clamp(96px, 9vw, 150px);
  padding-bottom: clamp(80px, 8vw, 130px);
  background:
    radial-gradient(circle at 72% 18%, rgba(200,164,106,0.1), transparent 34rem),
    linear-gradient(180deg, rgba(5,5,5,0.78), rgba(5,5,5,0.98));
}
.gateway-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 34px;
}
.gateway-heading h2 {
  margin: 0;
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 7rem);
  line-height: 0.94;
  font-weight: 300;
  text-transform: uppercase;
}
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(250px, 27vw);
  gap: 16px;
}
.gateway-card {
  --spot-x: 50%;
  --spot-y: 50%;
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  --slide-origin: 50% 50%;
  --slide-shift-x: 1.4%;
  --slide-shift-y: -1.2%;
  --slide-scale: 1.075;
  --slide-glow: rgba(200,164,106,0.13);
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(245,245,245,0.13);
  border-radius: 8px;
  overflow: hidden;
  background: #030303;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 28px 90px rgba(0,0,0,0.3);
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform 0.28s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.gateway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(200,164,106,0.17), transparent 25%),
    linear-gradient(110deg, transparent 0 36%, rgba(255,255,255,0.1) 48%, transparent 62%),
    linear-gradient(90deg, rgba(5,5,5,0.9), rgba(5,5,5,0.22) 58%, rgba(5,5,5,0.7)),
    linear-gradient(180deg, rgba(5,5,5,0.15), rgba(5,5,5,0.92));
  background-size: 100% 100%, 220% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, -135% 0, 0 0, 0 0;
  animation: none;
}
.gateway-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.gateway-card img,
.gateway-motion {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.88) contrast(1.08);
  transform-origin: var(--slide-origin);
  animation: none;
  transition: transform 0.75s ease, opacity 0.35s ease, filter 0.35s ease;
}
.gateway-motion {
  pointer-events: none;
}
.gateway-card span {
  width: max-content;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}
.gateway-card span::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 8px;
  background: rgba(200,164,106,0.6);
}
.gateway-card h3 {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.1vw, 5.5rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gateway-card p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(245,245,245,0.68);
  line-height: 1.7;
  font-size: 0.92rem;
}
.gateway-card i {
  position: absolute;
  right: clamp(24px, 3vw, 42px);
  bottom: clamp(24px, 3vw, 42px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,245,245,0.22);
  border-radius: 50%;
  color: var(--gold);
  font-style: normal;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.gateway-card:hover {
  --lift: -5px;
  --slide-scale: 1.105;
  border-color: rgba(200,164,106,0.5);
  box-shadow: 0 30px 120px rgba(0,0,0,0.52), 0 0 60px rgba(184,135,90,0.12);
}
.gateway-card:hover img,
.gateway-card:hover .gateway-motion {
  opacity: 0.92;
  filter: saturate(1) contrast(1.16);
}
.gateway-card:hover::after,
.gateway-card:hover i {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gateway-projects {
  grid-column: span 7;
  grid-row: span 2;
}
.gateway-services {
  grid-column: span 5;
}
.gateway-process { grid-column: span 5; }
.gateway-studio,
.gateway-contact { grid-column: span 6; }

.gateway-card[data-slide-motion] {
  background:
    radial-gradient(circle at 78% 20%, var(--slide-glow), transparent 34%),
    #030303;
}
.gateway-card[data-slide-motion] span,
.gateway-card[data-slide-motion] h3,
.gateway-card[data-slide-motion] p,
.gateway-card[data-slide-motion] .gateway-subtab,
.gateway-card[data-slide-motion] i {
  position: relative;
  z-index: 1;
}
.gateway-card[data-slide-motion="projects"] {
  --slide-origin: 35% 42%;
  --slide-shift-x: -1.8%;
  --slide-shift-y: 1.1%;
  --slide-glow: rgba(245,245,245,0.11);
}
.gateway-card[data-slide-motion="services"] {
  --slide-origin: 76% 26%;
  --slide-shift-x: 1.8%;
  --slide-shift-y: -1.4%;
  --slide-glow: rgba(245,245,245,0.1);
}
.gateway-card[data-slide-motion="process"] {
  --slide-origin: 72% 50%;
  --slide-shift-x: -1.1%;
  --slide-shift-y: -1.6%;
  --slide-glow: rgba(200,164,106,0.16);
}
.gateway-card[data-slide-motion="studio"] {
  --slide-origin: 58% 44%;
  --slide-shift-x: 1.3%;
  --slide-shift-y: 1.2%;
  --slide-glow: rgba(60,130,255,0.12);
}
.gateway-card[data-slide-motion="contact"] {
  --slide-origin: 22% 48%;
  --slide-shift-x: -1.4%;
  --slide-shift-y: 1.6%;
  --slide-glow: rgba(200,164,106,0.18);
}
.gateway-card[data-slide-motion="studio"] img,
.gateway-card[data-slide-motion="studio"] .gateway-motion {
  object-position: 56% 44%;
}
.gateway-card[data-slide-motion="contact"] img,
.gateway-card[data-slide-motion="contact"] .gateway-motion {
  object-position: 26% 50%;
}
.gateway-card[data-slide-motion="projects"]::after,
.gateway-card[data-slide-motion="services"]::after,
.gateway-card[data-slide-motion="studio"]::after {
  background:
    radial-gradient(circle at 22% 22%, rgba(245,245,245,0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 38%, rgba(245,245,245,0.12) 0 1px, transparent 2px),
    linear-gradient(90deg, transparent, rgba(245,245,245,0.08), transparent);
  background-size: 120px 120px, 180px 180px, 100% 1px;
  background-position: 0 0, 20px 34px, 0 30%;
  animation: none;
}
.gateway-card[data-slide-motion="process"]::after,
.gateway-card[data-slide-motion="contact"]::after {
  box-shadow: inset 0 0 34px rgba(200,164,106,0.1);
}
.gateway-subtab {
  width: min(360px, 100%);
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 1px solid rgba(200,164,106,0.58);
  background: linear-gradient(90deg, rgba(5,5,5,0.68), rgba(5,5,5,0.22));
  backdrop-filter: blur(12px);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translate3d(-10px, 0, 0);
  transition: opacity 0.42s ease, clip-path 0.68s cubic-bezier(.22,1,.36,1), transform 0.68s cubic-bezier(.22,1,.36,1);
}
.gateway-subtab strong {
  display: block;
  color: var(--ice);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.gateway-subtab small {
  display: block;
  margin-top: 9px;
  color: rgba(245,245,245,0.68);
  font-size: 0.76rem;
  line-height: 1.6;
}
.gateway-card:hover .gateway-subtab,
.gateway-card:focus-visible .gateway-subtab {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
}

@keyframes gatewaySlideDrift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(var(--slide-scale)) translate3d(var(--slide-shift-x), var(--slide-shift-y), 0);
  }
}

@keyframes gatewaySlideLight {
  0%, 36% {
    background-position: 0 0, -135% 0, 0 0, 0 0;
  }
  72%, 100% {
    background-position: 0 0, 135% 0, 0 0, 0 0;
  }
}

@keyframes gatewaySignalDrift {
  0% {
    background-position: 0 0, 20px 34px, -120% 30%;
  }
  100% {
    background-position: 22px -34px, -10px 68px, 120% 30%;
  }
}

.featured,
.services,
.process,
.about,
.contact {
  overflow: hidden;
}
.section-identity {
  display: grid;
  grid-template-columns: auto minmax(48px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: rgba(245,245,245,0.56);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.66rem;
}
.section-identity::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,164,106,0.46), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1) 0.18s;
}
.section-identity.is-visible::after { transform: scaleX(1); }
.section-identity strong { grid-column: 1; color: rgba(245,245,245,0.9); font-weight: 500; }
.section-identity small { grid-column: 3; justify-self: end; color: rgba(245,245,245,0.42); }
.featured > *,
.services > *,
.process > *,
.about > *,
.contact > * {
  position: relative;
  z-index: 1;
}
.section-motion-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.82) contrast(1.16);
  pointer-events: none;
}
.featured::before,
.services::before,
.process::before,
.about::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--section-bg) center / cover no-repeat;
  opacity: var(--section-bg-opacity, 0.28);
  filter: saturate(0.92) contrast(1.08);
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 72%, transparent 100%);
  transform: scale(1.025) translate3d(-0.35%, 0, 0);
  animation: none;
  will-change: transform;
}
.featured::after,
.services::after,
.process::after,
.about::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92), rgba(5,5,5,0.52), rgba(5,5,5,0.9)),
    radial-gradient(circle at 82% 18%, rgba(200,164,106,0.11), transparent 34rem);
}
.featured {
  --section-bg: none;
  --section-bg-opacity: 0;
  padding-top: clamp(90px, 9vw, 150px);
}
.services {
  --section-bg: none;
  --section-bg-opacity: 0;
}
.process {
  --section-bg: none;
  --section-bg-opacity: 0;
}
.about {
  --section-bg: none;
  --section-bg-opacity: 0;
}
.contact {
  --section-bg: none;
  --section-bg-opacity: 0;
}
.projects-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.project-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.project-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(245,245,245,0.13);
  border-radius: 999px;
  color: rgba(245,245,245,0.56);
  background: rgba(245,245,245,0.03);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.64rem;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.project-tabs button:hover,
.project-tabs button.is-active {
  color: var(--ice);
  border-color: rgba(200,164,106,0.66);
  background: rgba(200,164,106,0.09);
  box-shadow: 0 0 28px rgba(184,135,90,0.12);
}
.slider-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) 1fr;
  min-height: 570px;
  border: 1px solid var(--line);
  background: rgba(5,5,5,0.52);
}
.project-copy {
  padding: clamp(34px, 4vw, 68px);
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}
.project-copy span { color: var(--gold); letter-spacing: 0.22em; font-size: 0.74rem; }
.project-copy h2, .section-heading h2, .about-copy h2, .immersive-content h2, .showreel h2, .contact-copy h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0;
}
.project-copy h2 {
  margin: 30px 0 10px;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 1;
}
.project-copy p { color: var(--muted); line-height: 1.85; }
.small-link {
  width: max-content;
  margin-top: 24px;
  padding: 14px 18px;
  font-size: 0.68rem;
}
.project-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: left;
  background: #050505;
  border: 0;
}
.project-frame::before,
.project-gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(200,164,106,0.12) 46%, rgba(245,245,245,0.28) 50%, rgba(200,164,106,0.08) 54%, transparent 100%);
  transform: translate3d(-110%,0,0);
}
.project-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.35s ease;
}
.project-frame:hover img { transform: scale(1.045); }
.project-frame.is-switching::before,
.project-gallery-stage.is-switching::before {
  animation: cinematicSweep 0.72s cubic-bezier(.65,0,.2,1) both;
}
.project-frame.is-switching img {
  animation: cinematicImageSwap 0.72s cubic-bezier(.65,0,.2,1) both;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,5,5,0.54));
}
.slider-controls {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245,245,245,0.32);
  border-radius: 50%;
  background: rgba(5,5,5,0.34);
  backdrop-filter: blur(10px);
}
.slider-controls button:hover {
  border-color: rgba(200,164,106,0.72);
  box-shadow: 0 0 26px rgba(184,135,90,0.22);
}
.project-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.project-thumb {
  height: 96px;
  border: 1px solid var(--line);
  opacity: 0.52;
  overflow: hidden;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
.project-thumb.is-active { opacity: 1; border-color: rgba(200,164,106,0.72); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-index-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.project-index-card {
  position: relative;
  min-height: 260px;
  padding: 0;
  border: 1px solid rgba(245,245,245,0.12);
  background: #050505;
  overflow: hidden;
}
.project-index-card[hidden],
.project-thumb[hidden] {
  display: none;
}
.project-index-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.55s ease, opacity 0.25s ease, filter 0.25s ease;
}
.project-index-card:hover {
  border-color: rgba(200,164,106,0.58);
}
.project-index-card:hover img,
.project-index-card:focus-visible img {
  opacity: 0.96;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.06);
}
.cinematic-item {
  opacity: 0;
  clip-path: inset(8% 0 0 0);
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.78s cubic-bezier(.22,1,.36,1) var(--motion-delay, 0ms),
    transform 0.9s cubic-bezier(.22,1,.36,1) var(--motion-delay, 0ms),
    clip-path 0.9s cubic-bezier(.22,1,.36,1) var(--motion-delay, 0ms),
    border-color 0.25s ease;
}
.cinematic-item.is-in {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0,0,0);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 7vw;
  align-items: start;
  margin-bottom: 54px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 6.8rem);
  line-height: 0.98;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245,245,245,0.055), rgba(245,245,245,0.015)),
    rgba(17,17,17,0.56);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 25%;
  height: 150px;
  background: radial-gradient(circle, rgba(184,135,90,0.22), transparent 62%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,164,106,0.36);
  box-shadow: 0 24px 80px rgba(0,0,0,0.36);
}
.service-card:hover::after { opacity: 1; }
.service-card h3 {
  margin: 70px 0 18px;
  max-width: 280px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}
.service-card p { color: var(--muted); line-height: 1.78; margin: 0; }
.icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200,164,106,0.55);
  border-radius: 50%;
  position: absolute;
}
.icon::before, .icon::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(245,245,245,0.44); }
.play::before { border-radius: 50%; }
.play::after { inset: 16px 14px 16px 18px; clip-path: polygon(0 0, 100% 50%, 0 100%); background: var(--ice); border: 0; }
.orbit::before { border-radius: 50%; transform: rotate(34deg) scaleX(1.5); }
.visor::before { border-radius: 11px; inset: 15px 9px; }
.plan::before { border-radius: 0; transform: rotate(45deg); }
.node::before { border-radius: 50%; inset: 7px; }
.node::after { border: 0; height: 1px; top: 24px; left: 7px; right: 7px; background: rgba(245,245,245,0.5); }

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  align-items: center;
}
.about-copy h2, .immersive-content h2, .contact-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(2.6rem, 5.2vw, 7rem);
  line-height: 0.96;
}
.about-copy p { color: var(--muted); line-height: 1.9; font-size: 1.02rem; }
.about-image {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; filter: contrast(1.08) saturate(0.9); }
.quote {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 430px;
  padding: 24px;
  border: 1px solid rgba(245,245,245,0.14);
  background: rgba(5,5,5,0.58);
  backdrop-filter: blur(16px);
  color: rgba(245,245,245,0.88);
  line-height: 1.65;
}
.quote span { display: block; margin-top: 12px; color: var(--gold); }

.immersive {
  min-height: 780px;
  display: grid;
  align-content: center;
  overflow: hidden;
  background: #010102;
}
.immersive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}
.immersive::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 38%, rgba(173, 44, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 62% 42%, rgba(15, 207, 235, 0.14), transparent 22rem),
    linear-gradient(90deg, rgba(5,5,5,0.78), transparent 52%, rgba(5,5,5,0.34));
}
.immersive-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.immersive-content p:not(.eyebrow) { color: rgba(245,245,245,0.72); font-size: 1.1rem; line-height: 1.8; }
.holo-card {
  position: absolute;
  z-index: 2;
  right: 8vw;
  bottom: 12vh;
  max-width: 330px;
  padding: 26px;
  border: 1px solid rgba(151, 90, 255, 0.34);
  background: rgba(5,5,5,0.52);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(117, 39, 235, 0.2);
}
.holo-card span { color: #7ee8ff; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.68rem; }
.holo-card strong { display: block; margin-top: 15px; line-height: 1.65; font-weight: 400; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(200,164,106,0.42);
}
.timeline-item {
  padding: 32px 22px 0 0;
  border-right: 1px solid var(--line);
}
.timeline-item span { color: var(--gold); letter-spacing: 0.2em; font-size: 0.72rem; }
.timeline-item h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; }
.timeline-item p { color: var(--muted); line-height: 1.75; font-size: 0.92rem; }

.testimonials {
  position: relative;
  overflow: hidden;
  background: #030303;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 34%, rgba(200,164,106,0.16), transparent 25rem),
    linear-gradient(90deg, rgba(5,5,5,0.82), rgba(5,5,5,0.52), rgba(5,5,5,0.9));
  pointer-events: none;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(0.78) contrast(1.1);
}
.testimonials-bg-video {
  display: block;
  background: #030303;
}
.testimonials > *:not(.testimonials-bg) {
  position: relative;
  z-index: 2;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.testimonial {
  position: relative;
  min-height: 420px;
  padding: 36px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
}
.testimonial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: contrast(1.1) saturate(0.8);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 28px;
  font-family: serif;
  font-size: 12rem;
  color: rgba(200,164,106,0.18);
}
.testimonial div { position: relative; z-index: 1; max-width: 620px; }
.testimonial span { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.7rem; }
.testimonial p { color: rgba(245,245,245,0.86); line-height: 1.75; font-size: 1.08rem; }
.testimonial strong { font-weight: 500; }

.showreel {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.showreel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 48%, rgba(200,164,106,0.11), transparent 28rem),
    linear-gradient(90deg, rgba(5,5,5,0.9), rgba(5,5,5,0.16), rgba(5,5,5,0.88)),
    url("assets/images/backgrounds/footer.webp") center / cover no-repeat;
  filter: contrast(1.08) saturate(0.9);
  transform: scale(1.02);
}
.showreel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,0.82), rgba(5,5,5,0.22), rgba(5,5,5,0.82));
}
.showreel-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}
.play-giant {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(200,164,106,0.8);
  border-radius: 50%;
  background: rgba(5,5,5,0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 66px rgba(200,164,106,0.22);
}
.play-giant::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--ice);
  transform: translateX(4px);
}
.showreel h2 {
  margin: 38px 0 0;
  font-size: clamp(3.2rem, 8vw, 10rem);
  line-height: 0.86;
}
.showreel-direct-link {
  margin-top: 28px;
  color: rgba(245,245,245,0.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}
.showreel-direct-link:hover { color: var(--gold); }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
  gap: 26px;
  min-height: 720px;
  align-content: center;
  overflow: hidden;
  background: #050505;
}
.contact .contact-copy {
  grid-column: 1;
  align-self: auto;
  max-width: 660px;
}
.contact .contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.45vw, 3rem);
  line-height: 1.05;
  max-width: 560px;
}
.contact-identity {
  grid-column: 1;
  align-self: auto;
  grid-template-columns: auto 1fr;
  max-width: 640px;
  margin-bottom: 0;
}
.contact-identity::after {
  grid-column: 1 / -1;
  width: min(320px, 100%);
  margin-left: 0;
}
.contact-identity small {
  grid-column: 1 / -1;
  justify-self: start;
  max-width: 560px;
  margin-top: 8px;
  color: rgba(245,245,245,0.68);
  text-transform: none;
  letter-spacing: 0.035em;
  font-size: clamp(0.86rem, 1.05vw, 1rem);
  line-height: 1.75;
}
.contact-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: contrast(1.08) saturate(0.9);
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92), rgba(5,5,5,0.48) 54%, rgba(5,5,5,0.78)),
    radial-gradient(circle at 84% 20%, rgba(200,164,106,0.18), transparent 28rem);
}
.contact-list { display: grid; gap: 14px; margin-top: 34px; }
.contact-list a {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: rgba(245,245,245,0.72);
}
.contact-list a:hover { color: var(--gold); }
.contact-actions-panel {
  grid-column: 1;
  grid-row: auto;
  justify-self: start;
  width: min(100%, 640px);
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(245,245,245,0.14);
  background: rgba(5,5,5,0.42);
  backdrop-filter: blur(18px);
}
.contact-action {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 18px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 22px;
  border: 1px solid rgba(245,245,245,0.14);
  background: linear-gradient(135deg, rgba(245,245,245,0.055), rgba(200,164,106,0.035));
  cursor: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.contact-action:hover {
  transform: translateY(-3px);
  border-color: rgba(200,164,106,0.58);
  background: linear-gradient(135deg, rgba(200,164,106,0.16), rgba(245,245,245,0.05));
  box-shadow: 0 20px 54px rgba(0,0,0,0.22), 0 0 36px rgba(184,135,90,0.12);
}
.contact-icon {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,164,106,0.54);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.35rem;
}
.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.contact-action small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,245,245,0.54);
}
.contact-action strong {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  background: #000;
}
.brand-banner-footer {
  height: clamp(164px, 12.5vw, 256px);
  display: grid;
  grid-template-columns: minmax(300px, 28vw) 1fr minmax(320px, 30vw);
  align-items: stretch;
}
.brand-banner.brand-image-banner,
.brand-banner-top.brand-image-banner,
.brand-banner-footer.brand-image-banner {
  display: block;
}
.brand-banner-top.brand-image-banner {
  height: clamp(138px, 10.2vw, 198px);
}
.brand-banner-footer.brand-image-banner {
  height: clamp(174px, 12vw, 248px);
}
.contact::before {
  display: none;
}
.footer-vr,
.footer-residence {
  position: relative;
  overflow: hidden;
}
.footer-brand-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 20px);
  margin: 0;
  color: rgba(245,245,245,0.92);
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 0.82vw, 0.92rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-brand-copy i {
  width: 1px;
  height: 18px;
  background: rgba(245,245,245,0.48);
}
.footer-brand-copy > * {
  opacity: 0;
}
.footer-brand-copy.is-visible > * {
  animation: footerTextReveal 0.9s cubic-bezier(.19,1,.22,1) forwards;
}
.footer-brand-copy.is-visible > :nth-child(2) { animation-delay: 0.08s; }
.footer-brand-copy.is-visible > :nth-child(3) { animation-delay: 0.16s; }
.footer-brand-copy.is-visible > :nth-child(4) { animation-delay: 0.24s; }
.footer-brand-copy.is-visible > :nth-child(5) { animation-delay: 0.32s; }
@keyframes footerTextReveal {
  from { opacity: 0; transform: translate3d(0, 10px, 0); filter: blur(4px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
.footer-links {
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 22px 6vw;
  line-height: 1.4;
}
.footer-social-label {
  color: rgba(245,245,245,0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer-links a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 82px;
  color: rgba(245,245,245,0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.26s ease, transform 0.26s var(--ease-soft);
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: right 0.3s var(--ease-luxury);
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
.footer-links a:hover::after { right: 0; }
.social-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,164,106,0.38);
  border-radius: 50%;
  color: rgba(245,245,245,0.8);
  background: rgba(5,5,5,0.34);
  box-shadow: inset 0 0 18px rgba(245,245,245,0.03), 0 0 24px rgba(184,135,90,0.08);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  transition: border-color 0.28s var(--ease-soft), color 0.28s ease, box-shadow 0.28s ease, transform 0.28s var(--ease-soft);
}
.footer-links a:hover .social-icon {
  color: var(--gold);
  border-color: rgba(200,164,106,0.78);
  box-shadow: 0 0 30px rgba(184,135,90,0.2);
  transform: translateY(-2px);
}
.social-icon-instagram::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 5px;
}
.social-icon-instagram::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.social-icon-youtube {
  border-radius: 999px;
}
.social-icon-youtube::before {
  content: "";
  width: 17px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 4px;
}
.social-icon-youtube::after {
  content: "";
  position: absolute;
  left: 14px;
  width: 0;
  height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.social-icon-facebook {
  font-size: 1rem;
  font-family: Georgia, serif;
}
.social-icon-linkedin {
  font-size: 0.86rem;
}
.social-icon-behance {
  font-size: 0.78rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 6vw;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal > button {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(245,245,245,0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.modal-panel {
  position: relative;
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: block;
  border: 1px solid rgba(200,164,106,0.36);
  background: #000;
  box-shadow: 0 0 100px rgba(184,135,90,0.18);
}
.modal-panel iframe,
.modal-panel video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #000;
}
.modal-youtube-link {
  position: absolute;
  right: 18px;
  bottom: -48px;
  color: rgba(245,245,245,0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}
.modal-youtube-link:hover { color: var(--gold); }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 205;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 74% 20%, rgba(184,135,90,0.13), transparent 32rem),
    rgba(0,0,0,0.88);
  backdrop-filter: blur(26px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.contact-modal-close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  color: rgba(245,245,245,0.68);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.contact-modal-panel {
  width: min(760px, 100%);
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(200,164,106,0.28);
  background:
    linear-gradient(145deg, rgba(12,12,12,0.92), rgba(5,5,5,0.78)),
    rgba(5,5,5,0.92);
  box-shadow: 0 34px 120px rgba(0,0,0,0.72), 0 0 80px rgba(184,135,90,0.12);
  transform: translate3d(0,18px,0) scale(0.985);
  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
}
.contact-modal.is-open .contact-modal-panel {
  transform: translate3d(0,0,0) scale(1);
}
.contact-modal-panel h2 {
  min-width: 0;
  max-width: 100%;
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.35vw, 1.22rem);
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.contact-modal-panel label {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: rgba(245,245,245,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}
.contact-modal-panel input,
.contact-modal-panel textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(245,245,245,0.14);
  border-radius: 4px;
  background: rgba(255,255,255,0.045);
  color: var(--ice);
  padding: 16px 15px;
  outline: 0;
  text-transform: none;
  letter-spacing: 0.02em;
}
.contact-modal-panel textarea {
  min-height: 148px;
  max-height: min(42vh, 360px);
  resize: vertical;
}
.contact-modal-panel .btn[type="submit"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.contact-modal-panel input:focus,
.contact-modal-panel textarea:focus {
  border-color: rgba(200,164,106,0.66);
  box-shadow: 0 0 0 3px rgba(200,164,106,0.08);
}
.form-note {
  margin: 0;
  color: rgba(245,245,245,0.54);
  line-height: 1.6;
  font-size: 0.84rem;
}

.modal-open { overflow: hidden; }
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  background:
    radial-gradient(circle at 70% 20%, rgba(184,135,90,0.12), transparent 32rem),
    rgba(0,0,0,0.9);
  backdrop-filter: blur(26px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.project-modal.is-maximized {
  padding: 0;
  place-items: stretch;
}

.project-modal-zoom,
.project-modal-fullscreen {
  position: absolute;
  top: 24px;
  z-index: 2;
  min-width: 76px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(200,164,106,0.42);
  border-radius: 999px;
  color: rgba(245,245,245,0.74);
  background: rgba(5,5,5,0.42);
  backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}
.project-modal-zoom { right: 116px; }
.project-modal-fullscreen { right: 212px; }
.project-modal-zoom:hover,
.project-modal-fullscreen:hover {
  color: var(--ice);
  border-color: rgba(200,164,106,0.74);
  box-shadow: 0 0 26px rgba(184,135,90,0.18);
}
.project-modal-zoom:focus-visible,
.project-modal-fullscreen:focus-visible,
.project-modal-close:focus-visible,
.gallery-nav:focus-visible,
.gallery-thumb:focus-visible {
  outline-offset: 3px;
}
.project-gallery-stage.is-zoomed {
  overflow: hidden;
  cursor: none;
}
.project-gallery-stage.is-zoomed img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  margin: 0;
  transform: scale(var(--gallery-zoom, 1));
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.18s ease;
  cursor: none;
}

.project-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  color: rgba(245,245,245,0.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.project-modal-panel {
  width: min(1480px, 100%);
  max-height: min(860px, 92vh);
  display: block;
  border: 1px solid rgba(245,245,245,0.13);
  background: rgba(5,5,5,0.78);
  box-shadow: 0 30px 120px rgba(0,0,0,0.64);
  overflow: hidden;
  opacity: 0;
  clip-path: inset(3% 0 3% 0);
  transform: translate3d(0,18px,0) scale(0.985);
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(.22,1,.36,1), clip-path 0.7s cubic-bezier(.22,1,.36,1);
}
.project-modal.is-open .project-modal-panel {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0,0,0) scale(1);
}
.project-modal-panel:fullscreen {
  width: 100vw;
  height: 100vh;
  max-height: none;
  border: 0;
  background: #030303;
}
.project-modal-panel.is-maximized {
  width: 100vw;
  height: 100vh;
  max-height: none;
  border: 0;
  border-radius: 0;
  background: #030303;
}
.project-modal-panel:fullscreen .project-gallery-layout,
.project-modal-panel:fullscreen .project-gallery-stage,
.project-modal-panel.is-maximized .project-gallery-layout,
.project-modal-panel.is-maximized .project-gallery-stage {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
}
.project-modal-panel:fullscreen .project-gallery-stage img,
.project-modal-panel.is-maximized .project-gallery-stage img {
  min-height: 0;
  max-height: none;
}
.project-intro,
.project-gallery-layout {
  min-height: min(860px, 92vh);
}
.project-intro {
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(30px, 5vw, 76px);
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}
.project-intro::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: -2;
  background-image: var(--intro-bg);
  background-size: cover;
  background-position: center;
  filter: blur(24px) saturate(0.9) contrast(1.08);
  transform: scale(1.12);
  opacity: 0.58;
}
.project-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92), rgba(5,5,5,0.52) 54%, rgba(5,5,5,0.82)),
    radial-gradient(circle at 76% 20%, rgba(200,164,106,0.16), transparent 28rem);
}
.project-intro-content {
  width: 100%;
  display: grid;
  gap: 16px;
}
.project-intro-content span,
.project-modal-copy span {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: clamp(0.64rem, 0.76vw, 0.74rem);
}
.project-intro-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 7.8rem);
  line-height: 0.9;
  font-weight: 300;
  text-transform: uppercase;
}
.project-intro-category {
  margin: 0;
  color: rgba(245,245,245,0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.68rem, 0.9vw, 0.84rem);
}
.project-intro-desc {
  max-width: 840px;
  margin: 4px 0 0;
  color: rgba(245,245,245,0.84);
  font-size: clamp(0.9rem, 1.05vw, 1.08rem);
  line-height: 1.7;
}
.project-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.project-intro-bottom {
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr);
  gap: clamp(20px, 5vw, 68px);
  align-items: end;
  margin-top: clamp(16px, 3vw, 42px);
}
.project-gallery-layout {
  display: block;
  position: relative;
  width: 100%;
  height: min(860px, 92vh);
  background: #030303;
}
.project-modal.is-intro .project-gallery-layout,
.project-modal:not(.is-open) .project-gallery-layout,
.project-modal.is-gallery .project-intro {
  display: none;
}
.project-modal-copy {
  display: none;
  grid-row: span 2;
  padding: clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
  align-content: start;
  gap: 12px;
  overflow-y: auto;
}
.project-modal-copy h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 4.6rem);
  line-height: 0.96;
  font-weight: 300;
  text-transform: uppercase;
}
.project-modal-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: clamp(0.84rem, 0.92vw, 1rem);
  margin: 0;
}
.project-gallery-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #030303;
  overflow: hidden;
  --gallery-zoom: 1;
}
.project-gallery-stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.22s ease;
}
.project-gallery-stage.is-switching img {
  animation: galleryImageSwap 0.62s cubic-bezier(.65,0,.2,1) both;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(245,245,245,0.24);
  background: rgba(5,5,5,0.46);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}
.gallery-prev { left: 22px; }
.gallery-next { right: 22px; }
.gallery-nav:hover {
  border-color: rgba(200,164,106,0.72);
  box-shadow: 0 0 32px rgba(184,135,90,0.22);
}
.project-gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 0;
  border-top: 0;
  overflow-x: auto;
  background: transparent;
  scrollbar-width: none;
}
.project-intro-thumbs {
  align-self: end;
  padding-bottom: 2px;
}
.project-gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 118px;
  height: 76px;
  padding: 0;
  border: 1px solid rgba(245,245,245,0.12);
  opacity: 0.54;
  overflow: hidden;
  background: #050505;
  transition: opacity 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(200,164,106,0.78);
  transform: translateY(-2px);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-modal.is-open .gallery-thumb {
  animation: thumbReveal 0.6s cubic-bezier(.22,1,.36,1) both;
  animation-delay: var(--thumb-delay, 0ms);
}

.reveal {
  opacity: 0;
  transform: translate3d(0,22px,0);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-soft), transform 1s var(--ease-soft), filter 0.9s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
  will-change: auto;
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-18px,0); }
}

@keyframes sectionAtmosphere {
  from { transform: scale(1.025) translate3d(-0.35%, 0, 0); }
  to { transform: scale(1.045) translate3d(0.35%, -0.25%, 0); }
}

@keyframes cinematicSweep {
  0% { transform: translate3d(-110%,0,0); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translate3d(110%,0,0); opacity: 0; }
}

@keyframes cinematicImageSwap {
  0% { opacity: 1; transform: scale(1); filter: blur(0); }
  36% { opacity: 0; transform: scale(1.025); filter: blur(3px); }
  46% { opacity: 0; transform: scale(1.025); filter: blur(3px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes galleryImageSwap {
  0% { opacity: 1; transform: scale(1); filter: blur(0); }
  40% { opacity: 0; transform: scale(1.012); filter: blur(2px); }
  52% { opacity: 0; transform: scale(1.012); filter: blur(2px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes thumbReveal {
  from { clip-path: inset(0 100% 0 0); transform: translate3d(10px,0,0); filter: blur(2px); }
  to { clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); filter: blur(0); }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header { grid-template-columns: 1fr auto; }
  .talk-link { justify-self: end; }
  .gateway-heading { grid-template-columns: 1fr; gap: 10px; }
  .gateway-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(280px, 42vw); }
  .gateway-projects,
  .gateway-services,
  .gateway-process,
  .gateway-studio,
  .gateway-contact { grid-column: span 1; grid-row: span 1; }
  .gateway-projects { grid-column: span 2; }
  .slider-shell, .about, .contact { grid-template-columns: 1fr; }
  .contact .contact-copy,
  .contact-identity,
  .contact-actions-panel {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }
  .contact .contact-copy { align-self: start; }
  .projects-topline { display: grid; }
  .project-tabs { justify-content: flex-start; }
  .project-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .project-frame { min-height: 440px; }
  .project-index-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .brand-banner-top { grid-template-columns: 18vw 1fr 28vw; }
  .brand-banner-footer { grid-template-columns: 27vw 1fr 29vw; }
  .footer-brand-copy { white-space: normal; }
  .hero { min-height: 86vh; }
  .hero-title { font-size: clamp(3.5rem, 9vw, 7.2rem); }
  .showreel { min-height: 72vh; }
}

@media (max-width: 760px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .site-header { padding: 0 22px; height: 72px; gap: 12px; grid-template-columns: 1fr auto; }
  .brand-banner-top {
    height: 124px;
    margin-top: 72px;
    grid-template-columns: 86px 1fr 96px;
  }
  .brand-banner-symbol { padding-left: 10px; }
  .brand-banner-symbol img { width: 58px; height: 58px; }
  .brand-banner-residence img { right: -110px; }
  .brand-banner-copy strong { font-size: clamp(1.1rem, 5.6vw, 1.65rem); letter-spacing: 0.18em; padding-left: 0.18em; }
  .brand-studio { width: 90%; gap: 7px; margin-top: 7px; font-size: clamp(0.55rem, 2.8vw, 0.8rem); letter-spacing: 0.28em; padding-left: 0.28em; }
  .brand-banner-copy p { margin-top: 7px; font-size: clamp(0.39rem, 1.75vw, 0.55rem); letter-spacing: 0.1em; }
  .brand-banner-footer {
    height: 172px;
    grid-template-columns: 31vw 1fr 31vw;
  }
  .footer-brand-copy { flex-direction: column; gap: 5px; font-size: clamp(0.48rem, 2.15vw, 0.68rem); letter-spacing: 0.06em; }
  .footer-brand-copy i { width: 26px; height: 1px; }
  .footer-residence img { right: -120px; }
  .talk-link { display: none; }
  .section { padding: 82px 22px; }
  .hero { min-height: 92vh; padding-top: 96px; }
  .hero-bg { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.54)), linear-gradient(180deg, rgba(5,5,5,0.4), rgba(5,5,5,0.9)); }
  .hero-grid { width: 100%; transform: none; }
  .hero-title {
    font-size: clamp(2.75rem, 11.5vw, 4.2rem);
    line-height: 0.94;
    max-width: 100%;
  }
  .hero-copy { max-width: 100%; }
  .hero-investment {
    max-width: 100%;
    margin-top: 32px;
    font-size: 0.92rem;
  }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .experience-orbit, .hero-side { display: none; }
  .stats-band { grid-template-columns: 1fr 1fr; margin: 0; }
  .stat { min-height: 120px; padding: 22px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat-wide { grid-column: span 2; border-top: 1px solid var(--line); }
  .section-gateway { padding-left: 14px; padding-right: 14px; }
  .section-identity { grid-template-columns: auto minmax(48px, 1fr); }
  .section-identity::after { grid-column: 2; grid-row: 1; }
  .section-identity small { display: none; }
  .contact-identity { grid-template-columns: auto auto; }
  .contact-identity small { display: block; }
  .gateway-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
  .gateway-projects,
  .gateway-services,
  .gateway-process,
  .gateway-studio,
  .gateway-contact { grid-column: 1; }
  .gateway-card {
    min-height: 310px;
    padding: 24px;
  }
  .gateway-card h3 { font-size: clamp(2rem, 12vw, 3.8rem); }
  .gateway-card i { opacity: 1; transform: translateY(0); }
  .gateway-subtab {
    max-width: calc(100% - 62px);
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
  .project-frame { min-height: 340px; }
  .project-strip { grid-template-columns: repeat(2, 1fr); }
  .project-index-grid { grid-template-columns: 1fr; }
  .project-index-card { min-height: 230px; }
  .project-index-card::before {
    opacity: 1;
    transform: none;
  }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .about-image, .about-image img { min-height: 440px; }
  .quote { left: 16px; right: 16px; bottom: 16px; }
  .immersive { min-height: 720px; }
  .immersive-bg { object-position: center; opacity: 0.62; }
  .holo-card { left: 22px; right: 22px; bottom: 36px; max-width: none; }
  .timeline { grid-template-columns: 1fr; border-top: 0; }
  .timeline-item { border-right: 0; border-top: 1px solid rgba(200,164,106,0.38); }
  .showreel { min-height: 82vh; }
  .showreel h2 { font-size: clamp(2.6rem, 13vw, 5rem); }
  .play-giant { width: 84px; height: 84px; }
  .contact-modal-panel h2 { white-space: normal; font-size: clamp(1rem, 4.8vw, 1.35rem); }
  .footer-links { flex-wrap: wrap; gap: 14px 18px; padding: 20px 22px; }
  .project-modal { padding: 12px; align-items: end; }
  .project-modal-close { top: 18px; right: 18px; }
  .project-modal-zoom { top: 18px; right: 92px; height: 32px; min-width: 68px; font-size: 0.62rem; }
  .project-modal-fullscreen { top: 58px; right: 18px; height: 32px; min-width: 106px; font-size: 0.62rem; }
  .project-gallery-stage.is-zoomed img { transform: scale(var(--gallery-zoom, 1)); }
  .project-modal-panel {
    max-height: 92vh;
  }
  .project-intro {
    min-height: 76vh;
    padding: 82px 22px 28px;
  }
  .project-intro-content h2 {
    font-size: clamp(2.45rem, 13vw, 4.4rem);
  }
  .project-intro-desc {
    max-height: 32vh;
    overflow-y: auto;
    padding-right: 4px;
  }
  .project-intro-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .project-intro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .project-intro-actions .small-link {
    width: 100%;
  }
  .project-intro-thumbs {
    width: 100%;
  }
  .project-gallery-layout {
    display: block;
    height: 92vh;
    min-height: 92vh;
  }
  .project-modal-copy {
    display: none;
  }
  .project-modal-copy h2 { margin-top: 10px; font-size: clamp(1.85rem, 9vw, 3rem); }
  .project-modal-copy p { font-size: 0.86rem; line-height: 1.58; }
  .project-gallery-stage {
    height: 100%;
  }
  .project-gallery-stage img {
    min-height: 0;
    max-height: none;
  }
  .gallery-nav {
    width: 44px;
    height: 44px;
  }
  .gallery-thumb {
    flex-basis: 92px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-banner-copy > *,
  .footer-brand-copy > * {
    opacity: 1;
    animation: none;
    transform: none;
    filter: none;
  }
}

@media (hover: none), (pointer: coarse) {
  video[data-interactive-video] { pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .cinematic-item,
  .project-modal-panel {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
  .gateway-subtab {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* =========================================================
   CONTACT — cinematic reference layout (18 Jul 2026)
   The uploaded JPG is used only as a composition reference.
   The section continues to use assets/videos/tabs/contact.mp4.
   ========================================================= */
.contact {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 620px) minmax(0, 1fr);
  grid-template-rows: auto minmax(130px, 1fr) auto;
  column-gap: clamp(36px, 5vw, 92px);
  row-gap: clamp(24px, 3vh, 38px);
  min-height: max(760px, 100svh);
  padding: clamp(112px, 13vh, 168px) clamp(34px, 6.7vw, 112px) clamp(72px, 8vh, 112px);
  align-content: stretch;
  overflow: hidden;
  background: #030303;
}

.contact > .contact-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: contrast(1.06) saturate(0.9) brightness(0.84);
  pointer-events: none;
}

.contact::before {
  display: none;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(2,2,2,0.98) 0%,
      rgba(2,2,2,0.93) 24%,
      rgba(2,2,2,0.75) 42%,
      rgba(2,2,2,0.24) 66%,
      rgba(2,2,2,0.08) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.16) 0%,
      rgba(0,0,0,0.02) 55%,
      rgba(0,0,0,0.42) 100%);
}

.contact > .contact-copy,
.contact > .contact-identity,
.contact > .contact-actions-panel {
  position: relative;
  z-index: 2;
  grid-column: 1;
  justify-self: stretch;
}

.contact .contact-copy {
  grid-row: 1;
  align-self: start;
  max-width: 590px;
}

.contact .contact-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.05rem, 3.15vw, 4.15rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.018em;
}

.contact-identity {
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 600px;
  margin: 0;
  padding-bottom: clamp(2px, 0.6vh, 8px);
}

.contact-identity::after {
  grid-column: 1;
  width: min(410px, 100%);
  margin: 2px 0 0;
}

.contact-identity strong {
  font-size: clamp(0.86rem, 1vw, 1.05rem);
  letter-spacing: 0.16em;
}

.contact-identity small {
  grid-column: 1;
  justify-self: start;
  max-width: 590px;
  margin: 0;
  color: rgba(245,245,245,0.72);
  text-transform: none;
  letter-spacing: 0.025em;
  font-size: clamp(0.9rem, 1.05vw, 1.08rem);
  line-height: 1.8;
}

.contact-actions-panel {
  grid-row: 3;
  width: min(100%, 570px);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(245,245,245,0.13);
  background: rgba(3,3,3,0.46);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.contact-action {
  min-height: 94px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 7px 20px;
  padding: 20px 24px;
  border-color: rgba(245,245,245,0.14);
  background: linear-gradient(110deg, rgba(245,245,245,0.07), rgba(200,164,106,0.03));
}

.contact-icon {
  width: 58px;
  height: 58px;
}

.contact-action small {
  font-size: 0.72rem;
}

.contact-action strong {
  font-size: clamp(0.95rem, 1vw, 1.08rem);
}

@media (max-width: 1100px) {
  .contact {
    grid-template-columns: minmax(0, 620px) 1fr;
    grid-template-rows: auto minmax(110px, 1fr) auto;
    padding-left: clamp(28px, 6vw, 72px);
    padding-right: clamp(28px, 6vw, 72px);
  }

  .contact > .contact-copy,
  .contact > .contact-identity,
  .contact > .contact-actions-panel {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .contact {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 100svh;
    row-gap: 30px;
    padding: 104px 22px 56px;
    align-content: center;
  }

  .contact > .contact-bg-video {
    object-position: 66% center;
    filter: contrast(1.06) saturate(0.86) brightness(0.72);
  }

  .contact::after {
    background:
      linear-gradient(90deg, rgba(2,2,2,0.94), rgba(2,2,2,0.58)),
      linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.58));
  }

  .contact .contact-copy,
  .contact-identity,
  .contact-actions-panel {
    grid-row: auto;
  }

  .contact .contact-copy h2 {
    max-width: 470px;
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .contact-identity {
    align-self: auto;
  }

  .contact-actions-panel {
    width: 100%;
    padding: 14px;
  }

  .contact-action {
    min-height: 82px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 5px 14px;
    padding: 16px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   SHOWREEL — cinematic cover + reliable iframe sequence (18 Jul 2026)
   Resting state: first-video cover, play button and headline.
   Fine-pointer hover/focus: muted two-video preview starts.
   Play button: modal opens and starts the playlist with sound.
   ========================================================= */
.showreel.showreel-cinematic-preview {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #030303;
}

.showreel-video-cover,
.showreel-poster,
.showreel-youtube-preview {
  position: absolute;
  inset: 0;
}

.showreel-video-cover {
  z-index: 0;
  overflow: hidden;
  background: #030303;
}

.showreel-poster {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(200,164,106,0.12), transparent 34rem),
    linear-gradient(90deg, rgba(3,3,3,0.88), rgba(3,3,3,0.20) 48%, rgba(3,3,3,0.86)),
    url("https://i.ytimg.com/vi/mJK5MZjOkjQ/maxresdefault.jpg") center / cover no-repeat,
    #030303;
  filter: contrast(1.08) saturate(0.82) brightness(0.64);
  transform: scale(1.025);
  opacity: 1;
  transition: opacity 650ms var(--ease-luxury), transform 900ms var(--ease-luxury);
}

.showreel-youtube-preview {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 650ms var(--ease-luxury);
}

.showreel-youtube-preview > div,
.showreel-youtube-preview iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.01);
  pointer-events: none;
  background: #030303;
}

.showreel.is-preview-playing .showreel-youtube-preview {
  opacity: 1;
}

.showreel.is-preview-playing .showreel-poster {
  opacity: 0;
  transform: scale(1.045);
}

.showreel.has-youtube-error .showreel-youtube-preview,
.showreel.is-autoplay-blocked .showreel-youtube-preview {
  opacity: 0;
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,3,3,0.18) 0%, rgba(3,3,3,0.05) 43%, rgba(3,3,3,0.55) 100%),
    linear-gradient(90deg, rgba(3,3,3,0.62), rgba(3,3,3,0.10) 38%, rgba(3,3,3,0.10) 62%, rgba(3,3,3,0.62));
  transition: background 500ms ease;
}

.showreel.is-preview-playing .showreel-overlay {
  background:
    linear-gradient(180deg, rgba(3,3,3,0.12) 0%, rgba(3,3,3,0.08) 44%, rgba(3,3,3,0.58) 100%),
    linear-gradient(90deg, rgba(3,3,3,0.50), rgba(3,3,3,0.04) 38%, rgba(3,3,3,0.04) 62%, rgba(3,3,3,0.50));
}

.showreel-content {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  transform: translateY(-1.5vh);
}

.play-giant {
  position: relative;
  width: clamp(84px, 7vw, 112px);
  height: clamp(84px, 7vw, 112px);
  border: 1px solid rgba(200,164,106,0.82);
  border-radius: 50%;
  background: rgba(5,5,5,0.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 66px rgba(200,164,106,0.20), inset 0 0 22px rgba(255,255,255,0.025);
  transition: transform 300ms var(--ease-luxury), border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, opacity 300ms ease;
}

.play-giant::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ice);
  transform: translateX(4px);
}

.play-giant:hover,
.play-giant:focus-visible {
  transform: scale(1.07);
  border-color: var(--gold);
  background: rgba(5,5,5,0.52);
  box-shadow: 0 0 86px rgba(200,164,106,0.30);
}

.showreel-content h2 {
  position: relative;
  margin: clamp(30px, 4vh, 46px) 0 0;
  max-width: 13ch;
  color: rgba(250,250,250,0.96);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.2vw, 9.2rem);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-shadow: 0 10px 52px rgba(0,0,0,0.48);
  transition: opacity 500ms ease, transform 700ms var(--ease-luxury);
}

.showreel-content h2 span {
  display: block;
  white-space: nowrap;
}

.showreel-content h2::before {
  content: "VISUALIZATION  ·  ANIMATION  ·  REAL-TIME";
  position: absolute;
  z-index: -1;
  top: 49%;
  left: 50%;
  width: 160vw;
  color: rgba(245,245,245,0.13);
  font-size: clamp(2.4rem, 5.2vw, 7rem);
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  filter: blur(3px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showreel-direct-link {
  margin-top: clamp(22px, 3vh, 34px);
  color: rgba(245,245,245,0.74);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  transition: color 240ms ease, transform 240ms ease, opacity 500ms ease;
}

.showreel-direct-link:hover,
.showreel-direct-link:focus-visible {
  color: var(--gold);
  transform: translateY(-2px);
}

.showreel.is-preview-playing .showreel-content h2 {
  opacity: 0.78;
  transform: scale(0.985);
}

.showreel.is-preview-playing .play-giant {
  opacity: 0.82;
}

.showreel.is-preview-playing .showreel-direct-link {
  opacity: 0.86;
}

.modal-player-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.showreel-modal-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.34)),
    url("https://i.ytimg.com/vi/mJK5MZjOkjQ/maxresdefault.jpg") center / cover no-repeat,
    #000;
  filter: contrast(1.04) saturate(0.9) brightness(0.72);
  opacity: 1;
  transition: opacity 320ms ease;
}

.showreel-modal-poster[hidden],
.modal-panel.is-player-ready .showreel-modal-poster {
  opacity: 0;
  visibility: hidden;
}

.showreel-modal-player,
.showreel-modal-player > div,
.showreel-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.showreel-modal-player {
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal-panel.is-player-requested .showreel-modal-player,
.modal-panel.is-player-ready .showreel-modal-player {
  opacity: 1;
}

.showreel-modal-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 15px;
  color: rgba(245,245,245,0.62);
  background: rgba(0,0,0,0.22);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.showreel-modal-loading[hidden],
.modal-panel.is-player-ready .showreel-modal-loading {
  opacity: 0;
  visibility: hidden;
}

.showreel-modal-loading span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,164,106,0.28);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: showreel-spin 800ms linear infinite;
}

.showreel-modal-loading p {
  margin: 0;
}

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

.showreel-player-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 22px;
  padding: 32px;
  text-align: center;
  background: rgba(3,3,3,0.92);
  color: rgba(245,245,245,0.82);
}

.showreel-player-fallback[hidden] {
  display: none;
}

.showreel-player-fallback p {
  margin: 0;
  line-height: 1.6;
}

.showreel-player-fallback div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.showreel-player-fallback a {
  padding: 12px 18px;
  border: 1px solid rgba(200,164,106,0.5);
  color: rgba(245,245,245,0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.showreel-player-fallback a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(200,164,106,0.42);
  background: rgba(5,5,5,0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-youtube-link span {
  color: var(--gold);
}

@media (max-width: 760px) {
  .showreel.showreel-cinematic-preview {
    min-height: 80svh;
  }

  .showreel-youtube-preview > div,
  .showreel-youtube-preview iframe {
    min-width: 220vh;
  }

  .showreel-content {
    width: min(100% - 28px, 720px);
    transform: none;
  }

  .showreel-content h2 {
    margin-top: 26px;
    max-width: 10ch;
    font-size: clamp(2.6rem, 13vw, 5rem);
    line-height: 0.88;
  }

  .showreel-content h2 span {
    white-space: normal;
  }

  .showreel-content h2::before {
    display: none;
  }

  .showreel-direct-link {
    margin-top: 24px;
    font-size: 0.68rem;
  }

  .modal-youtube-link {
    right: 0;
    bottom: -52px;
  }

  .showreel-player-fallback div {
    flex-direction: column;
  }
}

@media (hover: none), (pointer: coarse) {
  .showreel-youtube-preview {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showreel-youtube-preview {
    display: none;
  }

  .showreel-modal-loading span {
    animation: none;
  }
}

/* Showreel v3: iframe is created with referrer policy before its src, preventing YouTube error 153. */
.showreel-youtube-preview > iframe,
.showreel-modal-player > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.showreel-youtube-preview > iframe {
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.01);
  pointer-events: none;
}
.play-giant { font-size: 0; color: transparent; }

/* =========================================================
   SHOWREEL V4 — premium playback, graceful YouTube fallback
   ========================================================= */
.showreel-youtube-preview,
.showreel-modal-player {
  visibility: hidden;
}

.showreel.is-preview-playing .showreel-youtube-preview,
.modal-panel.is-player-ready .showreel-modal-player {
  visibility: visible;
}

.modal-panel.is-player-requested .showreel-modal-player {
  opacity: 0;
}

.modal-panel.is-player-ready .showreel-modal-player {
  opacity: 1;
}

.showreel.has-youtube-error .showreel-youtube-preview,
.modal-panel.has-player-error .showreel-modal-player {
  opacity: 0;
  visibility: hidden;
}

.showreel-modal-fallback {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 64px);
  color: rgba(248,248,248,0.94);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.26), rgba(0,0,0,0.64)),
    url("https://i.ytimg.com/vi/mJK5MZjOkjQ/maxresdefault.jpg") center / cover no-repeat,
    #050505;
  overflow: hidden;
}

.showreel-modal-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(200,164,106,0.13), transparent 26rem),
    linear-gradient(90deg, rgba(0,0,0,0.54), rgba(0,0,0,0.10) 42%, rgba(0,0,0,0.10) 58%, rgba(0,0,0,0.54));
  pointer-events: none;
}

.showreel-modal-fallback[hidden] {
  display: none;
}

.showreel-modal-fallback > * {
  position: relative;
  z-index: 1;
}

.showreel-youtube-symbol {
  width: clamp(72px, 7vw, 104px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,164,106,0.76);
  border-radius: 50%;
  background: rgba(5,5,5,0.42);
  box-shadow: 0 0 58px rgba(200,164,106,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, background 260ms ease;
}

.showreel-youtube-symbol::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  transform: translateX(3px);
}

.showreel-modal-fallback:hover .showreel-youtube-symbol,
.showreel-modal-fallback:focus-visible .showreel-youtube-symbol {
  transform: scale(1.06);
  border-color: var(--gold);
  background: rgba(5,5,5,0.62);
}

.showreel-modal-fallback strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showreel-modal-fallback small {
  max-width: 42ch;
  color: rgba(245,245,245,0.62);
  font-size: 0.72rem;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.modal-panel {
  overflow: hidden;
  border-color: rgba(200,164,106,0.30);
  box-shadow:
    0 32px 100px rgba(0,0,0,0.72),
    0 0 88px rgba(184,135,90,0.13);
}

.modal > button {
  z-index: 8;
  padding: 10px 0;
  font-size: 0.68rem;
  transition: color 220ms ease;
}

.modal > button:hover,
.modal > button:focus-visible {
  color: var(--gold);
}

@media (max-width: 760px) {
  .showreel-modal-fallback {
    gap: 12px;
  }

  .showreel-modal-fallback small {
    max-width: 30ch;
  }
}

/* =========================================================
   SHOWREEL V5 — local two-video sequence, premium YouTube fallback
   The local MP4 files behave exactly like the hero background.
   ========================================================= */
.showreel-local-preview,
.showreel-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #030303;
}

.showreel-local-preview {
  z-index: 1;
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  transition: opacity 620ms var(--ease-luxury), transform 900ms var(--ease-luxury);
}

.showreel.is-preview-playing .showreel-local-preview {
  opacity: 1;
  transform: scale(1.03);
}

.showreel.is-preview-playing .showreel-poster {
  opacity: 0;
}

.showreel.has-local-video-error .showreel-local-preview {
  display: none;
}

.showreel-youtube-preview,
.showreel-modal-player,
.showreel-modal-fallback {
  display: none !important;
}

.showreel-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.showreel-link-youtube-icon {
  position: relative;
  width: 22px;
  height: 15px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.92;
}

.showreel-link-youtube-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 6px solid #060606;
}

.showreel-modal-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 260ms ease;
}

.modal-panel.is-player-ready .showreel-modal-video {
  opacity: 1;
}

.modal-panel.has-player-error .showreel-modal-video {
  opacity: 0;
  visibility: hidden;
}

.showreel-youtube-icon-link {
  position: absolute;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 6;
  width: clamp(48px, 4.4vw, 66px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,164,106,0.55);
  border-radius: 50%;
  background: rgba(4,4,4,0.56);
  box-shadow: 0 18px 42px rgba(0,0,0,0.42), 0 0 36px rgba(200,164,106,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, background 260ms ease;
}

.showreel-youtube-icon-link:hover,
.showreel-youtube-icon-link:focus-visible {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--gold);
  background: rgba(4,4,4,0.76);
}

.showreel-youtube-icon-link .showreel-youtube-symbol {
  width: 30px;
  height: 21px;
  border: 0;
  border-radius: 6px;
  background: rgba(248,248,248,0.94);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.showreel-youtube-icon-link .showreel-youtube-symbol::before {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
  border-left-color: #080808;
  transform: translateX(2px);
}

.showreel-local-fallback {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.52)),
    url("https://i.ytimg.com/vi/mJK5MZjOkjQ/maxresdefault.jpg") center / cover no-repeat,
    #050505;
}

.showreel-local-fallback[hidden] {
  display: none;
}

.showreel-local-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,164,106,0.10), transparent 25rem);
  pointer-events: none;
}

.showreel-local-fallback > * {
  position: relative;
  z-index: 1;
}

.showreel-fallback-play {
  width: clamp(84px, 7vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200,164,106,0.72);
  border-radius: 50%;
  background: rgba(5,5,5,0.48);
  box-shadow: 0 0 70px rgba(200,164,106,0.18);
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, background 260ms ease;
}

.showreel-fallback-play:hover,
.showreel-fallback-play:focus-visible {
  transform: scale(1.06);
  border-color: var(--gold);
  background: rgba(5,5,5,0.68);
}

.showreel-fallback-play .showreel-youtube-symbol {
  width: 42px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: rgba(248,248,248,0.96);
  box-shadow: none;
}

.showreel-fallback-play .showreel-youtube-symbol::before {
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 11px;
  border-left-color: #080808;
  transform: translateX(2px);
}

.showreel-local-fallback p {
  margin: 0;
  color: rgba(248,248,248,0.88);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-panel.has-player-error .showreel-youtube-icon-link {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 760px) {
  .showreel-youtube-icon-link {
    width: 50px;
    right: 16px;
    bottom: 16px;
  }

  .showreel-direct-link {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showreel-local-preview {
    display: none;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   SHOWREEL V5.1 — YouTube icon without circular container
   Keeps all approved playback behavior unchanged.
   ========================================================= */
.showreel-youtube-icon-link {
  width: 46px;
  height: 34px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 260ms var(--ease-luxury), opacity 260ms ease;
}

.showreel-youtube-icon-link:hover,
.showreel-youtube-icon-link:focus-visible {
  transform: translateY(-2px) scale(1.06);
  border: 0;
  background: transparent;
  opacity: 0.82;
}

@media (max-width: 760px) {
  .showreel-youtube-icon-link {
    width: 44px;
    height: 32px;
  }
}


/* =========================================================
   SHOWREEL V5.2 — Approved layout refinement
   - Keeps all V5.1 playback behavior unchanged.
   - Moves the YouTube shortcut outside the playback frame.
   - Adds PANZOOM gold hover/click feedback to Play and YouTube.
   ========================================================= */

/* YouTube shortcut: outside the video, aligned to the lower-right edge. */
.modal-panel > .showreel-youtube-icon-link {
  right: 0;
  bottom: -58px;
  z-index: 8;
  width: 46px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0.88;
  transition:
    transform 260ms var(--ease-luxury),
    opacity 260ms ease,
    filter 260ms ease;
}

.modal-panel > .showreel-youtube-icon-link:hover,
.modal-panel > .showreel-youtube-icon-link:focus-visible,
.modal-panel > .showreel-youtube-icon-link:active {
  transform: translateY(-2px) scale(1.08);
  opacity: 1;
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(200,164,106,0.48));
}

.modal-panel > .showreel-youtube-icon-link .showreel-youtube-symbol {
  background: rgba(248,248,248,0.94);
  transition: background-color 240ms ease, transform 240ms var(--ease-luxury), box-shadow 240ms ease;
}

.modal-panel > .showreel-youtube-icon-link:hover .showreel-youtube-symbol,
.modal-panel > .showreel-youtube-icon-link:focus-visible .showreel-youtube-symbol,
.modal-panel > .showreel-youtube-icon-link:active .showreel-youtube-symbol {
  background: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(200,164,106,0.32);
}

/* Keep the external YouTube shortcut available even if local playback fails. */
.modal-panel.has-player-error > .showreel-youtube-icon-link {
  opacity: 0.88;
  pointer-events: auto;
}

/* Play button: gold response on hover, keyboard focus and click. */
.play-giant:hover::before,
.play-giant:focus-visible::before,
.play-giant:active::before {
  border-left-color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(200,164,106,0.55));
}

.play-giant:active {
  transform: scale(0.98);
  border-color: var(--gold);
  background: rgba(200,164,106,0.12);
  box-shadow: 0 0 96px rgba(200,164,106,0.34);
}

@media (max-width: 760px) {
  .modal-panel > .showreel-youtube-icon-link {
    right: 0;
    bottom: -48px;
    width: 44px;
    height: 32px;
  }
}


/* =========================================================
   SHOWREEL V5.3 — external YouTube sequence shortcut
   - Preserves the approved local two-video playback.
   - Places the YouTube icon below and outside the player frame.
   - Opens the two PANZOOM videos as one YouTube sequence.
   ========================================================= */
.showreel-dialog {
  width: min(1180px, 100%);
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(14px, 1.5vw, 22px);
}

.showreel-dialog > .modal-panel {
  width: 100%;
}

.showreel-modal-actions {
  min-height: 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-inline: 2px;
}

.showreel-modal-actions > .showreel-youtube-icon-link {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 46px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.9;
  cursor: pointer;
  transition:
    transform 260ms var(--ease-luxury),
    opacity 260ms ease,
    filter 260ms ease;
}

.showreel-modal-actions > .showreel-youtube-icon-link:hover,
.showreel-modal-actions > .showreel-youtube-icon-link:focus-visible,
.showreel-modal-actions > .showreel-youtube-icon-link:active {
  transform: translateY(-2px) scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(200,164,106,0.58));
}

.showreel-modal-actions > .showreel-youtube-icon-link .showreel-youtube-symbol {
  width: 32px;
  height: 22px;
  border: 0;
  border-radius: 6px;
  background: rgba(248,248,248,0.96);
  box-shadow: none;
  transition:
    background-color 240ms ease,
    transform 240ms var(--ease-luxury),
    box-shadow 240ms ease;
}

.showreel-modal-actions > .showreel-youtube-icon-link:hover .showreel-youtube-symbol,
.showreel-modal-actions > .showreel-youtube-icon-link:focus-visible .showreel-youtube-symbol,
.showreel-modal-actions > .showreel-youtube-icon-link:active .showreel-youtube-symbol {
  background: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 0 26px rgba(200,164,106,0.38);
}

.showreel-modal-actions > .showreel-youtube-icon-link .showreel-youtube-symbol::before {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
  border-left-color: #080808;
  transform: translateX(2px);
}

.modal-panel.has-player-error + .showreel-modal-actions .showreel-youtube-icon-link {
  opacity: 0.9;
  pointer-events: auto;
}

@media (max-width: 760px) {
  .modal {
    padding-bottom: 72px;
  }

  .showreel-dialog {
    gap: 12px;
  }

  .showreel-modal-actions > .showreel-youtube-icon-link {
    width: 44px;
    height: 32px;
  }
}


/* PANZOOM secure owner controls — injected only after a server-side session check */
.owner-only-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(197, 157, 95, .58);
  color: #d8b578;
  background: rgba(5, 5, 5, .82);
  font: 600 10px/1.2 Arial, sans-serif;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 rgba(197, 157, 95, 0);
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
  z-index: 12;
}
.owner-only-control:hover,
.owner-only-control:focus-visible {
  color: #050505;
  border-color: #d9b36c;
  background: #d9b36c;
  box-shadow: 0 0 28px rgba(197, 157, 95, .32);
  transform: translateY(-2px);
}
#projects .projects-topline .owner-only-control { margin-left: auto; }
#showreel .showreel-content .owner-only-control { margin-top: 18px; }
.service-card[href] { color: inherit; text-decoration: none; }
.service-card[href]:focus-visible { outline: 1px solid #d9b36c; outline-offset: 4px; }
.footer-discovery-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 14px 5vw 26px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-discovery-links a {
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}
.footer-discovery-links a:hover,
.footer-discovery-links a:focus-visible { color: #d9b36c; }
@media (max-width: 720px) {
  #projects .projects-topline .owner-only-control { width: 100%; margin-top: 14px; }
  #showreel .showreel-content .owner-only-control { min-height: 38px; }
  .footer-discovery-links { gap: 10px 14px; }
}
/* =========================================================
   PANZOOM — IMMERSIVE VIDEO HEIGHT PATCH
   Version: 2026-07-20
   ========================================================= */

.immersive.section {
    min-height: 100vh;
    min-height: clamp(900px, 100svh, 1120px);
    padding-top: clamp(120px, 13vh, 180px);
    padding-bottom: clamp(120px, 13vh, 180px);
    align-content: center;
}

.immersive .immersive-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transform: scale(1.01);
    opacity: 0.88;
}

.immersive .immersive-content {
    max-width: 780px;
}

.immersive .holo-card {
    right: 6vw;
    bottom: clamp(72px, 11vh, 130px);
}

/* Tablet */
@media (max-width: 1100px) {
    .immersive.section {
        min-height: 92vh;
        min-height: clamp(820px, 92svh, 1000px);
        padding-top: 110px;
        padding-bottom: 130px;
    }

    .immersive .immersive-bg {
        object-position: 52% center;
    }

    .immersive .holo-card {
        right: 6vw;
        bottom: 64px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .immersive.section {
        min-height: 760px;
        min-height: clamp(760px, 92svh, 900px);
        padding: 84px 22px 190px;
        align-content: start;
    }

    .immersive .immersive-bg {
        object-position: 52% center;
        transform: scale(1.02);
        opacity: 0.68;
    }

    .immersive .immersive-content {
        width: 100%;
        max-width: 100%;
    }

        .immersive .immersive-content h2 {
            font-size: clamp(2.65rem, 13vw, 4.8rem);
            line-height: 0.94;
        }

        .immersive .immersive-content p:not(.eyebrow) {
            max-width: 36rem;
            font-size: 0.98rem;
            line-height: 1.65;
        }

    .immersive .holo-card {
        left: 22px;
        right: 22px;
        bottom: 32px;
        max-width: none;
    }
}
/* Desktop */
.immersive.section {
    height: clamp(980px, 118vh, 1240px) !important;
    min-height: clamp(980px, 118vh, 1240px) !important;
    padding: clamp(105px, 12vh, 155px) 6vw clamp(120px, 14vh, 180px) !important;
    align-content: start !important;
    overflow: hidden;
}

.immersive .immersive-bg {
    position: absolute;
    top: -10% !important;
    right: 0;
    bottom: auto !important;
    left: 0;
    width: 100%;
    height: 120% !important;
    object-fit: cover;
    object-position: center 56%;
    transform: scale(1.025);
    opacity: 0.9;
}

.immersive .immersive-content {
    max-width: 780px;
    margin-top: clamp(15px, 4vh, 55px);
}

.immersive .holo-card {
    right: 6vw;
    bottom: clamp(70px, 10vh, 120px);
}

/* Tablet */
@media (max-width: 1100px) {
    .immersive.section {
        height: clamp(880px, 108svh, 1060px) !important;
        min-height: clamp(880px, 108svh, 1060px) !important;
        padding-top: 100px !important;
        padding-bottom: 140px !important;
    }

    .immersive .immersive-bg {
        top: -7% !important;
        height: 114% !important;
        object-position: 54% center;
    }

    .immersive .holo-card {
        right: 6vw;
        bottom: 58px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .immersive.section {
        height: clamp(780px, 100svh, 920px) !important;
        min-height: clamp(780px, 100svh, 920px) !important;
        padding: 78px 22px 190px !important;
        align-content: start !important;
    }

    .immersive .immersive-bg {
        top: -4% !important;
        height: 108% !important;
        object-position: 55% center;
        transform: scale(1.02);
        opacity: 0.72;
    }

    .immersive .immersive-content {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

        .immersive .immersive-content h2 {
            font-size: clamp(2.65rem, 13vw, 4.8rem);
            line-height: 0.94;
        }

        .immersive .immersive-content p:not(.eyebrow) {
            max-width: 36rem;
            font-size: 0.98rem;
            line-height: 1.65;
        }

    .immersive .holo-card {
        left: 22px;
        right: 22px;
        bottom: 30px;
        max-width: none;
    }
}