:root {
  --navy-950: #020b26;
  --navy-900: #06194f;
  --navy-800: #09266c;
  --yellow: #fff200;
  --yellow-soft: #fff86a;
  --red: #ff1d1d;
  --paper: #f7f7f2;
  --white: #ffffff;
  --ink: #071229;
  --muted: #aeb8ce;
  --line: rgba(255, 255, 255, .16);
  --display: "Michroma", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--navy-950); background: var(--yellow); }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: flex;
  width: var(--page);
  height: 70px;
  align-items: stretch;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(2, 11, 38, .84);
  box-shadow: 0 16px 40px rgba(2, 6, 22, .22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: top .25s, background .25s;
}
.site-header.scrolled { top: 8px; background: rgba(2, 11, 38, .95); }
.brand {
  position: relative;
  width: 250px;
  overflow: hidden;
}
.brand img {
  width: 232px;
  height: 62px;
  margin: 4px 7px;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 32px; padding-right: 9px; }
.site-nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 14px 18px; color: var(--navy-950) !important; background: var(--yellow); }
.nav-cta span { margin-left: 14px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 156px max(24px, calc((100vw - 1240px) / 2)) 64px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-900);
  background-image:
    linear-gradient(90deg, rgba(6, 25, 79, .98) 0%, rgba(6, 25, 79, .94) 43%, rgba(6, 25, 79, .68) 100%),
    linear-gradient(0deg, rgba(2, 11, 38, .76) 0%, transparent 62%),
    url("11062b_6e2d7165769b454aa4ec55428f97fae3~mv2.jpg");
  background-position: center;
  background-size: cover;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 4%, black 40%, transparent 95%);
}
.beam {
  position: absolute;
  z-index: 0;
  top: -190px;
  width: 14vw;
  height: 940px;
  opacity: .12;
  background: linear-gradient(to bottom, var(--yellow-soft), transparent 85%);
  filter: blur(8px);
  transform: rotate(17deg);
  transform-origin: top;
}
.beam-a { right: 19%; }
.beam-b { right: 43%; width: 7vw; opacity: .06; transform: rotate(-15deg); }
.hero-copy { position: relative; z-index: 2; width: 60%; padding-top: 25px; }
.eyebrow, .section-tag {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 29, 29, .14);
  animation: pulse 2s infinite;
}
.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 9.2vw, 150px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .86;
  text-transform: uppercase;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-intro { max-width: 590px; margin: 38px 0 0; color: #d7def0; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 24px;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}
.button-primary { color: var(--navy-950); background: var(--yellow); box-shadow: 0 0 45px rgba(255,242,0,.16); transition: transform .25s, box-shadow .25s; }
.button-primary:hover { box-shadow: 0 0 65px rgba(255,242,0,.28); transform: translateY(-3px); }
.text-link { color: var(--white); font-size: 13px; font-weight: 700; text-underline-offset: 7px; }
.text-link span { display: inline-block; margin-left: 10px; color: var(--yellow); transition: transform .2s; }
.text-link:hover span { transform: translateY(4px); }
.hero-stage {
  position: absolute;
  z-index: 1;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 116px;
  width: min(43vw, 600px);
}
.hero-photo { position: relative; margin: 0; overflow: hidden; box-shadow: 22px 26px 0 rgba(2, 11, 38, .38); }
.hero-photo::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(6, 25, 79, .35));
  content: "";
}
.hero-photo::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 76px;
  height: 8px;
  background: var(--yellow);
  content: "";
}
.hero-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.9) contrast(1.08); }
.stage-label { display: flex; padding-top: 13px; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .13em; }
.vu-meter { position: absolute; z-index: 3; right: -18px; bottom: 54px; display: flex; height: 85px; align-items: end; gap: 4px; }
.vu-meter i { display: block; width: 4px; height: var(--h); background: var(--yellow); animation: meter 1.25s ease-in-out infinite alternate; }
.vu-meter i:nth-child(1) { --h: 25%; animation-delay: -.8s; }
.vu-meter i:nth-child(2) { --h: 58%; animation-delay: -.2s; }
.vu-meter i:nth-child(3) { --h: 38%; animation-delay: -.6s; }
.vu-meter i:nth-child(4) { --h: 84%; animation-delay: -.9s; }
.vu-meter i:nth-child(5) { --h: 65%; animation-delay: -.4s; }
.vu-meter i:nth-child(6) { --h: 100%; animation-delay: -.7s; }
.vu-meter i:nth-child(7) { --h: 45%; animation-delay: -.1s; }
.vu-meter i:nth-child(8) { --h: 72%; animation-delay: -.5s; }
.hero-foot {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 36px;
  left: max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-foot p { margin: 0; white-space: nowrap; }
.hero-foot span { width: 100%; height: 1px; background: rgba(255,255,255,.24); }

.signal-rail { height: 73px; overflow: hidden; background: var(--yellow); }
.signal-rail svg { width: 100%; height: 100%; }
.signal-rail path { fill: none; stroke-linecap: square; stroke-linejoin: miter; vector-effect: non-scaling-stroke; }
.signal-base { stroke: rgba(6, 25, 79, .22); stroke-width: 2; }
.signal-live { stroke: var(--navy-900); stroke-width: 3; stroke-dasharray: 260 1800; animation: signal 7s linear infinite; }

.section { padding: 130px max(24px, calc((100vw - 1240px) / 2)); }
.section-tag { color: var(--navy-800); }
.section-tag::before { display: inline-block; width: 28px; height: 2px; margin: 0 10px 3px 0; background: var(--red); content: ""; }
.section h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.5vw, 74px); font-weight: 400; letter-spacing: -.055em; line-height: 1.03; text-transform: uppercase; }

.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr; column-gap: 70px; }
.section-heading .section-tag { grid-column: 1; }
.section-heading h2 { grid-column: 1; }
.section-heading > p:last-child { grid-row: 2; grid-column: 2; max-width: 510px; margin: 10px 0 0; font-size: 19px; }
.service-board { margin-top: 84px; border-top: 1px solid rgba(7,18,41,.25); }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr 90px;
  gap: 28px;
  min-height: 164px;
  padding: 32px 0;
  align-items: center;
  border-bottom: 1px solid rgba(7,18,41,.25);
  transition: padding .28s, background .28s;
}
.service-row:hover { padding-right: 22px; padding-left: 22px; background: var(--white); }
.service-code { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .16em; }
.service-row h3 { margin: 0; font-size: 25px; line-height: 1.2; }
.service-row p { max-width: 520px; margin: 0; color: #43506a; }
.service-row svg { width: 80px; fill: none; stroke: var(--red); stroke-width: 1.5; }

.work { color: var(--white); background: var(--navy-950); }
.work .section-tag { color: var(--yellow); }
.work-heading { display: grid; grid-template-columns: 1.4fr 1fr; align-items: end; gap: 70px; }
.work-heading .section-tag { grid-column: 1 / -1; }
.work-heading h2 span { color: var(--yellow); }
.work-heading > p:last-child { margin: 0 0 7px; color: var(--muted); font-size: 18px; }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 12px; margin-top: 78px; }
.project { position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: var(--navy-800); }
.project-wide { grid-column: span 8; }
.project-feature { grid-column: span 8; grid-row: span 2; }
.project-tall { grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s; }
.project::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,11,38,.92)); content: ""; }
.project:hover img { filter: saturate(1) contrast(1.04); transform: scale(1.035); }
.project figcaption { position: absolute; z-index: 2; right: 22px; bottom: 18px; left: 22px; }
.project figcaption span { display: block; margin-bottom: 3px; color: var(--yellow); font-family: var(--mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.project figcaption strong { font-size: 17px; }
.project-feature figcaption { right: 30px; bottom: 26px; left: 30px; }
.project-feature figcaption strong { font-size: clamp(21px, 2.2vw, 31px); }
.project-control img { object-position: 50% 58%; }
.project-lighting img { object-position: 50% 42%; }
.project-performance img { object-position: 50% 55%; }
.project-audio img { object-position: 50% 60%; }
.about { position: relative; display: grid; grid-template-columns: .9fr 1.3fr; gap: 90px; overflow: hidden; background: var(--yellow); }
.year-mark { position: absolute; top: -58px; left: -24px; opacity: .055; color: var(--navy-900); font-family: var(--display); font-size: clamp(170px, 25vw, 380px); line-height: 1; letter-spacing: -.1em; pointer-events: none; user-select: none; }
.about-copy { position: relative; z-index: 1; grid-column: 2; }
.about .section-tag { color: var(--navy-900); }
.about h2 { font-size: clamp(42px, 5.1vw, 70px); }
.about-lead { margin: 36px 0 18px; font-size: 22px; font-weight: 700; line-height: 1.45; }
.about-copy > p:last-child { color: #34405e; font-size: 17px; }
.about-values { position: relative; z-index: 1; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 50px; border-top: 2px solid var(--navy-900); }
.about-values > div { padding: 28px 36px 0 0; }
.about-values > div + div { padding-left: 36px; border-left: 1px solid rgba(6,25,79,.3); }
.about-values span { display: block; margin-bottom: 25px; font-family: var(--mono); font-size: 10px; }
.about-values strong { display: block; font-size: 20px; }
.about-values p { margin: 9px 0 0; color: #34405e; }

.contact {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 100px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-900);
  background-image:
    linear-gradient(90deg, rgba(6, 25, 79, .97) 0%, rgba(6, 25, 79, .9) 48%, rgba(2, 11, 38, .74) 100%),
    linear-gradient(0deg, rgba(2, 11, 38, .72), rgba(2, 11, 38, .14)),
    url("Recording_edited_edited.png");
  background-position: center;
  background-size: cover;
}
.contact::before { position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(rgba(255,255,255,.5) .7px, transparent .7px); background-size: 12px 12px; content: ""; }
.contact-light { position: absolute; top: -30%; left: 42%; width: 180px; height: 110%; opacity: .2; background: linear-gradient(to bottom, var(--yellow), transparent 75%); filter: blur(22px); transform: rotate(25deg); }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact .section-tag { color: var(--yellow); }
.contact h2 em { color: var(--yellow); font-style: normal; }
.contact-copy > p:last-child { max-width: 560px; margin: 30px 0 0; color: #c7d0e6; font-size: 18px; }
.contact-actions { border-top: 1px solid var(--line); }
.contact-link { position: relative; display: block; padding: 26px 54px 26px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .25s, color .25s; }
.contact-link:hover { padding-left: 14px; color: var(--yellow); }
.contact-link span { display: block; margin-bottom: 6px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.contact-link strong { font-size: clamp(19px, 2vw, 27px); }
.contact-link b { position: absolute; right: 3px; bottom: 31px; font-size: 24px; }
.contact-link--facebook { padding-left: 60px; }
.contact-link--facebook:hover { padding-left: 68px; }
.contact-social-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 0 22px rgba(8,102,255,.25);
  transform: translateY(-50%);
  transition: transform .25s, box-shadow .25s;
}
.contact-link--facebook:hover .contact-social-icon {
  box-shadow: 0 0 0 1px rgba(255,255,255,.34), 0 0 28px rgba(8,102,255,.44);
  transform: translateY(-50%) scale(1.06);
}

.site-footer { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 70px; padding: 70px max(24px, calc((100vw - 1240px) / 2)) 30px; color: var(--white); background: var(--navy-950); }
.footer-brand img { width: 270px; height: 72px; object-fit: contain; }
.footer-brand p { margin: 23px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 13px; text-underline-offset: 4px; }
.footer-links a:hover { color: var(--yellow); }
.footer-blessing { display: flex; gap: 22px; align-items: start; }
.footer-blessing svg { width: 48px; flex: 0 0 auto; fill: none; stroke: var(--red); stroke-width: 2; }
.footer-blessing p { margin: 0; color: var(--muted); font-size: 15px; }
.footer-blessing strong { color: var(--yellow); font-family: var(--display); font-size: 18px; font-weight: 400; letter-spacing: -.03em; }
.footer-bottom { grid-column: 1 / -1; display: flex; margin-top: 25px; padding-top: 24px; justify-content: space-between; border-top: 1px solid var(--line); color: #74809d; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal[data-delay="1"] { transition-delay: .15s; }
.reveal[data-delay="2"] { transition-delay: .3s; }
.reveal.visible { opacity: 1; transform: none; }

a:focus-visible, button:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,29,29,0); } }
@keyframes meter { to { height: calc(var(--h) * .42); opacity: .5; } }
@keyframes signal { to { stroke-dashoffset: -1980; } }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .hero { min-height: 980px; }
  .hero-copy { width: 80%; }
  .hero-stage { width: min(58vw, 600px); }
  .service-row { grid-template-columns: 60px 1fr 1.2fr; }
  .service-row svg { display: none; }
  .project-grid { grid-auto-rows: 220px; }
  .contact { gap: 55px; }
}

@media (max-width: 800px) {
  :root { --page: calc(100vw - 28px); }
  .site-header { top: 10px; height: 62px; }
  .brand { width: 205px; }
  .brand img { width: 190px; height: 54px; }
  .menu-toggle { display: grid; width: 61px; border: 0; place-content: center; gap: 7px; color: var(--white); background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 69px; right: 0; left: 0; display: grid; padding: 20px; gap: 0; border: 1px solid var(--line); background: var(--navy-950); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s, transform .2s; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; padding: 15px; border: 0; text-align: center; }

  .hero { display: flex; min-height: auto; padding-top: 130px; padding-bottom: 50px; flex-direction: column; }
  .hero-copy { width: 100%; padding: 0; }
  .hero h1 { font-size: clamp(57px, 17vw, 100px); }
  .hero-intro { margin-top: 28px; font-size: 17px; }
  .hero-stage { position: relative; right: auto; bottom: auto; width: 92%; margin: 62px 0 84px auto; }
  .hero-foot { right: 24px; bottom: 30px; left: 24px; }
  .hero-foot p:nth-of-type(2), .hero-foot p:nth-of-type(3), .hero-foot span:nth-of-type(2) { display: none; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-heading, .work-heading { display: block; }
  .section-heading > p:last-child, .work-heading > p:last-child { margin-top: 30px; }
  .service-board { margin-top: 55px; }
  .service-row { grid-template-columns: 48px 1fr; min-height: 0; padding: 28px 0; gap: 10px 18px; }
  .service-row p { grid-column: 2; }
  .service-row:hover { padding-right: 10px; padding-left: 10px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; margin-top: 55px; }
  .project, .project-wide, .project-feature { grid-column: span 1; }
  .project-tall, .project-feature { grid-row: span 1; }
  .project:first-child, .project:last-child { grid-column: 1 / -1; }
  .about { display: block; }
  .year-mark { top: -20px; font-size: 35vw; }
  .about-copy { margin-left: 16%; }
  .about-values { grid-template-columns: 1fr; margin-top: 60px; }
  .about-values > div, .about-values > div + div { padding: 24px 0; border-left: 0; border-bottom: 1px solid rgba(6,25,79,.3); }
  .about-values span { margin-bottom: 8px; }
  .contact { display: block; min-height: 0; }
  .contact { background-position: 62% center; }
  .contact-actions { margin-top: 60px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-blessing { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .button { width: 100%; justify-content: space-between; }
  .hero-stage { width: 96%; }
  .hero-foot { gap: 12px; }
  .section h2 { font-size: 38px; }
  .service-row h3 { font-size: 21px; }
  .service-row p { font-size: 14px; }
  .project-grid { display: block; }
  .project { height: 290px; margin-bottom: 12px; }
  .about-copy { margin-left: 8%; }
  .about-lead { font-size: 19px; }
  .contact-link strong { font-size: 17px; }
  .site-footer { display: block; }
  .footer-links { margin: 42px 0; }
  .footer-bottom { gap: 18px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
