:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --panel2: #171717;
  --text: #f4f4f4;
  --muted: #a9a9a9;
  --soft: #c8c8c8;
  --line: #292929;
  --accent: #ff6a1a;
  --max: 1120px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  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;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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


/* =========================================================
   GLOBAL CONTENT WIDTH

   This is the common alignment for the entire EPK:
   Hero
   About
   Highlights
   History
   Live Set
   Footer
   ========================================================= */

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.narrow {
  width: min(720px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 92vh;

  overflow: hidden;

  border-bottom: 1px solid var(--line);

  background-image: url("./hero-new.jpg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}


/* Hero now uses exactly the same width and left edge
   as every other .wrap section */

.hero-wrap {
  position: relative;
  z-index: 2;

  min-height: 92vh;

  display: flex;
  align-items: flex-end;
}


.overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.65) 28%,
      rgba(0, 0, 0, 0.38) 48%,
      rgba(0, 0, 0, 0.10) 70%,
      rgba(0, 0, 0, 0.02) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0) 100%
    );
}


.hero-content {
  width: 100%;
  max-width: 900px;

  padding: 90px 0 72px;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  margin: 0 0 16px;

  color: var(--accent);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

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

h1 {
  margin: 0;

  font-size: clamp(4rem, 9vw, 7.6rem);

  line-height: 0.9;

  letter-spacing: -0.055em;
}

h2 {
  margin: 0;

  font-size: clamp(2.2rem, 5vw, 4.2rem);

  line-height: 1;

  letter-spacing: -0.04em;
}

h3 {
  margin: 0;

  font-size: 1.12rem;

  line-height: 1.35;
}


.tagline {
  margin: 26px 0 0;

  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 750;

  line-height: 1.15;
}


.genres {
  margin: 14px 0 0;

  font-size: 1.05rem;
}


.meta {
  margin: 5px 0 0;

  color: var(--muted);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}


.actions.center {
  justify-content: center;
}


.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 11px 20px;

  border: 1px solid #505050;
  border-radius: 999px;

  color: var(--text);

  text-decoration: none;

  font-weight: 750;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}


.btn:hover {
  border-color: #8b8b8b;

  transform: translateY(-2px);
}


.btn.primary {
  background: var(--accent);

  border-color: var(--accent);

  color: #111111;
}


.btn.primary:hover {
  background: #ff7a32;

  border-color: #ff7a32;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 84px 0;

  border-bottom: 1px solid var(--line);
}


.dark {
  background: var(--panel);
}


.two-col {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.75fr)
    minmax(0, 1.4fr);

  gap: 72px;

  align-items: start;
}


/* No sticky effect */

.section-heading {
  position: static;
}


.copy {
  max-width: 720px;
}


.copy p {
  margin: 0 0 22px;

  color: #d6d6d6;

  font-size: 1rem;

  line-height: 1.75;
}


.copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SELECTED HIGHLIGHTS
   ========================================================= */

.cards {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;

  margin-top: 34px;
}


.card {
  min-height: 290px;

  padding: 32px;

  background: var(--panel2);

  border: 1px solid var(--line);
  border-radius: 18px;
}


.number {
  display: block;

  margin-bottom: 28px;

  color: var(--accent);

  font-size: 2.45rem;
  font-weight: 900;

  line-height: 1;
}


.card h3 {
  margin-bottom: 18px;

  font-size: 1.18rem;
}


.card p {
  margin: 0;

  color: var(--soft);

  line-height: 1.7;
}


/* =========================================================
   SELECTED HISTORY
   ========================================================= */

.history {
  background: var(--bg);
}


.history-title {
  max-width: 760px;

  margin-top: 6px;

  font-size: clamp(2rem, 4vw, 3.4rem);

  line-height: 1.05;
}


.history-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;

  margin-top: 42px;

  align-items: stretch;
}


.history-card {
  min-width: 0;

  padding: 32px;

  background: var(--panel);

  border: 1px solid var(--line);
  border-radius: 18px;
}


.history-card h3 {
  margin: 0 0 24px;

  color: #ffffff;

  font-size: 1.18rem;
  font-weight: 800;

  line-height: 1.35;
}


.history-card p {
  margin: 0;

  color: var(--soft);

  font-size: 0.98rem;
  font-weight: 400;

  line-height: 1.85;
}


/* Nothing inside the history text becomes bold */

.history-card strong,
.history-card b {
  color: inherit;
  font-weight: inherit;
}


/* =========================================================
   LIVE SET
   ========================================================= */

#listen h2 {
  max-width: 950px;
}


#listen .lead {
  max-width: 820px;

  margin: 22px 0 0;

  color: var(--soft);

  line-height: 1.7;
}


.player-shell {
  margin: 30px 0 12px;

  overflow: hidden;

  background: #ffffff;

  border-radius: 14px;
}


.player-shell iframe {
  display: block;

  width: 100%;

  border: 0;
}


.text-link {
  display: inline-block;

  margin-top: 8px;

  color: var(--accent);

  font-weight: 750;

  text-decoration: none;
}


.text-link:hover {
  text-decoration: underline;

  text-underline-offset: 4px;
}


/* =========================================================
   CURRENT DJ SET
   ========================================================= */

.secondary-set {
  margin-top: 46px;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.secondary-set .eyebrow {
  margin-bottom: 10px;
}


.secondary-set h3 {
  margin: 0 0 12px;

  font-size: clamp(1.5rem, 3vw, 2.15rem);

  letter-spacing: -0.025em;
}


.secondary-set p {
  max-width: 760px;

  margin: 0 0 8px;

  color: var(--soft);

  line-height: 1.7;
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking {
  padding: 70px 0 74px;

  text-align: center;

  background: var(--bg);
}


.booking .narrow {
  max-width: 680px;
}


.booking .eyebrow {
  margin-bottom: 14px;
}


.booking h2 {
  margin: 0;

  font-size: clamp(2.3rem, 5vw, 4rem);

  line-height: 1.05;

  letter-spacing: -0.04em;
}


.booking-details {
  margin: 20px 0 0;

  color: var(--soft);

  font-size: 1.05rem;
}


.booking .meta {
  margin-top: 4px;
}


.booking-mail {
  margin: 26px 0 0;

  font-size: clamp(1.15rem, 2vw, 1.45rem);

  font-weight: 800;
}


.booking-mail a {
  padding-bottom: 3px;

  color: var(--text);

  border-bottom: 1px solid var(--accent);

  text-decoration: none;
}


.booking-mail a:hover {
  color: var(--accent);
}


.booking .actions {
  justify-content: center;

  margin-top: 30px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 24px 0;

  background: var(--bg);

  color: #777777;
}


.footer-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  font-size: 0.85rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .hero {
    min-height: 82vh;

    background-attachment: scroll;

    background-position: 42% center;
  }


  .hero-wrap {
    min-height: 82vh;
  }


  .hero-content {
    max-width: 100%;

    padding: 72px 0 56px;
  }


  .two-col {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  .section-heading {
    position: static;
  }


  .cards {
    grid-template-columns: 1fr;
  }


  .card {
    min-height: 0;
  }


  .history-grid {
    grid-template-columns: 1fr;
  }


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


  .section {
    padding: 66px 0;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .wrap,
  .narrow {
    width: calc(100% - 30px);
  }


  /* HERO */

  .hero {
    min-height: 820px;

    background-attachment: scroll;

    background-size: auto 66%;

    background-position: 44% top;

    background-repeat: no-repeat;

    background-color: #080808;
  }


  .hero-wrap {
    min-height: 820px;

    align-items: flex-end;
  }


  .overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.90) 22%,
        rgba(0, 0, 0, 0.62) 42%,
        rgba(0, 0, 0, 0.16) 68%,
        rgba(0, 0, 0, 0.03) 100%
      );
  }


  .hero-content {
    width: 100%;
    max-width: 100%;

    padding: 360px 0 42px;
  }


  .hero .eyebrow {
    margin-bottom: 12px;

    font-size: 0.72rem;
  }


  h1 {
    font-size: clamp(3.4rem, 17vw, 4.8rem);

    line-height: 0.92;
  }


  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }


  .tagline {
    margin-top: 18px;

    font-size: clamp(1.2rem, 6vw, 1.65rem);

    line-height: 1.15;
  }


  .genres {
    margin-top: 14px;

    font-size: 0.95rem;

    line-height: 1.45;
  }


  .meta {
    margin-top: 7px;

    font-size: 0.9rem;

    line-height: 1.45;
  }


  .actions {
    margin-top: 24px;

    gap: 10px;
  }


  .btn {
    min-height: 48px;

    padding: 11px 18px;
  }


  /* GENERAL */

  .section {
    padding: 54px 0;
  }


  .copy p {
    font-size: 0.97rem;

    line-height: 1.72;
  }


  /* HIGHLIGHTS */

  .card {
    padding: 25px;
  }


  .number {
    margin-bottom: 22px;

    font-size: 2.15rem;
  }


  /* HISTORY */

  .history-title {
    font-size: clamp(1.9rem, 9vw, 2.7rem);

    line-height: 1.08;
  }


  .history-grid {
    gap: 16px;

    margin-top: 30px;
  }


  .history-card {
    padding: 25px;
  }


  .history-card h3 {
    margin-bottom: 20px;

    font-size: 1.15rem;
  }


  .history-card p {
    font-size: 0.96rem;

    font-weight: 400;

    line-height: 1.75;
  }


  .history-card strong,
  .history-card b {
    color: inherit;

    font-weight: inherit;
  }


  /* LIVE SET */

  .secondary-set {
    margin-top: 38px;

    padding-top: 26px;
  }


  /* BOOKING */

  .booking {
    padding: 54px 0 58px;
  }


  .booking h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }


  .booking-mail {
    font-size: 1.05rem;
  }


  /* FOOTER */

  .footer-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }

}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {

  .hero {
    min-height: 790px;

    background-size: auto 64%;

    background-position: 43% top;
  }


  .hero-wrap {
    min-height: 790px;
  }


  .hero-content {
    padding-top: 340px;
  }


  h1 {
    font-size: 3.2rem;
  }


  .btn {
    padding: 10px 16px;

    font-size: 0.92rem;
  }

}
