@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;900&family=Space+Grotesk:wght@400;500&display=swap');

:root {
  --black:   oklch(8% 0.008 55);
  --white:   oklch(95% 0.006 60);
  --gold:    oklch(78% 0.16 70);
  --surface: oklch(13% 0.008 55);
  --border:  oklch(22% 0.008 55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ─── NAV ─────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: background-color 300ms ease-out, border-color 300ms ease-out;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background-color: var(--black);
  border-bottom-color: var(--border);
}

.nav__logo img {
  height: 40px;
  width: auto;
  /* logo has white background — invert so it fits on dark site */
  mix-blend-mode: screen;
  opacity: 0.9;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 150ms ease-out;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

/* ─── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  background-image: url('Media/Images/Landing page image.JPG');
  background-size: cover;
  background-position: center 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0% 0 0 / 0.35) 0%,
    oklch(0% 0 0 / 0.55) 70%,
    var(--black) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.hero__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 13vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__sub {
  margin-top: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.6;
  animation: bob 2s ease-in-out infinite;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--white);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION SHARED ───────────────────────────────────── */

.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section--wide {
  max-width: 1400px;
}

.section--surface {
  max-width: 100%;
  background-color: var(--surface);
  padding: 6rem 2rem;
}

.section--surface .section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section__heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ─── ABOUT ─────────────────────────────────────────────── */

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

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr;
  }
}

.about__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.about__photo:hover img {
  transform: scale(1.03);
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__quote {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}

.about__quote em {
  color: var(--gold);
  font-style: normal;
}

.about__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: oklch(80% 0.005 60);
  max-width: 52ch;
}

/* ─── PHOTO STRIP ────────────────────────────────────────── */

.strip-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 2rem;
}

.strip-wrap::-webkit-scrollbar {
  display: none;
}

.strip {
  display: flex;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  width: max-content;
}

.strip__item {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: clamp(260px, 28vw, 400px);
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 2px;
}

.strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.strip__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .strip-wrap {
    padding: 0 1rem;
  }

  .strip {
    flex-direction: column;
    width: 100%;
  }

  .strip__item {
    width: 100%;
    aspect-ratio: 4/3;
  }
}

/* ─── POSTER WALL ─────────────────────────────────────── */

.posters {
  columns: 2;
  column-gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .posters {
    columns: 4;
  }
}

.poster {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.poster img {
  width: 100%;
  display: block;
  transition: transform 200ms ease-out;
}

.poster:hover img {
  transform: scale(1.03);
}

/* ─── INSTAGRAM CTA ───────────────────────────────────── */

.insta {
  text-align: center;
  padding: 6rem 2rem;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.insta__handle {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: -0.01em;
  color: var(--gold);
  text-transform: uppercase;
  transition: opacity 150ms ease-out;
  display: inline-block;
}

.insta__handle:hover {
  opacity: 0.75;
}

.insta__sub {
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(60% 0.005 60);
}

/* ─── FOOTER ──────────────────────────────────────────── */

.footer {
  background-color: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo img {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.6;
}

.footer__copy {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: oklch(40% 0.005 60);
  text-transform: uppercase;
}

/* ─── VIDEOS PAGE ─────────────────────────────────────── */

.videos-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.videos-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('Media/Images/IMG_5490.JPG');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(60%);
}

.videos-hero__content {
  position: relative;
  z-index: 1;
}

.videos-hero__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--white);
}

.videos-hero__sub {
  margin-top: 2rem;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: oklch(55% 0.005 60);
}

.videos-hero__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
