:root {
  --black: #0a0a0a;
  --black-deep: #050505;
  --red: #e01010;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.58);
  --display: "Bebas Neue", Impact, sans-serif;
  --accent: "Space Grotesk", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--red); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  padding: 0 34px;
  background: rgba(10, 10, 10, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, height 180ms ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(10, 10, 10, 0.9);
}

.nos-logo { width: 68px; height: auto; fill: currentColor; color: var(--white); }
.nos-logo-img { width: 68px; height: auto; display: block; color: var(--white); }
.brand { display: inline-flex; align-items: center; width: max-content; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.3vw, 34px);
}

.desktop-nav a,
.book-button,
.ghost-link,
.filters button,
.filter-link,
.status-badge,
.section-label,
.hero-kicker,
.ticker-track,
.product-card span,
.contact-row small,
.site-footer nav {
  font-family: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease;
}

.desktop-nav a:hover { color: var(--red); }

.book-button {
  justify-self: end;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.book-button:hover { background: var(--red); color: var(--white); }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  margin: 7px 0;
  transition: transform 180ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-content: center;
  gap: 32px;
  min-height: 100vh;
  padding: 96px 28px 36px;
  background: rgba(5, 5, 5, 0.98);
  transform: translateY(-100%);
  transition: transform 260ms ease;
}

.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: grid; gap: 6px; text-align: center; }
.mobile-menu nav a {
  font-family: var(--display);
  font-size: clamp(48px, 15vw, 92px);
  line-height: 0.9;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media,
.texture-bg,
.nation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-media {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.2) 48%, rgba(0,0,0,0.94)),
    linear-gradient(90deg, rgba(224,16,16,0.2), transparent 28%, rgba(224,16,16,0.16)),
    radial-gradient(circle at 50% 48%, rgba(224,16,16,0.32), transparent 38%),
    url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=2200&q=90");
  background-blend-mode: normal, color, screen, normal;
  filter: contrast(1.24) saturate(0.45) hue-rotate(120deg);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(102deg, transparent 0 78px, rgba(224, 16, 16, 0.16) 80px, transparent 84px),
    radial-gradient(circle at 54% 43%, transparent 0 18%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.62) 100%);
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(920px, calc(100% - 32px));
  padding-top: 48px;
  text-align: center;
}

.hero-logo {
  width: clamp(150px, 22vw, 280px);
  height: auto;
  margin-bottom: clamp(20px, 3vw, 36px);
  filter: drop-shadow(0 0 42px rgba(224, 16, 16, 0.38));
}

.about h2,
.section-head h2,
.nation h2,
.newsletter h2,
.contact h2,
.store-hero h3,
.contact-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  letter-spacing: 0.3em;
}

.identity-ticker {
  width: min(620px, 88vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  animation: ticker 18s linear infinite;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.ticker-track i { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.18); }
@keyframes ticker { to { transform: translateX(-50%); } }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
  animation: bounce 1.6s ease-in-out infinite;
}

.scroll-cue svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
@keyframes bounce { 50% { transform: translate(-50%, 8px); } }

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 88px);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  background: #050505;
}

.framed-image {
  position: relative;
  aspect-ratio: 1;
}

.framed-image::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(224, 16, 16, 0.72);
  pointer-events: none;
}

.framed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
}

.section-label span {
  width: 32px;
  height: 1px;
  background: var(--red);
}

.about h2 { font-size: clamp(72px, 7vw, 92px); line-height: 0.88; }
.about p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.74;
}

.about p a { color: var(--red); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.stats-grid div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border: 1px solid #1c1c1c;
}

.stats-grid strong {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.stats-grid span {
  font-family: var(--accent);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.music {
  background:
    radial-gradient(circle at 8% 84%, rgba(224,16,16,0.2), transparent 30%),
    #030303;
}

.split-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head h2 {
  display: grid;
  font-size: clamp(72px, 9vw, 108px);
  line-height: 0.82;
}

.section-head h2 em,
.section-head h2 b,
.contact h2 em,
.contact h2 b {
  display: block;
  font-style: normal;
  font-weight: 400;
}

.section-head h2 b,
.contact h2 b,
.nation h2 span,
.newsletter h2 span { color: var(--red); }

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.ghost-link:hover { color: var(--red); border-color: rgba(224, 16, 16, 0.6); }
.ghost-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.ghost-link.small { font-size: 10px; color: rgba(255, 255, 255, 0.42); }

.soundcloud-shell {
  border-top: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.soundcloud-shell iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.center-note {
  margin: 24px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.events {
  overflow: hidden;
  background: #050505;
}

.texture-bg {
  opacity: 0.06;
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1800&q=80");
}

.events::after,
.store::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(224, 16, 16, 0.12);
  filter: blur(120px);
  pointer-events: none;
}

.events::after { left: -90px; bottom: -80px; }
.store::after { right: -70px; bottom: -90px; }
.events > :not(.texture-bg),
.store > * { position: relative; z-index: 1; }

.event-list { display: grid; gap: 12px; }
.event-card {
  display: grid;
  grid-template-columns: 82px 1fr auto 42px;
  gap: 24px;
  align-items: center;
  min-height: 106px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, transform 180ms ease;
}

.event-card:hover { border-color: rgba(224, 16, 16, 0.42); transform: translateY(-2px); }
.event-date {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 60px;
  display: grid;
  align-content: center;
}

.event-date strong { font-family: var(--display); font-size: 38px; font-weight: 400; line-height: 0.85; }
.event-date span,
.event-info p {
  font-family: var(--accent);
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.event-info h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.event-card:hover h3 { color: var(--red); }
.event-info p { margin: 0; line-height: 1.7; }
.status-badge {
  border: 1px solid rgba(224, 16, 16, 0.7);
  color: var(--red);
  padding: 8px 10px;
  font-size: 10px;
}

.row-arrow { color: rgba(255, 255, 255, 0.34); font-size: 26px; transition: transform 180ms ease, color 180ms ease; }
.event-card:hover .row-arrow { color: var(--red); transform: translateX(5px); }

.gallery { background: #070707; }
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 560px;
}

.filters button {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 700;
}

.filters button.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.masonry {
  columns: 3 260px;
  column-gap: 16px;
}

.masonry figure {
  position: relative;
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  min-height: 250px;
  background: #111;
}

.masonry figure.tall img { height: 520px; }
.masonry figure.wide img { height: 330px; }
.masonry img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.masonry figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  font-family: var(--display);
  font-size: 34px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.masonry figure:hover img { transform: scale(1.055); filter: grayscale(0.2) brightness(0.75); }
.masonry figure:hover figcaption { opacity: 1; }

.store { background: var(--black-deep); overflow: hidden; }
.head-copy {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
}

.store-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  margin-bottom: 34px;
  background: #111;
}

.store-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.75);
}

.store-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82), transparent 68%);
}

.store-hero-copy {
  position: relative;
  z-index: 1;
  width: min(460px, 90%);
  padding: clamp(36px, 6vw, 66px);
}

.store-hero-copy span {
  display: inline-flex;
  border: 1px solid rgba(224, 16, 16, 0.8);
  color: var(--red);
  padding: 8px 10px;
  font-family: var(--accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.store-hero h3 { margin: 22px 0 14px; font-size: clamp(42px, 5vw, 56px); line-height: 0.9; }
.store-hero p { color: rgba(255, 255, 255, 0.54); line-height: 1.7; }
.store-hero a {
  position: relative;
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.store-hero a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0.32);
  transition: transform 180ms ease;
}
.store-hero a:hover::after { transform: scaleX(1); }

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

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.product-image button,
.product-image a {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  text-align: center;
  transform: translateY(86px);
  border: 0;
  background: var(--red);
  color: var(--white);
  padding: 13px;
  font-family: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 220ms ease;
}

.product-card:hover img { transform: scale(1.06); filter: brightness(0.62); }
.product-card:hover button,
.product-card:hover a { transform: translateY(0); }
.product-card span {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}
.product-card h3 { margin: 6px 0; color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500; }
.product-card p { margin: 0; font-family: var(--accent); font-weight: 700; }

.nation {
  position: relative;
  min-height: 680px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 32px;
  padding: 110px clamp(20px, 6vw, 88px);
  overflow: hidden;
  text-align: center;
}

.nation-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.86), rgba(0,0,0,0.9)),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2000&q=80");
  opacity: 0.72;
}

.nation-watermark,
.nation-watermark-img {
  position: absolute;
  width: min(760px, 92vw);
  fill: rgba(255, 255, 255, 0.035);
  opacity: 0.04;
}

.nation-watermark-img {
  max-height: 360px;
  object-fit: contain;
}

.nation > *:not(.nation-bg):not(.nation-watermark):not(.nation-watermark-img) { position: relative; z-index: 1; }

.nation-logo {
  width: min(310px, 68vw);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(224, 16, 16, 0.32));
}

.nation-brand-logo {
  display: block;
  width: 138px;
  max-height: 76px;
  object-fit: contain;
}
.nation h2,
.newsletter h2 {
  display: grid;
  font-size: clamp(74px, 9vw, 112px);
  line-height: 0.86;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(960px, 100%);
}

.pillar-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 28px;
  text-align: left;
}

.pillar-grid h3 {
  margin: 0 0 10px;
  font-family: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
}

.pillar-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  font-size: 14px;
}

.social-row { display: flex; gap: 10px; }
.social-row a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 13px 16px;
  font-family: var(--accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.social-row a:hover { color: var(--red); border-color: rgba(224, 16, 16, 0.55); }

.newsletter {
  display: grid;
  place-items: center;
  padding: 96px 20px;
  background: #070707;
}

.newsletter-inner {
  width: min(540px, 100%);
  text-align: center;
}

.newsletter h2 { font-size: clamp(58px, 8vw, 76px); }
.newsletter p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 22px 0 28px;
}

.newsletter form { display: grid; gap: 10px; }
.newsletter input {
  width: 100%;
  border: 1px solid #1c1c1c;
  background: #090909;
  color: var(--white);
  padding: 16px;
  outline: none;
}

.newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter input:focus { border-color: rgba(224, 16, 16, 0.75); }
.newsletter button {
  border: 0;
  background: var(--red);
  color: var(--white);
  padding: 17px;
  font-family: var(--accent);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.newsletter small { display: block; margin-top: 16px; color: rgba(255, 255, 255, 0.32); }

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 430px);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  background: #050505;
}

.contact h2 { margin-bottom: 30px; font-size: clamp(76px, 8vw, 108px); line-height: 0.86; }
.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.contact-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
.contact-row i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-style: normal;
}
.contact-row span { display: grid; gap: 5px; min-width: 0; }
.contact-row small { color: rgba(255, 255, 255, 0.32); font-size: 9px; }
.contact-row strong {
  overflow-wrap: anywhere;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
}
.contact-row em {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-style: normal;
}
.contact-row b {
  color: rgba(255, 255, 255, 0.22);
  font-size: 24px;
  transition: color 180ms ease, transform 180ms ease;
}
.contact-row:hover b { color: var(--red); transform: translateX(5px); }

.contact-card {
  display: grid;
  justify-items: center;
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.contact-card .nos-logo,
.contact-card .nation-brand-logo {
  width: 148px;
  max-height: 90px;
  margin-bottom: 18px;
}
.contact-card h3 { margin-top: 20px; font-size: 36px; }
.card-location {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-card hr {
  width: 66px;
  border: 0;
  border-top: 1px solid var(--red);
  margin: 0 0 24px;
}
.contact-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  min-height: 92px;
  display: grid;
  grid-template-columns: 150px 1fr 220px;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 88px);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.site-footer .nos-logo,
.site-footer .footer-logo { width: 84px; max-height: 48px; }
.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}
.site-footer nav a:hover { color: var(--red); }
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  text-align: right;
  font-size: 12px;
}

.filter-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 700;
}

.filter-link:hover { color: var(--red); border-color: rgba(224, 16, 16, 0.58); }

.page-hero {
  position: relative;
  min-height: 64svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 88px) 76px;
  overflow: hidden;
  background: #050505;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.95)),
    var(--page-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25) contrast(1.16) brightness(0.72);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 80%, rgba(224,16,16,0.24), transparent 32%);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.events-page-hero { --page-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2000&q=85"); }
.gallery-page-hero { --page-image: url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=2000&q=85"); }
.store-page-hero { --page-image: url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=2000&q=85"); }
.epk-page-hero { --page-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=2000&q=85"); }

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(92px, 15vw, 190px);
  line-height: 0.78;
  font-weight: 400;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.page-nation-logo {
  width: min(210px, 52vw);
  max-height: 100px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 28px rgba(224, 16, 16, 0.28));
}

.page-section { background: #050505; }

.page-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.feature-event {
  grid-template-columns: 180px 82px 1fr auto 42px;
  padding: 14px 22px 14px 14px;
}

.feature-event > img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.1);
}

.status-badge[href] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.gallery-card.tall { grid-row: span 2; min-height: 616px; }
.gallery-card.wide { grid-column: span 2; }
.gallery-card[hidden],
.shop-card[hidden],
.event-card[hidden] { display: none; }

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.86));
  font-family: var(--display);
  font-size: 34px;
  text-transform: uppercase;
}

.gallery-card figcaption span {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-family: var(--accent);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.gallery-card:hover img { transform: scale(1.055); filter: brightness(0.7); }

.cart-pill span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  background: var(--red);
  color: var(--white);
  letter-spacing: 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: #050505;
}

.shop-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.filter-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px;
}

.filter-block h2 {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.46);
  font-family: var(--accent);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.filter-block button {
  display: inline-flex;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  padding: 9px 11px;
  cursor: pointer;
  font-family: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filter-block button.active,
.filter-block button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.shop-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.shop-topline p {
  margin: 0;
  color: rgba(255,255,255,0.46);
  font-family: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, transform 180ms ease;
}

.shop-card:hover {
  border-color: rgba(224, 16, 16, 0.45);
  transform: translateY(-2px);
}

.shop-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.shop-card:hover .shop-image img { transform: scale(1.055); filter: brightness(0.74); }

.shop-copy { padding: 16px; }
.shop-copy span {
  color: var(--red);
  font-family: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-copy h2 {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.shop-copy p {
  margin: 0 0 12px;
  font-family: var(--accent);
  font-weight: 800;
}

.size-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.size-row b {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.62);
  font-family: var(--accent);
  font-size: 10px;
}

.shop-copy button {
  width: 100%;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  padding: 13px;
  cursor: pointer;
  font-family: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-copy button:hover {
  background: var(--red);
  color: var(--white);
}

.epk-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: #050505;
}

.epk-card,
.epk-panel,
.event-info-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.epk-profile {
  position: sticky;
  top: 92px;
  padding: 36px;
}

.epk-logo {
  width: 160px;
  margin-bottom: 28px;
}

.epk-profile h2,
.epk-panel h2,
.event-detail-main h2,
.event-info-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.epk-profile p,
.epk-panel p,
.event-detail-main p {
  color: rgba(255,255,255,0.66);
  line-height: 1.75;
}

.epk-socials,
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.epk-socials a {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 11px 12px;
  color: rgba(255,255,255,0.76);
  font-family: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.epk-stack {
  display: grid;
  gap: 18px;
}

.epk-panel {
  padding: clamp(24px, 4vw, 42px);
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.asset-grid a {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #090909;
  color: rgba(255,255,255,0.54);
  font-family: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.asset-grid img { width: min(180px, 78%); }

.epk-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
}

.epk-facts div {
  min-height: 120px;
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.epk-facts div:last-child { border-right: 0; }
.epk-facts strong,
.event-info-card dt {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--accent);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.epk-facts span,
.event-info-card dd {
  color: rgba(255,255,255,0.78);
}

.event-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 100svh;
  padding: 130px clamp(20px, 6vw, 88px) 70px;
  background:
    radial-gradient(circle at 22% 74%, rgba(224,16,16,0.22), transparent 34%),
    linear-gradient(180deg, #050505, #000);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.44);
  font-family: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.event-detail-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(82px, 12vw, 160px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.event-detail-copy p {
  max-width: 650px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.7;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-poster {
  width: 100%;
  border: 1px solid rgba(224,16,16,0.35);
  box-shadow: 0 0 80px rgba(224,16,16,0.14);
}

.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 24px;
  background: #050505;
}

.event-detail-main {
  display: grid;
  gap: 18px;
}

.event-detail-main article {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  padding: clamp(24px, 4vw, 42px);
}

.detail-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
}

.event-info-card {
  align-self: start;
  padding: 30px;
}

.event-info-card dl {
  margin: 24px 0 0;
  display: grid;
  gap: 0;
}

.event-info-card dl div {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.event-info-card dd {
  margin: 0;
}

.admin-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(224,16,16,0.13), transparent 28%),
    #050505;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(5,5,5,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.admin-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.admin-nav a,
.admin-save,
.admin-secondary,
.admin-sidebar a,
.admin-help,
.admin-form label {
  font-family: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-nav a {
  color: rgba(255,255,255,0.52);
  font-size: 10px;
  font-weight: 800;
}

.admin-nav a:hover { color: var(--red); }

.admin-save,
.admin-secondary {
  cursor: pointer;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 800;
}

.admin-secondary {
  border-color: rgba(255,255,255,0.14);
  background: transparent;
  color: rgba(255,255,255,0.78);
}

.admin-shell {
  padding-bottom: 80px;
}

.admin-hero {
  padding: 88px clamp(18px, 5vw, 70px) 48px;
}

.admin-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(86px, 13vw, 150px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.admin-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.66);
  font-size: 17px;
  line-height: 1.7;
}

.admin-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 70px);
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  padding: 14px;
}

.admin-sidebar a {
  padding: 12px;
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  font-weight: 800;
}

.admin-sidebar a:hover {
  color: var(--white);
  background: rgba(224,16,16,0.16);
}

.admin-panels {
  display: grid;
  gap: 18px;
}

.admin-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  padding: clamp(20px, 3vw, 34px);
}

.admin-panel h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.admin-help {
  margin: -6px 0 16px;
  color: rgba(255,255,255,0.44);
  font-size: 10px;
  line-height: 1.6;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.48);
  font-size: 10px;
  font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.manager-form input,
.manager-form select,
.manager-form textarea,
.code-editor {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: #080808;
  color: var(--white);
  padding: 13px;
  outline: none;
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.manager-form input:focus,
.manager-form select:focus,
.manager-form textarea:focus,
.code-editor:focus {
  border-color: rgba(224,16,16,0.75);
}

.code-editor {
  min-height: 260px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  tab-size: 2;
}

.admin-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(18px);
}

#adminStatus {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

#adminStatus.error { color: var(--red); }

.manager-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.manager-form label,
.check-field legend {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manager-form input[type="file"] {
  padding: 10px;
}

.full-field {
  grid-column: 1 / -1;
}

.check-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.check-field legend {
  padding: 0 8px;
}

.check-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 10px;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
}

.check-field input {
  width: auto;
  accent-color: var(--red);
}

.manager-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.manager-list {
  display: grid;
  gap: 10px;
}

.product-manager-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.manager-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #080808;
}

.manager-card img {
  width: 92px;
  height: 78px;
  object-fit: cover;
  background: #111;
}

.manager-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.manager-card p {
  margin: 0;
  color: rgba(255,255,255,0.46);
  font-size: 12px;
  line-height: 1.5;
}

.manager-card button {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: rgba(255,255,255,0.74);
  padding: 10px;
  font-family: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manager-card button:hover {
  border-color: var(--red);
  color: var(--red);
}

.admin-panel details {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px;
}

.admin-panel summary {
  cursor: pointer;
  color: rgba(255,255,255,0.72);
  font-family: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-panel details[open] summary {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 22px; }
  .desktop-nav, .desktop-book { display: none; }
  .menu-toggle { display: block; }
  .about,
  .contact { grid-template-columns: 1fr; }
  .product-grid,
  .pillar-grid,
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-head { align-items: flex-start; flex-direction: column; }
  .page-toolbar { align-items: flex-start; flex-direction: column; }
  .filters { justify-content: flex-start; }
  .feature-event { grid-template-columns: 120px 62px 1fr; }
  .feature-event .status-badge,
  .feature-event .row-arrow { grid-column: 3; justify-self: start; }
  .shop-layout,
  .epk-grid,
  .event-detail-hero,
  .event-detail-grid { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .epk-profile { position: static; }
  .epk-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-poster { max-width: 420px; }
  .gallery-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer p { text-align: center; }
  .admin-header,
  .admin-grid { grid-template-columns: 1fr; }
  .admin-nav { justify-content: flex-start; flex-wrap: wrap; }
  .admin-sidebar { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-form.two-col { grid-template-columns: 1fr; }
  .manager-form,
  .product-manager-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 78px 18px; }
  .hero-logo { width: clamp(138px, 52vw, 220px); }
  .hero-kicker { max-width: 310px; line-height: 1.8; }
  .event-card {
    grid-template-columns: 62px 1fr;
    gap: 18px;
  }
  .event-card .status-badge,
  .event-card .row-arrow { grid-column: 2; justify-self: start; }
  .product-grid,
  .pillar-grid,
  .shop-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 52svh; padding-top: 128px; }
  .event-detail-hero { padding-top: 120px; }
  .event-detail-copy h1 { font-size: clamp(68px, 19vw, 108px); }
  .asset-grid,
  .epk-facts { grid-template-columns: 1fr; }
  .epk-facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-event {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .feature-event > img { height: 190px; }
  .feature-event .event-date,
  .feature-event .status-badge,
  .feature-event .row-arrow { grid-column: auto; }
  .gallery-wall { grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
  .shop-topline { align-items: flex-start; flex-direction: column; }
  .store-hero { min-height: 470px; }
  .store-hero::after { background: rgba(0, 0, 0, 0.66); }
  .contact-row { grid-template-columns: 42px 1fr 22px; gap: 12px; }
  .newsletter { padding-inline: 18px; }
  .admin-sidebar { grid-template-columns: 1fr; }
  .manager-card { grid-template-columns: 78px minmax(0, 1fr); }
  .manager-card button { justify-self: start; }
}
