:root {
  /* Site refresh: header and mobile hero tuning. */
  --bg: #050607;
  --panel: #0d1013;
  --panel-soft: #13171b;
  --text: #f6f3ed;
  --muted: #b6b0a6;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #caa76a;
  --blue: #8bb7d4;
  --turquoise: #9fb6c4;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(202, 167, 106, 0.35);
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0.3));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(202, 167, 106, 0.55);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.42rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  color: rgba(246, 243, 237, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

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

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-cinematic-soundworks.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.95) 0%, rgba(5, 6, 7, 0.78) 42%, rgba(5, 6, 7, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.18) 0%, rgba(5, 6, 7, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 92px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 560;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 670px;
  color: rgba(246, 243, 237, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #11100e;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-muted {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.split-heading,
.about-preview,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.split-heading {
  margin-bottom: 34px;
}

.split-heading h2,
.about-preview h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.email-link {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

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

.work-showcase {
  min-width: 0;
}

.work-banner {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: clamp(210px, 18vw, 260px);
  padding: 0;
  border: 1px solid rgba(202, 167, 106, 0.34);
  background: #000;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 24px 60px var(--shadow);
}

.work-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.work-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.36)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.68));
}

.work-banner-text {
  background:
    radial-gradient(circle at 78% 20%, rgba(139, 183, 212, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(202, 167, 106, 0.22), rgba(8, 10, 12, 0.96) 48%, rgba(5, 6, 7, 1));
}

.work-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(18px, 3vw, 32px);
}

.work-banner-content .kicker,
.work-banner-content .work-banner-link {
  display: none !important;
}

.work-banner-content > span:not(.kicker, .work-banner-link) {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 0.95;
}

.work-banner-content > small {
  margin-top: 14px;
  color: #9fb6c4 !important;
  font-size: 1rem;
  font-weight: 800;
}

.work-banner-content .work-banner-link {
  margin-top: 8px;
  color: var(--blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
}

.work-banner:hover img,
.work-banner[aria-expanded="true"] img {
  opacity: 0.78;
  transform: scale(1.035);
}

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

  .work-banner {
    height: clamp(230px, 28vw, 320px);
  }
}

.work-tracks {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.work-tracks[hidden] {
  display: none;
}

.work-track {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 20px;
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.work-empty {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.work-video {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(202, 167, 106, 0.28);
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.1), rgba(139, 183, 212, 0.05)),
    var(--panel-soft);
}

.work-video .video-embed {
  margin: 0;
}

.video-link-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-link-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-link-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(5, 6, 7, 0.72);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-link-card:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.local-video {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.work-track h3,
.work-track .kicker,
.work-video h3,
.work-video .kicker {
  margin-bottom: 0;
}

.work-track audio {
  width: 100%;
}

.feature-card,
.track-card,
.credit-row,
.credits-grid article,
.service-grid article,
.contact-card,
.quote-panel {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.feature-card,
.track-card,
.credit-row,
.credits-grid article,
.service-grid article,
.contact-card {
  padding: clamp(20px, 3vw, 30px);
}

.feature-card-large {
  grid-column: 1 / -1;
  grid-row: span 2;
  padding: clamp(22px, 3.5vw, 38px);
  border-color: rgba(202, 167, 106, 0.34);
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.1), rgba(139, 183, 212, 0.05)),
    var(--panel-soft);
}

.feature-card p:last-child,
.track-card p:last-child,
.credit-row p:last-child,
.credits-grid p:last-child,
.service-grid p:last-child,
.contact-card p:last-child,
.editorial p:last-child {
  margin-bottom: 0;
}

.video-embed {
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.feature-card-large .video-embed {
  margin-bottom: 28px;
  border-color: rgba(202, 167, 106, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
}

.video-embed.small {
  margin: 22px 0 0;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed .local-video {
  height: 100%;
  border: 0;
}

.audio-placeholder {
  display: flex;
  align-items: center;
  min-height: 72px;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.audio-placeholder audio {
  width: 100%;
}

.logo-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.logo-list span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 16px;
  background: #080a0c;
  color: rgba(246, 243, 237, 0.78);
  text-align: center;
  font-weight: 800;
}

.about-preview p,
.editorial,
.page-hero p {
  color: rgba(246, 243, 237, 0.78);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 24px 60px var(--shadow);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
}

.cta {
  padding-top: 0;
}

.cta-panel {
  padding: clamp(34px, 6vw, 66px);
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.18), rgba(139, 183, 212, 0.08)),
    var(--panel-soft);
  border: 1px solid rgba(202, 167, 106, 0.28);
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel p {
  max-width: 680px;
  color: rgba(246, 243, 237, 0.8);
}

.page-hero {
  padding: 162px 0 74px;
  background:
    linear-gradient(135deg, rgba(202, 167, 106, 0.12), rgba(139, 183, 212, 0.08)),
    #07090b;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.55rem, 5.6vw, 5.6rem);
}

.music-list {
  display: grid;
  gap: 18px;
}

.track-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 26px;
  align-items: center;
}

.track-card .audio-placeholder {
  margin-bottom: 0;
}

.credit-list {
  display: grid;
  gap: 18px;
}

.credit-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.credit-row h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.credit-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
}

.credit-title-line span {
  color: var(--blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credit-video {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.credit-video .video-embed {
  margin: 0;
}

.credit-audio {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.credit-audio h3 {
  margin-bottom: 18px;
}

.credit-audio audio {
  display: block;
  width: 100%;
}

.credits-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.quote-panel {
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
}

.quote-panel p {
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.18;
}

.quote-panel span {
  color: var(--muted);
}

.editorial {
  max-width: 860px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: max-content;
  cursor: pointer;
}

.contact-layout-single {
  display: block;
}

.contact-card-expanded {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
}

.contact-card-expanded h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.contact-card-expanded .button {
  margin-top: 18px;
}

.contact-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030404;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--text);
  text-decoration: none;
}

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

  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(8, 10, 12, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .feature-grid,
  .split-heading,
  .about-preview,
  .about-profile,
  .contact-layout,
  .track-card,
  .credit-row {
    grid-template-columns: 1fr;
  }

  .credits-grid,
  .service-grid,
  .logo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-large {
    grid-row: auto;
  }

  .work-banner {
    height: clamp(240px, 62vw, 330px);
  }

  .work-track {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .work-track audio {
    display: block;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 14px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 0.95rem;
  }

  .brand strong {
    font-size: 1.16rem;
  }

  .brand small {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-position: 78% center;
    filter: brightness(1.28) saturate(1.08);
    transform: scale(1.03);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.36)),
      linear-gradient(180deg, rgba(5, 6, 7, 0.04), rgba(5, 6, 7, 0.76));
  }

  h1 {
    font-size: clamp(2.58rem, 13vw, 4.35rem);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 130px 0 58px;
  }

  .credits-grid,
  .service-grid,
  .logo-list {
    grid-template-columns: 1fr;
  }

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