:root {
  --ink: #050505;
  --muted: #5d5d5d;
  --paper: #f4f1eb;
  --panel: #ffffff;
  --accent: #050505;
  --night: #050505;
  --line: rgba(5, 5, 5, 0.16);
  --shadow: 0 26px 70px rgba(5, 5, 5, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.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-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(244, 241, 235, 0.9);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-name {
  display: grid;
  gap: 4px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name span:first-child {
  white-space: nowrap;
  font-size: clamp(1.22rem, 1.8vw, 1.68rem);
  font-weight: 950;
}

.brand-name span:last-child {
  white-space: nowrap;
  font-size: clamp(0.54rem, 0.78vw, 0.72rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  display: grid;
  align-items: end;
  padding: clamp(72px, 8vw, 142px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 72px);
  color: #fff;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.04) brightness(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.02) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.7rem, 5.1vw, 5.4rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  hyphens: auto;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  font-weight: 650;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 0;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: #fff;
}

.button.secondary {
  color: #fff;
  background: var(--ink);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.button.ghost.dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.contact-panel .button.primary {
  color: #fff;
  background: var(--ink);
}

.contact-panel .button.secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.section-pad {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.intro,
.services,
.references {
  max-width: 1240px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin-bottom: 22px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  font-weight: 650;
}

.portrait-band {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 620px);
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
  justify-content: center;
  background: #050505;
  color: #fff;
}

.portrait-card {
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(1) contrast(1.12);
}

.portrait-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 2px;
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--panel);
  box-shadow: none;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.service-card div {
  padding: 24px;
}

.service-card p {
  color: var(--muted);
}

.references {
  border-top: 1px solid var(--line);
}

.references-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.references-intro p:last-child {
  color: var(--muted);
}

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

.reference-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.testimonial-slider {
  margin-top: clamp(38px, 6vw, 72px);
  padding: clamp(26px, 5vw, 58px);
  color: #fff;
  background: var(--ink);
}

.testimonial-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 18px;
}

.testimonial-topline p {
  margin-bottom: 0;
}

.testimonial-topline p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.testimonial-track {
  position: relative;
}

.testimonial-slide {
  display: none;
  min-height: clamp(280px, 32vw, 430px);
  align-items: end;
}

.testimonial-slide.is-active {
  display: flex;
}

.testimonial-copy {
  width: min(100%, 1120px);
  min-width: 0;
  margin-left: auto;
}

.quote {
  max-width: 100%;
  margin-bottom: clamp(22px, 4vw, 42px);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 4.8rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: auto;
}

.person {
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 950;
  text-transform: uppercase;
}

.context {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible,
.testimonial-dots button.is-active {
  color: var(--ink);
  background: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  min-height: 0;
  padding: 0;
  border-width: 1px;
}

.contact {
  background: #050505;
}

.contact-panel {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.72fr);
  gap: 28px 48px;
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  border: 2px solid #fff;
  border-radius: 0;
  background: #f4f1eb;
}

.contact-panel h2 {
  font-size: clamp(2.25rem, 4.8vw, 5.1rem);
}

.contact-panel p {
  max-width: 620px;
  color: var(--muted);
}

address {
  display: grid;
  gap: 4px;
  font-style: normal;
  color: var(--muted);
}

address strong {
  color: var(--ink);
}

.contact-actions {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--night);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-dj {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .brand-name span:first-child {
    font-size: 1.18rem;
  }

  .brand-name span:last-child {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 20px 40px rgba(17, 21, 31, 0.12);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 86vh;
    aspect-ratio: auto;
    padding-top: 126px;
  }

  .hero-media img {
    object-fit: cover;
    object-position: 62% 50%;
  }

  .intro-grid,
  .portrait-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .testimonial-topline {
    display: grid;
    align-items: start;
    gap: 20px;
  }

  .testimonial-topline p:last-child {
    max-width: none;
    text-align: left;
  }

  .testimonial-slide {
    min-height: clamp(250px, 48vw, 360px);
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 8px;
  }

  .brand-dj {
    width: 46px;
    height: 46px;
  }

  .brand-name span:first-child {
    font-size: 1rem;
  }

  .brand-name span:last-child {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .quote {
    font-size: 1.5rem;
    line-height: 1.02;
  }

  .testimonial-slider {
    padding: 22px;
  }

  .testimonial-topline {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .testimonial-controls {
    margin-top: 18px;
  }
}
