:root {
  --font-sans: 'Inter', system-ui, sans-serif;
  --laser-color: #00e5ff;
  --laser-glow: rgba(0, 229, 255, 0.6);
  --studio-dark: #0B0B0F;
  --studio-darker: #060608;
  --studio-beige: #D4CFC4;
  --studio-beige-light: #E8E3DA;
  --studio-beige-dark: #B8B3A8;
  --studio-text: #1A1A1A;
  --studio-text-muted: #6B6B6B;
  --studio-text-light: #A8A8A8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--studio-dark);
  color: #fff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--studio-dark); }
::-webkit-scrollbar-thumb {
  background: var(--studio-beige-dark);
  border-radius: 9999px;
}

.section-padding {
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .section-padding { padding: 7rem 3rem; }
}
@media (min-width: 1024px) {
  .section-padding { padding-left: 5rem; padding-right: 5rem; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.film-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.04;
  pointer-events: none;
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  opacity: 0.25;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.viewfinder-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.viewfinder-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.25);
  border-style: solid;
  border-width: 0;
}
.viewfinder-corner--tl { top: 16px; left: 16px; border-top-width: 1.5px; border-left-width: 1.5px; }
.viewfinder-corner--tr { top: 16px; right: 16px; border-top-width: 1.5px; border-right-width: 1.5px; }
.viewfinder-corner--bl { bottom: 16px; left: 16px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.viewfinder-corner--br { bottom: 16px; right: 16px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.viewfinder-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  opacity: 0.15;
}
.viewfinder-crosshair::before,
.viewfinder-crosshair::after {
  content: '';
  position: absolute;
  background: white;
}
.viewfinder-crosshair::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.viewfinder-crosshair::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.letterbox-frame { position: relative; }
.letterbox-bar {
  position: absolute;
  left: -4%;
  right: -4%;
  height: 28px;
  background: #000;
  z-index: 10;
  pointer-events: none;
}
.letterbox-bar--top { top: -28px; }
.letterbox-bar--bottom { bottom: -28px; }

.cinematic-frame {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 229, 255, 0.04);
}

.hero-title-glow {
  text-shadow: 0 0 40px rgba(212, 207, 196, 0.15);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.film-timecode {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-variant-numeric: tabular-nums;
}

.rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff2d55;
  animation: recBlink 1.2s step-end infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.compare-slider {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 80px rgba(0, 0, 0, 0.3);
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  outline: none;
}
.compare-slider:focus-visible {
  box-shadow:
    0 0 0 2px rgba(0, 229, 255, 0.55),
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.compare-layer {
  position: absolute;
  inset: 0;
}
.compare-layer--before {
  z-index: 2;
}
.compare-layer--after {
  z-index: 1;
}
.compare-layer img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 20;
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-divider-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--laser-glow), transparent);
  filter: blur(8px);
}
.compare-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--laser-color) 20%,
    #fff 50%,
    var(--laser-color) 80%,
    transparent 100%
  );
  box-shadow:
    0 0 8px var(--laser-glow),
    0 0 20px var(--laser-glow),
    0 0 40px rgba(0, 229, 255, 0.2);
  animation: laserPulse 2s ease-in-out infinite;
}
@keyframes laserPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid var(--laser-color);
  color: var(--laser-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--laser-glow), 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.compare-slider:active .compare-handle,
.compare-slider:hover .compare-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px var(--laser-glow), 0 4px 30px rgba(0, 0, 0, 0.6);
}

.compare-label {
  position: absolute;
  bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  z-index: 15;
}
.compare-label--before { left: 16px; color: #ff9500; }
.compare-label--after { right: 16px; color: #30d158; }

.compare-hint {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  z-index: 15;
  animation: hintPulse 2.5s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.7s;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.compare-readout {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 10px;
  letter-spacing: 0.15em;
  z-index: 15;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scene-picker {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-radius: 4px;
  outline: none;
  text-align: left;
  transition: all 0.3s;
}
.scene-picker--active .scene-thumb {
  box-shadow:
    0 0 0 2px var(--scene-color, #00e5ff),
    0 0 24px color-mix(in srgb, var(--scene-color, #00e5ff) 30%, transparent);
}
.scene-picker-dot {
  box-shadow: 0 0 8px currentColor;
  animation: recBlink 1.2s step-end infinite;
}
.scene-compare-wrap { animation: sceneFadeIn 0.4s ease-out; }
@keyframes sceneFadeIn {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.mission-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #1a1a1a, transparent);
}
.mission-logos {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  justify-content: start;
  column-gap: 2.5rem;
  row-gap: 1.75rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}
.mission-logos li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.mission-logos img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
}
.mission-logos img:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .mission-logos {
    grid-template-columns: repeat(4, max-content);
    margin-top: 2.75rem;
    column-gap: 3.5rem;
    row-gap: 2.25rem;
  }
  .mission-logos img {
    height: 64px;
    max-width: 200px;
  }
}
.reveal.visible .mission-paragraph {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mission-paragraph { opacity: 0; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Featured slider ── */
.featured-slider {
  position: relative;
  background: #0B0B0F;
  min-height: 0;
}

.featured-slides {
  position: relative;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.featured-slide {
  display: none;
  position: relative;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.featured-slide.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  animation: featuredFadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes featuredFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.featured-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.featured-slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.85) contrast(1.05);
  transition: transform 8s ease;
}

.featured-slide.is-active .featured-slide-bg-img {
  transform: scale(1);
}

.featured-slide-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 15, 0.88) 0%, rgba(11, 11, 15, 0.55) 45%, rgba(11, 11, 15, 0.35) 100%),
    linear-gradient(180deg, rgba(11, 11, 15, 0.35) 0%, transparent 28%, transparent 72%, rgba(11, 11, 15, 0.75) 100%);
  pointer-events: none;
}

.featured-slide-inner {
  position: relative;
  z-index: 3;
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 5.25rem;
}

.featured-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 60px rgba(0, 0, 0, 0.25);
  background: #000;
}

/* Side arrows (desktop) */
.featured-side-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: auto;
  height: auto;
  padding: 0.75rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(212, 207, 196, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.featured-side-nav--prev { left: 1rem; }
.featured-side-nav--next { right: 1rem; }

.featured-side-nav:hover {
  background: transparent;
  border: none;
  color: #D4CFC4;
}

.featured-side-nav--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.featured-side-nav--next:hover {
  transform: translateY(-50%) translateX(3px);
}

@media (min-width: 1024px) {
  .featured-side-nav--prev { left: 1.75rem; }
  .featured-side-nav--next { right: 1.75rem; }
}

/* Square indicators */
.featured-squares-bar {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: calc(100% - 2rem);
}

.featured-mobile-nav {
  display: none;
  border: none;
  background: transparent;
  color: rgba(212, 207, 196, 0.7);
  padding: 0.35rem;
  cursor: pointer;
}

.featured-squares {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.65rem;
}

.featured-square {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: #0B0B0F;
  opacity: 0.55;
  transform: translateY(0);
  flex-shrink: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.featured-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25) brightness(0.85);
  transition: filter 0.3s ease, transform 0.5s ease;
}

.featured-square-num {
  position: absolute;
  left: 4px;
  bottom: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.featured-square:hover {
  opacity: 0.85;
  transform: translateY(-3px);
  border-color: rgba(212, 207, 196, 0.45);
}

.featured-square:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.06);
}

.featured-square.is-active {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(212, 207, 196, 0.85);
  box-shadow:
    0 0 0 1px rgba(212, 207, 196, 0.25),
    0 12px 28px rgba(0, 0, 0, 0.45);
}

.featured-square.is-active img {
  filter: grayscale(0) brightness(1);
}

.featured-square.is-active .featured-square-num {
  color: #D4CFC4;
}

@media (min-width: 768px) {
  .featured-square {
    width: 64px;
    height: 64px;
  }
  .featured-squares-bar {
    gap: 0.75rem;
    bottom: 1.35rem;
  }
  .featured-squares {
    gap: 0.75rem;
  }
}

/* Mobile / small screens */
@media (max-width: 767px) {
  .featured-slider {
    min-height: 0;
  }

  .featured-slides {
    min-height: 0;
  }

  .featured-slide-inner {
    min-height: 0;
    align-items: flex-start;
    padding-top: 3.5rem;
    padding-bottom: 5.75rem;
  }

  .featured-slide-mask {
    background:
      linear-gradient(180deg, rgba(11, 11, 15, 0.75) 0%, rgba(11, 11, 15, 0.45) 35%, rgba(11, 11, 15, 0.7) 100%);
  }

  .featured-copy h2 {
    font-size: 1.75rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .featured-copy .space-y-4 > p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .featured-media {
    margin-top: 0.25rem;
  }

  .featured-video-frame {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    aspect-ratio: 16 / 9;
  }

  .featured-side-nav {
    display: none;
  }

  .featured-squares-bar {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    gap: 0.35rem;
    padding: 0.75rem 0.75rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent, rgba(11, 11, 15, 0.94) 40%);
  }

  .featured-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .featured-squares {
    gap: 0.45rem;
  }

  .featured-square {
    width: 44px;
    height: 44px;
  }

  .featured-square.is-active,
  .featured-square:hover {
    transform: translateY(-2px);
  }
}

.services-orb--1 { animation: orbFloat 8s ease-in-out infinite; }
.services-orb--2 { animation: orbFloat 10s ease-in-out infinite reverse; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.services-title-cinematic { position: relative; display: inline-block; }
.services-title-cinematic::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 207, 196, 0.7), transparent);
}

.service-cinematic-frame {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-out;
}
.service-ken-burns { animation: kenBurns 20s ease-in-out infinite alternate; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Warm cinematic light sweep (replaces cyan scan line) */
.service-light-sweep {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(212, 207, 196, 0.03) 42%,
    rgba(255, 245, 230, 0.14) 50%,
    rgba(212, 207, 196, 0.03) 58%,
    transparent 65%
  );
  mix-blend-mode: soft-light;
  animation: serviceLightSweep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes serviceLightSweep {
  0% { transform: translateX(-45%) rotate(8deg); opacity: 0; }
  12% { opacity: 1; }
  55% { opacity: 0.85; }
  100% { transform: translateX(45%) rotate(8deg); opacity: 0; }
}

.service-aperture-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 45% at 70% 35%,
    rgba(212, 207, 196, 0.12) 0%,
    transparent 70%
  );
  animation: serviceAperturePulse 5.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes serviceAperturePulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.06); }
}

.service-card-cinematic {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.service-card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(26, 26, 26, 0.15);
  border-style: solid;
  border-width: 0;
}
.service-card-corner--tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.service-card-corner--br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

.service-item-cinematic {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  outline: none;
}
.services--interactive .service-item-cinematic { cursor: pointer; }
.services--static .service-item-cinematic { cursor: default; }
.service-item-cinematic--visible { opacity: 1; transform: translateX(0); }
.service-item-cinematic:last-of-type { border-bottom: none; }
.service-item-cinematic:hover,
.service-item-cinematic:focus-visible { padding-left: 8px; }
.service-item-cinematic.is-active {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.06), transparent 70%);
}
.service-item-index {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.25);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  flex-shrink: 0;
  width: 24px;
}
.service-item-cinematic:hover .service-item-index,
.service-item-cinematic.is-active .service-item-index { color: rgba(26, 26, 26, 0.75); }
.service-item-text {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: letter-spacing 0.3s ease;
}
@media (min-width: 768px) {
  .service-item-text { font-size: 1.125rem; }
}
.service-item-cinematic:hover .service-item-text,
.service-item-cinematic.is-active .service-item-text { letter-spacing: 0.04em; }
.service-item-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  color: rgba(26, 26, 26, 0.35);
  font-size: 14px;
  transition: all 0.3s ease;
}
.service-item-cinematic:hover .service-item-arrow,
.service-item-cinematic.is-active .service-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #1a1a1a;
}
.service-item-glow {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, #1a1a1a, transparent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item-cinematic:hover .service-item-glow,
.service-item-cinematic.is-active .service-item-glow { width: 100%; }
.service-tagline {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.5s;
}
.service-tagline--visible { opacity: 1; transform: translateY(0); }

.service-inquire {
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  padding-bottom: 2px;
  transform: translateY(6px);
}
.service-inquire.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.service-inquire:hover {
  border-bottom-color: #1a1a1a;
}

[data-service-frame-title].is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.service-frame-flash {
  position: absolute;
  inset: 0;
  background: rgba(212, 207, 196, 0.35);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}
.service-frame-flash.is-firing {
  animation: serviceFlash 0.55s ease-out;
}
@keyframes serviceFlash {
  0% { opacity: 0.55; }
  100% { opacity: 0; }
}
.service-frame--pulse {
  animation: serviceFramePulse 0.55s ease-out;
}
@keyframes serviceFramePulse {
  0% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(212, 207, 196, 0.35); }
  100% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08); }
}

.poster-shine { position: relative; overflow: hidden; }
.poster-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 5;
}
.poster-shine:hover::after { transform: translateX(100%); }

.film-perforations {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 6px,
    rgba(0, 0, 0, 0.5) 6px,
    rgba(0, 0, 0, 0.5) 10px
  );
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.poster-card:hover .film-perforations { opacity: 1; }

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.contact-orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(26, 26, 26, 0.06);
  top: 10%;
  left: -10%;
  animation: contactOrb 12s ease-in-out infinite;
}
.contact-orb--2 {
  width: 250px;
  height: 250px;
  background: rgba(212, 207, 196, 0.3);
  bottom: 10%;
  right: -5%;
  animation: contactOrb 15s ease-in-out infinite reverse;
}
@keyframes contactOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.contact-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.contact-marquee-item {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-right: 2rem;
  color: #1a1a1a;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.contact-headline-line {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-headline-line--visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.contact-card--visible { opacity: 1; transform: translateY(0); }
.contact-card:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(26, 26, 26, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26, 26, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-card:hover .contact-card-icon {
  background: #1a1a1a;
  color: #d4cfc4;
  transform: scale(1.05);
}
.contact-card-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
  margin-bottom: 4px;
}
.contact-card-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}
.contact-card-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: rgba(26, 26, 26, 0.3);
  font-size: 18px;
}
.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.contact-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.contact-card:hover .contact-card-shine { transform: translateX(100%); }

.contact-cta-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.3; width: 40px; }
  50% { opacity: 1; width: 60px; }
}

/* Admin */
.admin-input {
  width: 100%;
  background: #09090b;
  border: 1px solid #3f3f46;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-input:focus {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.2);
}
.admin-input::placeholder { color: #52525b; }
.admin-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.admin-btn--primary {
  background: #06b6d4;
  color: #09090b;
}
.admin-btn--primary:hover { background: #22d3ee; }
.admin-btn--secondary {
  background: #27272a;
  color: #d4d4d8;
  border: 1px solid #3f3f46;
}
.admin-btn--secondary:hover { background: #3f3f46; }
