:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #181715;
  --text: #f5f2ec;
  --muted: #b9b2a6;
  --line: rgba(245, 242, 236, 0.16);
  --accent: #c9a45c;
  --accent-2: #6fd0bd;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(245, 242, 236, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 52px) 34px;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-image-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 36%, rgba(5, 5, 5, 0.28) 72%, rgba(5, 5, 5, 0.66) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.18) 42%, rgba(5, 5, 5, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(245, 242, 236, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--text);
  color: #050505;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button.wide {
  width: 100%;
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 72px auto 0;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: rgba(245, 242, 236, 0.86);
  font-weight: 700;
  border-right: 1px solid var(--line);
}

.hero-panel span:last-child {
  border-right: 0;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 108px 0;
}

.intro-grid,
.experience,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-actions {
  margin-top: 24px;
}

.intro-visual {
  grid-column: 1 / -1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.intro-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.intro-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 36px, var(--max));
  background: var(--line);
  padding: 0;
  border: 1px solid var(--line);
}

.service {
  min-height: 520px;
  padding: clamp(26px, 3vw, 42px);
  background: var(--panel);
}

.service:nth-child(2) {
  background: var(--panel-2);
}

.service:nth-child(4) {
  background: var(--panel-2);
}

.service-number {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 22px;
}

.service-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 34px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.94) contrast(1.04);
}

.service h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 22px;
}

.service p,
.service li,
.steps p,
.gallery-heading p,
.contact-copy p {
  color: var(--muted);
}

.service ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.service-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 900;
}

@keyframes hero-image-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

.rehearsal-rules {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.rehearsal-rules span {
  color: var(--text);
  font-weight: 900;
}

.rehearsal-rules a {
  color: var(--muted);
  font-weight: 800;
}

.rehearsal-rules a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.steps {
  display: grid;
  gap: 18px;
}

.steps div {
  border-left: 2px solid var(--accent);
  padding: 2px 0 2px 22px;
}

.steps span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-heading p {
  max-width: 410px;
  margin-bottom: 0;
}

.gallery-shell {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 420px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  padding: 0 0 18px;
  scrollbar-color: rgba(245, 242, 236, 0.38) rgba(245, 242, 236, 0.08);
}

.gallery-track:focus {
  outline: 2px solid rgba(111, 208, 189, 0.7);
  outline-offset: 6px;
}

.gallery-track::-webkit-scrollbar {
  height: 10px;
}

.gallery-track::-webkit-scrollbar-track {
  background: rgba(245, 242, 236, 0.08);
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(245, 242, 236, 0.38);
  border-radius: 999px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.gallery-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.gallery-controls button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact {
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-copy {
  align-self: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details a,
.contact-details > span {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.contact-details a span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-details .download-link {
  color: var(--accent);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: #f5f2ec;
  color: #050505;
}

.honeypot {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form .full,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form label span {
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: #050505;
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(111, 208, 189, 0.7);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 13px;
}

.map-card {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.map-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.map-meta span {
  font-weight: 900;
}

.map-meta a {
  color: var(--accent);
  font-weight: 900;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 44vw, 460px);
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.95);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.subpage {
  background: var(--bg);
}

.subpage-hero {
  width: min(100% - 36px, var(--max));
  min-height: 82vh;
  margin: 0 auto;
  padding: 136px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.subpage-hero h1 {
  font-size: clamp(42px, 6vw, 82px);
}

.subpage-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.subpage-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.subpage-content {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 0 0 108px;
}

.subpage-content h2 {
  max-width: 840px;
  margin-bottom: 22px;
}

.subpage-content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.subpage-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.subpage-points span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--panel);
  font-weight: 900;
}

.podcast-stack {
  padding-bottom: 72px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.podcast-grid article {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--panel);
}

.podcast-grid article:nth-child(2) {
  background: var(--panel-2);
}

.podcast-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.podcast-grid h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px;
}

.producer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding-bottom: 92px;
  border-top: 1px solid var(--line);
  padding-top: 86px;
}

.producer-copy {
  display: grid;
  gap: 16px;
}

.producer-copy h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.producer-copy p {
  max-width: 860px;
  margin: 0;
}

.producer-photo {
  position: sticky;
  top: 106px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.producer-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.04);
}

.video-section {
  padding-bottom: 96px;
}

.video-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 292px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  padding: 0 0 18px;
  scrollbar-color: rgba(245, 242, 236, 0.38) rgba(245, 242, 236, 0.08);
}

.video-gallery::-webkit-scrollbar {
  height: 10px;
}

.video-gallery::-webkit-scrollbar-track {
  background: rgba(245, 242, 236, 0.08);
}

.video-gallery::-webkit-scrollbar-thumb {
  background: rgba(245, 242, 236, 0.38);
  border-radius: 999px;
}

.video-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  scroll-snap-align: start;
}

.video-card::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.74);
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}

.video-card:hover img {
  opacity: 0.82;
  transform: scale(1.035);
}

.video-card span {
  display: block;
  min-height: 48px;
  padding: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.team-section {
  padding-bottom: 116px;
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.team-profile + .team-profile {
  margin-top: 24px;
}

.team-profile-reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.02fr);
}

.team-profile-reverse .team-copy {
  grid-column: 2;
}

.team-profile-reverse .team-photo {
  grid-column: 1;
  grid-row: 1;
}

.team-copy {
  display: grid;
  gap: 16px;
}

.team-copy span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-copy h2 {
  font-size: clamp(34px, 4.4vw, 62px);
}

.team-copy h3 {
  margin: 0;
  max-width: 760px;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

.team-copy p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.team-photo {
  position: sticky;
  top: 106px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090909;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

@media (max-width: 1100px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-panel,
  .services,
  .intro-grid,
  .experience,
  .contact,
  .gallery-heading,
  .subpage-hero,
  .subpage-points,
  .podcast-grid,
  .producer-section {
    grid-template-columns: 1fr;
  }

  .hero-panel span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel span:last-child {
    border-bottom: 0;
  }

  .services {
    gap: 1px;
  }

  .service {
    min-height: auto;
  }

  .gallery-heading {
    align-items: start;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .video-gallery {
    grid-auto-columns: minmax(220px, 72vw);
  }

  .team-profile,
  .team-profile-reverse {
    grid-template-columns: 1fr;
  }

  .team-profile-reverse .team-copy,
  .team-profile-reverse .team-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .team-photo {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: none;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .button,
  .contact-form {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .map-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 76px 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .producer-photo {
    position: static;
  }

  .video-gallery {
    grid-auto-columns: minmax(220px, 82vw);
  }
}
