 :root {
   --bg: #EDE4D3;
   --bg-alt: #E2D3B0;
   --surface: #F6EFDE;
   --ink: #241C15;
   --ink-soft: #5B4A36;
   --brass: #A9762E;
   --brass-bright: #C79242;
   --rust: #8B3A2F;
   --border: rgba(36, 28, 21, 0.18);
   --shadow: rgba(36, 28, 21, 0.14);
   --vinyl: #0b0b0b;
   --vinyl-edge: rgba(255, 255, 255, 0.14);
   --vinyl-groove: rgba(255, 255, 255, 0.07);
   --vinyl-label: #d9bc7d;
   --vinyl-label-shadow: rgba(22, 17, 12, 0.35);
 }

 @media (prefers-color-scheme: dark) {
   :root:not([data-theme="light"]) {
     --bg: #17120C;
     --bg-alt: #1E1710;
     --surface: #241C14;
     --ink: #F2E6CE;
     --ink-soft: #C9B594;
     --brass: #D4A24C;
     --brass-bright: #E8B968;
     --rust: #C1584A;
     --border: rgba(242, 230, 206, 0.16);
     --shadow: rgba(0, 0, 0, 0.4);
   }
 }

 :root[data-theme="dark"] {
   --bg: #17120C;
   --bg-alt: #1E1710;
   --surface: #241C14;
   --ink: #F2E6CE;
   --ink-soft: #C9B594;
   --brass: #D4A24C;
   --brass-bright: #E8B968;
   --rust: #C1584A;
   --border: rgba(242, 230, 206, 0.16);
   --shadow: rgba(0, 0, 0, 0.4);
 }

 * {
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   margin: 0;
   background: var(--bg);
   color: var(--ink);
   font-family: 'Work Sans', sans-serif;
   font-size: 16px;
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   background-image:
     radial-gradient(circle at 15% 10%, rgba(169, 118, 46, 0.08), transparent 40%),
     radial-gradient(circle at 85% 80%, rgba(139, 58, 47, 0.06), transparent 45%);
 }

 h1,
 h2,
 h3 {
   font-family: 'Fraunces', serif;
   font-weight: 500;
   margin: 0;
   color: var(--ink);
 }

 p {
   margin: 0 0 1em 0;
   max-width: 62ch;
 }

 a {
   color: inherit;
 }

 section {
   padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4rem);
 }

 .reveal-on-scroll {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity 0.75s ease, transform 0.75s ease;
 }

 .reveal-on-scroll.is-visible {
   opacity: 1;
   transform: translateY(0);
 }

 /* Soft entrance fade for the hero record on page load. Opacity-only on
     purpose — the .record rule below sets `transform` via the spin
     keyframes, so this class never touches transform and can't interrupt
     the rotation. Scoped as .record.hero-fade-in (two classes) so it
     always wins over the base .record opacity, regardless of source order. */
 .record.hero-fade-in {
   opacity: 0;
   transition: opacity 0.9s ease;
 }

 .record.hero-fade-in.is-visible {
   opacity: 0.9;
 }

 .wrap {
   max-width: 1100px;
   margin: 0 auto;
 }

 header {
   position: sticky;
   top: 0;
   z-index: 50;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
   background: color-mix(in srgb, var(--bg) 88%, transparent);
   backdrop-filter: blur(8px);
   border-bottom: 1px solid var(--border);
 }

 .wordmark {
   font-family: 'Fraunces', serif;
   font-size: 1.15rem;
   letter-spacing: 0.02em;
   text-decoration: none;
   color: var(--ink);
 }

 nav {
   display: flex;
   gap: clamp(1rem, 3vw, 2rem);
   align-items: center;
 }

 nav a {
   text-decoration: none;
   font-size: 0.92rem;
   color: var(--ink-soft);
   position: relative;
   padding-bottom: 2px;
 }

 nav a:hover {
   color: var(--rust);
 }

 .nav-socials {
   display: flex;
   gap: 0.5rem;
 }

 .badge {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   border: 1px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.62rem;
   letter-spacing: 0.03em;
   text-decoration: none;
   color: var(--ink-soft);
   transition: border-color .2s, color .2s;
 }

 .badge:hover {
   border-color: var(--brass);
   color: var(--brass);
 }

 .menu-toggle {
   display: none;
 }

 .hero {
   min-height: 110vh;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding-top: 20rem;
   position: relative;
   background-image:
     linear-gradient(rgba(17, 12, 9, 0.42), rgba(17, 12, 9, 0.42)),
     url('img/dj_pic1.JPEG');
   background-size: cover;
   background-position: center 80%;
   background-repeat: no-repeat;
   overflow: hidden;
 }

 .record {
   position: absolute;
   left: clamp(1rem, 3vw, 2rem);
   top: clamp(2rem, 4vh, 3.5rem);
   width: clamp(110px, 10vw, 140px);
   height: clamp(110px, 10vw, 140px);
   margin: 0;
   animation: spin 9s linear infinite;
   transform-origin: center;
   will-change: transform;
   opacity: 0.9;
   filter: drop-shadow(0 8px 12px rgba(9, 9, 9, 0.2));
 }

 @keyframes spin {
   from {
     transform: rotate(0deg);
   }

   to {
     transform: rotate(360deg);
   }
 }

 .eyebrow {
   color: var(--brass);
   font-family: 'Fraunces', serif;
   font-style: italic;
   font-size: 1.05rem;
   margin-bottom: 0.75rem;
 }

 .hero h1 {
   margin-top: 2.25rem;
   font-size: clamp(2.8rem, 8vw, 6rem);
   line-height: 0.98;
   letter-spacing: -0.01em;
 }

 .hero .tagline {
   margin-top: 1.25rem;
   color: var(--ink-soft);
   font-size: clamp(1rem, 2vw, 1.2rem);
   max-width: 38ch;
 }

 .hero .cta-row {
   margin-top: 2.25rem;
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   justify-content: center;
 }

 .btn {
   display: inline-block;
   padding: 0.85rem 1.9rem;
   border-radius: 999px;
   text-decoration: none;
   font-size: 0.95rem;
   border: 1px solid var(--ink);
   color: var(--ink);
   transition: background .2s, color .2s, transform .15s;
 }

 .btn:hover {
   transform: translateY(-1px);
 }

 .btn-solid {
   background: var(--rust);
   border-color: var(--rust);
   color: #F6EFDE;
 }

 .btn-solid:hover {
   background: #762F26;
 }

 .scroll-cue {
   position: absolute;
   bottom: 2rem;
   font-size: 0.75rem;
   letter-spacing: 0.08em;
   color: var(--ink-soft);
   margin-bottom: 150px;
 }

 .about {
   background: var(--bg-alt);
   padding-top: clamp(2rem, 4vw, 4rem);
   min-height: 100vh;
   display: flex;
   align-items: center;
 }

 .about .wrap {
   width: 100%;
   display: grid;
   grid-template-columns: 1fr 1.3fr;
   gap: clamp(2rem, 5vw, 4rem);
   align-items: center;
 }

 .about .wrap>div:first-child {
   text-align: center;
 }

 .label {
   font-family: 'Fraunces', serif;
   font-style: italic;
   color: var(--brass);
   font-size: 1rem;
   margin-bottom: 0.5rem;
   display: block;
 }

 .about h2 {
   font-size: clamp(1.8rem, 3.5vw, 2.6rem);
   margin-bottom: 1rem;
 }

 .about p {
   font-size: 1.08rem;
   color: var(--ink-soft);
 }

 .about-photo {
   display: block;
   width: min(360px, 95%);
   height: min(360px, 95vw);
   object-fit: cover;
   object-position: center 35%;
   border-radius: 12px;
   margin: 10rem auto 1.25rem;
 }

 .quote-mark {
   font-family: 'Fraunces', serif;
   font-size: 4rem;
   color: var(--brass);
   line-height: 0.5;
   display: block;
   margin-bottom: 0.5rem;
 }

 .bio .wrap {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(2rem, 5vw, 4rem);
   align-items: start;
 }

 .bio h2 {
   font-size: clamp(1.8rem, 3.5vw, 2.6rem);
   margin-bottom: 1.25rem;
 }

 .bio p {
   color: var(--ink-soft);
   font-size: 1.02rem;
 }

 .photo-placeholder {
   aspect-ratio: 4/5;
   border: 1.5px dashed var(--brass);
   border-radius: 6px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 0.75rem;
   color: var(--ink-soft);
   background: var(--surface);
   text-align: center;
   padding: 1rem;
 }

 .photo-placeholder svg {
   width: 42px;
   height: 42px;
   opacity: 0.6;
 }

 .photo-placeholder img {
   width: 95%;
   max-width: 100%;
   max-height: 100%;
   height: auto;
   object-fit: contain;
 }

 .photo-placeholder span {
   font-size: 0.85rem;
   max-width: 20ch;
 }

 .bio .bio-highlights {
   display: block;
   margin-top: clamp(3rem, 7vw, 5rem);
   padding-top: clamp(2rem, 4vw, 3rem);
   border-top: 1px solid var(--border);
 }

 .bio-videos {
   display: grid;
   width: 100%;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: clamp(0.75rem, 2vw, 1.25rem);
   margin-top: 1.25rem;
 }

 .bio-video {
   display: block;
   width: 100%;
   aspect-ratio: 9 / 16;
   object-fit: cover;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 10px;
   box-shadow: 0 12px 24px -18px var(--shadow);
   transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
   transform-origin: center;
 }

 .bio-video:hover:not(.is-playing) {
   border-color: var(--brass);
   box-shadow: 0 16px 28px -18px var(--shadow);
   transform: translateY(-4px);
 }

 .bio-video.is-playing {
   border: 2px solid var(--brass);
   box-shadow: 0 0 0 3px rgba(169, 118, 46, 0.2);
   transform: scale(1.03);
 }

 .bio-more-videos {
   display: block;
   margin-top: clamp(2.5rem, 5vw, 4rem);
   padding-top: clamp(1.5rem, 3vw, 2.25rem);
   border-top: 1px solid var(--border);
 }

 .bio-more-heading {
   display: flex;
   align-items: center;
   gap: 1rem;
 }

 .bio-more-heading .label {
   margin-bottom: 0;
   font-size: 1.2rem;
 }

 .youtube-previews {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: clamp(0.75rem, 2vw, 1.25rem);
 }

 .youtube-preview {
   display: flex;
   align-items: center;
   gap: 0.85rem;
   width: 100%;
   margin-top: 0.75rem;
   color: var(--ink);
   text-decoration: none;
   border: 1px solid var(--border);
   border-radius: 8px;
   overflow: hidden;
   background: var(--surface);
   box-shadow: 0 10px 22px -18px var(--shadow);
   transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
 }

 .youtube-preview:hover {
   border-color: var(--brass);
   box-shadow: 0 14px 26px -18px var(--shadow);
   transform: translateY(-3px);
 }

 .youtube-preview img {
   display: block;
   flex: 0 0 96px;
   width: 96px;
   aspect-ratio: 16 / 9;
   object-fit: cover;
 }

 .youtube-preview span {
   padding-right: 0.75rem;
   font-size: 0.95rem;
 }

 .events {
   min-height: 100vh;
   display: flex;
   align-items: flex-start;
   background: var(--bg-alt);
 }

 .events .wrap {
   width: 100%;
 }

 .events h2 {
   font-size: clamp(1.8rem, 3.5vw, 2.6rem);
   margin-bottom: 0.5rem;
 }

 .events .label {
   margin-top: 0;
 }

 .side-title {
   font-family: 'Fraunces', serif;
   font-style: italic;
   color: var(--brass);
   margin: 2.25rem 0 0.75rem 0;
   font-size: 1.05rem;
 }

 .track {
   display: grid;
   grid-template-columns: 14rem minmax(0, 1fr);
   gap: clamp(2rem, 5vw, 4rem);
   align-items: baseline;
   padding: 0.85rem 0;
   border-bottom: 1px solid var(--border);
 }

 .track .idx {
   display: none;
   color: var(--brass);
   font-family: 'Fraunces', serif;
   font-style: italic;
 }

 .track .date {
   color: var(--ink-soft);
   font-size: 0.92rem;
   white-space: nowrap;
   margin-left: 1.5rem;
 }

 .track>div {
   min-width: 0;
   display: grid;
   grid-template-columns: 12rem minmax(0, 1fr);
   align-items: baseline;
   column-gap: 3rem;
   justify-self: start;
 }

 .track .venue {
   display: block;
   font-size: 1.02rem;
   text-align: left;
 }

 .track .city {
   color: var(--ink-soft);
   font-size: 0.9rem;
   display: block;
 }

 .booking .wrap {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: clamp(2rem, 5vw, 3.5rem);
   box-shadow: 0 18px 40px -20px var(--shadow);
 }

 .booking h2 {
   font-size: clamp(1.8rem, 3.5vw, 2.4rem);
   margin-bottom: 0.5rem;
 }

 .booking>.wrap>p {
   color: var(--ink-soft);
   margin-bottom: 2rem;
 }

 form {
   display: grid;
   gap: 1.25rem;
   max-width: 640px;
 }

 .field {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }

 label {
   font-size: 0.85rem;
   color: var(--ink-soft);
 }

 .required-mark {
   color: var(--rust);
 }

 input,
 textarea,
 select {
   font-family: 'Work Sans', sans-serif;
   font-size: 1rem;
   padding: 0.75rem 0.9rem;
   border-radius: 6px;
   border: 1px solid var(--border);
   background: var(--bg);
   color: var(--ink);
 }

 select {
   min-height: 3.1rem;
   cursor: pointer;
 }

 .booking-select-field {
   position: relative;
 }

 .booking-select-value {
   width: 100%;
   cursor: pointer;
   padding-right: 3rem;
 }

 .booking-select-toggle {
   position: absolute;
   top: 50%;
   right: 1rem;
   width: 2rem;
   height: 2rem;
   border: 0;
   background: transparent;
   cursor: pointer;
   transform: translateY(-50%);
   color: var(--brass);
   font-size: 1.25rem;
   pointer-events: none;
 }

 .booking-options {
   position: absolute;
   z-index: 20;
   top: calc(100% + 0.5rem);
   left: 0;
   width: 100%;
   max-height: 18rem;
   overflow-y: auto;
   padding: 0.35rem;
   border: 1px solid var(--brass);
   border-radius: 8px;
   background: var(--surface);
   box-shadow: 0 18px 35px -18px var(--shadow);
 }

 .booking-option {
   display: block;
   width: 100%;
   padding: 0.7rem 0.75rem;
   border: 0;
   border-radius: 5px;
   background: transparent;
   color: var(--ink);
   font: inherit;
   text-align: left;
   cursor: pointer;
 }

 .booking-option:hover,
 .booking-option:focus-visible {
   background: var(--brass);
   color: var(--surface);
   outline: none;
 }

 .calendar-field {
   position: relative;
 }

 .calendar-field input {
   width: 100%;
   cursor: pointer;
   padding-right: 3rem;
 }

 .calendar-field.is-invalid input {
   border-color: var(--rust);
   box-shadow: 0 0 0 2px rgba(139, 58, 47, 0.18);
 }

 .calendar-toggle {
   position: absolute;
   top: 0;
   right: 0;
   height: 100%;
   width: 3rem;
   border: 0;
   background: transparent;
   color: var(--brass);
   font-size: 1.25rem;
   cursor: pointer;
 }

 .calendar-picker {
   position: absolute;
   z-index: 10;
   top: calc(100% + 0.5rem);
   left: 0;
   width: min(100%, 320px);
   padding: 1rem;
   border: 1px solid var(--brass);
   border-radius: 8px;
   background: var(--surface);
   box-shadow: 0 18px 35px -18px var(--shadow);
 }

 .calendar-header,
 .calendar-weekdays,
 .calendar-days {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   align-items: center;
   text-align: center;
 }

 .calendar-header {
   grid-template-columns: 2rem 1fr 2rem;
   margin-bottom: 1rem;
 }

 .calendar-header button {
   border: 0;
   background: transparent;
   color: var(--brass);
   font-size: 1.5rem;
   cursor: pointer;
 }

 .calendar-header button:disabled {
   opacity: 0.3;
   cursor: not-allowed;
 }

 .calendar-header strong {
   font-family: 'Fraunces', serif;
   font-weight: 500;
 }

 .calendar-weekdays {
   margin-bottom: 0.5rem;
   color: var(--ink-soft);
   font-size: 0.7rem;
 }

 .calendar-days {
   row-gap: 0.35rem;
 }

 .calendar-day {
   width: 2rem;
   height: 2rem;
   justify-self: center;
   border: 1px solid transparent;
   border-radius: 50%;
   background: transparent;
   color: var(--ink);
   cursor: pointer;
 }

 .calendar-day:hover:not(:disabled),
 .calendar-day.selected {
   border-color: var(--brass);
   background: var(--brass);
   color: var(--surface);
 }

 .calendar-day:disabled {
   color: var(--border);
   cursor: not-allowed;
 }

 input:focus,
 textarea:focus,
 select:focus {
   outline: 2px solid var(--brass);
   outline-offset: 1px;
 }

 textarea {
   resize: vertical;
   min-height: 120px;
 }

 form .btn-solid {
   justify-self: start;
   border: none;
   cursor: pointer;
 }

 footer {
   padding: 3rem clamp(1.25rem, 5vw, 4rem) 2.5rem;
   border-top: 1px solid var(--border);
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   align-items: center;
   justify-content: space-between;
 }

 footer .contact {
   color: var(--ink-soft);
   font-size: 0.92rem;
 }

 footer .socials {
   display: flex;
   gap: 0.6rem;
 }

 footer .fineprint {
   width: 100%;
   text-align: center;
   color: var(--ink-soft);
   font-size: 0.78rem;
   margin-top: 1.5rem;
   opacity: 0.7;
 }

 @media (max-width: 820px) {
   section {
     padding: 3.5rem 1rem;
   }

   header {
     padding: 0.85rem 1rem;
   }

   .hero {
     min-height: 100svh;
     justify-content: flex-end;
     padding: 5rem 1rem 6rem;
     background-position: center;
   }

   .record {
     width: 92px;
     height: 92px;
     left: 1rem;
     top: 1.5rem;
   }

   .hero h1 {
     margin-top: 1rem;
     font-size: clamp(2.5rem, 13vw, 4rem);
     transform: translateY(-2.35rem);
   }

   .hero .tagline {
     max-width: 32ch;
     transform: translateY(-2.35rem);
   }

   .hero .cta-row {
     transform: translateY(-2.35rem);
   }

   .scroll-cue {
     position: static;
     margin: 0.5rem 0 0;
   }

   .about {
     min-height: auto;
     padding: 4rem 1rem;
   }

   .about .wrap {
     gap: 3rem;
   }

   .about-photo {
     width: min(320px, 100%);
     height: min(320px, 90vw);
     margin: 2rem auto 1.25rem;
   }

   .bio {
     padding: 4rem 1rem;
   }

   .bio .wrap {
     gap: 2.5rem;
   }

   .photo-placeholder {
     width: 100%;
     margin-left: auto;
     margin-right: auto;
     padding: 0.75rem;
   }

   .bio-more-videos {
     margin-top: 2.5rem;
   }

   .youtube-preview img {
     flex-basis: 84px;
     width: 84px;
   }

   .events {
     min-height: auto;
     padding: 4rem 1rem;
   }

   nav {
     position: fixed;
     inset: 0 0 auto 0;
     top: 64px;
     background: var(--bg);
     flex-direction: column;
     align-items: flex-start;
     padding: 1.5rem 1.5rem 2rem;
     border-bottom: 1px solid var(--border);
     transform: translateY(-130%);
     transition: transform .25s ease;
   }

   nav.open {
     transform: translateY(0);
   }

   .menu-toggle {
     display: inline-flex;
     background: none;
     border: 1px solid var(--border);
     border-radius: 6px;
     padding: 0.4rem 0.6rem;
     color: var(--ink);
     cursor: pointer;
   }

   .about .wrap,
   .bio .wrap {
     grid-template-columns: 1fr;
   }

   .bio .wrap {
     grid-template-columns: 1fr;
   }

   .track {
     grid-template-columns: 1fr;
     gap: 0.25rem;
   }

   .track .date {
     margin-left: 0;
   }

   .track>div {
     grid-template-columns: 1fr;
     column-gap: 0;
     row-gap: 0.15rem;
   }

   .bio-videos {
     grid-template-columns: 1fr;
   }

   .youtube-previews {
     grid-template-columns: 1fr;
   }

   .bio .photo-placeholder {
     order: -1;
     max-width: 320px;
   }

   .booking .wrap {
     padding: 1.5rem 1rem;
   }

   form .btn-solid {
     width: 100%;
   }

   .calendar-picker {
     width: 100%;
   }

   footer {
     flex-direction: column;
     align-items: flex-start;
     gap: 1.25rem;
     padding: 2.5rem 1rem 2rem;
   }
 }