/* —— Home page only —— */
/* Shared base styles, nav, and footer live in components.css */

body.page-home {
  margin: 0;
  font-family: Gelasio, Georgia, serif;
  background: var(--cream);
  color: #000;
  overflow-x: hidden;
}

.page-home main {
  display: block;
}

/* —— Hero —— */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  z-index: 1;
  display: flex;
}

.hero__video {
  height: 80vh;
  width: 100vw;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: clamp(64px, 10vw, 132px);
  background: url("/assets/images/SizzleReel.mp4") center bottom / 100% 100% no-repeat;
  z-index: 1;
  pointer-events: none;
} */

.hero__media {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    -7.64979deg,
    rgba(0, 149, 226, 0.055) 6.5188%,
    rgba(19, 48, 63, 0.22) 41.754%,
    rgba(0, 0, 0, 0.5) 82.127%
  );
  pointer-events: none;
  opacity: 0.2;
}

.hero__deco {
  position: relative;
  top: auto;
  left: auto;
  width: clamp(90px, 7vw, 136px);
  aspect-ratio: 136 / 161;
  z-index: 2;
  pointer-events: none;
}

.hero__deco img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__titles {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
  text-align: left;
  width: min(100%, 1200px);
  padding: 0 2rem;
  z-index: 2;
}

.hero__title-text {
  display: block;
}

.hero__titles h1 {
  font-family: 'Proza Libre', sans-serif;
  font-weight: 600;
  color: var(--cream);
  font-size: clamp(60px, 7.6vw, 110px);
  letter-spacing: -2.2px;
  line-height: 0.85;
  margin: 0 0 1.5rem;
}

.hero__titles p {
  font-family: 'Proza Libre', sans-serif;
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(40px, 5vw, 73px);
  letter-spacing: 5.84px;
  line-height: 1;
  margin: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s;
}

.hero__scroll:hover {
  transform: translateX(-50%) scale(1.08);
}

.hero__scroll span {
  font-family: Gelasio, Georgia, serif;
  font-size: clamp(24px, 2.5vw, 35px);
  color: #000;
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.hero__chev {
  width: 42px;
  height: 42px;
  animation: hero-bounce 2s ease-in-out infinite;
}

.hero__scroll:hover .hero__chev {
  animation: none;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* —— Below fold —— */
.below-fold {
  margin-top: -100px;
  position: relative;
  z-index: 10;
  background: var(--cream);
}

/* —— Intro —— */
.intro {
  position: relative;
  background: transparent;
  padding: 0 0 4rem;
  overflow: visible;
}

.intro__wave {
  position: absolute;
  top: 0;
  left: 50%;
  width: 160vw;
  height: auto;
  min-height: 300px;
  transform: translateX(-50%) translateY(-35%);
  z-index: 2;
  pointer-events: none;
}

.intro__wave img {
  width: 100%;
  height: auto;
  display: block;
}

.intro__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 3;
  transform: translateY(-100px);
}

.intro__text {
  max-width: 731px;
  margin: 0 auto;
}

.intro__text h2 {
  font-family: Gelasio, Georgia, serif;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: -1.2px;
  text-align: center;
  margin: 0 0 3rem;
  font-weight: 400;
}

.intro__down-arrow {
  display: flex;
  justify-content: center;
  margin: 0 0 0.75rem;
  text-decoration: none;
}

.intro__down-arrow-icon {
  width: 44px;
  height: 44px;
  animation: intro-arrow-bounce 2s ease-in-out infinite;
}

.intro__down-arrow:hover .intro__down-arrow-icon {
  animation: none;
  transform: scale(1.06);
}

@keyframes intro-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.intro__body {
  font-size: clamp(18px, 1.75vw, 25px);
  letter-spacing: -0.5px;
}

.intro__body p {
  margin: 0 0 1.5rem;
}

/* —— Video block —— */
.video-block {
  width: 100%;
  background: var(--cream);
  height: 240vh;
  display: flex;
  align-items: stretch;
  transition: background-color 800ms cubic-bezier(.4,0,.2,1);
}

.video-block__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.video-block__down-cue {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(.4,0,.2,1);
}

.video-block__down-cue span {
  font-family: 'Proza Libre', sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.video-block__down-cue-icon {
  width: 44px;
  height: 44px;
  animation: video-down-cue-bounce 1.8s ease-in-out infinite;
}

.video-block__stage {
  position: relative;
  width: min(80vw, 1400px);
  aspect-ratio: 16 / 9;
  max-height: 82vh;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 700ms cubic-bezier(.4,0,.2,1), transform 700ms cubic-bezier(.4,0,.2,1);
}

.video-block #featured-vimeo-wrapper {
  width: 100%;
  height: 100%;
}

.video-block iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  transform: none;
  transition: none;
}

.video-block.is-stopped {
  background: #000;
}

.video-block.is-stopped .video-block__stage {
  width: min(88vw, 1600px);
  transform: scale(1.03);
}

.video-block.is-stopped iframe {
  transform: none;
}

.video-block.is-stopped .video-block__down-cue {
  opacity: 1;
}

@keyframes video-down-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* —— Story cards —— */
.story {
  scroll-margin-top: 8rem;
  background: var(--cream);
  padding: 4rem 0;
}

.story .story__inner {
  opacity: 0.48;
  transition: opacity 520ms cubic-bezier(.4,0,.2,1);
}

.story.story--active .story__inner {
  opacity: 1;
}

.story__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

  .story__grid--img-right .story__visual {
    order: 2;
  }

  .story__grid--img-right .story__copy {
    order: 1;
  }

  .story__copy--end {
    text-align: right;
    margin-left: auto;
  }

  .story__btn {
    text-decoration: none;
  }
}

.story__visual {
  aspect-ratio: 718 / 510;
  width: 100%;
  max-width: 718px;
}

.story__grid--img-right .story__visual {
  margin-left: auto;
}

.story__frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
}

.story__frame img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__frame-x {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.story__frame-x line {
  stroke: var(--frame);
}

/* —— Story copy typography —— */
.story__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__cat {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin: 0;
}

.story__copy h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.96px;
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
}

.story__desc {
  font-size: clamp(18px, 1.75vw, 25px);
  letter-spacing: -0.5px;
  max-width: 465px;
  margin: 0;
}

.story__copy--end .story__desc {
  margin-left: auto;
}

.story__btn {
  text-decoration: none;
}

.story__btn {
  text-decoration: none;
}


.mobile-story {
  display: none;
}


@media (max-width: 1500px) {
  .below-fold {
    margin-top: -250px;
  }

  .intro__wave {
    position: absolute;
    top: 0;
    left: 50%;
    width: 160vw;
    height: auto;
    min-height: 300px;
    transform: translateX(-50%) translateY(-30%);
    z-index: 2;
    pointer-events: none;
  }
  
  .intro__wave img {
    width: 100%;
    height: auto;
    display: block;
  }

  .intro__inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .below-fold {
    margin-top: -400px;
  }

  .intro__wave {
    position: absolute;
    top: 0;
    left: 50%;
    width: 160vw;
    height: auto;
    min-height: 300px;
    transform: translateX(-50%) translateY(-30%);
    z-index: 2;
    pointer-events: none;
  }
  
  .intro__wave img {
    width: 100%;
    height: auto;
    display: block;
  }

  .intro__inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    transform: translateY(0);
  }
}




@media (max-width: 768px) {

  /* —— Hero —— */
  .hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
    z-index: 1;
    display: flex;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -2px 0;
    height: clamp(64px, 10vw, 132px);
    background: url("/assets/images/layouts/mountain-wave.svg") center bottom / 100% 100% no-repeat;
    z-index: 1;
    pointer-events: none;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
  }

  .hero__media img {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .hero__gradient {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
      -7.64979deg,
      rgba(0, 149, 226, 0.055) 6.5188%,
      rgba(19, 48, 63, 0.22) 41.754%,
      rgba(0, 0, 0, 0.5) 82.127%
    );
    pointer-events: none;
    opacity: 0.2;
  }

  .hero__deco {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(50px, 5vw, 73px);
    aspect-ratio: 136 / 161;
    z-index: 2;
    pointer-events: none;
  }

  .hero__deco img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero__titles {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2.5rem);
    text-align: left;
    width: min(100%, 1200px);
    padding: 0 2rem;
    z-index: 2;
  }

  .hero__title-text {
    display: block;
  }

  .hero__titles h1 {
    font-family: 'Proza Libre', sans-serif;
    font-weight: 600;
    color: var(--cream);
    font-size: clamp(40px, 4vw, 50px);
    letter-spacing: -2.2px;
    line-height: 0.85;
    margin: 0 0 .5rem;
  }

  .hero__titles p {
    font-family: 'Proza Libre', sans-serif;
    font-weight: 400;
    color: var(--cream);
    font-size: clamp(20px, 5vw, 40px);
    letter-spacing: 5.84px;
    line-height: 1;
    margin: 0;
  }

  .story {
    display: none;
  }

  .mobile-story__copy--end .mobile-story__desc {
    margin-left: 0;
  }

  .mobile-story__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    padding: 1.1em 2.2em;
    text-decoration: none;
  }

  .mobile-story__frame {
    border: none;
    width: 100%;
    height: 35vh;
    background: transparent;
    overflow: hidden;
  }

  .mobile-story__visual {
    width: 100%;
    height: 35vh;
    background: transparent;
    overflow: hidden;
  }

  .mobile-story__inner {
    padding: 0;
  }

  .mobile-story__btn {
    align-self: flex-start;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.35rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  
  .mobile-story__copy--end .mobile-story__btn {
    align-self: flex-end;
  }
  
  .mobile-story__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-story__btn span {
    font-family: 'Proza Libre', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2.1vw, 30px);
    color: var(--cream);
    letter-spacing: -0.64px;
  }




  .mobile-story {
    display: block;
    margin-bottom: 4rem;
  }
  
  .mobile-story__inner {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .mobile-story__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  
  .mobile-story__visual {
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-story__grid--img-right .mobile-story__visual {
    margin-left: auto;
  }
  
  .mobile-story__frame {
    position: relative;
    width: 100%;
    height: 25vh;
    background: #fff;
    overflow: hidden;
  }
  
  .mobile-story__frame img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mobile-story__frame-x {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  
  .mobile-story__frame-x line {
    stroke: var(--frame);
  }
  
  /* —— Story copy typography —— */
  .mobile-story__copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    text-align: left;
    align-items: center;
    padding: 0 2rem;
  }

  .mobile-story__cat {
    font-size: 24px;
    letter-spacing: -0.4px;
    margin: 0;
  }
  
  .mobile-story__copy h2 {
    font-size: clamp(40px, 3.5vw, 56px);
    letter-spacing: -0.96px;
    line-height: 1.15;
    margin: 0;
    font-weight: 400;
    text-align: center;
  }
  
  .mobile-story__desc {
    font-size: clamp(18px, 1.75vw, 25px);
    letter-spacing: -0.5px;
    max-width: 465px;
    margin: 0;
    margin-bottom: 1rem;
  }
  
}
