:root {
  --black: #030304;
  --panel: #0a0b10;
  --panel-2: #11121a;
  --white: #f8fbff;
  --muted: #a7afbc;
  --pink: #ff1fb7;
  --yellow: #b7ff00;
  --orange: #ff7a18;
  --teal: #00f5d4;
  --red: #ff284f;
  --blue: #26c6ff;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(3, 3, 4, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  max-width: 250px;
  min-width: 190px;
}
.brand-logo {
  width: min(250px, 22vw);
  height: auto;
  flex: 0 0 auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 245, 212, .22)) drop-shadow(0 0 20px rgba(255, 31, 183, .14));
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #d9e1eb;
  font-weight: 700;
  font-size: .92rem;
}
.site-nav a { transition: color .2s ease, text-shadow .2s ease; }
.site-nav a:hover { color: var(--yellow); text-shadow: 0 0 12px rgba(183, 255, 0, .8); }
.header-cta { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; font-weight: 800; background: linear-gradient(135deg, var(--pink), var(--orange), var(--yellow)); color: #070707; box-shadow: 0 0 26px rgba(255, 31, 183, .35); }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, rgba(3, 3, 4, .97) 0%, rgba(3, 3, 4, .82) 34%, rgba(3, 3, 4, .2) 76%),
    linear-gradient(135deg, rgba(255, 31, 183, .2), transparent 30%),
    linear-gradient(165deg, transparent 44%, rgba(24, 231, 255, .16) 45%, rgba(24, 231, 255, .16) 47%, transparent 48%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #050506 0%, #101014 58%, #050506 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 80px -8vw 0 46%;
  z-index: -1;
  background:
    linear-gradient(100deg, transparent 0 22%, rgba(183, 255, 0, .72) 22% 24%, transparent 24% 100%),
    linear-gradient(100deg, transparent 0 34%, rgba(255, 31, 183, .65) 34% 36%, transparent 36% 100%),
    linear-gradient(100deg, transparent 0 46%, rgba(24, 231, 255, .7) 46% 48%, transparent 48% 100%),
    linear-gradient(100deg, transparent 0 58%, rgba(255, 70, 22, .6) 58% 60%, transparent 60% 100%);
  opacity: .85;
  transform: skewX(-12deg);
  filter: drop-shadow(0 0 18px rgba(24, 231, 255, .42));
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--teal), var(--blue), var(--red));
  box-shadow: 0 0 28px rgba(255, 31, 183, .9);
}
.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 92px);
  padding: 100px 0 90px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  line-height: .96;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  font-size: clamp(4rem, 10vw, 9.6rem);
  text-shadow: 0 0 25px rgba(38, 198, 255, .42), 0 0 44px rgba(255, 31, 183, .22);
}
h2 { font-size: clamp(2.3rem, 5vw, 5.2rem); }
h3 { font-size: 1.65rem; }
.hero-copy {
  max-width: 650px;
  margin: 26px 0 34px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: #dfe8f2;
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  font: 900 .95rem/1 Inter, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #060606;
  background: linear-gradient(135deg, var(--pink), var(--orange) 48%, var(--yellow));
  box-shadow: 0 0 30px rgba(255, 31, 183, .34), 0 14px 36px rgba(255, 122, 24, .2);
}
.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(0, 245, 212, .7);
  background: rgba(0, 245, 212, .08);
  box-shadow: inset 0 0 18px rgba(0, 245, 212, .18);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}
.section-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}
.services-section {
  background:
    radial-gradient(circle at 9% 10%, rgba(255, 31, 183, .16), transparent 26%),
    radial-gradient(circle at 91% 12%, rgba(0, 245, 212, .12), transparent 28%),
    var(--black);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.service-card {
  min-height: 255px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--teal), var(--blue)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .5;
  pointer-events: none;
}
.card-icon {
  display: block;
  color: var(--yellow);
  font: 800 2rem "Barlow Condensed", sans-serif;
  margin-bottom: 24px;
}
.service-card p { color: var(--muted); margin: 14px 0 0; }

.gallery-section { background: #050507; }
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-photo {
  position: relative;
  aspect-ratio: 2.05 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  background: #0a0a0d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
  cursor: zoom-in;
}
.gallery-photo[hidden] { display: none; }
.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .46));
  transition: background .25s ease;
}
.gallery-photo:hover,
.gallery-photo:focus-visible {
  border-color: rgba(0, 245, 212, .72);
  box-shadow: 0 0 24px rgba(0, 245, 212, .12), 0 18px 42px rgba(0, 0, 0, .34);
}
.gallery-photo:hover img { transform: scale(1.035); filter: saturate(1.08); }
.gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(3, 3, 4, .82);
  border: 1px solid rgba(0, 245, 212, .44);
  font-size: .8rem;
  backdrop-filter: blur(10px);
}
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.gallery-more-btn { min-width: 210px; }
.project-reel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 14px;
}
.reel-frame {
  position: relative;
  aspect-ratio: 2.05 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 212, .34);
  background: #09090c;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .42), 0 0 32px rgba(0, 245, 212, .08);
}
.reel-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: opacity .22s ease;
}
.reel-frame figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 42px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
}
.reel-frame figcaption span {
  color: var(--teal);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}
.reel-frame figcaption strong {
  font: 800 1.15rem "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.reel-control {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}
.reel-control:hover,
.reel-control:focus-visible { color: var(--teal); border-color: var(--teal); box-shadow: 0 0 18px rgba(0, 245, 212, .16); }
.reel-status {
  max-width: 860px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: #78838f;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.reel-status [data-reel-current] { color: var(--pink); font-size: .82rem; }
.reel-track { height: 2px; overflow: hidden; background: rgba(255, 255, 255, .12); }
.reel-track span {
  width: 2.64%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  box-shadow: 0 0 10px rgba(0, 245, 212, .5);
  transition: width .3s ease;
}
.gallery-page { background: #030304; }
.gallery-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(2, 2, 3, .92);
  border-bottom: 1px solid rgba(0, 245, 212, .24);
  backdrop-filter: blur(18px);
}
.gallery-page-brand img {
  width: min(220px, 38vw);
  max-height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 245, 212, .16));
}
.gallery-page-header nav { display: flex; align-items: center; gap: 12px; }
.gallery-page-header nav > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bcc7d2;
  font-size: .82rem;
  font-weight: 800;
}
.gallery-page-header .btn { min-height: 42px; padding: 0 15px; font-size: .76rem; }
.gallery-page-hero {
  padding: clamp(76px, 9vw, 120px) clamp(18px, 5vw, 72px) clamp(52px, 7vw, 84px);
  text-align: center;
  border-bottom: 1px solid rgba(255, 31, 183, .22);
  background: #050507;
}
.gallery-page-hero h1 {
  margin: 10px 0 18px;
  font: 800 clamp(4rem, 9vw, 8rem)/.84 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(0, 245, 212, .22);
}
.gallery-page-hero p:last-child { max-width: 760px; margin: 0 auto; color: #aeb9c5; }
.gallery-collection { padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 72px) clamp(76px, 9vw, 120px); }
.gallery-page .gallery-grid {
  display: block;
  max-width: 1360px;
  columns: 3;
  column-gap: 14px;
}
.gallery-page .gallery-photo {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  display: block;
  margin: 0 0 14px;
  break-inside: avoid;
}
.gallery-page .gallery-photo img { width: 100%; height: auto; object-fit: contain; }
.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .94);
  color: #fff;
  overflow: hidden;
}
.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}
.gallery-lightbox::backdrop { background: rgba(0, 0, 0, .86); }
.gallery-lightbox figure {
  width: min(1180px, calc(100vw - 128px));
  height: calc(100vh - 80px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 14px;
}
.gallery-lightbox figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 48px rgba(0, 245, 212, .12);
}
.gallery-lightbox figcaption {
  color: #aeb8c3;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lightbox-control {
  position: fixed;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(10, 10, 13, .86);
  border: 1px solid rgba(255, 255, 255, .24);
  font-size: 1rem;
  cursor: pointer;
}
.lightbox-control:hover,
.lightbox-control:focus-visible { color: var(--teal); border-color: var(--teal); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-previous { left: 18px; top: calc(50% - 24px); }
.lightbox-next { right: 18px; top: calc(50% - 24px); }

.split-section, .contact-section {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
}
.split-copy p:not(.eyebrow), .contact-info p { color: var(--muted); font-size: 1.04rem; }
.stats-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 31, 183, .13), rgba(0, 245, 212, .08));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stats-panel div {
  padding: 22px;
  background: rgba(0, 0, 0, .34);
  border-left: 5px solid var(--yellow);
}
.stats-panel strong { display: block; font: 800 2.7rem "Barlow Condensed", sans-serif; text-transform: uppercase; }
.stats-panel span { color: var(--muted); }

.why-section { background: linear-gradient(180deg, #08090e, #030304); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  font-weight: 800;
}
.why-grid span:nth-child(3n+1) { border-color: rgba(255, 31, 183, .45); }
.why-grid span:nth-child(3n+2) { border-color: rgba(0, 245, 212, .45); }
.why-grid span:nth-child(3n+3) { border-color: rgba(183, 255, 0, .45); }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(255, 31, 183, .24), rgba(255, 122, 24, .18), rgba(0, 245, 212, .16));
  border: 1px solid rgba(183, 255, 0, .34);
  box-shadow: 0 0 46px rgba(255, 31, 183, .16);
}
.cta-band p { margin: 12px 0 0; color: #d9e3ee; }

.neon-studio {
  position: relative;
  margin-top: clamp(72px, 9vw, 120px);
  overflow: hidden;
  background: #040408;
  border-top: 1px solid rgba(0, 245, 212, .38);
  border-bottom: 1px solid rgba(255, 31, 183, .34);
}
.neon-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, .025) 79px 80px),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255, 255, 255, .025) 79px 80px);
  mask-image: linear-gradient(to bottom, #000, transparent 52%);
}
.studio-hero {
  position: relative;
  z-index: 1;
  min-height: 760px;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(82px, 10vw, 136px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}
.studio-hero::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--teal), transparent);
  box-shadow: 0 0 22px rgba(0, 245, 212, .65);
}
.studio-division {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.studio-title {
  max-width: 760px;
  color: #fff;
  font-size: clamp(4.5rem, 9vw, 8.6rem);
  text-shadow: 0 0 12px rgba(0, 245, 212, .65), 0 0 36px rgba(255, 31, 183, .36);
}
.studio-subtitle {
  max-width: 790px;
  margin-top: 26px;
  color: #eff8ff;
  font-family: Inter, sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.22;
  text-transform: none;
}
.studio-hero-copy > p:not(.studio-division) {
  max-width: 760px;
  margin: 24px 0 34px;
  color: #b9c4d1;
  font-size: 1.05rem;
}
.studio-signal {
  position: relative;
  min-height: 450px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding-left: clamp(20px, 4vw, 58px);
  border-left: 2px solid var(--pink);
  box-shadow: -12px 0 28px rgba(255, 31, 183, .15);
}
.studio-signal::before,
.studio-signal::after {
  content: "";
  position: absolute;
  left: -2px;
  width: min(360px, 88%);
  height: 2px;
}
.studio-signal::before { top: 0; background: linear-gradient(90deg, var(--pink), transparent); }
.studio-signal::after { bottom: 0; background: linear-gradient(90deg, var(--teal), transparent); }
.signal-mark {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin: -4px 0 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(0, 245, 212, .42);
  box-shadow: 0 0 28px rgba(0, 245, 212, .28), 0 0 20px rgba(255, 31, 183, .18);
}
.signal-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-signal span {
  color: #fff;
  font: 800 clamp(2.2rem, 4vw, 4.5rem)/.92 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.studio-signal span:nth-of-type(2) { color: var(--pink); text-shadow: 0 0 20px rgba(255, 31, 183, .55); }
.studio-signal span:nth-of-type(3) { color: var(--teal); text-shadow: 0 0 20px rgba(0, 245, 212, .5); }
.studio-signal strong {
  margin-top: 22px;
  color: var(--yellow);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.studio-services {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .018), transparent);
}
.studio-service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.studio-service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: #0a0b11;
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}
.studio-service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 42%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  box-shadow: 0 0 16px rgba(0, 245, 212, .45);
}
.studio-service-card > i {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(0, 245, 212, .55));
}
.studio-service-card:nth-child(even) > i { color: var(--pink); filter: drop-shadow(0 0 10px rgba(255, 31, 183, .55)); }
.studio-service-card h3 { font-size: 1.75rem; }
.studio-service-card p { margin: 16px 0 0; color: var(--muted); }
.studio-why {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(38px, 8vw, 100px);
  align-items: center;
}
.studio-why-copy > p:not(.eyebrow):not(.studio-attention) { color: var(--muted); font-size: 1.05rem; }
.studio-attention {
  margin: 18px 0 14px;
  color: var(--pink);
  font: 800 1.55rem "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 31, 183, .5);
}
.studio-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 245, 212, .4);
}
.studio-benefits li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #e8eef5;
  font-weight: 700;
}
.studio-benefits i { margin-top: 5px; color: var(--yellow); }
.studio-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(48px, 7vw, 86px) max(clamp(18px, 6vw, 90px), calc((100vw - 1180px) / 2));
  background: linear-gradient(105deg, rgba(255, 31, 183, .19), rgba(3, 3, 4, .85) 48%, rgba(0, 245, 212, .17));
  border-top: 1px solid rgba(255, 31, 183, .38);
}
.studio-cta > div { max-width: 800px; }
.studio-cta h2 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
.studio-cta p:not(.eyebrow) { margin: 18px 0 0; color: #c3ceda; }

.estimate-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 0, rgba(38, 198, 255, .15), transparent 35%);
}
.estimate-form, .mini-form {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
label {
  display: grid;
  gap: 9px;
  color: #dce5ee;
  font-weight: 800;
  font-size: .92rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .065);
  color: var(--white);
  min-height: 52px;
  padding: 13px 14px;
  font: 500 1rem Inter, sans-serif;
  outline: none;
}
textarea { resize: vertical; }
select option { color: #050505; }
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 245, 212, .14);
}
.hidden-field {
  display: none;
}
.form-note {
  margin: 0;
  color: var(--muted);
}

.mini-form { margin-top: 24px; }
.mini-form textarea { min-height: 130px; }
.direct-contact {
  max-width: 980px;
  margin: 22px auto 0;
  padding: 20px;
  border: 1px solid rgba(0, 245, 212, .28);
  background: rgba(255, 255, 255, .04);
}
.direct-contact p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
}
.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  color: var(--white);
  font-weight: 900;
  border: 1px solid rgba(183, 255, 0, .42);
  background: linear-gradient(135deg, rgba(183, 255, 0, .13), rgba(0, 245, 212, .09));
  box-shadow: inset 0 0 18px rgba(183, 255, 0, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-action:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(183, 255, 0, .22);
}
.social-block {
  margin-top: 28px;
}
.social-block h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}
.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, .04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: currentColor;
}
.social-link.youtube { color: #ff284f; }
.social-link.facebook { color: #26c6ff; }
.social-link.instagram { color: #ff1fb7; }
.social-link.tiktok { color: #00f5d4; }
.social-link.nextdoor { color: #8ee000; }
.social-link.yelp { color: #ff7a18; }
.social-link.youtube:hover { box-shadow: 0 0 24px rgba(255, 40, 79, .34); }
.social-link.facebook:hover { box-shadow: 0 0 24px rgba(38, 198, 255, .34); }
.social-link.instagram:hover { box-shadow: 0 0 24px rgba(255, 31, 183, .34); }
.social-link.tiktok:hover { box-shadow: 0 0 24px rgba(0, 245, 212, .34); }
.social-link.nextdoor:hover { box-shadow: 0 0 24px rgba(142, 224, 0, .3); }
.social-link.yelp:hover { box-shadow: 0 0 24px rgba(255, 122, 24, .34); }
.map-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: #08090e;
  border: 1px solid rgba(0, 245, 212, .38);
  box-shadow: var(--shadow), 0 0 34px rgba(0, 245, 212, .1);
}
.map-card iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: 0;
}
.map-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(3, 3, 4, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}
.map-overlay span {
  color: var(--yellow);
  font: 800 1.35rem "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.map-overlay a {
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr .8fr;
  gap: 28px;
  padding: 54px clamp(18px, 5vw, 72px) 30px;
  background: #010102;
  border-top: 1px solid var(--line);
}
.site-footer h2, .site-footer h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}
.footer-brand-logo {
  width: min(300px, 100%);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 16px rgba(255, 31, 183, .16));
}
.site-footer a, .site-footer p { display: block; color: var(--muted); margin: 7px 0; }
.site-footer .footer-social {
  margin-top: 15px;
}
.site-footer .social-link {
  display: inline-grid;
  margin: 0;
  color: var(--white);
}
.site-footer .social-link.youtube { color: #ff284f; }
.site-footer .social-link.facebook { color: #26c6ff; }
.site-footer .social-link.instagram { color: #ff1fb7; }
.site-footer .social-link.tiktok { color: #00f5d4; }
.site-footer .social-link.nextdoor { color: #8ee000; }
.site-footer .social-link.yelp { color: #ff7a18; }
.studio-footer-link {
  width: fit-content;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 18px !important;
  color: #c8d5df !important;
  opacity: .78;
  transition: opacity .2s ease, color .2s ease, text-shadow .2s ease;
}
.studio-footer-link:hover {
  opacity: 1;
  color: var(--teal) !important;
  text-shadow: 0 0 12px rgba(0, 245, 212, .55);
}
.studio-footer-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  color: var(--teal);
  border: 1px solid rgba(255, 31, 183, .55);
  background: rgba(0, 245, 212, .06);
  box-shadow: inset 0 0 12px rgba(255, 31, 183, .1), 0 0 12px rgba(0, 245, 212, .12);
  overflow: hidden;
}
.studio-footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-footer-link strong,
.studio-footer-link small { display: block; }
.studio-footer-link strong {
  font: 800 .88rem "Barlow Condensed", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.studio-footer-link small {
  margin-top: 1px;
  color: #7f8995;
  font-size: .66rem;
  letter-spacing: 0;
}
.studio-page .neon-studio { margin-top: 0; }
.studio-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(3, 3, 4, .9);
  border-bottom: 1px solid rgba(0, 245, 212, .24);
  backdrop-filter: blur(18px);
}
.studio-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.studio-page-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 245, 212, .2));
}
.studio-page-brand span {
  color: #fff;
  font: 800 clamp(1.25rem, 2vw, 1.75rem)/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(0, 245, 212, .28);
}
.studio-page-division {
  color: #7f8995;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.studio-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  color: #dce7ef;
  border: 1px solid rgba(0, 245, 212, .36);
  font-size: .82rem;
  font-weight: 800;
}
.studio-back-link:hover { color: var(--teal); box-shadow: 0 0 18px rgba(0, 245, 212, .13); }
.studio-page-footer {
  padding: 36px clamp(18px, 5vw, 72px) 24px;
  background: #010102;
  border-top: 1px solid rgba(255, 31, 183, .3);
}
.studio-page-footer > div:first-child { display: grid; gap: 3px; }
.studio-page-footer strong { font: 800 1.35rem "Barlow Condensed", sans-serif; text-transform: uppercase; }
.studio-page-footer span,
.studio-page-footer p { color: #7f8995; font-size: .84rem; }
.studio-page-contact { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; }
.studio-page-contact a { color: #bac5d0; font-size: .82rem; font-weight: 700; }
.studio-page-contact a:hover { color: var(--teal); }
.studio-page-footer p { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 31, 183, .18), rgba(0, 245, 212, .12)),
    radial-gradient(circle at 80% 15%, rgba(183, 255, 0, .14), transparent 28%),
    var(--black);
}
.success-panel {
  width: min(760px, 100%);
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid rgba(0, 245, 212, .36);
  background: rgba(3, 3, 4, .74);
  box-shadow: var(--shadow), 0 0 48px rgba(255, 31, 183, .16);
}
.success-panel p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 6px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-top: 1px solid var(--line); }
  .service-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-page .gallery-grid { columns: 2; }
  .split-section, .contact-section { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .studio-hero { grid-template-columns: 1fr; }
  .studio-signal { min-height: 340px; }
  .studio-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .brand { max-width: 168px; min-width: 138px; }
  .brand-logo { width: 168px; max-height: 52px; }
  .hero { min-height: 760px; }
  .hero-content { margin: 0 auto; padding-top: 90px; }
  .button-row, .btn { width: 100%; }
  .service-grid, .gallery-grid, .why-grid, .form-grid, .site-footer { grid-template-columns: 1fr; }
  .studio-service-grid, .studio-why { grid-template-columns: 1fr; }
  .studio-hero { min-height: auto; }
  .studio-title { font-size: clamp(4rem, 20vw, 6.2rem); }
  .studio-signal { min-height: 310px; }
  .studio-service-card { min-height: 0; }
  .studio-cta { align-items: flex-start; flex-direction: column; }
  .studio-page-header { grid-template-columns: auto auto; }
  .studio-page-division { display: none; }
  .studio-back-link { justify-self: end; padding: 0 12px; }
  .studio-page-brand { gap: 8px; }
  .studio-page-brand img { width: 46px; height: 46px; }
  .studio-page-brand span { font-size: 1.08rem; }
  .gallery-lightbox figure { width: calc(100vw - 32px); height: calc(100vh - 96px); }
  .lightbox-control { width: 42px; height: 42px; }
  .lightbox-previous { left: 8px; top: auto; bottom: 20px; }
  .lightbox-next { right: 8px; top: auto; bottom: 20px; }
  .project-reel { grid-template-columns: 40px minmax(0, 1fr) 40px; gap: 8px; }
  .reel-control { width: 40px; height: 40px; }
  .reel-frame { aspect-ratio: 4 / 3; }
  .reel-frame figcaption { padding: 34px 12px 12px; }
  .reel-frame figcaption span { display: none; }
  .reel-frame figcaption strong { font-size: .92rem; }
  .reel-status { margin-left: 48px; margin-right: 48px; }
  .gallery-page-header { min-height: 74px; padding: 10px 18px; }
  .gallery-page-brand img { width: 138px; max-height: 50px; }
  .gallery-page-header nav > a:not(.btn) { font-size: 0; }
  .gallery-page-header nav > a:not(.btn) i { font-size: .9rem; }
  .gallery-page-header .btn { display: none; }
  .gallery-page .gallery-grid { columns: 1; }
  .section { padding-left: 18px; padding-right: 18px; }
}
