:root {
  --background: #090807;
  --foreground: #f3ead8;
  --bone: #e7d7b3;
  --ash: #bbb09c;
  --red: #d52b19;
  --deep-red: #6d0d09;
  --gold: #c79a47;
  --smoke: #17130f;
  --steel: #3d4140;
  --ink: #050403;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(213, 43, 25, 0.24), transparent 26rem),
    linear-gradient(180deg, #050403 0%, #14100d 42%, #090807 100%);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.34;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(231, 215, 179, 0.22);
}

.hero-image {
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.12) saturate(1.08) brightness(0.58);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.68) 42%, rgba(5, 4, 3, 0.24)),
    linear-gradient(0deg, #050403 0%, rgba(5, 4, 3, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  padding-top: 20vh;
}

.kicker,
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: clamp(0.74rem, 1.2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0.7rem;
  color: var(--bone);
  font-size: clamp(4rem, 12vw, 10.5rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(213, 43, 25, 0.42), 5px 5px 0 var(--deep-red);
}

h2 {
  color: var(--bone);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  color: var(--bone);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.05;
}

.tagline {
  margin-bottom: 1.15rem;
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: clamp(1.3rem, 3vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
}

.intro,
.section-heading p,
.tour-copy p,
.shirt-section p {
  color: var(--ash);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.6;
}

.intro {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 215, 179, 0.42);
  padding: 0.85rem 1.1rem;
  color: var(--bone);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--bone);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  border-color: rgba(213, 43, 25, 0.88);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(231, 215, 179, 0.18);
  background: rgba(5, 4, 3, 0.9);
}

.stat {
  min-height: 8.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-right: 1px solid rgba(231, 215, 179, 0.14);
}

.stat-number {
  display: block;
  color: var(--red);
  font-family: "Courier New", monospace;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

.stat-label {
  display: block;
  max-width: 16rem;
  margin-top: 0.7rem;
  color: var(--bone);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.tour-band,
.shirt-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(231, 215, 179, 0.16);
}

.tour-dates {
  display: grid;
  gap: 0.6rem;
  color: var(--bone);
  font-family: "Courier New", monospace;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-dates span {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(231, 215, 179, 0.18);
}

.tour-dates strong {
  color: var(--red);
}

.section {
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-heading p {
  margin-bottom: 0;
}

.overall-card {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(231, 215, 179, 0.2);
  background:
    linear-gradient(135deg, rgba(213, 43, 25, 0.18), rgba(5, 4, 3, 0.84)),
    rgba(23, 19, 15, 0.92);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.overall-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.overall-card p {
  margin-bottom: 0;
  color: var(--ash);
}

.overall-meter,
.meter {
  height: 1rem;
  overflow: hidden;
  border: 1px solid rgba(231, 215, 179, 0.2);
  background: rgba(5, 4, 3, 0.92);
}

.overall-meter span,
.meter span {
  display: block;
  height: 100%;
  background:
    linear-gradient(90deg, var(--red), #ff7b35 58%, var(--gold)),
    var(--red);
  box-shadow: 0 0 20px rgba(213, 43, 25, 0.45);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  border: 1px solid rgba(231, 215, 179, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 11rem),
    rgba(14, 12, 10, 0.93);
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-topline span {
  border: 1px solid rgba(199, 154, 71, 0.42);
  padding: 0.3rem 0.48rem;
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  min-height: 3.6rem;
  margin-bottom: 0.35rem;
}

.writer {
  margin-bottom: 1rem;
  color: var(--red);
  font-family: "Courier New", monospace;
  font-weight: 900;
  text-transform: uppercase;
}

.pitch,
.note {
  color: var(--ash);
  line-height: 1.5;
}

.pitch {
  min-height: 6.8rem;
  margin-bottom: 1.2rem;
}

.meter-row {
  display: grid;
  gap: 0.55rem;
}

.meter-labels,
.meter-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--bone);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.meter-footer span {
  color: var(--ash);
  text-align: right;
}

.meter-empty span {
  background: repeating-linear-gradient(
    90deg,
    rgba(199, 154, 71, 0.7),
    rgba(199, 154, 71, 0.7) 0.5rem,
    rgba(199, 154, 71, 0.18) 0.5rem,
    rgba(199, 154, 71, 0.18) 1rem
  );
  box-shadow: none;
}

.note {
  margin: 1rem 0 0;
  border-top: 1px solid rgba(231, 215, 179, 0.14);
  padding-top: 0.9rem;
  font-size: 0.92rem;
}

.shirt-section {
  overflow: hidden;
  background: rgba(5, 4, 3, 0.62);
}

.shirt-image {
  width: min(100%, 560px);
  height: auto;
  justify-self: center;
  border: 1px solid rgba(231, 215, 179, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

@media (max-width: 980px) {
  .stats-band,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-band,
  .shirt-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .project-card h3,
  .pitch {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 86svh;
    padding: 1.2rem;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.66)),
      linear-gradient(0deg, #050403 0%, rgba(5, 4, 3, 0) 50%);
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .stats-band,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(231, 215, 179, 0.14);
  }

  .tour-dates span {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .meter-labels,
  .meter-footer {
    display: grid;
  }

  .meter-footer span {
    text-align: left;
  }
}

.hero-image.static-hero { position: absolute; inset: 0; width: 100%; height: 100%; }
.shirt-image { display: block; }
