/* ============================================================
   DJ SamSam — mobile-first
   Design tokens read off the Rachel PT Framer template:
   pure black canvas, #121212 / #2B2B2B surfaces, one flat
   orange accent, General Sans at 400–500 only, 14px body,
   8 / 24 / pill radii. Restraint over decoration.
   ============================================================ */

:root {
  --black:    #000;
  --surface:  #121212;
  --surface-2:#2B2B2B;
  --line:     rgba(255,255,255,.10);
  --line-2:   rgba(255,255,255,.20);

  --white:    #FFF;
  --muted:    #A8A8A8;
  --dim:      #6B6B6B;
  --orange:   #F9652F;

  --r-xs: 8px;
  --r:    16px;
  --r-lg: 24px;
  --pill: 999px;

  --pad: 20px;
  --max: 1200px;
  --nav-h: 56px;

  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--black);
  color: var(--white);
  font-family: "General Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; letter-spacing: inherit; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: fixed; top: -80px; left: 12px; z-index: 200;
  background: var(--orange); color: #fff; padding: 9px 14px; border-radius: var(--pill);
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

/* ── primitives ────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

.sec { padding-block: 64px; }
.sec--last { padding-bottom: 72px; }

.sec__head { margin-bottom: 28px; }
.sec__head > div { max-width: 620px; }
.sec__head .btn { margin-top: 20px; }

.eyebrow {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.eyebrow--sm { margin-top: 28px; color: var(--dim); }

.h2 {
  font-size: clamp(26px, 6.2vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: balance;
}

h3 { font-size: 16px; font-weight: 500; letter-spacing: -.02em; }

.sec__lede { color: var(--muted); margin-top: 12px; max-width: 52ch; }
.sec__lede a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.sec__lede a:hover { color: var(--orange); }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding-inline: 22px;
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent; border-radius: var(--pill);
  cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: #E2521E; }
.btn--line { border-color: var(--line-2); color: var(--white); }
.btn--line:hover { background: var(--surface-2); border-color: transparent; }
.btn--sm { height: 38px; padding-inline: 18px; }
.btn--full { width: 100%; }

/* ── nav ───────────────────────────────────────────────── */
.nav { position: fixed; inset: 12px 0 auto; z-index: 100; transition: transform .3s var(--ease); }
.nav.hide { transform: translateY(calc(-100% - 16px)); }

.nav__inner {
  width: calc(100% - 2 * var(--pad));
  max-width: var(--max);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 12px;
  padding: 0 8px 0 16px;
  background: rgba(0,0,0,.6);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .25s var(--ease);
}
.nav.stuck .nav__inner { background: rgba(0,0,0,.88); }

.logo {
  display: inline-flex; align-items: center; gap: 8px;
  margin-right: auto;
  font-size: 15px; font-weight: 500; letter-spacing: -.02em;
}
.logo__mark { display: flex; align-items: flex-end; gap: 2px; width: 14px; height: 14px; }
.logo__mark i { flex: 1; background: var(--orange); border-radius: 1px; }
.logo__mark i:nth-child(1) { height: 55%; }
.logo__mark i:nth-child(2) { height: 100%; }
.logo__mark i:nth-child(3) { height: 35%; }

.nav__cta { display: none; }

.burger {
  width: 40px; height: 40px; flex: none;
  display: grid; place-content: center; gap: 5px;
  background: var(--surface-2); border: 0; border-radius: var(--pill);
  cursor: pointer;
}
.burger span {
  display: block; width: 15px; height: 1.5px; border-radius: 2px; background: var(--white);
  transition: transform .25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.nav__links {
  position: fixed;
  top: calc(12px + var(--nav-h) + 8px);
  left: var(--pad); right: var(--pad);
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px;
  background: rgba(10,10,10,.96);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__links.open { opacity: 1; visibility: visible; transform: none; }
.nav__links > a {
  padding: 11px 14px; border-radius: var(--r-xs);
  color: var(--muted);
  transition: background .18s, color .18s;
}
.nav__links > a:hover, .nav__links > a.active { background: var(--surface-2); color: var(--white); }
.nav__drawer-cta { margin-top: 4px; color: #fff !important; }
.nav__drawer-cta:hover { background: #E2521E !important; }

.scrim { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.6); }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(12px + var(--nav-h) + 16px) var(--pad) 24px;
  overflow: hidden;
  isolation: isolate;
}
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 56% 26%;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, #000 3%, rgba(0,0,0,.85) 30%, rgba(0,0,0,.25) 62%, rgba(0,0,0,.5) 100%);
}

.hero__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  height: 30px; padding-inline: 12px;
  font-size: 12px; color: var(--white);
  background: rgba(0,0,0,.45);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tag__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.hero__foot { display: grid; gap: 22px; }

.hero__h1 {
  font-size: clamp(30px, 8.4vw, 65px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.hero__card { max-width: 340px; }
.cta-card {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 12px 12px 18px;
  background: var(--orange); color: #fff;
  border-radius: var(--r);
  transition: background .2s var(--ease);
}
.cta-card:hover { background: #E2521E; }
.cta-card small { display: block; font-size: 12px; opacity: .85; }
.cta-card strong { display: block; font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.cta-card__go {
  margin-left: auto; flex: none;
  width: 36px; height: 36px;
  display: grid; place-content: center;
  background: rgba(0,0,0,.22); border-radius: var(--r-xs);
  transition: transform .2s var(--ease);
}
.cta-card:hover .cta-card__go { transform: translateX(3px); }
.hero__card-note { margin-top: 8px; font-size: 12px; color: var(--muted); }

/* ── stats ─────────────────────────────────────────────── */
.stats { border-top: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
.stat { padding: 22px 0; border-bottom: 1px solid var(--line); }
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat__n {
  display: flex; align-items: baseline; gap: 3px;
  font-size: 34px; font-weight: 400; line-height: 1; letter-spacing: -.04em;
  color: var(--orange);
}
.stat__n em { font-style: normal; font-size: 14px; letter-spacing: -.02em; }
.stat__h { font-size: 14.5px; font-weight: 500; letter-spacing: -.02em; margin-top: 10px; }
.stat__s { font-size: 12.5px; color: var(--muted); margin-top: 4px; max-width: 34ch; }

/* ── about ─────────────────────────────────────────────── */
.about { display: grid; gap: 28px; }
.about__img img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg);
}
.about__body p:not(.eyebrow) { color: var(--muted); margin-top: 12px; }
.about__body .h2 { margin-bottom: 4px; }

.creed { display: grid; gap: 1px; background: var(--line); border-radius: var(--r-xs); overflow: hidden; }
.creed li { background: var(--surface); padding: 13px 16px; font-size: 14px; }

/* ── mixes ─────────────────────────────────────────────── */
.mixes { display: grid; gap: 12px; }

.mix {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--r);
  transition: background .2s var(--ease);
}
.mix:hover { background: var(--surface-2); }

.mix__art { position: relative; border-radius: var(--r-xs); overflow: hidden; }
.mix__art img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.mix__body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.mix__meta { font-size: 12px; color: var(--dim); }
.mix__title {
  font-size: 15px; font-weight: 500; letter-spacing: -.02em; line-height: 1.25;
  margin: 3px 0 8px;
}
.mix__row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.mix__play {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding-inline: 12px;
  font-size: 12.5px;
  background: var(--orange); color: #fff;
  border: 0; border-radius: var(--pill); cursor: pointer;
  transition: background .2s var(--ease);
}
.mix__play:hover { background: #E2521E; }
.mix__play svg { width: 10px; height: 10px; }

.mix__out {
  display: inline-flex; align-items: center;
  height: 30px; padding-inline: 12px;
  font-size: 12.5px; color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--pill);
  transition: color .2s, border-color .2s;
}
.mix__out:hover { color: var(--white); border-color: var(--line-2); }

.mix__embed { grid-column: 1 / -1; }
.mix__embed iframe { border-radius: var(--r-xs); }

/* ── listen ────────────────────────────────────────────── */
.listen { display: grid; gap: 18px; }
.listen__player iframe { border-radius: var(--r-lg); }
.links { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; }

.link {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px;
  background: var(--surface);
  transition: background .18s var(--ease);
}
.link:hover { background: var(--surface-2); }
.link__ico { width: 18px; height: 18px; flex: none; color: var(--muted); }
.link__ico svg { width: 18px; height: 18px; }
.link:hover .link__ico { color: var(--orange); }
.link__t { min-width: 0; }
.link__t strong { display: block; font-size: 14px; font-weight: 500; }
.link__t span { display: block; font-size: 12.5px; color: var(--dim); }
.link__go { margin-left: auto; flex: none; color: var(--dim); font-size: 13px; }
.link:hover .link__go { color: var(--white); }

/* ── cards (services) ──────────────────────────────────── */
.cards { display: grid; gap: 12px; }
.card {
  position: relative;
  padding: 20px 18px 22px;
  background: var(--surface);
  border-radius: var(--r);
  transition: background .2s var(--ease);
}
.card:hover { background: var(--surface-2); }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 13.5px; }
.card__tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; color: var(--muted);
  padding: 4px 9px;
  border: 1px solid var(--line); border-radius: var(--pill);
}

/* ── steps ─────────────────────────────────────────────── */
.steps { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; }
.steps li {
  display: grid; grid-template-columns: 34px 1fr; gap: 12px;
  padding: 18px 16px;
  background: var(--surface);
}
.steps__n { font-size: 12px; color: var(--orange); padding-top: 2px; }
.steps p { color: var(--muted); font-size: 13.5px; margin-top: 4px; }

/* ── dates ─────────────────────────────────────────────── */
.dates { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; }

.date {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-areas: "d name" "d meta" ". cta";
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  transition: background .2s var(--ease);
}
.date:hover { background: var(--surface-2); }
.date.past { color: var(--dim); }
.date.past .date__num, .date.past .date__mon { color: var(--dim); }

.date__d { grid-area: d; text-align: center; }
.date__num { font-size: 22px; line-height: 1; letter-spacing: -.03em; }
.date__mon { font-size: 11px; color: var(--orange); margin-top: 3px; }
.date__name { grid-area: name; font-size: 14.5px; font-weight: 500; letter-spacing: -.02em; align-self: end; }
.date__meta { grid-area: meta; font-size: 12.5px; color: var(--dim); align-self: start; }

.date__cta {
  grid-area: cta;
  justify-self: start;
  margin-top: 8px;
  height: 30px; padding-inline: 12px;
  display: inline-flex; align-items: center;
  font-size: 12.5px; color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--pill);
}
a.date__cta:hover { color: var(--white); border-color: var(--line-2); }
.date__cta[aria-disabled="true"] { color: var(--dim); }

/* ── faq ───────────────────────────────────────────────── */
.faq { display: grid; gap: 28px; }
.faq__intro .btn { margin-top: 20px; }

.acc { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; }
.acc details { background: var(--surface); }
.acc summary {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  font-size: 14.5px; font-weight: 500; letter-spacing: -.02em;
  cursor: pointer; list-style: none;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; flex: none; margin-left: auto;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform .25s var(--ease);
}
.acc details[open] summary::after { transform: rotate(-135deg) translate(-2px,-2px); }
.acc details p { padding: 0 16px 18px; color: var(--muted); max-width: 62ch; }

/* ── contact ───────────────────────────────────────────── */
.contact { display: grid; gap: 28px; }

.info {
  display: block;
  padding: 14px 16px;
  margin-top: 10px;
  background: var(--surface);
  border-radius: var(--r-xs);
  transition: background .18s var(--ease);
}
.info:first-of-type { margin-top: 24px; }
.info:hover { background: var(--surface-2); }
.info strong { display: block; font-size: 14px; font-weight: 500; }
.info span { display: block; font-size: 12.5px; color: var(--dim); }

.socials { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.socials a {
  display: inline-flex; align-items: center; gap: 7px;
  height: 32px; padding-inline: 12px;
  font-size: 12.5px; color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--pill);
  transition: color .2s, border-color .2s;
}
.socials a:hover { color: var(--white); border-color: var(--line-2); }
.socials svg { width: 14px; height: 14px; flex: none; }

.form {
  display: grid; gap: 12px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--r-lg);
}
.form__row { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field > span { font-size: 12.5px; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 13px;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  font-size: 14px;
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23A8A8A8' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 9px;
  padding-right: 34px;
}
.field textarea { resize: vertical; min-height: 96px; }
.field ::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--line-2); outline: none; }
.field.bad input, .field.bad textarea { border-color: var(--orange); }

.form__note { font-size: 12px; color: var(--dim); text-align: center; }
.form__note.ok { color: var(--white); }
.form__note.err { color: var(--orange); }

/* ── footer ────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding-block: 44px 22px; }
.footer__grid { display: grid; gap: 28px; }
.footer__blurb { font-size: 13px; color: var(--dim); margin-top: 12px; line-height: 1.7; }
.footer h3 { font-size: 12px; color: var(--muted); font-weight: 400; margin-bottom: 10px; }
.footer nav a {
  display: block; font-size: 13.5px; color: var(--white);
  padding-block: 4px;
  transition: color .18s;
}
.footer nav a:hover { color: var(--orange); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--dim);
}
.footer__bar a:hover { color: var(--white); }

/* ══════════════ ≥ 620px ══════════════ */
@media (min-width: 620px) {
  :root { --pad: 28px; }
  .stats__grid { column-gap: 28px; }
  .stat__n { font-size: 40px; }
  .stat__n em { font-size: 16px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .mixes { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .form { padding: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .date {
    grid-template-columns: 52px 1fr auto;
    grid-template-areas: "d name cta" "d meta cta";
  }
  .date__cta { margin-top: 0; align-self: center; justify-self: end; }
  .sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
  .sec__head .btn { margin-top: 0; flex: none; }
}

/* ══════════════ ≥ 900px ══════════════ */
@media (min-width: 900px) {
  :root { --pad: 40px; }

  .sec { padding-block: 96px; }
  .sec--last { padding-bottom: 104px; }
  .sec__head { margin-bottom: 36px; }

  .burger { display: none; }
  .nav__cta { display: inline-flex; }
  .nav__drawer-cta { display: none; }
  .nav__links {
    position: static;
    flex-direction: row; align-items: center; gap: 2px;
    padding: 0; background: none; border: 0; backdrop-filter: none;
    opacity: 1; visibility: visible; transform: none;
  }
  .nav__links > a { padding: 7px 12px; border-radius: var(--pill); font-size: 13.5px; }

  .hero { padding-bottom: 40px; }
  .hero__img img { object-position: 66% 38%; }
  .hero__foot {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
  }
  .hero__h1 { max-width: 22ch; }
  .hero__card { width: 320px; }

  .stats__grid { grid-template-columns: repeat(4, 1fr); column-gap: 40px; }
  .stat { border-bottom: 0; padding: 34px 0 38px; }

  .about { grid-template-columns: 5fr 6fr; gap: 56px; align-items: center; }
  .mixes { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .listen { grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .steps li { grid-template-columns: 1fr; gap: 0; padding: 22px 18px 26px; }
  .steps__n { margin-bottom: 20px; }
  .faq { grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
  .contact { grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer { padding-block: 64px 24px; }
}
