* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #020504;
  color: #f4efe3;
  font-family: Arial, Helvetica, sans-serif;
}

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

.page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(90,130,110,0.28),
      transparent 30rem
    ),
    radial-gradient(
      circle at 20% 40%,
      rgba(70,90,140,0.24),
      transparent 32rem
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(130,100,160,0.20),
      transparent 34rem
    ),
    linear-gradient(
      180deg,
      #020504 0%,
      #07110f 45%,
      #020504 100%
    );
}


/* =====================================================
   NAV
===================================================== */

.nav {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 50;

  padding: 28px 54px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.52) 0%,
      rgba(0,0,0,0.18) 60%,
      rgba(0,0,0,0) 100%
    );
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 38px;

  padding-bottom: 12px;
  margin-left: 22px;
}

.nav-links a {
  color: rgba(255,255,255,0.95);

  text-decoration: none;

  font-size: 1.08rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.7);
}

.nav-links a:hover {
  opacity: 0.7;
}

.logo-link {
  flex-shrink: 0;
}

.logo-link img {
  width: 150px;
  height: auto;

  display: block;

  filter:
    drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  display: flex;
  align-items: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;

  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      180deg,
      rgba(2,5,4,0.18) 0%,
      rgba(2,5,4,0.40) 52%,
      rgba(2,5,4,0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2,5,4,0.08) 0%,
      rgba(2,5,4,0.18) 38%,
      rgba(2,5,4,0.82) 100%
    );
}

.hero-copy {
  position: relative;

  z-index: 5;

  margin-left: auto;

  max-width: 640px;

  padding:
    0
    54px
    74px
    0;
}

.hero-copy h1 {
  margin: 0;

  font-size: clamp(5rem, 9vw, 8.5rem);

  line-height: 0.82;
  letter-spacing: -0.09em;
}


/* =====================================================
   TEXT
===================================================== */

.eyebrow {
  color: #d1b36f;

  text-transform: uppercase;

  letter-spacing: 0.18em;

  font-size: 0.76rem;
  font-weight: 800;

  margin-bottom: 18px;
}

.lead {
  max-width: 520px;

  color: #d9dfd3;

  margin-top: 28px;

  line-height: 1.7;

  font-size: 1.08rem;
}

h2 {
  margin: 0;

  font-size: clamp(2.8rem, 6vw, 5.4rem);

  line-height: 0.9;
}

.section-intro {
  max-width: 1200px;

  margin: 110px auto 36px;

  padding: 0 32px;
}

.section-intro p {
  max-width: 660px;

  color: #b8c2b5;

  line-height: 1.8;
}


/* =====================================================
   BUTTONS
===================================================== */

.hero-actions {
  display: flex;

  gap: 14px;

  margin-top: 30px;

  flex-wrap: wrap;
}

.btn {
  display: inline-block;

  padding: 0.95rem 1.4rem;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 800;
}

.primary {
  background: #f4efe3;
  color: #020504;
}

.ghost {
  border:
    1px solid rgba(255,255,255,0.22);

  color: #f4efe3;

  background:
    rgba(255,255,255,0.06);
}


/* =====================================================
   CARDS
===================================================== */

.card-grid {
  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  gap: 22px;

  padding: 0 32px;

  align-items: stretch;
}

.card {
  flex: 1 1 0;

  min-width: 0;

  /*
    IMPORTANT:
    no fixed height anymore.
    Text can grow without being cut off.
  */

  height: auto;

  border-radius: 28px;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 26px 70px rgba(0,0,0,0.4),
    0 0 25px rgba(90,130,110,0.08),
    0 0 18px rgba(130,100,160,0.06);
}


/* CARD IMAGE / VIDEO */

.card-media {
  width: 100%;

  /*
    ALL card images now use the same shape.
    4:5 portrait.
  */

  aspect-ratio: 4 / 5;

  flex: 0 0 auto;

  overflow: hidden;

  background: #050a08;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.video-embed {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 850px) {
  .video-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}


/* CARD COPY */

.card-copy {
  flex: 1;

  /*
    Gives the text a proper dedicated
    area instead of squeezing it.
  */

  min-height: 190px;

  padding:
    24px
    22px
    28px;

  /*
    MUCH DARKER background for readability.
  */

  background:
    linear-gradient(
      180deg,
      rgba(3,7,6,0.97) 0%,
      rgba(2,5,4,1) 100%
    );
}

.card-number {
  color: #d1b36f;

  margin-bottom: 10px;

  font-size: 0.9rem;

  font-weight: 800;
}

.card h3 {
  color: #f4efe3;

  font-size: 1.9rem;

  margin: 0 0 12px;

  line-height: 1.05;
}

.card p {
  color: #c4ccc0;

  margin: 0;

  font-size: 1rem;

  line-height: 1.55;
}


/* =====================================================
   JOURNEY
===================================================== */

.journey-section {
  max-width: 1200px;

  margin: 120px auto;

  display: flex;
  align-items: center;

  gap: 80px;

  padding: 56px;

  border-radius: 34px;

  background:
    rgba(255,255,255,0.035);

  border:
    1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    0 0 45px rgba(130,100,160,0.08);
}

.journey-logo {
  flex: 0.85;

  display: flex;
  justify-content: center;
}

.journey-logo img {
  max-width: 360px;
}

.journey-copy {
  flex: 1.15;
}

.journey-copy p {
  max-width: 680px;

  color: #b8c2b5;

  font-size: 1.05rem;

  line-height: 1.9;

  margin-bottom: 22px;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery-section {
  max-width: 1200px;

  margin: 120px auto 0;

  padding: 0 32px;
}

.gallery-intro {
  margin-top: 0;

  padding: 0;
}

.photo-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.photo-grid img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  border-radius: 24px;

  border:
    1px solid rgba(255,255,255,0.10);
}


/* =====================================================
   MERCH
===================================================== */

.merch-section {
  max-width: 1200px;

  margin: 110px auto 0;

  padding: 48px;

  border-radius: 34px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 32px;

  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(130,100,160,0.18),
      transparent 26rem
    ),
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.10);
}

.merch-section p {
  max-width: 560px;

  color: #b8c2b5;

  line-height: 1.6;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-block {
  max-width: 1200px;

  margin: 120px auto 0;

  padding: 56px;

  border-radius: 34px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(130,100,160,0.16),
      transparent 28rem
    ),
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    0 0 45px rgba(90,130,110,0.08);
}

.contact-copy {
  max-width: 760px;

  margin-bottom: 42px;
}

.contact-copy p {
  max-width: 680px;

  color: #b8c2b5;

  line-height: 1.7;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.contact-card {
  padding: 28px;

  border-radius: 26px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.10);
}

.contact-card h3 {
  margin: 0 0 16px;

  font-size: 1.7rem;

  line-height: 1;
}

.contact-card p {
  color: #b8c2b5;

  line-height: 1.6;

  margin: 0 0 20px;
}

.text-link {
  color: #f4efe3;

  font-weight: 800;

  text-decoration: none;

  border-bottom:
    1px solid rgba(244,239,227,0.45);
}

.contact-actions {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  margin-top: 34px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  max-width: 1200px;

  margin: 80px auto 0;

  padding:
    42px
    32px
    56px;

  text-align: center;

  color: #b8c2b5;
}

.footer-brand img {
  width: 120px;

  margin: 0 auto 24px;
}

.footer-small {
  max-width: 780px;

  margin: 18px auto 0;

  font-size: 0.78rem;

  line-height: 1.6;

  color:
    rgba(184,194,181,0.72);
}


/* =====================================================
   SUB PAGES
===================================================== */

.sub-nav {
  max-width: 1400px;

  margin: 0 auto;

  padding:
    36px
    54px
    0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-home {
  color: #f4efe3;

  text-decoration: none;

  font-size: 0.9rem;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.sub-logo img {
  width: 130px;
}

.sub-hero,
.about-hero {
  max-width: 1200px;

  margin:
    90px
    auto
    50px;

  padding: 0 32px;
}

.sub-hero h1,
.about-hero h1 {
  margin: 0;

  font-size:
    clamp(4rem, 8vw, 7rem);

  line-height: 0.9;
}

.sub-lead {
  max-width: 620px;

  margin-top: 28px;

  color: #b8c2b5;

  line-height: 1.7;
}


/* =====================================================
   MERCH GRID
===================================================== */

.merch-grid {
  max-width: 1200px;

  margin:
    0
    auto
    120px;

  padding: 0 32px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.merch-tile {
  border-radius: 28px;

  overflow: hidden;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 26px 70px rgba(0,0,0,0.4),
    0 0 18px rgba(130,100,160,0.08);
}

.merch-image img {
  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;
}

.merch-copy {
  padding: 28px;
}

.merch-copy h3 {
  margin: 0 0 12px;

  font-size: 2rem;
}

.merch-copy p {
  color: #b8c2b5;

  line-height: 1.6;

  margin-bottom: 24px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-content {
  max-width: 1000px;

  margin:
    0
    auto
    120px;

  padding: 0 32px;
}

.about-body {
  padding: 54px;

  border-radius: 34px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    0 0 45px rgba(130,100,160,0.08);
}

.about-body p {
  color: #c4ccc0;

  line-height: 1.95;

  font-size: 1.08rem;

  margin-bottom: 30px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

  /* NAV */

  .nav {
    position: absolute;

    padding:
      18px
      18px
      0;

    align-items: flex-end;

    flex-direction: row;
  }

  .logo-link img {
    width: 92px;
  }

  .nav-links {
    max-width: 68%;

    margin-left: 0;

    padding-bottom: 8px;

    display: flex;

    justify-content: flex-start;

    gap:
      10px
      14px;

    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.68rem;

    letter-spacing: 0.08em;

    line-height: 1;
  }


  /* HERO */

  .hero-copy {
    padding:
      0
      20px
      36px;
  }

  .hero-copy h1 {
    font-size:
      clamp(3.2rem, 14vw, 5rem);
  }

  .lead {
    font-size: 0.95rem;

    line-height: 1.55;
  }


  /* CARDS */

  .card-grid {
    flex-direction: column;

    gap: 26px;

    padding:
      0
      20px;
  }

  .card {
    width: 100%;

    height: auto;
  }

  .card-media {
    width: 100%;

    aspect-ratio: 4 / 5;
  }

  .card-copy {
    min-height: 0;

    padding:
      22px
      22px
      26px;
  }

  .card h3 {
    font-size: 1.75rem;
  }

  .card p {
    font-size: 0.96rem;

    line-height: 1.55;
  }


  /* JOURNEY */

  .journey-section {
    flex-direction: column;

    padding: 30px;

    gap: 36px;
  }

  .journey-logo img {
    max-width: 260px;
  }


  /* GALLERY */

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


  /* MERCH */

  .merch-section {
    flex-direction: column;

    align-items: flex-start;

    padding: 30px;
  }


  /* CONTACT */

  .contact-block {
    padding: 30px;
  }

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


  /* SUB PAGES */

  .sub-nav {
    padding:
      24px
      22px
      0;

    flex-direction: column;

    gap: 24px;
  }

  .sub-logo img {
    width: 100px;
  }


  /* MERCH PAGE */

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


  /* ABOUT */

  .about-body {
    padding: 30px;
  }

  .about-body p {
    font-size: 1rem;

    line-height: 1.8;
  }

  .sub-hero h1,
  .about-hero h1 {
    font-size:
      clamp(3rem, 14vw, 5rem);
  }
}