:root {
  --bg: #080808;
  --panel: #121216;
  --text: #f5f5f5;
  --muted: #b5b5b8;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #e27500;
  --orange-light: #ff9f2e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 80% 10%, rgba(226, 117, 0, 0.18), transparent 36%), var(--bg);
  font-family: 'Inter', sans-serif;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 0.4px, transparent 0.4px);
  background-size: 2px 2px;
}

.page {
  width: min(1120px, calc(100vw - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero,
.block {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 18px;
  backdrop-filter: blur(2px);
  padding: clamp(1rem, 2.8vw, 2rem);
  margin-bottom: 1rem;
}

.block {
  position: relative;
  overflow: hidden;
}

.block::after {
  content: '';
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
  transition: left 1.2s ease;
  pointer-events: none;
}

.block.show::after {
  left: 120%;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(226, 117, 0, 0.1), rgba(226, 117, 0, 0));
  pointer-events: none;
}

.pill {
  display: inline-block;
  border: 1px solid rgba(226, 117, 0, 0.4);
  color: #ffe5c6;
  background: rgba(226, 117, 0, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.8rem;
}

.back-link {
  position: absolute;
  right: clamp(1rem, 2vw, 1.6rem);
  top: clamp(1rem, 2vw, 1.6rem);
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 7vw, 5rem);
}

h2 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
  letter-spacing: 0.03em;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

ul,
ol {
  padding-left: 1.15rem;
  margin: 0.45rem 0;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.meta-grid div {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.7rem;
}

.meta-grid span {
  display: block;
  color: #9a9aa1;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.28rem;
}

.meta-grid strong {
  font-size: 0.92rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
}

.shot {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: #111217;
}

.shot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shot:hover img {
  transform: scale(1.03);
}

.shot figcaption {
  padding: 0.65rem 0.8rem;
  font-size: 0.86rem;
  color: #ddd;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.image-missing {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.84rem;
  color: #aaa;
  background: repeating-linear-gradient(45deg, #16171d, #16171d 10px, #1d1f26 10px, #1d1f26 20px);
  padding: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .page {
    width: calc(100vw - 1.2rem);
    padding-top: 1rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
