:root {
  --paper: #efe5d0;
  --paper-2: #e6d8bb;
  --ink: #171411;
  --ink-soft: #2b2621;
  --muted: #6b6258;
  --accent: #b3422b;
  --accent-dark: #8c301d;
  --line: rgba(23, 20, 17, 0.15);
  --line-strong: rgba(23, 20, 17, 0.28);
  --panel: rgba(255, 255, 255, 0.26);
  --black: #0f0d0c;
  --white: #f8f1e2;
  --shadow: 0 24px 60px rgba(41, 28, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(179, 66, 43, 0.11), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.06), transparent 24%),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle, rgba(0,0,0,0.15) 1px, transparent 1px);
  background-size: 8px 8px;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  align-items: center;
  min-height: 88px;
  padding: 0 30px;
  color: var(--white);
  background: rgba(15, 13, 12, 0.97);
  border-bottom: 1px solid rgba(248, 241, 226, 0.14);
  backdrop-filter: blur(12px);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand,
.brand-sub,
h1,
h2,
h3,
.stamp span {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
}

.brand {
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand-sub {
  max-width: 220px;
  color: var(--accent);
  font-size: 0.78rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3.5vw, 42px);
}

.nav a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.nav a:hover::after {
  width: 100%;
}

.socials {
  justify-self: end;
  display: flex;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid rgba(248, 241, 226, 0.18);
}

.social-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(248, 241, 226, 0.2);
  border-radius: 50%;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-btn .fill-shape {
  fill: currentColor;
  stroke: none;
}

.site {
  width: min(1200px, calc(100vw - 56px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 50px 0 72px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow.centre {
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(6rem, 12vw, 11.5rem);
  line-height: 0.77;
  letter-spacing: 0.01em;
}

h1 span {
  display: block;
}

.tagline {
  position: relative;
  max-width: 590px;
  margin: 28px 0 34px;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.12;
  font-style: italic;
  font-weight: 800;
  transform: rotate(-1deg);
}

.tagline::after {
  content: "";
  display: block;
  width: min(440px, 92%);
  height: 4px;
  margin-top: 8px;
  background: var(--accent);
  transform: rotate(-1deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-width: 210px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
}

.btn-icon {
  font-size: 0.8rem;
}

.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.art-shell {
  width: min(100%, 430px);
  padding: 10px;
  background: rgba(255,255,255,0.28);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.art-shell img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.hero-meta {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-meta .accent,
.hero-meta .dot {
  color: var(--accent);
}

.ep-section {
  padding: 72px 0 68px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.ep-section h2,
.statement h2,
.info-card h2,
.mailing-card h2,
.label-card h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.ep-section h2 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.86;
}

.section-intro {
  margin: 14px auto 40px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0 38px;
}

.track {
  padding: 10px 34px 22px;
  border-right: 1px solid var(--line);
}

.track:last-child {
  border-right: none;
}

.track-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.asset-icon {
  background: var(--accent);
  mask-image: var(--icon);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-image: var(--icon);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.track-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.track-icon .cutout {
  fill: var(--paper);
}

.track-no {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.track h3 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.9;
}

.track p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.5;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 52px;
  border: 2px solid var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.statement {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  margin: 58px 0 36px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(rgba(13, 11, 10, 0.88), rgba(13, 11, 10, 0.9)),
    radial-gradient(circle at 80% 50%, rgba(179, 66, 43, 0.2), transparent 25%),
    var(--black);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.statement h2 {
  max-width: 340px;
  font-size: clamp(3.4rem, 5vw, 5.4rem);
  line-height: 0.9;
}

.statement h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 7px;
  margin-top: 16px;
  background: var(--accent);
}

.statement-copy p {
  margin: 0 0 16px;
  color: rgba(248, 241, 226, 0.86);
  line-height: 1.7;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.info-card {
  padding: 30px;
  background: rgba(255,255,255,0.22);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.info-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.92;
}

.info-card p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.label-section {
  display: grid;
  grid-template-columns: 210px 1.15fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  padding: 8px 0 64px;
}

.stamp-card,
.mailing-card,
.label-card {
  padding: 28px;
  background: rgba(255,255,255,0.22);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.stamp-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp {
  width: 140px;
  height: 140px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(-8deg);
}

.stamp span {
  display: block;
  font-size: 1.9rem;
  line-height: 0.88;
}

.mailing-card h2,
.label-card h2 {
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 0.92;
}

.mailing-card p,
.label-card p {
  color: var(--muted);
  line-height: 1.65;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 22px;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.signup-form input,
.signup-form button {
  min-height: 56px;
  border: 0;
  font: inherit;
}

.signup-form input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
}

.signup-form button {
  padding: 0 24px;
  color: var(--white);
  background: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.label-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding: 24px 30px;
  color: var(--white);
  background: var(--black);
  font-size: 0.92rem;
}

.footer a {
  justify-self: center;
  color: var(--white);
  text-decoration: none;
}

.footer span:last-child {
  justify-self: end;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 24px;
  }

  .nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .socials {
    justify-self: start;
    padding-left: 0;
    border-left: 0;
  }

  .hero,
  .statement,
  .updates-grid,
  .label-section {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

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

  .track {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .track:last-child {
    border-bottom: none;
  }

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

  .footer a,
  .footer span:last-child {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site {
    width: min(100vw - 28px, 1200px);
  }

  .topbar {
    position: static;
  }

  .brand {
    font-size: 1.8rem;
  }

  .brand-sub {
    max-width: none;
  }

  h1 {
    font-size: clamp(4.6rem, 19vw, 7.2rem);
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-actions,
  .signup-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    font-size: 0.84rem;
  }
}
