:root {
  --accent: #cea675;
  --accent-soft: rgba(206, 166, 117, 0.16);
  --accent-border: rgba(206, 166, 117, 0.25);
  --accent-glow: rgba(206, 166, 117, 0.35);
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-3: #111111;
  --text: #ffffff;
  --muted: #d8d8d8;
  --soft: #a7a7a7;
  --line: rgba(255, 255, 255, 0.09);
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.085);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(206, 166, 117, 0.2), transparent 30rem),
    radial-gradient(circle at 94% 18%, rgba(255, 255, 255, 0.07), transparent 22rem),
    linear-gradient(180deg, #070707 0%, #0d0d0d 42%, #080808 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

::selection {
  background: rgba(206, 166, 117, 0.42);
  color: #fff;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.28;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(206, 166, 117, 0.22), transparent 68%);
  filter: blur(8px);
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  transition: inset 0.35s ease;
}

.navbar {
  min-height: 72px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 0.35s ease;
}

.site-header.scrolled .navbar {
  background: rgba(10, 10, 10, 0.68);
  border-color: var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 66px;
  height: 50px;
  object-fit: contain;
  border-radius: 0;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 18px rgba(206, 166, 117, 0.28));
  animation: logoReveal 1s ease both, logoFloat 6s ease-in-out infinite 1.1s;
}

.brand-text {
  direction: ltr;
  letter-spacing: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-panel a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  transition: 0.25s ease;
}

.nav-panel a:hover,
.nav-panel a.active {
  color: #fff;
  background: rgba(206, 166, 117, 0.14);
}

.nav-cta,
.btn,
.filter-btn,
.work-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #090909;
  background: var(--accent);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(206, 166, 117, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 80svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 48px;
  overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(180px, 24vh, 320px);
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.78) 48%, #080808 100%);
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.48) 54%, rgba(8, 8, 8, 0.7) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.22) 0%, rgba(8, 8, 8, 0.34) 62%, #080808 100%),
    radial-gradient(circle at 30% 44%, rgba(206, 166, 117, 0.16), transparent 32rem);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(206, 166, 117, 0.18);
  border-radius: 50%;
  filter: blur(0.2px);
  animation: floatSlow 9s ease-in-out infinite;
}

.hero-orbit-one {
  width: 220px;
  height: 220px;
  top: 22%;
  left: 9%;
}

.hero-orbit-two {
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: 12%;
  animation-delay: -3s;
}

.hero-watermark {
  position: absolute;
  direction: ltr;
  left: -2vw;
  bottom: 2vh;
  margin: 0;
  max-width: 110vw;
  font-size: clamp(4rem, 13vw, 13rem);
  font-weight: 800;
  line-height: 0.86;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-title,
.section-head h2,
.section-copy h2,
.statement h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title {
  max-width: 700px;
  font-size: clamp(2.35rem, 4.45vw, 4.8rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.28vw, 1.06rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  color: #080808;
  background: var(--accent);
  box-shadow: 0 20px 46px rgba(206, 166, 117, 0.28);
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding-right: 2px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.13);
  font-size: 0.72rem;
}

.hero-stage {
  position: relative;
  min-height: 540px;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.hero-stage-glow {
  content: "";
  position: absolute;
  inset: 9% 4% 4% 2%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 70% 22%, rgba(206, 166, 117, 0.36), transparent 24rem),
    radial-gradient(circle at 22% 74%, rgba(255, 255, 255, 0.12), transparent 18rem);
  filter: blur(22px);
  opacity: 0.9;
  animation: stageGlow 5.5s ease-in-out infinite alternate;
}

.hero-monitor {
  position: absolute;
  inset: 46px 0 42px 28px;
  overflow: hidden;
  border: 1px solid rgba(206, 166, 117, 0.34);
  border-radius: 44px;
  background: #0d0d0d;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52), 0 0 80px rgba(206, 166, 117, 0.14);
  transform: rotateY(-7deg) rotateX(2deg) translateZ(20px);
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1), border-color 0.35s ease;
}

.hero-stage:hover .hero-monitor {
  transform: rotateY(-2deg) rotateX(0) translateZ(38px) translateY(-8px);
  border-color: rgba(206, 166, 117, 0.62);
}

.hero-monitor::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.hero-monitor::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 46%),
    radial-gradient(circle at 70% 25%, rgba(206, 166, 117, 0.16), transparent 20rem);
}

.hero-reel-grid {
  position: absolute;
  inset: 72px 22px 126px;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  transform: rotate(-2deg) scale(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.hero-reel-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  filter: saturate(0.78) contrast(1.15);
  opacity: 0.72;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  transition: opacity 0.55s ease, filter 0.55s ease, transform 0.55s ease;
}

.hero-reel-grid img:first-child {
  grid-row: span 2;
}

.hero-stage:hover .hero-reel-grid {
  transform: rotate(0deg) scale(1.08);
}

.hero-stage:hover .hero-reel-grid img {
  opacity: 0.9;
  filter: saturate(1.02) contrast(1.18);
}

.hero-stage:hover .hero-reel-grid img:nth-child(2),
.hero-stage:hover .hero-reel-grid img:nth-child(4) {
  transform: translateY(-6px);
}

.monitor-hud,
.monitor-title {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.monitor-hud {
  top: 24px;
  left: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.monitor-hud span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffdddd;
}

.monitor-hud span:first-child::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5d5d;
  box-shadow: 0 0 18px rgba(255, 93, 93, 0.75);
  animation: recPulse 1.5s ease-in-out infinite;
}

.monitor-title {
  left: 28px;
  right: 28px;
  bottom: 26px;
  align-items: flex-end;
  gap: 24px;
}

.monitor-title strong {
  max-width: 330px;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.monitor-title span {
  max-width: 210px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.hero-metrics {
  position: absolute;
  left: 16px;
  bottom: 2px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 360px;
  transform: translateZ(120px);
}

.hero-metrics span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(206, 166, 117, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head h2,
.section-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.section-head p,
.section-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about {
  margin-top: -104px;
  padding-top: 88px;
  background:
    radial-gradient(circle at 80% 20%, rgba(206, 166, 117, 0.14), transparent 28rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card,
.service-card,
.team-card,
.step-card,
.work-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.mini-card {
  min-height: 205px;
  padding: 26px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mini-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  background: rgba(206, 166, 117, 0.08);
}

.mini-card span {
  color: var(--accent);
  font-weight: 800;
}

.mini-card h3 {
  margin: 18px 0 8px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.mini-card p {
  margin: 0;
  color: var(--soft);
}

.showreel {
  padding-top: 70px;
  padding-bottom: 58px;
}

.works {
  padding-top: 58px;
}

.showreel-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(280px, 56vw, 640px);
  padding: 0;
  border: 1px solid var(--accent-border);
  border-radius: 42px;
  background: #111;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.48), 0 0 70px rgba(206, 166, 117, 0.14);
  cursor: pointer;
}

.showreel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(0, 0, 0, 0.18) 54%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.1));
}

.showreel-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.showreel-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.showreel-play,
.play-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(206, 166, 117, 0.14), 0 0 48px var(--accent-glow);
}

.showreel-play {
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  padding-right: 5px;
  translate: -50% -50%;
  font-size: 1.4rem;
  animation: pulsePlay 2.2s ease-in-out infinite;
}

.showreel-meta {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 22px;
  direction: ltr;
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-weight: 800;
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 3px 0 24px;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
  color: #080808;
  border-color: rgba(206, 166, 117, 0.6);
  background: var(--accent);
}

.works {
  overflow: hidden;
}

.works .container {
  width: min(1560px, calc(100% - 48px));
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  perspective: 1400px;
}

.work-card {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  min-height: 390px;
  border-radius: var(--radius-lg);
  clip-path: inset(0 round var(--radius-lg));
  contain: paint;
  isolation: isolate;
  cursor: pointer;
  background-color: #080808;
  transform: translateY(0) scale(1);
  backface-visibility: hidden;
  transition:
    transform 0.46s cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.25s ease;
}

.work-card.featured {
  grid-column: span 6;
  min-height: 500px;
}

.work-card:hover {
  transform: translateY(-10px) scale(1.012);
  border-color: var(--accent-border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44), 0 0 70px rgba(206, 166, 117, 0.14);
}

.work-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--thumb-position, center);
  filter: saturate(0.92) contrast(1.08);
  transition: transform 0.65s ease, filter 0.65s ease;
  border-radius: inherit;
  backface-visibility: hidden;
  transform: scale(var(--thumb-scale, 1.08)) translateZ(0);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--wmx, 50%) var(--wmy, 20%), rgba(206, 166, 117, 0.28), transparent 24%),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.2) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 0.35s ease, transform 0.72s ease;
  mix-blend-mode: screen;
  border-radius: inherit;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 48%, rgba(0, 0, 0, 0.28)),
    radial-gradient(ellipse at center, transparent 34%, rgba(0, 0, 0, 0.24) 100%),
    radial-gradient(circle at 72% 20%, rgba(206, 166, 117, 0.14), transparent 18rem);
  border-radius: inherit;
}

.work-card:hover .work-thumb {
  transform: scale(calc(var(--thumb-scale, 1.08) + 0.05)) translateY(-4px);
  filter: saturate(1.12) contrast(1.16);
}

.work-card:hover::before {
  opacity: 0.82;
  transform: translateX(72%);
}

.work-content {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.42s ease;
}

.work-card:hover .work-content {
  transform: translateY(-5px);
}

.work-category,
.skill-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(8, 8, 8, 0.56);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
}

.work-card h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.work-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.work-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.work-button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.play-badge {
  position: static;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding-right: 3px;
  box-shadow: 0 0 0 8px rgba(206, 166, 117, 0.11), 0 0 30px rgba(206, 166, 117, 0.24);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.work-card:hover .play-badge {
  transform: scale(1.12) rotate(8deg);
  animation: playWink 0.8s ease;
}

.services-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card::before {
  content: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-border);
  background: rgba(206, 166, 117, 0.07);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-border);
  border-radius: 18px;
  color: #080808;
  background: var(--accent);
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(206, 166, 117, 0.18);
}

.service-card h3 {
  margin: 26px 0 10px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--soft);
}

.team {
  background: linear-gradient(180deg, transparent, rgba(206, 166, 117, 0.04), transparent);
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  perspective: 1200px;
  overflow: visible;
  padding-bottom: 10px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  isolation: isolate;
  transform-style: preserve-3d;
  min-height: 430px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(206, 166, 117, 0.2), transparent 42%),
    rgba(14, 14, 14, 0.78);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.18) 44%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.team-card::after {
  content: none;
}

.team-card:hover {
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px) scale(1.012);
  border-color: var(--accent-border);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44), 0 0 70px rgba(206, 166, 117, 0.16);
}

.team-card:hover::before {
  transform: translateX(120%);
}

.member-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.85;
  margin: 10px;
  border-radius: 28px;
  background: #111;
  transform: translateZ(24px);
  transition: transform 0.45s ease, border-radius 0.45s ease;
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 56%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.member-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(206, 166, 117, 0.35);
  border-radius: 22px;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-position, center 14%);
  filter: saturate(0.82);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.team-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.08);
}

.team-card:hover .member-photo::after {
  opacity: 0.2;
}

.team-card:hover .member-photo::before {
  opacity: 1;
  transform: scale(1);
}

.team-card:hover .member-photo {
  border-radius: 34px;
  transform: translateZ(30px);
}

.member-info {
  position: relative;
  z-index: 4;
  padding: 18px 20px 24px;
  transform: translateZ(46px);
}

.member-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.member-info h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.member-info p {
  margin: 8px 0 18px;
  color: var(--accent);
  font-weight: 800;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.skill-chip {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.team-card:hover .skills {
  transform: translateY(0);
}

.team-card:hover .skill-chip {
  color: #fff;
  border-color: rgba(206, 166, 117, 0.34);
  background: rgba(206, 166, 117, 0.08);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 16px 0 10px;
}

.step-card {
  position: relative;
  min-height: 250px;
  padding: 25px;
  border-radius: var(--radius-lg);
}

.step-card::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #080808;
  background: var(--accent);
  font-weight: 800;
  box-shadow: 0 0 34px rgba(206, 166, 117, 0.22);
}

.step-card h3 {
  margin: 30px 0 10px;
  font-size: 1.45rem;
}

.step-card p {
  margin: 0;
  color: var(--soft);
}

.statement {
  padding: 82px 0 118px;
}

.statement-inner {
  overflow: hidden;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--accent-border);
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 18%, rgba(206, 166, 117, 0.28), transparent 26rem),
    linear-gradient(135deg, rgba(206, 166, 117, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.4);
}

.statement h2 {
  max-width: 880px;
  font-size: clamp(1.85rem, 3.4vw, 3.6rem);
  line-height: 1.05;
}

.statement-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.statement-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand span {
  direction: ltr;
}

.site-footer p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  border: 1px solid var(--accent-border);
  border-radius: 32px;
  background: #080808;
  box-shadow: 0 34px 130px rgba(0, 0, 0, 0.62), 0 0 80px rgba(206, 166, 117, 0.13);
  transition: border-color 0.25s ease;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: -18px;
  left: -12px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  color: #080808;
  background: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 31px;
  background: #000;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-modal.show-fallback .video-fallback {
  opacity: 1;
  pointer-events: auto;
}

.video-fallback img {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  filter: brightness(0.42) saturate(0.94);
}

.video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 24%, rgba(0, 0, 0, 0.26) 56%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2));
}

.video-fallback-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.video-fallback-content p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.video-fallback-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  color: #080808;
  background: var(--accent);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(206, 166, 117, 0.22);
}

.reveal-up,
.reveal-scale,
.work-card,
.service-card,
.team-card,
.step-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-scale {
  transform: translateY(24px) scale(0.96);
}

.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-text {
  animation: textReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both 0.15s;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(34px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-14px, 8px, 0);
  }
}

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

@keyframes pulsePlay {
  0%,
  100% {
    box-shadow: 0 0 0 12px rgba(206, 166, 117, 0.14), 0 0 48px var(--accent-glow);
  }
  50% {
    box-shadow: 0 0 0 22px rgba(206, 166, 117, 0.06), 0 0 68px rgba(206, 166, 117, 0.44);
  }
}

@keyframes recPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes stageGlow {
  from {
    opacity: 0.72;
    transform: translate3d(-8px, 10px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(10px, -8px, 0) scale(1.04);
  }
}

@keyframes playWink {
  0% {
    box-shadow: 0 0 0 8px rgba(206, 166, 117, 0.11), 0 0 30px rgba(206, 166, 117, 0.24);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(206, 166, 117, 0.08), 0 0 58px rgba(206, 166, 117, 0.42);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(206, 166, 117, 0.11), 0 0 30px rgba(206, 166, 117, 0.24);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: rotate(-12deg) scale(0.86);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(206, 166, 117, 0.28));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(206, 166, 117, 0.46));
  }
}


.hero-mobile-glow {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(420px, 110vw);
  height: min(420px, 110vw);
  pointer-events: none;
  z-index: -1;
}

.hero-mobile-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 166, 117, 0.22), transparent 68%);
  filter: blur(6px);
}

.hero-mobile-glow::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(206, 166, 117, 0.2);
  animation: floatSlow 7s ease-in-out infinite;
}

.hero-mobile-ring {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(280px, 76vw);
  height: min(280px, 76vw);
  border-radius: 50%;
  border: 1px solid rgba(206, 166, 117, 0.1);
  pointer-events: none;
  z-index: -1;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-scroll-hint {
  display: none;
  position: absolute;
  bottom: 28px;
  left: 50%;
  translate: -50% 0;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-scroll-hint::before {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(206, 166, 117, 0.7));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

@media (max-width: 1100px) {
  .nav-panel {
    gap: 0;
  }

  .nav-panel a {
    padding-inline: 10px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-monitor {
    inset: 36px 0 34px 20px;
  }

  .work-card,
  .work-card.featured {
    grid-column: span 6;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-header {
    inset: 10px 0 auto;
  }

  .navbar {
    min-height: 64px;
    padding: 8px 10px;
    border-color: var(--line);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(18px);
  }

  .brand-logo {
    width: 58px;
    height: 44px;
  }

  .brand-text,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 12px;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg,
  .hero-bg img,
  .hero-overlay,
  .hero-orbit-one {
    display: none;
  }

  .hero-watermark {
    display: none;
  }

  .hero-grid {
    gap: 0;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    max-width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 14px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 0 22px;
    font-size: 0.92rem;
  }

  .hero-mobile-glow {
    display: block;
  }

  .hero-mobile-ring {
    display: block;
  }

  .hero-scroll-hint {
    display: flex;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-monitor {
    inset: 42px 0 56px;
    border-radius: 34px;
    transform: none;
  }

  .hero-stage:hover .hero-monitor {
    transform: translateY(-5px);
  }

  .monitor-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .monitor-title strong {
    max-width: 260px;
  }

  .hero-metrics {
    left: 12px;
    bottom: 10px;
  }

  .about-bento,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-card,
  .work-card.featured {
    grid-column: auto;
    min-height: clamp(320px, 75vw, 480px);
    border-radius: 28px;
  }

  .work-card:hover {
    transform: none;
  }

  .work-card:hover .work-thumb {
    transform: scale(var(--thumb-scale, 1.08)) translateZ(0);
  }

  .work-card h3 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .work-card p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .filters {
    padding-inline: 4px;
  }

  .team-grid,
  .timeline {
    padding-inline: 16px;
  }

  .hero-orbit-two {
    display: none;
  }

  .hero-watermark {
    font-size: clamp(3rem, 18vw, 7rem);
    left: 0;
    right: 0;
    max-width: 100vw;
    overflow: hidden;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-panel {
    width: min(100%, calc(100vw - 24px));
    border-radius: 22px;
  }

  .video-shell {
    border-radius: 21px;
  }

  .modal-close {
    top: -14px;
    left: -6px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(100% - 24px, 1160px);
  }

  .hero-title {
    font-size: clamp(1.75rem, 8.5vw, 2.6rem);
    letter-spacing: -0.03em;
    text-align: center;
  }

  .section-head h2,
  .section-copy h2 {
    font-size: clamp(1.95rem, 10vw, 2.85rem);
  }

  .section-head p,
  .section-copy p {
    font-size: 0.95rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-top: 10px;
    text-align: center;
  }

  .hero-stage {
    min-height: 470px;
  }

  .hero-monitor {
    inset: 34px 0 68px;
    border-radius: 28px;
  }

  .monitor-hud {
    left: 18px;
    right: 18px;
    font-size: 0.68rem;
  }

  .monitor-title {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-metrics span {
    min-height: 36px;
    padding: 5px 11px;
    font-size: 0.82rem;
  }

  .showreel-card {
    border-radius: 30px;
    min-height: clamp(260px, 66vw, 360px);
  }

  .team-grid {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .video-fallback-content {
    gap: 12px;
  }

  .video-fallback-link {
    width: 100%;
  }

  .showreel-play {
    width: 66px;
    height: 66px;
  }

  .hero-actions .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .work-content {
    inset-inline: 18px;
    bottom: 18px;
  }

  .work-row {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .work-button {
    width: 100%;
  }

  .play-badge {
    width: 54px;
    height: 54px;
  }

  .services-grid,
  .team-grid {
    gap: 14px;
  }

  .service-card,
  .team-card {
    border-radius: 26px;
  }

  .member-photo {
    border-radius: 22px;
  }

  .statement-inner {
    border-radius: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-glow {
    display: none;
  }
}
