:root {
  --bg: #ffffff;
  --text: #050505;
  --muted: #686868;
  --panel: #ffffff;
  --accent: #ff4c4c;
  --shadow: 0 2px 14px rgba(0, 0, 0, .12);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, .18);
  --radius: 8px;
  --radius-sm: 6px;
  --nav-h: 64px;
  --content-max: 1400px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0b;
    --text: #f3f3f3;
    --muted: #b8b8b8;
    --panel: #141414;
    --shadow: 0 2px 14px rgba(0, 0, 0, .58);
    --shadow-strong: 0 10px 28px rgba(0, 0, 0, .7);
    --accent: #ff6666;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
iframe,
video {
  display: block;
  max-width: 100%;
}

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

::selection {
  background: rgba(255, 76, 76, .2);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  padding: 1rem 2rem;
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  transition: transform .25s ease, opacity .25s ease, background-color .25s ease;
}

.site-nav--overlay {
  position: fixed;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.site-nav--hero {
  position: absolute;
}

.site-nav.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-logo {
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: .15em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}

.nav-links a[aria-current="page"] {
  opacity: .68;
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  display: none;
  width: 36px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: top .25s ease, bottom .25s ease, transform .25s ease, opacity .2s ease;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  bottom: -10px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.page-header {
  max-width: 920px;
  margin: 0 auto;
  padding: 4.5rem 1rem 1rem;
  text-align: center;
}

.page-header h1,
.section-title,
.video-title,
.detail-title {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.page-header h1,
.detail-title {
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .15em;
}

.page-header p,
.section-sub,
.detail-subtitle,
.subtitle {
  color: var(--muted);
  letter-spacing: .08em;
}

.site-main {
  max-width: var(--content-max);
  margin: 1.5rem auto 3.5rem;
  padding: 0 2rem;
}

.hero-carousel {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform .7s ease-in-out;
  will-change: transform;
}

.slide {
  position: relative;
  display: flex;
  min-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.slide::after,
.video-header::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  content: "";
}

.slide-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 7vw, 3.5rem);
  font-weight: 900;
  letter-spacing: .26em;
  text-align: center;
  text-transform: uppercase;
}

.slide-content small,
.slide-content a {
  display: block;
  margin-top: .65rem;
  font-size: clamp(.82rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: .22em;
}

.slide-content a {
  text-decoration: underline;
  text-underline-offset: .2em;
}

.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.dot[aria-selected="true"] {
  background: #ffffff;
}

.intro-text {
  max-width: 900px;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
}

.section-block {
  display: flex;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  align-items: center;
  gap: 2rem;
}

.section-block--reverse {
  flex-direction: row-reverse;
}

.section-media,
.section-copy {
  flex: 1 1 420px;
}

.section-media img,
.gallery-column img,
.detail-gallery img,
.video-item iframe,
.video-item img,
.related-card img,
.strip img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section-copy {
  max-width: 600px;
}

.section-title {
  margin: 0 0 .5rem;
  font-size: 1.9rem;
  letter-spacing: .12em;
}

.section-copy p {
  margin: .6rem 0 1.2rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: .55em 1.4em;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--text);
  color: var(--bg);
}

.gallery-section {
  margin: 2rem 0 3rem;
  text-align: center;
}

.gallery-section .section-title {
  margin-top: 0;
  font-size: 2.25rem;
  letter-spacing: .25em;
}

.section-sub {
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.gallery-columns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem auto 2rem;
}

.gallery-column {
  display: flex;
  flex: 1 1 0;
  max-width: 33.333%;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-columns--two .gallery-column {
  max-width: 50%;
}

.gallery-column:nth-child(even) {
  flex-direction: column-reverse;
}

.vertical {
  aspect-ratio: 2 / 3;
}

.horizontal {
  aspect-ratio: 3 / 2;
}

.video-header {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.youtube-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.youtube-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270vh;
  height: 110vh;
  border: 0;
  filter: brightness(.8);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.video-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 7vw, 3rem);
  letter-spacing: .28em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.photo-hero {
  max-width: 1600px;
  margin: 2rem auto 1.5rem;
  padding: 0 1rem;
}

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

.strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.strip figure:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.strip img {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
}

.strip figure:first-child img {
  object-position: center 35%;
}

.strip figcaption {
  padding: .55rem .75rem .7rem;
  font-family: "Raleway", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.videos-content {
  max-width: 1600px;
  margin: 2rem auto 4rem;
  padding: 2rem;
}

.videos-content h2 {
  margin: .75rem 0 1rem;
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-item {
  flex: 1 1 320px;
  max-width: 400px;
  text-align: center;
}

.video-item iframe,
.video-item img {
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-item h3 {
  margin: .75rem 0 .3rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.subtitle {
  margin: 0 0 .75rem;
  font-size: .9rem;
  font-weight: 600;
}

.detail-page {
  max-width: var(--content-max);
  margin: 0 auto 3.5rem;
  padding: 6.5rem 2rem 0;
  text-align: center;
}

.detail-subtitle {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
}

.detail-gallery--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-gallery img {
  height: 100%;
}

.gallery-wide {
  margin: 1.5rem auto;
}

.gallery-wide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section-divider {
  max-width: 1200px;
  height: 1px;
  margin: 3rem auto 1.5rem;
  border: 0;
  background: rgba(128, 128, 128, .35);
}

.related-heading {
  margin: 2rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem auto 0;
}

.related-card {
  position: relative;
  flex: 0 1 300px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.related-card img {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  box-shadow: none;
  transition: transform .25s ease;
}

.related-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, .94);
  color: #050505;
  font-weight: 700;
  letter-spacing: .1em;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  transition: opacity .2s ease;
}

.related-card:hover img,
.related-card:focus-visible img {
  transform: scale(1.03);
}

.related-card:hover span,
.related-card:focus-visible span,
.related-card.show-label span {
  opacity: 1;
}

@media (max-width: 1024px) {
  .gallery-columns {
    flex-wrap: wrap;
  }

  .gallery-column {
    max-width: calc(50% - .5rem);
  }

  .strip,
  .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .site-nav {
    padding: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    background: rgba(0, 0, 0, .9);
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .32);
    transition: max-height .25s ease, opacity .25s ease, padding .25s ease;
  }

  .nav-links[data-visible="true"] {
    max-height: 420px;
    padding: 1.1rem;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-main,
  .videos-content,
  .detail-page {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-block,
  .section-block--reverse {
    flex-direction: column;
    gap: .9rem;
    margin: 1.4rem auto;
    text-align: center;
  }

  .section-copy {
    max-width: 100%;
  }

  .intro-text {
    margin: 1.5rem auto 1rem;
  }

  .gallery-section .section-title,
  .videos-content h2 {
    font-size: 1.65rem;
    letter-spacing: .18em;
  }

  .videos-content {
    margin-top: 1rem;
    padding-top: .75rem;
  }

  .video-row {
    gap: 1rem;
    margin-bottom: 2.2rem;
  }

  .video-item {
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-carousel,
  .video-header {
    min-height: 520px;
  }

  .site-logo {
    font-size: 1.45rem;
  }

  .slide-content,
  .video-title {
    letter-spacing: .15em;
  }

  .gallery-columns,
  .detail-gallery,
  .detail-gallery--two,
  .strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-column,
  .gallery-columns--two .gallery-column {
    display: contents;
    max-width: none;
  }

  .gallery-column:nth-child(even) {
    flex-direction: column;
  }

  .page-header {
    padding-top: 3rem;
  }

  .detail-page {
    padding-top: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
