:root {
  --black: #050403;
  --panel: #0b0907;
  --cream: #ead8b7;
  --muted: #c8b28d;
  --orange: #ef6a00;
  --red: #ff2c22;
  --teal: #00a7a7;
  --magenta: #c43ac9;
  --green: #9dc315;
  --gold: #e0aa12;
  --line: rgba(239, 106, 0, 0.78);
  --shadow: rgba(0, 0, 0, 0.72);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 16%, rgba(180, 66, 0, 0.14), transparent 32rem),
    linear-gradient(90deg, rgba(239, 106, 0, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(239, 106, 0, 0.04) 1px, transparent 1px),
    var(--black);
  background-size: auto, 42px 42px, 42px 42px, auto;
  font-family: var(--body);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 8px clamp(18px, 4vw, 48px);
  background: rgba(1, 1, 1, 0.78);
  border-bottom: 2px solid var(--orange);
  backdrop-filter: blur(8px);
}

.mini-logo {
  display: block;
  width: 92px;
  height: 48px;
  filter: drop-shadow(0 3px 8px #000);
}

.mini-logo img,
.hero-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-links,
.footer-socials {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}

.top-links > a:first-child,
.top-links > a:nth-child(2),
.button,
.footer-button,
.genre-card a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-links > a:first-child,
.top-links > a:nth-child(2) {
  font-size: 1rem;
}

.social {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #f4dfbb;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.youtube {
  width: 42px;
  border-radius: 8px;
  color: #fff;
  background: #fa1010;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 630px;
  padding: 96px 20px 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 2px solid var(--orange);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/top-photo-bg.png");
  background-size: cover;
  background-position: center;
}

.hero::before,
.hero::after,
.record-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9) 60%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.65));
}

.hero::after {
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  text-align: center;
}

.hero-logo {
  width: min(720px, 86vw);
  aspect-ratio: 1.5;
  margin: 0 auto -18px;
  filter: drop-shadow(0 12px 14px #000);
}

.specialists,
.trade-panel h2,
.about h2,
.site-footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 2px 3px 0 #15100a;
}

.specialists {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 0.95;
}

.genre-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 1.78rem);
  text-transform: uppercase;
}

.genre-strip li:not(:last-child)::after {
  content: "•";
  color: var(--muted);
  margin-left: 16px;
}

.rock,
.rock-card {
  --accent: var(--orange);
}

.indie,
.indie-card {
  --accent: var(--magenta);
}

.metal,
.metal-card {
  --accent: var(--red);
}

.hiphop,
.hiphop-card {
  --accent: var(--teal);
}

.funk,
.funk-card {
  --accent: var(--gold);
}

.reggae,
.reggae-card {
  --accent: var(--green);
}

.genre-strip li,
.genre-card h3,
.genre-card a {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 44px;
}

.button,
.footer-button,
.genre-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.footer-button:hover,
.genre-card a:hover {
  transform: translateY(-2px);
}

.button {
  min-width: 230px;
  padding: 0 28px;
  border: 2px solid var(--orange);
}

.button.primary {
  background: linear-gradient(#f47a13, #b84400);
  border-color: #f47a13;
}

.button.primary::after {
  content: "›";
  padding-left: 8px;
  font-size: 1.3rem;
}

.button.secondary {
  background: rgba(0, 0, 0, 0.45);
}

.button.compact {
  min-width: 140px;
  min-height: 40px;
  padding: 0 20px;
  background: linear-gradient(#b75520, #722c12);
  border-color: #b75520;
}

.record-slider {
  position: relative;
  height: clamp(220px, 28vw, 300px);
  overflow: hidden;
  border-bottom: 2px solid var(--orange);
  background: #050403;
}

.record-slider::after {
  z-index: 3;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.85);
}

.slide-track,
.slide-photo {
  width: 100%;
  height: 100%;
}

.slide-track {
  display: flex;
  transform: translateX(0);
  transition: transform 600ms ease;
}

.slide-photo {
  display: block;
  flex: 0 0 50%;
  min-width: 50%;
  object-fit: cover;
}

.slide-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(34vw, 430px);
  height: calc(100% - 28px);
  translate: -50% -50%;
  display: grid;
  place-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(239, 106, 0, 0.28);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(8, 6, 4, 0.86) 20%, rgba(8, 6, 4, 0.86) 80%, rgba(0, 0, 0, 0.1)),
    radial-gradient(circle, rgba(239, 106, 0, 0.22), transparent 70%);
}

.slide-copy h1 {
  margin: 0;
  padding: 18px 12px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.03;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 3px 4px 0 #150d08;
}

.slide-copy.alt h1 {
  color: #f7dfac;
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 64px;
  border: 0;
  color: var(--orange);
  background: transparent;
  font-size: 4.3rem;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 14px;
  translate: -50% 0;
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #efe7d5;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--orange);
}

.trade-panel,
.genre-grid,
.about,
.site-footer {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
}

.trade-panel {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(239, 106, 0, 0.1), transparent 14%, transparent 86%, rgba(239, 106, 0, 0.1)),
    rgba(5, 4, 3, 0.8);
  text-align: center;
}

.trade-panel h2 {
  font-family: var(--display);
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  line-height: 0.95;
  color: var(--orange);
}

.trade-panel h2 span {
  color: var(--muted);
  font-size: 0.6em;
}

.trade-panel p {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: clamp(1.12rem, 2.7vw, 1.8rem);
  text-transform: uppercase;
}

.trade-panel strong {
  color: var(--accent);
}

.bolt {
  color: var(--orange);
  font-size: clamp(2.2rem, 6vw, 5rem);
  text-shadow: 0 0 18px rgba(239, 106, 0, 0.5);
}

.bolt-right {
  transform: scaleX(-1);
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 14px;
  border: 1px solid rgba(239, 106, 0, 0.7);
  border-radius: 8px;
  overflow: hidden;
}

.genre-card {
  display: flex;
  min-height: 274px;
  flex-direction: column;
  align-items: center;
  padding: 14px 16px 13px;
  border-right: 1px solid rgba(239, 106, 0, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(3, 4, 3, 0.88);
  text-align: center;
}

.genre-card:last-child {
  border-right: 0;
}

.genre-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 4px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 2.55rem;
  line-height: 1;
}

.genre-card h3 {
  margin: 10px 0 6px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  text-transform: uppercase;
}

.genre-card p {
  margin: 0;
  flex: 1;
  color: #f5e6ce;
  font-size: 1.02rem;
  line-height: 1.38;
}

.genre-card a {
  width: 100%;
  max-width: 142px;
  min-height: 38px;
  margin-top: 12px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 500px) 1fr;
  gap: 34px;
  align-items: center;
  padding: 8px 0 22px;
}

.about img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5);
}

.about h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
}

.about p {
  margin: 8px 0;
  max-width: 670px;
  color: #f1dfc2;
  font-size: 1.06rem;
  line-height: 1.48;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 18px 0 12px;
  border-top: 1px solid rgba(239, 106, 0, 0.72);
  color: #f1dfc2;
}

.site-footer section {
  min-height: 125px;
  padding: 0 26px;
  text-align: center;
}

.site-footer section + section {
  border-left: 1px solid rgba(224, 170, 18, 0.68);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.site-footer p {
  margin: 8px 0;
  line-height: 1.5;
}

.footer-button {
  min-height: 38px;
  padding: 0 20px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  color: var(--orange);
}

.footer-socials {
  justify-content: center;
  margin: 10px 0;
}

.copyright {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}

.promo-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.promo-modal.visible {
  display: flex;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
}

.promo-dialog {
  position: relative;
  width: min(100%, 1040px);
  max-height: min(92vh, 1180px);
  max-height: min(92dvh, 1180px);
  overflow: auto;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: #040302;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.8);
}

.promo-dialog img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-close {
  position: sticky;
  z-index: 2;
  top: 12px;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px 0;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.82);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid rgba(239, 106, 0, 0.7);
  background: rgba(5, 4, 3, 0.96);
}

.promo-actions h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--cream);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  text-transform: uppercase;
}

.page-shell {
  min-height: 100vh;
  padding: 112px clamp(16px, 4vw, 48px) 42px;
}

.page-panel {
  width: min(100%, 1020px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 106, 0, 0.1), transparent 34%),
    rgba(5, 4, 3, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.page-panel-header {
  padding: 30px clamp(18px, 4vw, 42px) 18px;
  border-bottom: 1px solid rgba(239, 106, 0, 0.45);
  text-align: center;
}

.page-panel-header h1,
.admin-preview h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--orange);
  font-size: clamp(2.35rem, 6vw, 4.2rem);
  text-transform: uppercase;
}

.page-panel-header p {
  max-width: 680px;
  margin: 8px auto 0;
  color: #f2dfc1;
  font-size: 1.1rem;
  line-height: 1.45;
}

.contact-form,
.admin-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field span,
.upload-label {
  color: var(--orange);
  font-family: var(--display);
  font-size: 1.32rem;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.admin-form input[type="file"] {
  width: 100%;
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.42);
  font: 1rem var(--body);
}

.form-field input,
.admin-form input[type="file"] {
  min-height: 52px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-status {
  min-height: 1.4em;
  color: var(--green);
  font-weight: 700;
}

.spam-check {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.admin-preview {
  padding: 0 clamp(18px, 4vw, 42px) clamp(18px, 4vw, 42px);
}

.admin-preview h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.admin-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.admin-slide-card {
  overflow: hidden;
  border: 1px solid rgba(239, 106, 0, 0.65);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
}

.admin-slide-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.admin-slide-card button {
  width: 100%;
  min-height: 38px;
  border: 0;
  color: var(--cream);
  background: #7d2100;
  font-family: var(--display);
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero {
    min-height: 570px;
  }

  .slide {
    grid-template-columns: 1fr minmax(290px, 42vw) 1fr;
  }

  .trade-panel {
    grid-template-columns: 80px 1fr 80px;
  }

  .genre-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .genre-card {
    border-bottom: 1px solid rgba(239, 106, 0, 0.7);
  }

  .genre-card:nth-child(3n) {
    border-right: 0;
  }

  .genre-card:nth-last-child(-n+3) {
    border-bottom: 0;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 60px;
    padding-inline: 14px;
  }

  .mini-logo {
    width: 72px;
    height: 38px;
  }

  .top-links {
    gap: 9px;
  }

  .top-links > a:first-child,
  .top-links > a:nth-child(2) {
    font-size: 0.82rem;
  }

  .social {
    width: 28px;
    height: 28px;
    font-size: 1.28rem;
  }

  .youtube {
    width: 36px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 560px;
    padding-top: 86px;
  }

  .genre-strip {
    gap: 6px 10px;
  }

  .genre-strip li:not(:last-child)::after {
    margin-left: 10px;
  }

  .button {
    width: min(100%, 280px);
  }

  .record-slider {
    height: 360px;
  }

  .slide {
    display: block;
  }

  .slide-copy {
    z-index: 2;
    top: 50%;
    translate: -50% -50%;
    width: min(80vw, 340px);
    min-height: 170px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(239, 106, 0, 0.45);
  }

  .slide-photo {
    width: 50%;
    min-width: 50%;
    height: 100%;
  }

  .slider-arrow {
    width: 40px;
    font-size: 3.2rem;
  }

  .trade-panel,
  .genre-grid,
  .about,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .trade-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .bolt {
    display: none;
  }

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

  .genre-card,
  .genre-card:nth-child(3n),
  .genre-card:nth-last-child(-n+3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(239, 106, 0, 0.7);
  }

  .genre-card:last-child {
    border-bottom: 0;
  }

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

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

  .promo-modal {
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .promo-dialog {
    width: min(calc(100vw - 24px), 390px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    overscroll-behavior: contain;
  }

  .promo-actions .button {
    width: 100%;
  }

  .promo-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    margin: 0;
    font-size: 1.65rem;
  }

  .promo-actions {
    padding: 12px;
  }

  .site-footer section {
    min-height: 0;
    padding: 0 10px 18px;
  }

  .site-footer section + section {
    border-left: 0;
    border-top: 1px solid rgba(224, 170, 18, 0.68);
    padding-top: 18px;
  }
}
