:root {
  color-scheme: dark;
  --ink: #f7f5f0;
  --muted: #b9bac5;
  --night: #090a10;
  --surface: #11131b;
  --surface-2: #181a24;
  --line: rgba(255, 255, 255, 0.14);
  --hot: #ff4f87;
  --cyan: #49d8e8;
  --gold: #f6c85f;
  --light: #f4efe6;
  --dark-text: #111218;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body,
button,
a {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--light);
  color: var(--dark-text);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 16, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.record-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.record-mark span {
  width: 17px;
  aspect-ratio: 1;
  border: 4px solid var(--cyan);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--night), 0 0 15px rgba(73, 216, 232, 0.7);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin-left: auto;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), #ff8b56 52%, var(--hot));
  color: var(--dark-text);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(255, 79, 135, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255, 79, 135, 0.34);
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.84rem;
  box-shadow: none;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(9, 10, 16, 0.55);
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: clamp(610px, 82svh, 790px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(9, 10, 16, 0.97) 0%, rgba(9, 10, 16, 0.79) 46%, rgba(9, 10, 16, 0.18) 80%),
    linear-gradient(180deg, rgba(9, 10, 16, 0.08) 50%, rgba(9, 10, 16, 0.78) 100%),
    url("assets/dj-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px);
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.hero-inner {
  padding-block: 70px 64px;
}

.kicker,
.eyebrow,
.package-type {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(4.4rem, 11vw, 9.2rem);
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255, 79, 135, 0.24);
}

.hero-lead {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 760;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 42px 0 0;
}

.hero-facts div {
  min-width: 145px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 850;
}

.proof-strip {
  border-block: 1px solid rgba(246, 200, 95, 0.28);
  background: var(--gold);
  color: var(--dark-text);
}

.proof-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.proof-inner strong {
  font-size: 1.04rem;
}

.proof-inner span {
  color: rgba(17, 18, 24, 0.72);
}

.proof-inner a {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 900;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-intro h2,
.final-cta h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro > p:last-child,
.about-copy > p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-item {
  min-height: 280px;
  padding: clamp(24px, 3.2vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
}

.service-item h3 {
  margin: 56px 0 12px;
  font-size: 1.35rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

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

.package-intro {
  max-width: 850px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.package-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.package-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 46px);
}

.featured-package {
  border-color: rgba(246, 200, 95, 0.65);
  background:
    linear-gradient(150deg, rgba(246, 200, 95, 0.09), transparent 46%),
    var(--surface-2);
}

.package-heading {
  min-height: 166px;
}

.package-card h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
}

.price {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 900;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 30px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--cyan);
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--gold);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.pricing-note {
  max-width: 920px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-section {
  background: var(--light);
  color: var(--dark-text);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(50px, 9vw, 120px);
}

.process-section .section-intro {
  position: sticky;
  top: 110px;
  align-self: start;
  margin-bottom: 0;
}

.process-section .section-intro > p:last-of-type {
  color: rgba(17, 18, 24, 0.7);
}

.process-section .button {
  margin-top: 22px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(17, 18, 24, 0.2);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(17, 18, 24, 0.2);
}

.process-list > li > span {
  color: #c94672;
  font-size: 0.77rem;
  font-weight: 900;
}

.process-list strong {
  font-size: 1.14rem;
}

.process-list p {
  margin: 4px 0 0;
  color: rgba(17, 18, 24, 0.68);
}

.gallery-section {
  background: var(--night);
}

.gallery-intro {
  max-width: 820px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-template-rows: 300px 350px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(9, 10, 16, 0.82);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-wide {
  grid-column: 2 / 4;
}

.gallery-link {
  display: inline-block;
  margin-top: 24px;
}

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

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.review-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(26px, 3.6vw, 40px);
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
}

.review-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: 36px;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.about-section {
  background: var(--night);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-lead {
  color: var(--ink) !important;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 720;
  line-height: 1.35;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 40px 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 820;
}

.faq-list p {
  max-width: 680px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.final-cta {
  padding-block: clamp(60px, 8vw, 100px);
  background: linear-gradient(115deg, var(--gold), #ff8c56 48%, var(--hot));
  color: var(--dark-text);
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(17, 18, 24, 0.72);
}

.final-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-inner > div {
  max-width: 820px;
}

.button-light {
  flex: 0 0 auto;
  border-color: rgba(17, 18, 24, 0.2);
  background: var(--dark-text);
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  padding-block: 48px;
  background: #06070a;
}

.error-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 10, 16, 0.97), rgba(9, 10, 16, 0.62)),
    url("assets/dj-hero.png") center / cover no-repeat;
}

.error-inner {
  padding-block: 72px;
}

.error-inner .eyebrow {
  margin-top: 90px;
}

.error-inner h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
}

.error-inner > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  align-items: center;
}

.footer-inner > div:first-child p,
.copyright {
  margin: 10px 0 0;
  color: #858792;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

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

  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .process-section .section-intro {
    position: static;
  }

  .faq-layout .section-intro {
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px 340px;
  }

  .gallery-tall {
    grid-row: 1 / 3;
  }

  .gallery-wide {
    grid-column: 2;
  }

  .gallery-item:last-child {
    grid-column: 1 / 3;
  }
}

@media (min-width: 721px) and (max-height: 800px) {
  .hero {
    min-height: calc(100svh - 130px);
  }

  .hero-inner {
    padding-block: 32px 26px;
  }

  h1 {
    font-size: 6.8rem;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.45rem;
  }

  .hero-copy {
    margin-top: 9px;
    font-size: 0.98rem;
  }

  .button-row {
    margin-top: 20px;
  }

  .hero-facts {
    display: none;
  }
}

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

  .header-inner {
    min-height: 64px;
    gap: 10px;
  }

  .wordmark {
    font-size: 0.76rem;
  }

  .record-mark {
    width: 30px;
  }

  .site-header .button-small {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.73rem;
  }

  .hero {
    min-height: calc(100svh - 110px);
    align-items: end;
    background:
      linear-gradient(180deg, rgba(9, 10, 16, 0.22) 0%, rgba(9, 10, 16, 0.62) 38%, rgba(9, 10, 16, 0.98) 73%),
      url("assets/dj-hero.png") 62% top / cover no-repeat;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding-block: 78px 28px;
  }

  h1 {
    font-size: clamp(3.8rem, 20vw, 6.2rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-facts {
    display: none;
  }

  .proof-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 10px;
    padding-block: 15px;
  }

  .proof-inner span {
    font-size: 0.8rem;
  }

  .proof-inner a {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    margin-left: 0;
    font-size: 0.8rem;
  }

  .service-grid,
  .package-grid,
  .review-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: auto;
  }

  .service-item h3 {
    margin-top: 28px;
  }

  .package-card {
    min-height: 0;
  }

  .package-heading {
    min-height: 0;
  }

  .process-layout {
    gap: 42px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 420px);
  }

  .gallery-tall,
  .gallery-wide,
  .gallery-item:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .review-card {
    min-height: 300px;
  }

  .about-photo {
    aspect-ratio: 1;
  }

  .faq-layout {
    gap: 20px;
  }

  .final-cta-inner {
    display: grid;
    align-items: start;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
