:root {
  --bg: #090909;
  --surface: #141414;
  --matte: #0f0f0f;
  --text: #f5f5f5;
  --muted: #c7c7c7;
  --accent: #ff6a3d;
  --accent-dark: #d0471f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #212121 0%, var(--bg) 45%);
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  background: rgba(9, 9, 9, 0.65);
  backdrop-filter: blur(8px);
  z-index: 20;
}

.brand {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.brand-text {
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 8rem 0 0;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.35s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: heroSlowZoom 4.5s ease-in-out both;
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(5, 5, 5, 0.82) 30%, rgba(5, 5, 5, 0.28) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  z-index: 1;
}

.hero-title-logo {
  width: min(68vw, 470px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.6));
}

.kicker {
  color: #ffd5c9;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.92;
  margin-top: 0.3rem;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.03rem;
  margin: 1rem 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6a3d, #c43a16);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7d57, #d4481d);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.issues,
.why,
.newsletter {
  padding: 0;
  margin: 0;
}

.issues {
  background: linear-gradient(180deg, transparent, rgba(255, 106, 61, 0.06));
}

.section-head p {
  margin: 0;
  color: #ffb7a2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.section-head h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

#issue-01 .section-head h2 {
  display: none;
}

.gallery-shell {
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  position: relative;
  padding: 0;
  background: #0a0a0a;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.feature-video-band {
  width: 100%;
  margin: 0;
  background: #080808;
  border: 0;
}

.feature-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: min(76vh, 840px);
}

.gallery-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  grid-auto-rows: 120px;
  grid-auto-flow: dense;
  gap: 0;
}

.gallery-tile {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #101010;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.tile-wide {
  grid-column: span 2;
}

.tile-tall {
  grid-row: span 2;
}

.tile-xl {
  grid-column: span 2;
  grid-row: span 2;
}

.newsletter {
  background: linear-gradient(160deg, rgba(255, 106, 61, 0.09), rgba(255, 106, 61, 0.02));
}

.newsletter-form {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 220px;
  flex: 1;
  padding: 0.84rem 0.92rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--matte);
  color: var(--text);
}

.newsletter-form button {
  background: var(--accent);
  color: #170c08;
  font-weight: 800;
  border: 0;
  border-radius: 12px;
  padding: 0.84rem 1.1rem;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 1.25rem;
  color: #a8a8a8;
}

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

@media (max-width: 700px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 7rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    grid-auto-rows: 100px;
  }
}