/* ============================================
   902 FINGERBOARD STORE — ZINE EDITION
   ============================================
   Design System:
     Paper:        #f0ebe1 (warm cream cardstock)
     Ink:          #1a1a1a (heavy black press ink)
     Red ink:      #e63946 (screen-print red — large only)
     Red ink AA:   #b71c2c (darker red — small text)
     Highlighter:  #ffd000 (marker yellow)
     Kraft:        #d4c9a8 (secondary paper)
     Fonts:
       Bebas Neue        — punk poster headlines
       Space Mono        — zine/typewriter body
       Permanent Marker  — hand-drawn accents
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Mono', 'Courier New', monospace;
  background-color: #f0ebe1;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Global grain/noise overlay — subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ---------- SKIP TO CONTENT ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: #ffd000;
  color: #1a1a1a;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 3px solid #1a1a1a;
  border-top: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- UTILITY ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* ---------- TYPOGRAPHY ---------- */
.section__headline {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  word-break: break-word;
  overflow-wrap: break-word;
  display: inline-block;
  background-image: linear-gradient(180deg, transparent 55%, #ffd000 55%, #ffd000 92%, transparent 92%);
  padding: 0 0.2em 0.05em;
}

.section__headline--rose {
  background-image: linear-gradient(180deg, transparent 55%, #e63946 55%, #e63946 92%, transparent 92%);
}

.section__headline--chartreuse {
  background-image: linear-gradient(180deg, transparent 55%, #ffd000 55%, #ffd000 92%, transparent 92%);
}

.section__body {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  max-width: 640px;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ---------- BUTTON ---------- */
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.7em 1.8em;
  border: 3px solid #1a1a1a;
  color: #1a1a1a;
  background: #ffd000;
  cursor: pointer;
  box-shadow: 5px 5px 0 #1a1a1a;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  transform: rotate(-1.5deg);
}

.btn:hover,
.btn:focus-visible {
  background: #e63946;
  color: #f0ebe1;
  transform: rotate(-1.5deg) translate(-2px, -2px);
  box-shadow: 7px 7px 0 #1a1a1a;
}

.btn:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
}

/* ============================================
   SITE NAVIGATION
   Sticky black bar with newspaper nameplate feel.
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
  padding: 0.5rem 0;
  box-shadow: 0 4px 0 #ffd000, 0 8px 0 #e63946;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transform: rotate(-2deg);
  transition: transform 0.2s ease;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #f0ebe1;
  text-decoration: none;
  line-height: 1;
  padding: 0.4rem 0;
}

.site-nav__logo:hover {
  transform: rotate(-4deg) scale(1.03);
  color: #ffd000;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.site-nav__link {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f0ebe1;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #1a1a1a;
  background: #ffd000;
  border-color: #1a1a1a;
}

.site-nav__link:focus-visible {
  outline: none;
}

.site-nav__link--active {
  color: #1a1a1a;
  background: #e63946;
  border-color: #1a1a1a;
}

.site-nav__link--active:hover,
.site-nav__link--active:focus-visible {
  background: #ffd000;
}

.site-nav__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid #333;
}

.site-nav__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0ebe1;
  padding: 0.4rem;
  border: 2px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav__social:hover,
.site-nav__social:focus-visible {
  color: #1a1a1a;
  background: #ffd000;
  border-color: #1a1a1a;
}

.site-nav__social:focus-visible {
  outline: none;
}

/* Hamburger */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: #ffd000;
  border: 2px solid #f0ebe1;
  cursor: pointer;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid #ffd000;
  outline-offset: 2px;
}

.site-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: #1a1a1a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO — Punk poster, halftone background
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 10rem 0 4rem;
  background:
    radial-gradient(circle at 25% 30%, rgba(230, 57, 70, 0.12) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 208, 0, 0.15) 0, transparent 45%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Halftone dot pattern overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(26, 26, 26, 0.85) 1px, transparent 2px),
    linear-gradient(180deg, rgba(240, 235, 225, 0.75) 0%, rgba(240, 235, 225, 0.92) 100%);
  background-size: 8px 8px, 100% 100%;
  background-blend-mode: multiply, normal;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__headline {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 11vw, 8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  max-width: 900px;
  word-break: break-word;
  overflow-wrap: break-word;
  text-shadow: 4px 4px 0 #ffd000;
}

.hero__subheadline {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 500px;
  padding: 1rem 1.25rem;
  background: rgba(240, 235, 225, 0.7);
  border-left: 6px solid #e63946;
  transform: rotate(-0.5deg);
}

/* Decorative scribble marks in hero corners */
.hero::after {
  content: '902';
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(6rem, 18vw, 14rem);
  color: rgba(230, 57, 70, 0.15);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* ============================================
   WHAT'S NEXT — Upcoming events teaser
   ============================================ */
.whats-next {
  background: #1a1a1a;
  border-top: 4px solid #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
}

.whats-next .section__headline {
  color: #f0ebe1;
  background-image: linear-gradient(180deg, transparent 55%, #e63946 55%, #e63946 92%, transparent 92%);
}

.whats-next__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.whats-next__card {
  background: #f0ebe1;
  border: 3px solid #1a1a1a;
  padding: 2rem 2.5rem;
  box-shadow: 6px 6px 0 #ffd000;
  transform: rotate(-0.5deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  color: #1a1a1a;
  display: block;
}

.whats-next__card:nth-child(even) {
  transform: rotate(0.5deg);
}

.whats-next__card--featured {
  background: #e63946;
  box-shadow: 6px 6px 0 #ffd000;
}

.whats-next__card--featured:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 8px 8px 0 #ffd000;
}

.whats-next__badge {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0ebe1;
  background: #1a1a1a;
  display: inline-block;
  padding: 0.2rem 0.8rem;
  margin-bottom: 1rem;
}

.whats-next__badge--red {
  background: #1a1a1a;
  color: #ffd000;
}

.whats-next__title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.whats-next__card--featured .whats-next__title {
  color: #f0ebe1;
}

.whats-next__time {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px dashed #1a1a1a;
  display: inline-block;
}

.whats-next__card--featured .whats-next__time {
  color: #f0ebe1;
  border-bottom-color: #f0ebe1;
}

.whats-next__desc {
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.whats-next__card--featured .whats-next__desc {
  color: #f0ebe1;
}

.whats-next__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffd000;
  border-bottom: 2px solid #ffd000;
  padding-bottom: 0.1rem;
}

/* ============================================
   THE ARMOURY — Zine spread
   ============================================ */
.armoury {
  background: #f0ebe1;
  border-top: 4px solid #1a1a1a;
  position: relative;
}

/* Halftone dots accent strip */
.armoury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-image: radial-gradient(circle, #1a1a1a 2px, transparent 3px);
  background-size: 14px 14px;
  background-position: 0 0;
  opacity: 0.35;
}

.armoury__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0 3rem;
}

.armoury__card {
  background: #f0ebe1;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 #1a1a1a;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.armoury__card:nth-child(odd) {
  transform: rotate(-0.8deg);
}

.armoury__card:nth-child(even) {
  transform: rotate(0.8deg);
}

.armoury__card:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 12px 12px 0 #e63946;
}

.armoury__img-wrap {
  overflow: hidden;
  background: #d4c9a8;
  aspect-ratio: 3 / 2;
  border-bottom: 3px solid #1a1a1a;
  position: relative;
}

.armoury__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: contrast(1.1) saturate(0.85);
}

.armoury__card:hover .armoury__img-wrap img {
  transform: scale(1.04);
}

.armoury__card-title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  padding: 1.25rem 1.5rem 0.35rem;
  line-height: 1;
}

.armoury__card-desc {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: #1a1a1a;
  padding: 0 1.5rem 1.5rem;
}

/* The Drop — stamped flyer callout */
.armoury__drop {
  background: #e63946;
  color: #f0ebe1;
  padding: 1.75rem 2rem;
  border: 3px solid #1a1a1a;
  box-shadow: 6px 6px 0 #1a1a1a;
  transform: rotate(-0.5deg);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.armoury__drop-content {
  flex: 1;
}

.armoury__drop-images {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.armoury__drop-img {
  width: 120px;
  height: 120px;
  background: #f0ebe1;
  padding: 0.4rem;
  border: 3px solid #1a1a1a;
  box-shadow: 4px 4px 0 #1a1a1a;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.armoury__drop-img:first-child {
  transform: rotate(-3deg);
}

.armoury__drop-img:last-child {
  transform: rotate(2deg);
}

.armoury__drop-img:hover {
  transform: rotate(0deg) scale(1.05);
}

.armoury__drop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(0.85);
}

.armoury__drop-text {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  line-height: 1.7;
  color: #f0ebe1;
}

.armoury__drop-text strong {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  color: #ffd000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}

.armoury__drop-text em {
  font-family: 'Permanent Marker', cursive;
  color: #ffd000;
  font-style: normal;
  font-weight: 400;
  font-size: 1.05rem;
}

.armoury__drop-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  background: #ffd000;
  padding: 0.5rem 1.25rem;
  border: 2px solid #1a1a1a;
  transition: transform 0.15s ease, background 0.15s ease;
}

.armoury__drop-link:hover,
.armoury__drop-link:focus-visible {
  background: #f0ebe1;
  transform: translate(-2px, -2px);
}

.armoury__drop-link:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

/* ============================================
   PLIES MAGAZINE — Distributor callout
   ============================================ */
.plies {
  background: #1a1a1a;
  border-top: 6px solid #e63946;
  border-bottom: 6px solid #e63946;
}

.plies__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.plies__photo {
  overflow: hidden;
  border: 4px solid #333;
  box-shadow: 8px 8px 0 #e63946;
  transform: rotate(-0.5deg);
  transition: transform 0.3s ease;
}

.plies__photo:hover {
  transform: rotate(0deg);
}

.plies__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

.plies__logo {
  margin-bottom: 1.5rem;
  max-width: 180px;
}

.plies__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.plies__title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #f0ebe1;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  display: inline-block;
  background-image: linear-gradient(180deg, transparent 55%, #e63946 55%, #e63946 92%, transparent 92%);
  padding: 0 0.15em 0.05em;
}

.plies__text {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.75;
  color: #d4c9a8;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.plies__text strong {
  color: #f0ebe1;
}

.plies__link {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #ffd000;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease;
}

.plies__link:hover {
  transform: translate(-2px, -2px);
  color: #e63946;
}

/* ============================================
   FEATURED BRANDS — Sticker sheet
   ============================================ */
.featured-brands {
  background: #d4c9a8;
  border-top: 4px solid #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
  overflow: hidden;
  position: relative;
}

.featured-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.featured-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe1;
  border: 3px solid #1a1a1a;
  padding: 1rem;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
  box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-brands__item:nth-child(3n+1) {
  transform: rotate(-2deg);
}

.featured-brands__item:nth-child(3n+2) {
  transform: rotate(1.5deg);
}

.featured-brands__item:nth-child(3n+3) {
  transform: rotate(-1deg);
}

.featured-brands__item:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 6px 6px 0 #e63946;
}

.featured-brands__item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: contrast(1.1);
}

/* ============================================
   SLOPPY SECONDS — Cut-out collage
   ============================================ */
.archive {
  background: #1a1a1a;
  color: #f0ebe1;
  border-top: 4px solid #1a1a1a;
  position: relative;
}

.archive .section__headline,
.archive .section__headline--rose {
  color: #f0ebe1;
  background-image: linear-gradient(180deg, transparent 55%, #e63946 55%, #e63946 92%, transparent 92%);
}

.archive .section__body {
  color: #f0ebe1;
}

.archive__grid {
  columns: 3;
  column-gap: 1.5rem;
  margin-top: 2rem;
}

.archive__item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0.75rem 2rem;
  background: #f0ebe1;
  border: 2px solid #1a1a1a;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive__item:nth-child(3n+1) {
  transform: rotate(-1.2deg);
  box-shadow: 6px 6px 0 #e63946;
}

.archive__item:nth-child(3n+2) {
  transform: rotate(0.8deg);
  box-shadow: 6px 6px 0 #ffd000;
}

.archive__item:nth-child(3n+3) {
  transform: rotate(-0.4deg);
  box-shadow: 6px 6px 0 #f0ebe1;
}

.archive__item:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  z-index: 2;
}

.archive__item img {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

/* ============================================
   THE PARK — Full-bleed photo strip
   ============================================ */
.park {
  background: #f0ebe1;
  padding-bottom: 0;
  border-top: 4px solid #1a1a1a;
}

.park__gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 5%;
}

.park__photo {
  overflow: hidden;
  background: #d4c9a8;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 #1a1a1a;
  position: relative;
}

.park__photo:nth-child(odd) {
  transform: rotate(-0.4deg);
}

.park__photo:nth-child(even) {
  transform: rotate(0.4deg);
}

/* Tape corners */
.park__photo::before,
.park__photo::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 20px;
  background: rgba(255, 208, 0, 0.75);
  border: 1px solid rgba(26, 26, 26, 0.2);
  z-index: 2;
}

.park__photo::before {
  top: -10px;
  left: 20px;
  transform: rotate(-8deg);
}

.park__photo::after {
  top: -10px;
  right: 20px;
  transform: rotate(8deg);
}

.park__photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  filter: contrast(1.1) saturate(0.85);
}

.park__photo:hover img {
  transform: scale(1.02);
}

/* ============================================
   FOOTER — Back cover of a zine
   ============================================ */
.pilgrimage {
  background: #1a1a1a;
  color: #f0ebe1;
  text-align: center;
  padding: 6rem 0 3rem;
  margin-top: 4rem;
  border-top: 6px solid #ffd000;
  position: relative;
}

.pilgrimage::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    #1a1a1a 0,
    #1a1a1a 10px,
    #e63946 10px,
    #e63946 20px
  );
}

.pilgrimage .section__headline,
.pilgrimage .section__headline--chartreuse {
  color: #f0ebe1;
  background-image: linear-gradient(180deg, transparent 55%, #e63946 55%, #e63946 92%, transparent 92%);
}


.pilgrimage__tagline {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  color: #ffd000;
  margin-bottom: 3rem;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.pilgrimage__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.pilgrimage__info {
  text-align: left;
  background: #f0ebe1;
  color: #1a1a1a;
  padding: 1.5rem 2rem;
  border: 3px solid #f0ebe1;
  box-shadow: 6px 6px 0 #e63946;
  transform: rotate(-1deg);
}

.pilgrimage__hours {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.pilgrimage__hours strong {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  color: #e63946;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
}

.pilgrimage__address {
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.pilgrimage__contact {
  margin-bottom: 0.35rem;
  font-family: 'Space Mono', monospace;
}

.pilgrimage__contact a {
  color: #1a1a1a;
  border-bottom: 2px solid #e63946;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 0 0.15rem;
}

.pilgrimage__contact a:hover {
  background: #ffd000;
}

/* Map */
.pilgrimage__map {
  overflow: hidden;
  border: 3px solid #f0ebe1;
  box-shadow: 6px 6px 0 #ffd000;
  width: 100%;
  max-width: 600px;
  transform: rotate(1deg);
}

.pilgrimage__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  filter: grayscale(1) contrast(1.1);
}

.pilgrimage__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  background: #ffd000;
  border: 3px solid #ffd000;
  padding: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: #e63946;
  border-color: #e63946;
  color: #f0ebe1;
  transform: translateY(-2px) rotate(-3deg);
}

.social-icon:focus-visible {
  outline: 2px solid #ffd000;
  outline-offset: 3px;
}

.pilgrimage__copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.04em;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Preserve rotation on elements that are both .fade-in and rotated */
.armoury__card.fade-in.is-visible:nth-child(odd) {
  transform: rotate(-0.8deg);
}

.armoury__card.fade-in.is-visible:nth-child(even) {
  transform: rotate(0.8deg);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .site-nav__toggle {
    display: flex;
  }

  .site-nav__menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-bottom: 4px solid #ffd000;
    padding: 1.5rem 5%;
  }

  .site-nav__menu.is-open {
    display: flex;
  }

  .site-nav__links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .site-nav__link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    text-align: center;
  }

  .site-nav__socials {
    border-left: none;
    padding-left: 0;
    padding-top: 1rem;
    border-top: 2px solid #333;
    width: 100%;
    justify-content: center;
  }

  .site-nav__logo {
    font-size: 1.75rem;
  }

  .whats-next__grid {
    grid-template-columns: 1fr;
  }

  .plies__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .plies__photo {
    box-shadow: 6px 6px 0 #e63946;
  }

  .featured-brands__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .archive__grid {
    columns: 2;
  }

  .pilgrimage__details {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .pilgrimage__info {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-nav__logo {
    font-size: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 8rem 0 3rem;
  }

  .hero__headline {
    text-shadow: 3px 3px 0 #ffd000;
  }

  .hero__content {
    padding: 0 1rem;
  }

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

  .armoury__drop {
    flex-direction: column;
    padding: 1.25rem 1.5rem;
  }

  .plies__photo {
    box-shadow: 5px 5px 0 #e63946;
  }

  .plies__logo {
    max-width: 140px;
    margin-bottom: 1rem;
  }

  .featured-brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .featured-brands__item {
    padding: 0.75rem;
    box-shadow: 3px 3px 0 #1a1a1a;
  }

  .archive__grid {
    columns: 2;
    column-gap: 1rem;
  }

  .archive__item {
    margin-bottom: 1rem;
  }

  .park__gallery {
    padding: 0 5%;
  }

  .park__photo::before,
  .park__photo::after {
    width: 40px;
    height: 14px;
  }

  .pilgrimage__map iframe {
    height: 220px;
  }
}
