:root {
  --ink: #050505;
  --charcoal: #10100e;
  --paper: #eee6d4;
  --gold: #d9b35f;
  --gold-bright: #f0d58a;
  --steel: #7f9aa8;
  --red: #b8312b;
  --muted: #b7aea0;
  --line: rgba(217, 179, 95, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
}

.brand,
.nav-links,
.stat-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--gold-bright);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 179, 95, 0.2), rgba(0, 0, 0, 0.2)),
    #080806;
  color: var(--gold-bright);
  box-shadow: 0 0 28px rgba(217, 179, 95, 0.16);
}

.nav-links {
  gap: clamp(12px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 78px) 78px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 38%, rgba(0, 0, 0, 0.28) 76%),
    linear-gradient(0deg, var(--ink) 0%, rgba(5, 5, 5, 0) 30%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1 {
  font-size: clamp(3.4rem, 8.4vw, 8.4rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 5rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.4rem;
}

p,
li,
span {
  overflow-wrap: anywhere;
}

.hero-copy,
.section-heading p,
.ethos-panel p,
.support-copy p,
.link-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 22px 0 18px;
}

.stat-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.stat-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(217, 179, 95, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.stat-row strong {
  color: var(--gold-bright);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button.primary {
  background: var(--gold);
  color: #0c0904;
}

.button.secondary {
  border-color: rgba(217, 179, 95, 0.44);
  background: rgba(0, 0, 0, 0.34);
}

.button:hover,
.release-card:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 64px);
}

.section-dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 42px;
}

.section-light {
  background: var(--paper);
  color: #11100e;
}

.section-light .eyebrow {
  color: #8c641f;
}

.section-light .section-heading p {
  color: rgba(17, 16, 14, 0.72);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: 42px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.release-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88)),
    linear-gradient(145deg, #27231b, #070707);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.release-card span {
  margin-bottom: auto;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card h3 {
  color: #f8ead0;
  text-transform: uppercase;
}

.release-card p {
  color: var(--muted);
  line-height: 1.55;
}

.piper {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 80% 18%, rgba(50, 91, 111, 0.55), transparent 34%),
    linear-gradient(135deg, #17100c, #030303);
}

.scotland {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 70% 25%, rgba(240, 213, 138, 0.46), transparent 30%),
    linear-gradient(135deg, #182833, #070707);
}

.marching {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 55% 18%, rgba(127, 154, 168, 0.56), transparent 30%),
    linear-gradient(135deg, #1b2430, #070707);
}

.unity {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 50% 18%, rgba(184, 49, 43, 0.38), transparent 30%),
    linear-gradient(135deg, #211b13, #050505);
}

.protest {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 64% 20%, rgba(94, 130, 151, 0.44), transparent 30%),
    linear-gradient(135deg, #1b2226, #070707);
}

.city {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 50% 18%, rgba(217, 179, 95, 0.24), transparent 28%),
    linear-gradient(135deg, #14110d, #030303);
}

.iron {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 72% 20%, rgba(217, 179, 95, 0.52), transparent 28%),
    linear-gradient(135deg, #1f1b10, #050505);
}

.wolves {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 50% 18%, rgba(127, 154, 168, 0.38), transparent 28%),
    linear-gradient(135deg, #111915, #020202);
}

.two-column,
.contact-grid,
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.ethos-panel {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}

.ethos-panel p {
  color: rgba(17, 16, 14, 0.76);
  margin-top: 0;
}

.process-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(17, 16, 14, 0.18);
  background: rgba(255, 255, 255, 0.42);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  color: #8c641f;
  font-weight: 900;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  margin-top: -24px;
}

.process-list span {
  color: rgba(17, 16, 14, 0.68);
  line-height: 1.5;
}

.support-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-copy {
  border-left: 4px solid var(--red);
  padding-left: 24px;
}

.support-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

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

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(17, 16, 14, 0.18);
  background: rgba(255, 255, 255, 0.38);
}

.link-card span {
  color: #7b5a20;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-card strong {
  font-size: 1.15rem;
}

.link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 16, 14, 0.34);
}

.primary-link {
  background: #11100e;
  color: var(--gold-bright);
}

.muted-link {
  color: rgba(17, 16, 14, 0.62);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #090807;
}

.ticker span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-align: center;
}

.ticker span:last-child {
  border-right: 0;
}

.contact-section h2 {
  max-width: 13ch;
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #030303;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.34)),
      linear-gradient(0deg, var(--ink) 0%, rgba(5, 5, 5, 0) 42%);
  }

  .section-heading,
  .two-column,
  .contact-grid,
  .support-grid,
  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ticker span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .brand span:last-child {
    font-size: 0.92rem;
  }

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

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

  .release-card {
    min-height: 300px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
