@charset "utf-8";
address, article, aside, button, blockquote, body, dd, dialog, dl, dt, fieldset,
footer, form, h1, h2, h3, h4, h5, h6, header, li, nav, ol, p, pre, section,
td, th, tr, ul {
    margin: 0;
    padding: 0; 
}

	
body {	
  background: #ecece5;
  font-family: "Romain";
  margin: 0;
  padding: 0;
  width: 100vw !important;
  font-weight:300;	
  color: #090909;
  line-height:0;
  text-transform:none;	
  touch-action: manipulation !important;	
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
  height:100vh;
  overflow: hidden;		
  /*#f8f7f2;*/

}	
	
a {color: #090909;}	
input[type=text] { color: #090909; border-bottom:1px solid #999 !important;}	
input[type=password] {color: #090909; border-bottom:1px solid #999 !important;}	
input::placeholder {color:#999}
		

@font-face 	{ font-family: "Romain"; src: url("Abyme - Berthe Regular.otf") format("opentype");}
@font-face 	{ font-family: "Romain"; font-style: italic; src: url("Abyme - Berthe Italic.otf") format("opentype");}


input, button, submit { pointer-events:auto !important; border:none; background:none; } 

-webkit-tap-highlight-color: rgba(255, 255, 255, 0); 

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}


::placeholder { 
  color: #333;
  opacity: 1;
}

.lazyload,
.lazyloading {
	opacity: 0;
}
.lazyloaded {
	opacity: 1;
	transition: opacity 350ms;
}


.smooth-fade {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* The onload event adds this class to fade it in */
.smooth-fade.is-loaded {
    opacity: 1;
}

a {font-weight:300; text-decoration:none}

.transition-fade {
    transition: 0s;
    opacity: 1;
	/*transition-delay: .5s;*/
}

html.is-animating .transition-fade {
    opacity: 0;
}




.mainframe 				{opacity:1 !important; transition:opacity .25s;}
.mainframe.is-hidden    {opacity:0 !important; }



h1 {
  font-size: 200px;
  line-height:1em;
  letter-spacing:-.04em;	
  font-weight: normal;
}

.headerAlt {
  font-size: 100px;
  line-height:.8em;
  letter-spacing:-.04em;	
  font-weight: normal;
}

h2 {
  font-size: 2.5vw;
   line-height:1.3em; 		
  font-weight: normal;
}

h3 {
   font-size: 20px
   line-height:1.3em; 		
  font-weight: normal;
}

.smallText {
  font-size: 25px;
  line-height:1.2em; 		
  font-weight: normal;
  text-align:left !important;	
}

.smallBody {
  font-size: 21px;
  line-height:1.3em; 		
  font-weight: normal;
  text-align:left !important;	
}	
	
.innerHolder {width:50%; padding-left:40%; padding-bottom:300px;}	
	

.microText {
  font-size: 17px;
  line-height:1.2em; 		
  font-weight: normal;
}

/* 2. THE VISUAL TRACK (Layer 1) */
.scroll-track {
  position: fixed; /* Pinned to viewport */
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  will-change: transform; /* Performance hint */
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;	
    z-index: 50; 
    pointer-events: none; /* CRITICAL: Lets clicks pass through to the scroll wrapper */
}	

.scroll-item, 
#target-section-2 {
    pointer-events: none !important; 
}

.rollLink, 
.popItem,
.popItem2,
.prevButton, 
.nextButton,
a {
    pointer-events: auto !important; /* Catches the mouse */
    cursor: pointer;
    position: relative;
    z-index: 60; /* Must be higher than scroll-track */
}

.scroll-item {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontal-scroll-wrapper {
  position: absolute; /* Overlay */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Enable vertical scroll */
  overflow-x: hidden;
  z-index: 10;
  pointer-events:auto !important;	
}

.scroll-spacer {
  position: relative;
  width: 1px;
  pointer-events:auto !important;	 /* Let clicks pass through if needed */
}



.navContain {
  display:none;	
  position: fixed;
  bottom: 70px; /* Or top: 30px */
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.pillGroup {
  position: relative;
  display: inline-flex;
  background: #ecece5;
  border-radius: 100px;
  padding: 4px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.pill-highlight {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  background: #111;
  border-radius: 100px;
  z-index: 1;
  width: 0;
  pointer-events: none;
  transform: translateZ(0); /* Triggers GPU */
  will-change: transform, width; /* Hints browser to optimize these properties */
  backface-visibility: hidden; /* Prevents micro-jitter */	
}

.pillMenu__item {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  color: #666;
  padding: 6px 12px;
  font-family: "Romain";	
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s ease;
  min-width: 60px;
}

.pillMenu__item.is-active {
  color: #ecece5;
}


.slides-container {
  isolation: isolate;
  z-index: 1; 
  position: absolute;
  top:0;
  left:0;
  display: flex;
  flex: 1;
  height:100dvh;
  width:50vw;
  align-items: start;
  will-change:transform;
  overflow:hidden !important;	
  -webkit-backface-visibility: hidden;
	transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
transform: translate3d(0,0,0);
}


.slide {
  position: absolute;
  display: flex;
  align-items: start;
  justify-content: center;
  height:100dvh;
  width: 50vw;
  background:#ecece5;
  overflow: hidden; /* Recommended for parallax */
  will-change: transform;
  transform: translate3d(0,0,0);	
}
.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;

/* Force a permanent 3D layer that cannot be optimized away */
  transform: translate3d(0, 0, 1px) rotate(0.0001deg);
  -webkit-transform: translate3d(0, 0, 1px) rotate(0.0001deg);
  
  /* Keeps the alpha-blending engine locked in the "ON" position */
  opacity: 0.9999; 
  
  /* Crucial: prevents the browser from trying to "clip" the blend 
     during the move which causes that fragmented look */
  contain: paint; 
  
  /* Force hardware acceleration even when static */
  will-change: transform, opacity;
}


.slide video {

width:auto; height:90vh; max-width:100vw; object-fit:cover; mix-blend-mode:lighten;

}	
	
.prevButton{
  position:absolute;
  left:0;
  top:0;
  width:10vw;
  height:100%;
  opacity:0;
  z-index:10;
  cursor:pointer;
}

.nextButton{
   position:absolute;
  right:0;
   top:0;
  width:10vw; 
  height:100%;
  opacity:0;
  z-index:10;
  cursor:pointer;
}

.captioner1 {
	display:none !important;
}



/* --- 1. The Grid Container --- */
.caroDetails {
    position: absolute;
    bottom: 50px;
    left: 2vw;
    width: 50%;
    
    /* THE FIX: Use Grid instead of Flex */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split screen exactly in half */
    gap: 15px;                      /* The visual space between Title and Counter */
    align-items: center;            /* Vertically align center */

    z-index: 1000;
    pointer-events: none;

    /* Typography */
    font-family: "Romain", sans-serif;
    font-size: 1.25vw;
    line-height: 1.3em;
    font-weight: normal;
	opacity:.2;
}

/* --- 2. Title (Left Column, Aligned Right) --- */
.captionTitle {
    justify-self: end;   /* Pushes the element to the right edge of its cell */
    text-align: right;   /* Ensures text alignment matches */
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    will-change: height, width;
}

/* --- 3. Counter (Right Column, Aligned Left) --- */
.captionName {
    justify-self: start; /* Pushes the element to the left edge of its cell */
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* --- 4. Ticker Mechanics (Tight Spacing Preserved) --- */
.ticker-wrap {
    display: flex;
    height: 1.3em;
    overflow: hidden;
    line-height: 1.3em;
}

.ticker-digit-column {
    position: relative;
    width: 0.6em;        /* Keep the tight spacing */
    height: 100%;
    overflow: hidden;
    display: inline-block;
}

.ticker-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.ticker-num {
    height: 1.3em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caroDetails h3, .ticker-total {
    font-size: 1.25vw;
    line-height: 1.3em;
    font-weight: normal;
    margin: 0 2px;
}

.counter-inner {
    display: flex;
    align-items: center;
    gap: 0px;             /* Space between the ticker numbers and the dash */
    margin-left: 0px;     /* Nudge the whole thing right */
    transform: translateY(0px); /* Nudge the whole thing up/down */
}

.counter-inner h3 {
    margin: 0 4px; /* Adjust spacing around the dash specifically */
}




#side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 40vw;
    height: 100vh;
    background: #ecece5;
    z-index: 999999; /* Higher than everything else */
    padding: 50px;
    box-shadow: -10px 0 50px rgba(0,0,0,0.2);
	will-change: transform;
	overflow-y:scroll;
    /* GSAP will control the transform and visibility */
}

.drawer-close {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1000000; 
    cursor: pointer !important;
    pointer-events: all !important;
    padding: 10px 20px;
    border: none;
}

.moduleOpen {
    cursor: pointer !important;
    pointer-events: all !important; /* Forces clickability */
}



.roll {
  display: inline-block;
  height: 1.2em;
  line-height: 1.2em;
  overflow: hidden;
  vertical-align: bottom; /* Aligns text visually within the pill */
}

.roll__stack {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.roll__stack,
.secStag {
  will-change: transform, opacity;
}

.roll__stack > span {
  display: block;
  white-space: nowrap;
  line-height: 1.2em;
  height: 1.2em;       /* Must match the .roll container height */
}



.roll-link2 {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  padding: 0; 
  background-color: transparent; 
  border: 0; 
  outline: none;
}

.roll-link2:hover,
.roll-link2:focus {
  border-color: none;
  outline: none;
}



/* The Global Close Button */
.global-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999; /* Beats everything */
    cursor: pointer;
}

/* Main drawer wrapper - NO SCROLLING HERE */
.dynamic-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 65vw; 
    height: 100dvh;
    background-color: #ecece5;
    visibility: hidden;
    overflow: hidden; 
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* The scrollable content area */
.drawer-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto; 
    padding-top: 0px; /* Space for the close button */
}


.phoneMenu {display:none;}
.basedDiv {left:0; top:0; position:absolute; height:100%; width:100%; display:flex; align-items:end; justify-content:flex-end; pointer-events:none;}

.basedDiv2 {display:none;}

.phoneScroller{display:none;}




@media only screen and (max-height: 1000px) {}




	
@media only screen and (max-width: 800px) {
  
  /* Kill the scroll lock on both html and body */
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    min-height: 100svh !important; /* Changed from height to min-height */
    height: auto !important;       /* Allows the document to grow naturally */
    position: relative;
  }
	
		
.hide-advisory-mobile {
    opacity: 0; 
    visibility: hidden;
  }
	
	

.smallText {
  font-size: 25px;
  line-height:1.2em; 		
  font-weight: normal;
  text-align:left !important;	
}	

	
.smallBody {
  font-size: 15px;
  line-height:1.2em; 		
  font-weight: normal;
  text-align:left !important;	
}	
	
.innerHolder {width:60%; padding-left:30%; padding-bottom:300px;}	
	
	
  /* Make sure the container is actually visible and not fighting the body */
  .phoneScroller {
    display: block !important; 
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible !important; 
    padding-bottom: 5vh;
    z-index: 1000;   
  }

  .phoneMain {
    position: relative;
    height: 100svh; 
    width: 100%; 
  }

  .phoneMenu {
    display: flex !important; 
    position: fixed;
    top: 0; 
    height: 100dvh;
    width: 100%;
    z-index: 0;   
  }


	
.basedDiv {display:none;}	
	
.basedDiv2 {z-index:100000; left:0; padding-left:20px; bottom:15px; height:auto; position:fixed; display:flex; align-items:end; justify-content:flex-start; pointer-events:none;}
	
.microText {
  font-size: 10px;
  line-height:1.2em; 		
  font-weight: normal;
}
	
	
.dynamic-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 95vw; 
    height: 100dvh;
    background-color: #ecece5;
    visibility: hidden;
    overflow: hidden; 
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}	
	
.drawer-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Crucial for smooth momentum scrolling on iOS */
    overscroll-behavior-y: contain; /* Traps the scroll inside the drawer */
    will-change: transform; /* Promotes the element to its own composite layer */
}
.scroll-track {display:none;}
.horizontal-scroll-wrapper {display:none;}	
	
	
h1 {
  font-size: 23vw;
  line-height:.8em;
  letter-spacing:-.04em;	
  font-weight: normal;
}
	
.headerAlt {
  font-size: 17vw;
  line-height:.8em;
  letter-spacing:-.04em;	
  font-weight: normal;
}	

h2 {
  font-size: 2.5vw;
   line-height:1.3em; 		
  font-weight: normal;
}

h3 {
  font-size: 1.25vw;
   line-height:1.3em; 		
  font-weight: normal;
}
	
	
	
	
	
.slides-container {
  isolation: isolate;
  z-index: 1; 
  position: absolute;
  top:0;
  left:0;
  display: flex;
  flex: 1;
  height:100svh;
  width:80vw;
  align-items: start;
  will-change:transform;
  overflow:hidden !important;	
  -webkit-backface-visibility: hidden;
	transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
transform: translate3d(0,0,0);
}


.slide {
  position: absolute;
  display: flex;
  align-items: start;
  justify-content: center;
  height:100svh;
  width: 80vw;
  background:#ecece5;
  overflow: hidden; /* Recommended for parallax */
  will-change: transform;
  transform: translate3d(0,0,0);	
}
.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;

/* Force a permanent 3D layer that cannot be optimized away */
  transform: translate3d(0, 0, 1px) rotate(0.0001deg);
  -webkit-transform: translate3d(0, 0, 1px) rotate(0.0001deg);
  
  /* Keeps the alpha-blending engine locked in the "ON" position */
  opacity: 0.9999; 
  
  /* Crucial: prevents the browser from trying to "clip" the blend 
     during the move which causes that fragmented look */
  contain: paint; 
  
  /* Force hardware acceleration even when static */
  will-change: transform, opacity;
}	

	
}









@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) {
	
	
	
	
	
}


*:focus {
outline: 0;
outline: none;
}

*{      
-webkit-tap-highlight-color: transparent;
 }	 