@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: #2e2d2d;
  color: #c2c2b8;
  margin: 0;
  padding: 0;
  height:auto !important;
  font-family: "AGB1", serif;
  overflow-x: hidden !important;  
  max-width: 100vw;
  line-height: 0px;
  touch-action: manipulation !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


@font-face {
  font-family: "AGB1";
  src: url("CircularStd-Light.otf")
    format("opentype");
}


* {
  box-sizing: border-box;
}


a {text-decoration:none; color: #c2c2b8; /*color:#ecece5;*/}

.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

::-webkit-scrollbar {
  display: none !important; 
  width: 0px !important;	
  opacity: 0 !important; 	
}

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




h1 {
	font-family: "AGB1", serif;
	font-size:1em;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.1em;
	text-transform:uppercase;
}

.smallType {
	font-family: "AGB1", serif;
	font-size:10px;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.3em;
	text-transform:uppercase;
}

.smallbodyType {
	font-family: "AGB1", serif;
	font-size:14px;
	line-height:1.4em;
	font-weight:300;
	letter-spacing:0;
	text-transform:none;
}

.smallLogo {
	font-family: "AGB1", serif;
	text-align:right;
	font-size:13px;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.2em;
	text-transform:uppercase;
}

.smallMenu {
	font-family: "AGB1", serif;
	text-align:right;
	font-size:13px;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.2em;
	text-transform:uppercase;
}


.headerType {
	font-family: "AGB1", serif;
	text-align:center;
	font-size:3vw;
	 color:#bfbfb2;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.2em;
	text-transform:uppercase;
}


.italic-title {
    font-style: italic;
    padding-right: 0.05em; 
    display: inline-block; 
}

.transition-fade {
    transition: .001s;
    opacity: 1;
	/*transition-delay: .3s;*/
}

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


.lazyload,
.lazyloading,
.lazyloaded {
    opacity: 0;
    visibility: hidden; /* autoAlpha in GSAP handles visibility */
}

.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
}



.mainHolder {
	position:sticky;
	top:0em;
	column-gap: 10px;
	row-gap: 0px;
	width:60vw;
	margin-left:30vw;
	justify-content:center; 
	align-content:center;
	display:flex;  
	flex-wrap:wrap;	
	z-index:1000;
	/*mix-blend-mode:exclusion;*/
	
}

.sticky-header {
    position:sticky;
	top: var(--upper-height, 0px);
	column-gap: 10px;
	row-gap: 0px;
	width:60vw;
	margin-left:30vw;
	justify-content:space-between; 
	align-content:center;
	display:flex;  
	flex-wrap:wrap;	
	z-index:1000;
	/*mix-blend-mode:exclusion;*/
}


.archiveList {width:60vw; margin-left:30vw;}

.archive-column1 {
width: 30%; display:flex; 
}

.archive-column2 {
width:70%; display:flex; 
}

.artist-column {
	width:40%;
}

.title-column {
	width:40%;
}

.entry-column {
	width:20%; display:flex;  justify-content:flex-end;
}

.section {
  height: auto; /* Or content-driven height */
}

.titleHolder {
position:relative; 	
width:98vw; 
margin-left:1vw;	
	/*mix-blend-mode:exclusion;*/
	}	


.media-entry {
  width: 20%; 
  cursor: pointer;
  /*transition: width 0.4s ease;*/
  position: relative;
}

.media-entry.is-expanded {
  width: 100% !important;
  z-index: 100;
}

.close-overlay {
  display: none;
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 85%; 
  z-index: 10;
  cursor: zoom-out;
}

.media-entry.is-expanded .close-overlay {
  display: block;
}



.slider-section {
    position: relative;
    width: 100vw;
	background:#010101; 
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust this to your desired carousel height */
    overflow: hidden;
	opacity:.5;
	mix-blend-mode:lighten;
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    visibility: hidden; 
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: opacity, visibility;
    -webkit-font-smoothing: antialiased;
}

.prev, 
.next {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40%;
    background-color: transparent; /* Makes the button background invisible */
    border: none;
    color: transparent; /* Hides the "prev" and "next" text */
    cursor: pointer;
    z-index: 10; /* Ensures the click zones sit ON TOP of the images */
}

/* Pin to the left */
.prev {
    left: 0;
}

/* Pin to the right */
.next {
    right: 0;
}



/* Make sure the controls sit nicely below the slider */
.slider-nav {
	position:absolute; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
	padding:3em;
	bottom:0;
	right:0;
	z-index: 100 !important;
}

.dots-container {
    display: flex;
    gap: 10px;
}

/* Styles for dynamically generated JS dots */
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(236, 236, 229, .2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.dot.active {
   background-color: rgba(236, 236, 229, 1);
}



.holderHolder {
    box-sizing: border-box;
    width: 91vw; /* or 85vw, as long as it identically matches the header's CSS */
    max-width: 1400px;
    margin: 0 auto; /* Centers the whole block */
}

.archive-holder {
    box-sizing: border-box;
    background: #2e2d2d;
    z-index: 200;
    position: relative;
    width: 100%;    
    min-height: 100vh; /* Your new height */
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(25px, 4vw, 25px); 
    
    align-content: start; /* Prevents rows from stretching */
}

/* 3. The Grid Item (Prevents the Grid Blowout) */
.press-item {
    position: relative; 
    width: 100%;
    min-width: 0; 
    background:#222;
    overflow: hidden; 
}

/* Force the initial hidden state to win the specificity battle */
.press-item img.lazyload,
.press-item img.lazyloading {
    opacity: 0;
    visibility: hidden;
}

.press-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; 
    object-fit: cover; 
    display: block; 
    /* Remove opacity: 0.6; we will let GSAP set the resting state */
    filter: brightness(.9) contrast(1.4);
    will-change: transform, opacity; 
    transform: translateZ(0); 
    backface-visibility: hidden; 
}



.insta-item {
    position: relative; 
    width: 100%;
    min-width: 0; 
    background:#222;
    overflow: hidden;  
}

/* Set the initial image opacity */
.insta-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4; 
    object-fit: cover; 
    display: block; 
    opacity: 1; 
    
    /* PERFORMANCE BOOSTERS */
    will-change: transform, opacity; /* Tells the browser what will animate */
    transform: translateZ(0); /* Forces GPU hardware acceleration */
    backface-visibility: hidden; /* Prevents jagged, pixelated edges during the scale */
}

/* 3. The Grid Item (Prevents the Grid Blowout) */
.grid-item {
    position: relative; 
    width: 100%;
    min-width: 0; 
    overflow: hidden; 
	background:#222;
}

/* Force the initial hidden state to win the specificity battle */
.grid-item img.lazyload,
.grid-item img.lazyloading {
    opacity: 0;
    visibility: hidden;
}

.grid-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; 
    object-fit: cover; 
    display: block; 
	opacity:.6;
    /* Remove opacity: 0.6; we will let GSAP set the resting state */
    
    will-change: transform, opacity; 
    transform: translateZ(0); 
    backface-visibility: hidden; 
}

/* Center the title and hide it initially */
.grid-item h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    
    /* We add translateZ(0) here alongside your centering logic for GPU acceleration */
    transform: translate(-50%, -50%) translateZ(0); 
    
    margin: 0;
    z-index: 10;
    opacity: 0; 
    text-align: center;
    width: 80%; 
    pointer-events: none; 
    
    /* PERFORMANCE BOOSTERS */
    will-change: transform, opacity;
    backface-visibility: hidden; /* Keeps text rendering sharp while moving */
}

.grid-item h3 a {
    font-family: "AGB1", serif;
	font-size:10px;
	line-height:1.7em;
	font-weight:300;
	letter-spacing:.3em;
	color: #c2c2b8;
	text-transform:uppercase;
}


.content-blocks-container {
   width: 91vw; max-width: 1400px; padding: 50px 0; display: flex; flex-direction: column; gap: 50px;
}

/* Two Column Layout */
.block-two-column {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; width: 100%; align-items: end;
}

/* One Column Layout */
.block-one-column {
    width: 100%;
}

/* Force the initial hidden state for GSAP */
.content-blocks-container img.lazyload,
.content-blocks-container img.lazyloading {
    opacity: 0;
    visibility: hidden;
}

.content-blocks-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    
    /* Performance boosters */
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.absoluteMenu {
  z-index: 1000; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100vw; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  
  /* --- THE BLUR EFFECT --- */
 /* backdrop-filter: blur(5px);          
 /* -webkit-backdrop-filter: blur(5px);  /* Safari support */
  
  will-change: background-color;
  transform: translateZ(0); 
}

.menuHolder {
  height: 150px; 
  width: 91vw; 
  max-width: 1400px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;

  /* --- NEW PERFORMANCE ADDITIONS --- */
  /*will-change: height;*/
  transform: translateZ(0);
}

.desktopMenu {display:flex; justify-content:flex-start; gap:30px;}
.mobileMenu {display:none; justify-content:flex-start; gap:15px;}


.mobileOpen {display:none;}
.mobileFilterOpen {display:none;}

.topMargin {margin-top:200px;}

.subContent {background:rgba(46, 45, 45, 1);}




.filter-dropdown-panel {
    z-index: 9999; /* Keeps it above the 1000 z-index of absoluteMenu */
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    
    /* Mirror absoluteMenu flex centering */
    display: flex; 
    align-items: center; 
    justify-content: center;
    
    background-color: rgba(46, 45, 45, 1); /* Or keep transparent if you prefer the blur! */
    
    /* Sliding animation start state + hardware acceleration */
    transform: translateY(-100%) translateZ(0); 
    will-change: transform;
}

/* This mirrors your .menuHolder */
.filter-inner {
    height: 150px; /* Match menuHolder starting height */
    width: 91vw; 
    max-width: 1400px; 
    
    /* Mirror menuHolder flex layout */
    display: flex; 
    align-items: center; 
    justify-content: space-between;

    /* Performance additions */
    transform: translateZ(0);
    /*will-change: height;*/
}

/* The inner list elements */
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; 
    gap: 30px; 
}

.filter-list h1, .filter-close h1 {
    margin: 0; 
}

.filter-list a {
    opacity: 0.2;
    transition: opacity 0.3s ease; /* Adds a smooth fade */
}

/* 2. Set the currently active category to 100% opacity */
.filter-list a.is-active {
    opacity: 1;
}

/* 3. (Optional but recommended) Bring them to full opacity when the user hovers over them */
.filter-list a:hover {
    opacity: 1;
}

.fixedHolder {
    box-sizing: border-box;
    width: 91vw;
    max-width: 1400px;
    margin: 0 auto; 
    position: fixed;
    bottom: 3vh;
    left: 0;   /* Anchors to the left */
    right: 0;  /* Anchors to the right */
    display: flex; 
    flex-direction: row; 
    align-items: flex-end; 
    justify-content: space-between;
}

.profileHolder {
    box-sizing: border-box;
    width: 91vw; /* or 85vw, as long as it identically matches the header's CSS */
    max-width: 1400px;
    margin: 0 auto; /* Centers the whole block */
	position:relative; 
	display:flex; flex-direction:column; align-items:center; justify-content:center;
	
}

.contactBox {display:flex; align-items:flex-end; box-sizing: border-box; position:relative; width:60%; padding-left:0%; flex-direction:row; gap:60px;}

 /*
  * 
  * 
  * MAINFRAME
  * 
  * 
  * 
  */ 
  

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

.hugeTypeIntro {
  opacity: 0;
	color:red;
  visibility: hidden; 
  font-family: "AGB1", serif;
  font-size:2.5em;
line-height:1.1em;
 	font-weight:300;
	letter-spacing:.2em;
	text-transform:uppercase;
}



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


@media only screen and (max-width: 800px) {
	
	
.hugeTypeIntro {
  opacity: 0;
  color: red;
  visibility: hidden; 
  font-family: "AGB1", serif;
  font-size: 20px;
  line-height: 1.1em;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap; /* Forces text to stay on a single line */
}
	
	.contactBox {display:flex; justify-content:flex-end; align-items:flex-start; box-sizing: border-box; position:relative; width:60%; padding-left:0%; flex-direction:column; gap:10px;}

	.filter-inner {display:none;}
	
.mobileFilterOpen {
  position: fixed; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  bottom: 0; 
  left: 0; 
  width: 100vw; 
  height: 100svh; 
  z-index: 20000; 
  background: rgba(46, 45, 45, .9); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  flex-direction: column; 
  gap: 40px;
  /* Required for GSAP autoAlpha to work correctly */
  opacity: 0;
  visibility: hidden;
}

/* Ensures the staggered upward slide animation works */
.mobileFilterItem {
  position: relative;
}	
	
.filter-list a, 
.mobileFilterOpen a {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* Active state */
.filter-list a.is-active, 
.mobileFilterOpen a.is-active {
    opacity: 1;
}

/* Hover state (Optional, but good for UX) */
.filter-list a:hover, 
.mobileFilterOpen a:hover {
    opacity: 1;
}	
	
.topMargin {margin-top:120px;}	
	
.mobileOpen {
  /* Your existing flexbox and styling */
  position: fixed; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  bottom: 0; 
  left: 0; 
  width: 100vw; 
  height: 100svh; 
  z-index: 20000; 
  background: rgba(46, 45, 45, .9); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  flex-direction: column; 
  gap: 40px;

  /* Added for GSAP autoAlpha to work */
  opacity: 0;
  visibility: hidden;
}

/* Ensure links are positioned for the GSAP 'y' transform to work */
.mobileItem {
  position: relative;
}
.content-blocks-container {
   width: 100vw; max-width: 1400px; padding: 0px 0; display: flex; flex-direction: column; gap: 20px;
}

/* Two Column Layout */
.block-two-column {
	 grid-template-columns: 1fr;
    width: 100%;
	gap:20px;
}

/* One Column Layout */
.block-one-column {
    width: 100%;
}	
	
	
.fixedHolder {
    box-sizing: border-box;
    width: 90vw;
    max-width: 1400px;
    margin: 0 auto; 
    position: fixed;
    bottom: 2vh;
    left: 0;   /* Anchors to the left */
    right: 0;  /* Anchors to the right */
    display: flex; 
    flex-direction: row; 
    align-items: flex-end; 
    justify-content: space-between;
}	
	
.holderHolder {
    box-sizing: border-box;
    width: 90vw; /* or 85vw, as long as it identically matches the header's CSS */
    max-width: 1400px;
    margin: 0 auto; /* Centers the whole block */
}	
	
.archive-holder {box-sizing: border-box; width:90vw; max-width:1400px; min-height: 100dvh; position:relative; gap:20px; display:grid; grid-template-columns: repeat(1, 1fr); align-content: start; align-items: end;}	
	
.menuHolder {height:10vh; width:90vw; max-width:1400px; display:flex; align-items:center; justify-content:space-between;}
	
	
.smallType {
	font-family: "AGB1", serif;
	font-size:10px;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.3em;
	text-transform:uppercase;
}

.smallLogo {
	font-family: "AGB1", serif;
	text-align:right;
	font-size:13px;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.175em;
	text-transform:uppercase;
}	
	
.smallMenu {
	font-family: "AGB1", serif;
	text-align:right;
	font-size:13px;
	line-height:1.1em;
	font-weight:300;
	color: #c2c2b8 !important;
	letter-spacing:.2em;
	text-transform:uppercase;
}	
	
.headerType {
	font-family: "AGB1", serif;
	text-align:center;
	font-size:4vw;
	 color:#bfbfb2;
	line-height:1.1em;
	font-weight:300;
	letter-spacing:.2em;
	text-transform:uppercase;
}	
	
.desktopMenu {display:none; justify-content:flex-start; gap:30px;}	
.mobileMenu {display:flex; justify-content:flex-start; gap:15px;}
	
	
.slider-section {
    position: relative;
    width: 100vw;
	background:#010101; 
	z-index:0;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 108vh; /* Adjust this to your desired carousel height */
    overflow: hidden;
	opacity:.5;
	mix-blend-mode:lighten;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hide all slides by default via CSS */
    opacity: 0; 
    visibility: hidden; 
}

/* Make sure the controls sit nicely below the slider */
.slider-nav {
	position:absolute; 
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
	padding:3em;
	bottom:0;
	right:0;
}

.dots-container {
    display: flex;
    gap: 10px;
}

/* Styles for dynamically generated JS dots */
.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(236, 236, 229, .2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.dot.active {
   background-color: rgba(236, 236, 229, 1);
}	

	
	
h1 {
	font-family: "AGB1", serif;
	font-size:.7em;
	line-height:1.1em;
	font-weight:300;
	text-transform:uppercase;
}
	

.italic-title {
    font-style: italic;
    padding-right: 0.1em; 
    display: inline-block; 
}	

.archiveList {width:98vw; margin-left:1vw;}	
	
.archive-column1 {
width: 15%;
}

.archive-column2 {
width:85%; display:flex; flex-wrap:wrap;
}	
	
.artist-column {
	width:45%; 
}

.title-column {
	width:55%; 
}

.entry-column {
	width:55%; margin-left:45%;  display:flex;  justify-content:flex-start;
}	
	
.titleHolder {
position:relative; 	
width:98vw; 
margin-left:1vw;	
	}	
	
.mainHolder {
	position:sticky;
	top:.5em;
	margin-left:1vw;
	column-gap: 10px;
	row-gap: 0px;
	width:98vw; 
	justify-content:space-between; 
	align-content:center;
	display:flex;  
	flex-wrap:wrap;	
	z-index:1000;
	
}
	
.sticky-header {
    position:sticky;
	top: var(--upper-height, 0px);
	column-gap: 10px;
	row-gap: 0px;
	width:98vw; 
	margin-left:1vw;
	justify-content:space-between; 
	align-content:center;
	display:flex;  
	flex-wrap:wrap;	
	z-index:1000;
}
	
	
}


@media only screen and (min-width: 480px) and (max-width: 932px) and (orientation: landscape) {
 
	h1 {
	font-family: "EB Garamond", serif;
	font-size:16px;
	line-height:1.1em;
	font-weight:300;
	/*color:#ecece5;*/
	/*background: #ecece5;*/
}	
	
}


@supports (-webkit-touch-callout: none) {
  a, button, [role="button"],
  input[type="button"], input[type="submit"], label {
    -webkit-tap-highlight-color: transparent; /* or rgba(0,0,0,0) */
  }

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

