:root {
  --color-ink: #f8f1e8;
  --color-muted: #b8ada0;
  --color-bg: #080707;
  --color-panel: #141111;
  --color-panel-light: #211b19;
  --color-line: rgba(248, 241, 232, 0.16);
  --color-accent: #ef3f24;
  --color-accent-strong: #ffcf33;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --max-width: 1360px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(239, 63, 36, 0.2), transparent 34rem),
    linear-gradient(180deg, #080707 0%, #120f0e 46%, #080707 100%);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open,
body.modal-open,
body.cart-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-accent-strong);
  outline-offset: 3px;
}

img,
svg {
  max-width: 100%;
}

.section-shell {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--color-line);
  background: rgba(8, 7, 7, 0.86);
  backdrop-filter: blur(18px);
}

.brand-link,
.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-accent-strong);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--color-ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding: clamp(64px, 9vw, 130px) 0;
}

.hero-content h1,
.section-heading h2,
.about-copy h2,
.newsletter-box h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 11ch;
  font-size: clamp(5.2rem, 16vw, 15rem);
}

.hero-subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--color-accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--color-ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #080707;
}

.button-secondary {
  border-color: var(--color-line);
  background: transparent;
  color: var(--color-ink);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  white-space: nowrap;
}

.hero-art,
.placeholder-art,
.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background:
    linear-gradient(135deg, rgba(239, 63, 36, 0.9), rgba(255, 207, 51, 0.8) 38%, #171111 39%),
    #171111;
}

.hero-art {
  min-height: clamp(420px, 54vw, 700px);
  display: grid;
  place-items: center;
}

.hero-art::before,
.placeholder-art::before,
.video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(8, 7, 7, 0.4);
}

.hero-art-inner,
.placeholder-art span {
  position: relative;
  display: grid;
  width: calc(100% - 76px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(8, 7, 7, 0.7);
  color: #080707;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
  padding: 18px;
  text-align: center;
  text-transform: uppercase;
}

.feature-band,
.live-shop-band,
.about-section {
  padding: clamp(72px, 9vw, 138px) 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
}

.album-section,
.video-section,
.events-section,
.shop-section {
  min-width: 0;
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section-heading h2,
.about-copy h2,
.newsletter-box h2 {
  font-size: clamp(3.1rem, 8vw, 8rem);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent-strong);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.album-cta {
  display: grid;
  min-height: calc(100% - clamp(98px, 10vw, 150px));
  grid-template-columns: 1fr;
  gap: 28px;
  align-content: start;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--color-line);
  background: rgba(20, 17, 17, 0.86);
}

.album-cover {
  aspect-ratio: 1;
  max-width: 360px;
}

.album-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 4.8rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.album-copy p:not(.kicker),
.about-copy p {
  max-width: 650px;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.video-section {
  padding: 0;
}

.video-layout {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--color-line);
  background: #0f0c0b;
}

.video-frame {
  width: 100%;
  padding: 0;
  border-radius: 0;
  color: var(--color-ink);
  cursor: pointer;
  min-height: clamp(360px, 47vw, 650px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(8, 7, 7, 0.3), rgba(8, 7, 7, 0.56)),
    repeating-linear-gradient(135deg, #221816 0 14px, #140f0e 14px 28px);
}

.play-button {
  width: clamp(74px, 8vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  background: rgba(248, 241, 232, 0.08);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--color-ink);
}

.video-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.live-shop-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.43fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  border-top: 1px solid var(--color-line);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--color-line);
  background: rgba(20, 17, 17, 0.82);
}

.event-card .button {
  grid-column: 2;
  justify-self: start;
  margin-top: 6px;
}

.event-date {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--color-line);
  text-align: center;
  text-transform: uppercase;
}

.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.9;
}

.event-month {
  display: block;
  color: var(--color-accent-strong);
  font-size: 0.75rem;
  font-weight: 900;
}

.event-info h3,
.product-card h3,
.footer-column h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.event-info p,
.product-card p,
.site-footer p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

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

.product-card {
  display: grid;
  border: 1px solid var(--color-line);
  background: var(--color-panel);
}

.product-card h3,
.product-card p {
  padding-inline: 18px;
}

.product-card h3 {
  margin-top: 18px;
}

.product-card p {
  margin-bottom: 20px;
}

.product-button {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
}

.product-card.is-added {
  border-color: rgba(255, 207, 51, 0.72);
}

.product-image {
  aspect-ratio: 1;
}

.product-art-two {
  background:
    linear-gradient(135deg, #ffcf33, #f8f1e8 42%, #141111 43%),
    #141111;
}

.product-art-three {
  background:
    linear-gradient(135deg, #f8f1e8, #ef3f24 44%, #080707 45%),
    #080707;
}

.product-art-four {
  background:
    linear-gradient(135deg, #2b6f77, #ffcf33 45%, #141111 46%),
    #141111;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.about-media {
  min-height: clamp(340px, 45vw, 640px);
}

.newsletter-section {
  padding: clamp(72px, 9vw, 138px) 0;
  background: var(--color-accent);
  color: #080707;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.54fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}

.newsletter-box .eyebrow {
  color: #080707;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 56px;
  width: 100%;
  border: 1px solid #080707;
  border-radius: 0;
  background: transparent;
  color: #080707;
  font: 800 0.92rem var(--font-body);
  padding: 0 16px;
  text-transform: uppercase;
}

.newsletter-form input::placeholder {
  color: rgba(8, 7, 7, 0.68);
}

.newsletter-form .button-primary {
  border-color: #080707;
  background: #080707;
  color: var(--color-ink);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #080707;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 64px 0 28px;
  background: #080707;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr repeat(2, minmax(160px, 0.32fr));
  gap: 34px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  color: var(--color-accent-strong);
  font-size: 0.82rem;
}

.footer-column a {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 7, 7, 0.76);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.site-modal {
  position: relative;
  width: min(100%, 720px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--color-line);
  background: #100d0c;
  color: var(--color-ink);
}

.site-modal:not([open]) {
  display: none;
}

.site-modal::backdrop {
  background: transparent;
}

.site-modal h2,
.cart-header h2 {
  margin: 0 42px 22px 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.video-player {
  min-height: 280px;
  display: grid;
  place-items: center;
  gap: 12px;
  margin-bottom: 22px;
  border: 1px solid var(--color-line);
  background:
    linear-gradient(rgba(8, 7, 7, 0.12), rgba(8, 7, 7, 0.68)),
    repeating-linear-gradient(135deg, #271a17 0 18px, #120f0e 18px 36px);
}

.video-player p,
.site-modal > p,
.event-detail-list dd,
.cart-empty {
  color: var(--color-muted);
}

.stream-list {
  display: grid;
  gap: 12px;
}

.event-detail-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.event-detail-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.event-detail-list dt {
  color: var(--color-accent-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.event-detail-list dd {
  margin: 0;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  width: min(100%, 420px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  border-left: 1px solid var(--color-line);
  background: #100d0c;
  color: var(--color-ink);
  transition: transform 220ms ease;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 24px;
  border-bottom: 1px solid var(--color-line);
}

.cart-header {
  position: relative;
}

.cart-header .modal-close {
  top: 24px;
  right: 24px;
}

.cart-items {
  overflow: auto;
  padding: 18px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}

.cart-item h3 {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.cart-remove {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--color-accent-strong);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-footer {
  border-top: 1px solid var(--color-line);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-footer .button {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 130;
  max-width: min(480px, calc(100% - 32px));
  transform: translate(-50%, 120%);
  padding: 14px 18px;
  border: 1px solid var(--color-line);
  background: var(--color-ink);
  color: #080707;
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 980px) {
  .hero-section,
  .feature-band,
  .live-shop-band,
  .album-cta,
  .video-layout,
  .about-section,
  .newsletter-box,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-art {
    min-height: 420px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .album-cta {
    min-height: 0;
  }

  .video-layout {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .video-frame {
    min-height: clamp(280px, 56vw, 460px);
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .section-shell {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header {
    padding: 14px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--color-line);
    background: rgba(8, 7, 7, 0.97);
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 1rem;
  }

  .nav-cta {
    border: 0;
  }

  .hero-content h1 {
    font-size: clamp(4.7rem, 26vw, 8.6rem);
  }

  .hero-art {
    min-height: 340px;
  }

  .hero-art-inner,
  .placeholder-art span {
    width: calc(100% - 48px);
    font-size: clamp(2rem, 13vw, 3.7rem);
  }

  .event-card .button {
    grid-column: 2;
  }

  .event-date {
    min-height: 76px;
  }

  .event-day {
    font-size: 2.55rem;
  }

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

  .modal-backdrop {
    padding: 16px;
  }

  .site-modal {
    max-height: calc(100vh - 32px);
  }

  .event-detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .button-row .button {
    flex: 1 1 100%;
  }
}
