@charset "UTF-8";
/* CSS Document */

/* -----------------------------
   Base
------------------------------ */
@font-face {
  font-family: 'Editors Note';
  src: url('../fonts/editors_note-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Ensures text is visible while font loads */
}

* {
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  background-color: #fff9ef;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 200;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #1D1A17;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
}

/* Preload all hover images */
body::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
 /* background:
    url("../images/social/instagram_hover.svg") no-repeat -9999px -9999px,
    url("../images/social/linkedin_hover.svg") no-repeat -9999px -9999px; change these when you get to doing social hovers*/
}

/* Links */
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: #1D1A17;
}

a:hover {
  text-decoration: none;
  color: #BAB9AF;
}

/* Media */
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}

/* -----------------------------
   16-column layout grid
------------------------------ */

.layoutgrid {
  width: 100%;
  min-height: 100vh;
  display: grid;

  /* 16 equal columns */
  grid-template-columns: repeat(16, minmax(0, 1fr));

  /* Rows will auto-create as you add sections */
  grid-auto-rows: min-content;

  margin: 0;
  padding: 0;
	
	/*Make grid visible */
	background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: calc(100% / 16) 100%, 100% calc(100% / 12);
	/*End make grid visible */
}

/* Optional: handy utility for spanning */
.col-span-16 { grid-column: 1 / -1; }




/* =========================
   Block 1: Grid-anchored nav + empty hero
   ========================= */

/* Header wrapper sits in the grid flow */
.block1-nav {
  position: relative;
  width: 100%;
  z-index: 99997;
}

/* Fixed top bar */
.block1-nav__bar {
  position: fixed;
  top: 0;
  left: 6.25vw;
  right: 6.25vw;
  height: 80px; /* adjust if you want taller */
  z-index: 100000000;

  display: block;

  transform: translateY(0);
  transition: transform 520ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

/* Hide on scroll */
.block1-nav__bar.is-hidden {
  transform: translateY(-110%);
}

/* Keep burger in sync with the bar hide (you’re toggling .is-hidden in JS) */
#burger-menu.is-hidden {
  transform: translateY(-110%);
}

/* Inner layout: left wordmark, centred logo, right links */
.block1-nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Wordmark left */
.block1-nav__wordmark {
  justify-self: start;
}

.block1-nav__wordmark img {
  height: 22px;
  width: auto;
}

/* Centre logo */
.block1-nav__centrelogo {
  justify-self: center;
}

.block1-nav__centrelogo img {
  height: 26px;
  width: auto;
}

/* Desktop links container sits right */
.block1-nav__links {
  justify-self: end;
  display: flex;

  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1;
  white-space: nowrap;
}

/* UL is the horizontal row */
.block1-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);

  margin: 0;
  padding: 0;
  list-style: none;
}

/* LI reset + nuke markers (Safari-proof) */
.block1-nav__list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.block1-nav__list > li::marker {
  content: "";
}

/* Links inherit your global link styling */
.block1-nav__list a {
  display: inline-block;
}



/* Desktop: hide burger + overlay */
@media (min-width: 901px) {
  #burger-menu,
  .overlay-menu-background {
    display: none !important;
  }
}

/* Mobile: hide links, show burger */
@media (max-width: 900px) {
  .block1-nav__links {
    display: none;
  }

  #burger-menu {
    display: block !important;
    z-index: 1000000;
  }
}



/* =========================
   Overlay menu styling (fade in + fade out properly)
   ========================= */

.overlay-menu-background{
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: block;
  background: #1d1a17;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;

  /* fade opacity, hide visibility AFTER fade-out */
  transition:
    opacity 0.5s ease-in-out,
    visibility 0s linear 0.5s;
}

.overlay-menu-background.active{
  opacity: 1;
  pointer-events: auto;
  visibility: visible;

  /* visibility becomes immediate on open */
  transition:
    opacity 0.5s ease-in-out,
    visibility 0s linear 0s;
}



/* =========================
   OVERLAY MENU TEXT SIZE + COLOUR + FONT
   ========================= */

.menu-options {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;

  /* restore scale */
  font-size: clamp(32px, 9vw, 72px);
  line-height: 1.2;
}

.menu-options li {
  margin: 0.4em 0;
}

.menu-options a {
  color: #fff9ef;      /* warm off-white */
  text-decoration: none;
  display: inline-block;
}

.menu-options a:hover {
  color: #BAB9AF;
  text-decoration: none;
}

.menu-text {
  height: 100%;
  display: grid;
  place-items: center;
  font-family: bebas-neue-pro, sans-serif;
}


/* =========================
   LINE REVEAL (delayed + staggered)
   ========================= */

/* mask */
.overlay-menu-background .menu-options .line {
  overflow: hidden;
}

/* hidden state */
.menu-options .line-inner {
  display: inline-block;
  transform: translateY(-110%);
  will-change: transform;
}

/* animate ONLY when overlay is active */
.overlay-menu-background.active .menu-options .line-inner {
  transform: translateY(0);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* delay until AFTER overlay fade, then stagger */
.overlay-menu-background.active .menu-options li:nth-child(1) .line-inner { transition-delay: 0.30s; }
.overlay-menu-background.active .menu-options li:nth-child(2) .line-inner { transition-delay: 0.40s; }
.overlay-menu-background.active .menu-options li:nth-child(3) .line-inner { transition-delay: 0.50s; }
.overlay-menu-background.active .menu-options li:nth-child(4) .line-inner { transition-delay: 0.60s; }
.overlay-menu-background.active .menu-options li:nth-child(5) .line-inner { transition-delay: 0.70s; }



/* =========================
   Burger CSS
   ========================= */

/*===========================BURGER MENU=======================*/
#burger-menu {
          
	      width: 2em;
          height:3em;

          /* this line centres it vertically in the top bar */
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);

          background-color: transparent;
          z-index:999999;

        
          transition: .5s ease-in-out;
          cursor: pointer;

          right: 0;
	      mix-blend-mode: difference;
}

#burger-menu span {
              display: block;
              position: absolute;
              height: 1.5px;
              width: 100%;
              background: #1d1a17;
              opacity: 1;
              left: 0;
              -webkit-transform: rotate(0deg);
              -moz-transform: rotate(0deg);
              -o-transform: rotate(0deg);
              transform: rotate(0deg);
              -webkit-transition: .25s ease-in-out;
              -moz-transition: .25s ease-in-out;
              -o-transition: .25s ease-in-out;
              transition: .25s ease-in-out;
}

#burger-menu:focus { outline: none; }

/* Only apply hover effects on devices that actually support hover */
@media (hover: hover) and (pointer: fine) {
#burger-menu:hover span:first-child { width: 40px; }
#burger-menu:hover span:last-child { width: 20px; }
}

#burger-menu span:nth-child(1) {
   top: 50%;
  transform: translateY(-4px) rotate(0deg);
  transform-origin: left center;
}

#burger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(4px) rotate(0deg);
  transform-origin: left center;
}

#burger-menu.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 4px;
  width: 30px;
}

#burger-menu.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 4px;
  width: 30px;
}

#burger-menu.open span {
    background: #fff9ef;
}

/* When overlay is open: hide logos, darken bar */
body.fixed-position .block1-nav__wordmark,
body.fixed-position .block1-nav__centrelogo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.overlay-open .block1-nav__bar {
  background: #1d1a17;
}

/* scroll lock body when overlay menu is open */
body.fixed-position {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
/*=========================END BURGER MENU=====================*/


/*=========================SECTION 1: HERO =====================*/
/* Hero Container Setup */


/* Make room in the grid flow so content doesn't sit under the fixed bar */
.block1-hero {
  height: 100vh;
  /* pushes the hero down so the fixed nav doesn't overlap the top edge visually */
 padding-top: clamp(40px, 8vh, 320px);
	
}

.hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
	display: grid;
  grid-template-columns: repeat(16, 1fr);

}

/* Central Image Reveal */
.hero-image-wrapper {
  grid-column: 1 / span 16;
  grid-row: 1;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  
  display:flex;
  justify-content: center;
  align-items: end;
}

.hero-image-mask {
 justify-self: center;
 z-index: 2;
}

.hero-main-image {
 width: clamp(350px, 40vw, 500px);
  height: auto;
  object-fit: cover;
  transform: scale(1.1); /* Slight zoom for reveal effect */
}

/* Headline Typography */
.hero-headline {
  grid-column: 1 / span 16;
  grid-row: 1; /* Match the starting row of your image wrapper */
  z-index: 3;
  pointer-events: none;
 padding-top: clamp(40px, calc(25vw - 50px), 15vh);
  /* Align the text to the top of row 2, then push it down to clear the image padding */
  align-self: start; 
  
	
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-headline h1 {
  font-family: bebas-neue-pro, sans-serif; /* Matches your style */
  font-size: clamp(40px, 10vw, 150px);
  line-height: 0.9;
  margin: 0;
  display: flex;
  justify-content: space-between;
  padding-left: 20vw;
  padding-right: 15vw;
}

.hero-headline .line-2, .hero-headline  {
  justify-content: flex-end;
}

.hero-headline .line-1, .line-3  {
  padding: 0 15vw 0 20vw;
}

.hero-headline span {
  opacity: 0;
  display: inline-block;
}

/* Subtext & Typewriter */
.hero-image-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2vw;
  z-index: 2;
}

.hero-subtext {
  
  bottom: -2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-subtext-left {
  grid-column: 1 / span 6;
	
	text-align: right;
	 font-size: clamp(12px, 1vw, 14px);
	grid-row:1;
	align-self:end;
	padding-right: clamp(20px, calc(220px - 10vw), 100px);
}

.hero-subtext-right {
 grid-column: 11 / span 6;
  text-align: right;

	font-family: 'Editors Note', serif; 
  font-weight: normal;
  font-style: normal;
	 font-size: clamp(18px, 2vw, 30px);
	text-align: left;
grid-row:1;
	align-self:end;
padding-left: clamp(20px, calc(220px - 10vw), 100px);
	padding-bottom: 10vh;
	z-index:20;
}

.hero-scroll-indicator {
	padding-top: 5vh;
	grid-column: 1 / span 16;
	grid-row:2;
	justify-self:center;
	opacity:0;
	 font-size: clamp(12px, 1vw, 14px);
}

.typewriter {
  opacity:0; /* Controlled by GSAP TextPlugin or simple reveal */
}


.arrow-v {
  position: relative;
  width: 30px;      /* Width of the arrow */
  height: 15px;     /* Height of the arrow */
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

.arrow-v span {
  position: absolute;
  width: 15px;      /* Length of each side of the V */
  height: 1px;      /* Thickness of the line */
  background-color: #1D1A17; /* Matches your text color */
  display: block;
}

/* Rotate the left bar 45 degrees */
.left-bar {
  transform: rotate(45deg);
  transform-origin: right center;
  left: 0;
}

/* Rotate the right bar -45 degrees */
.right-bar {
  transform: rotate(-45deg);
  transform-origin: left center;
  right: 0;
}




/* =========================
   Shop Page Layout
   ========================= */

.shop-layout {
  display: grid;
  /* Inherits the 16-column layout from the parent .layoutgrid if nested, 
     but we redefine it here for the inner elements to align correctly */
  grid-template-columns: repeat(16, 1fr);
  width: 100%;
  padding-top: 120px; /* Adjust based on your nav height */
  min-height: 100vh;
}

/* Sidebar: Spans Columns 2, 3, and 4 */
.shop-sidebar {
  grid-column: 2 / span 3;
  padding-top: 20px;
}

.sidebar-title {
  font-family: bebas-neue-pro, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 0.8rem;
}

.sidebar-list a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

/* Content Area: Spans Columns 5 through 15 */
.shop-content-area {
  grid-column: 5 / span 11;
  padding: 20px;
  border-left: 1px solid rgba(29, 26, 23, 0.1); /* Optional separator */
}

.shop-placeholder {
  border: 1px dashed #BAB9AF;
  height: 400px;
  display: grid;
  place-items: center;
  color: #BAB9AF;
  text-transform: uppercase;
}








/*=========================PRODUCT GRID =====================*/



/* Container for the products within the 5-15 column span */
.product-grid {
    display: grid;
    /* Forces exactly 3 equal columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 20px; /* 40px vertical space, 20px horizontal */
    width: 100%;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps images perfectly square */
    background-color: #f4f4f4; /* Placeholder color */
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.product-info h3 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 5px 0;
}

.product-info .price {
    font-family: 'Editors Note', serif;
    font-size: 18px;
    margin: 0;
}

/* Mobile: Switch to 1 or 2 items per row */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*=========================MEDIA BELOW 1024PX =====================*/

@media (max-width: 1024px) {
  /* 1. Reset the parent H1 container for all lines */
	.hero-headline {
		padding-top: clamp(40px, calc(50vw - 50px), 20vh);
	}
	
	.hero-headline h1 {
    display: flex !important;
    justify-content: flex-start !important; /* Forces words to the left */
    padding-left: 5vw !important;           /* Replaces the 20vw/15vw */
    padding-right: 5vw !important;
    width: 100% !important;
	  font-size: clamp(55px, 15vw, 150px);
  }

  /* 2. Specific fix for Line 1 (DESIGN THAT GETS) */
  .hero-headline .line-1 {
    gap: 15px; /* Adds space so DESIGN and THAT GETS don't touch */
  }

  /* 3. Specific fix for Line 2 (UNDER) and Line 3 (YOUR SKIN) */
  /* This stops "UNDER" from being pushed off the right side */
  .hero-headline .line-2 {
    justify-content: flex-start !important;
  }
	
	.hero-headline .line-3 { justify-content: flex-end !important; }

  /* 4. Ensure spans are visible and side-by-side */
  .hero-headline span {
    opacity: 1; 
    position: relative;
    transform: none !important; /* Resets any GSAP slides if they glitch */
	  
  }
	
	.hero-image-wrapper {
    grid-column: 4 / span 10 !important; /* Spans 3 to 14 */
    width: 100% !important;
  }

	/* 5. Bigger image */
  .hero-main-image {
    width: 100% !important; /* Let it fill the 12-column span */
    max-width: none !important;
   max-height: 70vh !important; 
    object-fit: cover;
  }
	
	.hero-subtext-left {
    text-align:left;
		 padding-left: 5vw !important;   
  }
	
	.hero-subtext-right {
    text-align:right;
		 padding-right: 5vw !important;   
  }
	
	.hero-subtext-left, .hero-subtext-right  {
		visibility: hidden;
	}
	
}




