* {
  box-sizing: border-box;
}

:root {
  --bg: #020807;
  --text: #f4f4f0;
  --muted: rgba(244, 244, 240, 0.58);
  --line: rgba(255, 255, 255, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(0, 170, 255, 0.09), transparent 32%),
    radial-gradient(circle at 20% 50%, rgba(255, 180, 80, 0.06), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
}

.glass {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.04)
  );
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 24px 80px rgba(0,0,0,0.35);
}

/* Header */

.header {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: -0.12em;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 54px;
  padding: 20px 54px;
  border-radius: 999px;
}

.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav .active {
  position: relative;
}

.nav .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 38px;
  height: 2px;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 0 18px white;
}

/* Reel hero */

.reel-hero {
  padding: 150px 60px 72px;
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: white;
}

.eyebrow,
.section-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.reel-hero .eyebrow {
  text-align: center;
}

h1 {
  margin: 20px 0 42px;
  text-align: center;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.95;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-shell {
  width: min(1180px, 86vw);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  overflow: hidden;
}

.video-shell,
.video-shell.glass {
  border: 1px solid rgba(255,255,255,0.018);
  box-shadow:
    0 18px 60px rgba(0,0,0,0.24);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.intro {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: center;
  color: rgba(244,244,240,0.7);
  font-size: 18px;
  line-height: 1.7;
}

/* Gallery */

.reel-gallery {
  padding: 64px 60px 90px;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.editorial-grid img {
  width: 100%;
  aspect-ratio: 2.39 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 1;
  cursor: zoom-in;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.editorial-grid img:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.editorial-grid .large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 2.39 / 1;
}

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

/* Image modal */

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.image-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.image-modal img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 88vw;
  max-height: 84vh;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,0.65);
}

.close-image,
.gallery-arrow {
  position: absolute;
  z-index: 3;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.close-image {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.gallery-arrow {
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
  font-size: 44px;
  line-height: 1;
}

.gallery-prev {
  left: 32px;
}

.gallery-next {
  right: 32px;
}


/* Mobile */

@media (max-width: 900px) {
  .header {
    left: 24px;
    right: 24px;
  }

  .nav {
    display: none;
  }

  .reel-hero {
    padding: 120px 24px 54px;
  }

  .back-link {
    margin-bottom: 46px;
  }

  .video-shell {
    width: 100%;
    border-radius: 20px;
  }

  .intro {
    font-size: 16px;
  }

  .reel-gallery {
    padding: 44px 24px 70px;
  }

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

  .editorial-grid .large,
  .editorial-grid .wide {
    grid-column: span 1;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  padding: 34px 60px;
  border-top: none;
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
  }
}

/* Watch button alignment fix */

.watch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 26px 12px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 26px rgba(255,255,255,0.10),
    0 14px 42px rgba(0,0,0,0.32);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.watch-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.28);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 0 34px rgba(255,255,255,0.14),
    0 18px 52px rgba(0,0,0,0.42);
}

.play {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(255,255,255,0.92);
}

@media (max-width: 900px) {
  .watch-button {
    padding: 11px 22px 11px 16px;
    gap: 13px;
    font-size: 11px;
  }

  .play {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .play::before {
    border-top-width: 5.5px;
    border-bottom-width: 5.5px;
    border-left-width: 8.5px;
  }
}
/* END Watch button alignment fix */
