/* --- FORCE NATIVE SCROLL (Overrides Smooth Scroller) --- */
html, body {
  overflow: auto !important; /* Re-enable native scrollbar */
  height: auto !important;
}

.smooth-wrapper { 
  position: static !important; /* Stop it from locking the viewport */
  height: auto !important; 
  transform: none !important; /* Remove the transform hijacking */
}

.smooth-content { 
  position: static !important; 
  height: auto !important; 
  transform: none !important; /* Stop the content from floating */
  will-change: auto !important;
}
.nav__button-container {
  display: flex;
  justify-content: flex-end;
}
/* base styles and everything under 768px */
/* fonts */
p, ul, .featured-item__copy p  {
  font-family: arial;
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color:#000;
}
p:not(:last-child) {
  margin-bottom:1.5rem;
}
h1, h2, h3, h4, h5 {
  font-family: spectral;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 110%;
  -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
  margin-bottom:1.5rem;
  color: #000;
}
/* test anchor */
#blink-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff; /* Matches your page background */
  z-index: 99998; /* Just under your initial page loader */
  
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none; 
}
/* -----------------------------------------
       HERO SECTION STRUCTURE
       ----------------------------------------- */
    .hero-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background-color: #ffffff;
    }

    /* This stack holds the Top Text and Video. It starts perfectly centered. */
    .hero-content-stack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 1. REMOVE justify-content: flex-end; */
  align-items: center;
  will-change: transform;
}

    /* -----------------------------------------
   TOP TEXT AREA
   ----------------------------------------- */
.top-text-area {
  width: 100%; 
  max-width: 1920px; 
  padding: 0 20px; 
  box-sizing: border-box;
  
  margin-top: 110px; 
  margin-bottom: 3rem; 
  flex-shrink: 0; 
  
  /* CRITICAL: Hides the text as the container shrinks to 0 height */
  overflow: hidden; 
  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  text-align: center;
}
@media (min-width:1600px) {
  .top-text-area {
    margin-top:125px;
    margin-bottom: 2.5rem;
  }
}
.intro-text {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  font-family: spectral;
  line-height: 110%;
  font-weight: 400;
  font-size: 3.125rem;
  letter-spacing: -0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000; 
  margin: 0;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 1600px) {
.intro-text {
  font-size: 4.25rem;
}
}
   /* -----------------------------------------
   VIDEO AREA
   ----------------------------------------- */
.video-area {
  position: relative;
  width: 100%; 
  max-width: calc(100% - 4rem); 
  
  /* 3. THE MAGIC FIX: Tells the video container to expand and fill ALL remaining vertical space down to the bottom edge */
  flex-grow: 1; 
  
  /* Remove aspect-ratio and max-height so it's free to fill the screen */
  overflow: hidden;
  border-radius: 0.75rem;
}

.video-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Guarantees the video fills the new fluid shape beautifully */
}

/* -----------------------------------------
   BOTTOM TEXT AREA (The Reveal)
   ----------------------------------------- */
.bottom-text-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px; /* Exact height of the reveal gap */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.culmination-text {
  font-family: 'Spectral', serif;
  font-size: 4.25rem; 
  line-height: 100%;
  letter-spacing: -0.05em;
  font-weight: 400;
  color: #000000; 
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
@media (min-width:1600px) {
  .culmination-text {
  font-family: 'Spectral', serif;
  font-size: 5.625rem; 
}
}
.scroll-text-section {
  background-color: #ffffff;
  width: 100%;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/images/campaigns/sensory/sketch.jpg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  /* Using padding instead of vh to create natural spacing above and below */
}

.scroll-text-inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  /* An explicit height ensures the absolute-positioned text has space to breathe */
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; 
  flex-direction: column;
  text-align: center;
}

.statement {
  margin: 0;
  max-width:900px; /* Optimal reading width */
  width:calc(100% - 40px);
  padding:0 20px;
  position: absolute;
  font-size:1.75rem;
}

@media (min-width: 1024px) {
  .general-heading-block__title h1 {
    font-size: 4.25rem;
  }  .statement {
    font-size: 3.125rem;
  }
}

/* Hide all statements except the first one on load to prevent a mess */
.statement:not(:first-child) {
  opacity: 0;
  visibility: hidden;
}
/* end scrolling text */

/* ============================================================
   NEW APPROACH: MERGED SINGLE CARD
   ============================================================ */
.editorial-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.editorial-section {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.simple-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center; 
  padding: 0 0px;
}

/* --- THE MERGED CARD --- */
.editorial-card {
  background: rgba(0, 0, 0, 0.75); /* Slightly transparent black */
  color: #ffffff;
  width: 40%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

/* --- LESSON TYPOGRAPHY --- */
.card-lesson h2 {
  font-family: 'Spectral', serif;
  font-size: 38px; /* Requested size */
  margin: 0 0 15px 0;
  color: #ffffff;
}

.card-lesson p {
  font-family: Arial, sans-serif;
  font-size: 20px; /* Requested size */
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

/* --- THE SEPARATOR --- */
.card-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 1); /* Subtle white border */
  margin: 30px 0;
  width: 100%;
}

/* --- PROJECT TYPOGRAPHY (Self-Contained) --- */
.card-project h3 {
  font-family: 'Spectral', serif;
  font-size: 22px; /* Scaled down from 28px max */
  margin: 0 0 10px 0;
  color: #ffffff;
}

.card-project p {
  font-family: Arial, sans-serif;
  font-size: 16px; /* Requested size */
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 1); /* Slightly dimmed for hierarchy */
}

/* Backdrop remains same */
.simple-backdrop { position: absolute; inset: 0; z-index: 1; }
.simple-backdrop video { width: 100%; height: 100%; object-fit: cover; }

.editorial-section .cta-primary {
  color:#fff;
  font-size:1rem;
  min-height:2.25rem;
  margin-top: 1.5rem;
}
.editorial-section .cta-primary .icon {
  color:#fff;
  font-size: 1.5rem;
}

.quote-with-audio__inner {
  grid-column: 3 / span 7;
  border:none;
  padding:6rem 0;
  text-align: center;
}

.quote-with-audio__text p{
        font-family: spectral;
        line-height: 110%;
        font-weight: 400;
        font-size: 3.25rem;
        letter-spacing: -0.05em;
        padding-right: .05em;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .quote-with-audio__author p{
      margin-bottom: 0;
    }