@font-face {
  font-family: "GT-Alpina-Standard-Light";
  font-weight: 100;
  src: url("/assets/fonts/GT-Alpina-Standard-Light.woff2") format("woff2");
}
@font-face {
  font-family: "GT-Flexa-Standard-Bold";
  font-weight: 800;
  src: url("/assets/fonts/GT-Flexa-Standard-Bold.woff2") format("woff2");
}

:root {
  --background-color: rgb(253, 253, 253);
  --GREY-LILA:rgb(45, 43, 50);
  --LILA: rgb(87,23,222);
  --LILA-OP: rgb(87,23,222,.85);
  --GREEN: rgb(73,99,108);
  --GREEN-OP: rgb(73,99,108,.85);
  --BROWN: rgb(120,89,0);
  --BROWN-OP: rgb(120,89,0,.85);
  --GREY: rgb(139, 146, 156);
  --GREY-OP: rgb(139, 146, 156,.85);
  /* --GREY: #49636c; */
  --indepth-background-color: rgb(41, 41, 41);
  --base-color:#1a1a1a;

  --ease: cubic-bezier(0.8, 0, 0.2, 1);
  --ease2: cubic-bezier(0.92, 0, 0.08, 1);

  --top-margin:55px;

  --grid-column-num:12;
  --gutter: 1.86vw;
  --m-space:.68rem;
  --label-spacing:140px;
  /* --label-spacing:calc(var(--gutter) * 3.8889); */
  --header-height: 8.838rem;

  --border-radius: 14px;

  --logo-size:5.6rem;
  --m-font:2.833rem;
  --s-reg:1.5rem;
  --s-bold:1.333rem;

  --column-width: calc((100vw - (var(--gutter) * 2) - (var(--grid-column-num) - 1) * var(--gutter)) / var(--grid-column-num));

  --transition-fast: 0.2s;
  --transition-medium: 0.4s;
  --transition-slow: 0.6s;
  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grey-lila{
  background-color: var(--GREY-LILA);
  color: white;
}
.lila{
  background-color: var(--LILA);
  color: white;
}
.green{
  background-color: var(--GREEN);
  color: white;
}
.brown{
  background-color: var(--BROWN);
  color: white;
}
.grey{
  background-color: var(--GREY);
  color: white;
  /* color: black; */
}
.lila .indepth-more-wrap{
background-color: var(--LILA-OP);
}
.green .indepth-more-wrap{
background-color: var(--GREEN-OP);
}
.brown .indepth-more-wrap{
background-color: var(--BROWN-OP);
}
.grey .indepth-more-wrap{
background-color: var(--GREY-OP);
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  list-style: none;
  margin: 0;
  outline: none;
  border: none;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
}
::selection {
  background-color: #2e2e2e;
  color: #c7c7c7;
}
a {
  color: inherit;
  font-family: inherit;
  font-size: var(--m-font);
}
a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;  /* Here's where it gets the larger size */
}
button{
  font-family: "GT-Flexa-Standard-Bold";
  color: inherit;
  font-size: inherit;
}
a:hover{
  text-decoration: underline;
}
html {

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 12px;

  height: 100%;

  /* ! Remove conflicting scroll settings */
  /* scroll-timeline: none; */
  /* scroll-snap-type: y proximity; */

  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-overscroll-behavior: none;

  touch-action: manipulation;
}

body {
  font-family: "GT-Alpina-Standard-Light";
  font-weight: normal;
  color: var(--base-color);
  background: var(--background-color);
  text-rendering: optimizeLegibility;
  height: 100%;

  /* perspective: 1px; */
}
body.noscroll {
  overflow: hidden;
  width: 100vw;
  padding-right: var(--scrollbar-width, 0px);
  /* pointer-events: none; */
  /* padding-right: 17px; Average scrollbar width - you can adjust this */
}
button{
  border: none;
  background: unset;
  cursor: pointer;
  color: inherit;

  touch-action: manipulation;
}
main{
  width: 100%;
  height: 100%;
}
/* *------ UTILS ------* */

.columnGrid{
  display: grid;
  grid-template-columns: repeat(var(--grid-column-num), 1fr);
  grid-column-gap: var(--gutter);
  width: 100%;
}
.gutter{
  padding: 0 var(--gutter);
}
.outro .columnGrid{
  height: 100%;
}
.outro .front-p-wrapper{
  top: var(--header-height);
  height: fit-content;
}
.front-p-wrapper{
  margin-top: calc(var(--header-height) / 2);
}
/* *------ INTRO ------* */

header{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}
nav{
  padding: 1rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}
nav.scrolled {
  background-color:var(--background-color);
}
nav.mobile{
  height: 100dvh;
  width: 100vw;
  /* background-color: var(--background-color); */
  flex-direction: column;
  justify-content: flex-start;
  /* padding: var(--gutter) var(--gutter) 0 var(--gutter); */
}
body.noscroll nav {
  padding-right: var(--scrollbar-width, 0px);
}
body.noscroll .indepth-header,
body.noscroll .indepth-wrapper #closeIndepth {
  right: calc(1rem + var(--scrollbar-width, 0px)); /* adjust based on your design */
}
nav.mobile ul{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  height: calc(100dvh - 56px - var(--header-height));
  /* padding-bottom: 56px; */
  display: none;
}
#menuBtn{
  height: 56px;
  text-align: left;
  width: fit-content;
  margin-left: var(--gutter);
}
nav.mobile ul button{
  width: 100%;
  height: 56px;
  border-bottom: 1px solid black;
}
.intro-footer .mobile{
  padding-bottom: 1px;
}
.spaceBetween{
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: var(--m-font);
  height: 56px;
}
nav.mobile .spaceBetween *{
  margin-top: auto;
  margin-bottom: auto;
}

.navitem{
  opacity: 1;
  /* transform: translateY(10px); */
  /* animation: fadeUp 0.3s ease-out forwards; */
}

.logo{
  opacity: 1;
  /* transform: translateY(100px);
  animation: fadeUp 0.8s var(--easing-smooth) forwards;
  animation-delay: .5s; */
}

.navitem:nth-child(1) { animation-delay: 0s; }
.navitem:nth-child(2) { animation-delay: 0s; }
.navitem:nth-child(3) { animation-delay: 0s; }
/* Add more as needed */

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.intro-footer .spaceBetween div,
.intro-footer .spaceBetween svg{
  margin-top: auto;
  margin-bottom: auto;
}
section{
  width: 100%;
  min-height: 100dvh;
  height: 100dvh;
  scroll-snap-align: start;
  /* background-color: blue; */
}

#background-canvas{
  position: absolute;
  top: 0;
  left: 0;
  height:100vh;
  width:100vw;
  z-index: -1;
  /* Send behind other content */
  pointer-events: none;
  /* Let mouse clicks pass through */
}
.logo-wrapper{
  height: var(--header-height);
  position: relative;
  display: flex;
  overflow: hidden;
}

.intro-footer{
  position: absolute;
  bottom: 6.4rem;
  /* bottom:9.313rem; */
  bottom:149px;
  left: var(--gutter);
}
.footer-section{
  display: flex;
}
.home-background-wrapper{
  display: none;
  background-color: pink;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--gutter);
  --background-desktop: url('/assets/images/mockup_SILEX_landscape.jpg');
  --background-desktop: url('/assets/images/iphones blurry background 1.png');
  --background-desktop: url('/assets/images/LVRD_crop.jpg');
  --background-desktop: url('/assets/images/shirt.png');
  --background-desktop: url('/assets/images/LVRD_atkinson_dither.jpg');
  --background-desktop: url('/assets/images/LVRD_inverted_upscaled.jpg');
  --background-desktop: url('/assets/images/DSCF8355.jpg');
  --background-desktop: url('/assets/images/DSCF8365.jpg');
  background-image: var(--background-desktop);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-origin: border-box;
  opacity: 0.1;
  filter: invert(1) grayscale(1);
}
.label{
  font-family: "GT-Flexa-Standard-Bold";
  min-width: 140px;
  min-width: var(--label-spacing);
  font-size: var(--s-bold);
}
.info{
  font-size: var(--s-bold);
  display: flex;
  flex-direction: column;
}
.logo{
  width: 100%;
  position: absolute;
  font-family: "GT-Flexa-Standard-Bold";
  font-size: var(--logo-size);
  height: var(--logo-height);
  text-align: center;
  align-self: end;
  padding-bottom: 0.2rem;

  /* ! reset */
  letter-spacing: -0.02em;
  line-height: 3.8rem;
}
.footer-logo{
  position: absolute;
  bottom: var(--gutter);
  font-family: "GT-Flexa-Standard-Bold";
  font-size: var(--logo-size);
  letter-spacing: -0.02em;
  line-height: 3.8rem;
  height: var(--logo-height);
  left: var(--gutter);
}
.front-p-wrapper{
  grid-column: 2 / span 10;
}
.front-p-wrapper p{
  margin-bottom: 2rem;
  hyphens: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;

}
.footer-section {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}


section.visible .footer-section {
  opacity: 1;
  transform: translateY(0);
}

section.visible .front-p-wrapper p:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
section.visible .front-p-wrapper p:nth-child(2) {
  transition-delay: .2s;
  opacity: 1;
  transform: translateY(0);
}
section.visible .intro-footer :nth-child(1) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
section.visible .intro-footer :nth-child(2) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

p{
  font-size: var(--m-font);
}
li button, .nav-view-option{
  font-family: "GT-Flexa-Standard-Bold";
  text-align: left;
}
.nav-view-option{
  opacity: 0.3;
}
.nav-view-option:hover{
  opacity: 1;
}
.nav-view-option.active{
  opacity: 1;
}
.languages{
  display: flex;
  align-items: baseline;
  gap: var(--m-space);
}
.languageOption{
  opacity: 0.3;
}
.languageOption.active{
  opacity: 1;
}
ul{
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(var(--grid-column-num), 1fr);
  grid-column-gap: var(--gutter);
  width: 100%;
}
ul li{
  font-size: var(--s-bold);
}

#nav-home-desktop {
  grid-column-start: 1;
  grid-column-end: span 8;
}
#nav-projects{
  grid-column-start: 11;
}
#nav-about {
  grid-column-start: 12;
}
#nav-lg{
  grid-column-start: 12;
}

.nav-view-option:hover{
  cursor: pointer;
}

/* *------ PROJECT GRID ------* */

.project-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  min-height: 100dvh;
  padding: var(--top-margin) var(--gutter) var(--gutter) var(--gutter);
}
.project-grid-project{
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-image:var(--background-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: border-box;
  overflow: hidden;
}
.project-grid-bg {

  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--background-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: border-box;
  transition: transform 0.6s ease;
  z-index: 0;
}
.project-grid-project:hover .project-grid-bg {
  transform: scale(1.01);  /* smooth zoom on hover */
}

.project-grid-project:hover{
}
.project-grid-details{
  position: absolute;
  display: flex;
  flex-direction: column;
  color: white;
}
.project-grid .project-grid-details{
  bottom: calc(var(--gutter) * 0.8889);
  left: 0;
  padding: 0 calc(var(--gutter) * 0.5278);
}
.project-grid-info-section{
  display: flex;
  line-height: 1.4em;
}
.project-grid-info-section .info{
  width: 50%;
}
.project-grid-title{
  font-family: "GT-Flexa-Standard-Bold";
  font-size: var(--s-bold);
}

/* *------ PROJECT LIST ------* */

section.project-list-section {
  height: auto;
  min-height: 100dvh;
}

.project-list{
  display: none;
  flex-direction: column;
  gap: 6px;
  /* grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, minmax(calc(50vh - 40px))); Change from 2 to 4 rows  gap: 6px; */
  height: 100%;
  padding: var(--top-margin) var(--gutter) var(--gutter) var(--gutter);
}
.list-project{
  width: 100%;
  cursor: pointer;
  /* border: 1px solid black; */
  /* height: calc(50vh - var(--top-margin)/2 - var(--gutter)/2); */
  display: grid;
  grid-template-columns: repeat(var(--grid-column-num), 1fr);
  grid-column-gap: var(--gutter);
  height: calc((100dvh - var(--top-margin) - var(--gutter) - 6px) / 2);
}
.list-project:nth-child(1) {
  order: 1;
}

.list-project:nth-child(4) {
  order: 2;
}
.list-project:nth-child(2) {
  order: 3;
}

.list-project:nth-child(4) {
  order: 4;
}


.left{
  grid-column: 1 / span 5;
  margin-right: calc(-1 * (var(--gutter)));
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-origin: border-box;
}
.right{
  grid-column-start: 6;
  height: 100%;
  grid-column-end: -1;
  padding: 0 calc(var(--gutter) * 0.6111) var(--gutter) calc(var(--gutter) * 0.6111);
  display: flex;
  justify-content: end;
  flex-direction: column;
}
.project-list-details{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(6px * 2);
  color: white;

}
.project-grid-title{
  grid-column: 1 / span 1;
}
.project-grid-labels{
  grid-column: 2 / span 1;
}

/* *------ INDEPTH VIEW ------* */
/* body.fullscreen-active main {
  transform: scale(0.99);
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
  transition: all .4s ease;
  }
body.noscroll nav {
  filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: all 0s ease;
}
main,nav{
    will-change: transform, opacity, filter;
    transition: all .4s ease;
} */
    /* Hide scrollbar for Chrome, Safari and Opera */
    .indepth-wrapper::-webkit-scrollbar {
      display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .indepth-wrapper {
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }
.indepth-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  /* display: none; */
  /* transform: translateY(100vh); */
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-behavior: unset;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  opacity: 0;
  /* Improved transition handling */
  transition: all .5s ease;
}

.indepth-wrapper.visible {
  pointer-events: all;
  /* display: block; */
  /* transform: translateY(0); */
  /* box-shadow: 0 0 50px rgba(0, 0, 0, 2); */
  /* background: pink; */
  transition: all .5s ease;
  opacity: 1;
}

/* body:has(.indepth-more-wrap.visible) .indepth-wrapper{
  background-color: pink;
} */

.fullBackgoundImage{
  width: 100%;
  height: 100%;
  background-image: var(--background-desktop);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-origin: border-box;
}




.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 100;
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  /* background-color: #00ff9f; */
  background-color: white;
}
.indepth-section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.indepth-title-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.indepth-title{
  position: absolute;
  font-family: "GT-Flexa-Standard-Bold";
  font-size: var(--logo-size);
  display: flex;
  flex-direction: column;
  text-align: center;
  /* ! reset */
  line-height: 5rem;
  padding-bottom: 18vh;
  letter-spacing: -0.02em;
}
.indepth-section .project-grid-details{
  bottom: var(--gutter);
}
.indepth-more-wrap{
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* Changed to 100vh for consistency */
  left: 0;
  z-index: 1100;
  /* Higher z-index to ensure it's above other content */
  background-color: rgba(33, 36, 41, 0.82);
  visibility: hidden;
  backdrop-filter: grayscale(1);
  opacity: 0;
  transition: opacity .25s ease;
  /* Added visibility transition */
  overflow-y: auto;
  /* Added to ensure content is scrollable */
}
.indepth-more-wrap.visible{
  visibility:visible;
  opacity: 1;
  /* z-index: 100; */
}
.indepth-grid{
  position: absolute;
  bottom: var(--gutter);
  left: calc((var(--column-width)) * 1 + var(--gutter) * 2);
  /* color: white; */
}
.indepth-grid-labels{
  /* grid-column-start: 2; */
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.indepth-label-wrap{
  display: flex;
  width: calc(var(--column-width) * 4 + var(--gutter) * 3);
  line-height: 1.5rem;
}
.indepth-grid .label{
  min-width: calc(var(--column-width) + var(--gutter));
}
.indepth-grid p{
  width: calc(var(--column-width) * 10);
  hyphens: auto;
  margin-left: calc(var(--column-width) + var(--gutter));
  margin-top: calc(var(--gutter) * 0.6111);
}
.sticky-nav-wrap{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: beige; */
  z-index: 1000;
}
.indepth-sticky-nav{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: var(--gutter);
  display: flex;
  justify-content: space-between;
  padding: 1rem var(--gutter) 0 var(--gutter);
  z-index: 10000;
  /* opacity: 1; */
}

.indepth-sticky-nav:has(+ .indepth-more-wrap.visible) .indepth-section-title,.indepth-sticky-nav:has(+ .indepth-more-wrap.visible) #closeIndepth{
color: white;
}


.moreInfoBtn{
  font-family: "GT-Alpina-Standard-Light";
  font-size: var(--s-reg);
  width: 100%;
  text-align: left;
}
.moreInfoBtn .desktop-text {
  font-family: "GT-Alpina-Standard-Light";
  font-size: var(--s-reg);
  display: inline;
}
.moreInfoBtn .mobile-text {
  display: none;
}
.indepth-section-title{
  font-family: "GT-Flexa-Standard-Bold";
  font-size: var(--s-bold);
  transition: all .1s ease;
}
.indepth-section-img-wrap{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.captionedImage{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 125vh;
  padding: 0 var(--gutter);
}
.img{
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: calc(var(--gutter) * 0.8889);
}
.video-landscape{
  width:  100%;
  border-radius: var(--border-radius);
  margin-bottom: calc(var(--gutter) * 0.8889);
}
.video-portrait{
  width:  100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: calc(var(--gutter) * 0.8889);
}

.imgMobile {
  /* width:  100%; */
  max-height: 70vh;
  height: auto;
  position: relative;
  border-radius: var(--border-radius);
  margin-bottom: calc(var(--gutter) * 0.8889);
  /* max-width: calc((125vh / 3) + var(--gutter) * 2); */
}

.imgMobile::before {
  content: "";
  display: block;
  padding-top: calc((68 / 31) * 100%); /* Maintains 31:68 ratio */
}

.imageCaption{
  font-family: "GT-Flexa-Standard-Bold";
  font-size: var(--s-bold);
}
.indepth-sections-wrap{
  position: relative;
  width: 100%;
  height: fit-content;
}
.indepth-section-img-wrap{
  display: flex;
}
.indepth-mobile-wrap{
  display: flex;
  gap: calc(var(--gutter) * 3.0556);
}

#closeIndepth {
  font-family: "GT-Alpina-Standard-Light";
position: fixed;
  cursor: pointer;
  font-size: 3.7rem;
  top: 1.3rem;
  right: var(--gutter);
  z-index: 10;
  width: 1.8rem;
  line-height: 1rem;
  text-align: center;
  transition:all .1s ease;
  touch-action: manipulation;

}

.color-black{
  color: black;
}
.color-white{
  color: white;
}
.desktop{
  display: block;
}
.mobile{
  display: none;
}
.more-title{
  display: none;
}
/* *------ MOBILE ------* */
@media (max-width: 1200px) {
  .project-grid-info-section .info{
    width: 100%;
  }
  .imgMobile{
    max-height: 55vw;
  }
}

@media (max-width: 860px) {
  :root{
    --grid-column-num: 4;
    --logo-size: 50px;
    --m-font: 22px;
    --s-bold: 22px;
    --s-reg: 24px;
    --label-spacing:86px;
    --border-radius:8px;

    --header-height: 88px;
    --header-height: clamp(56px, 10vh, 88px);
  }

  .navitem:nth-child(1) { animation-delay: 0.1s; }
  .navitem:nth-child(2) { animation-delay: .2s; }
  .navitem:nth-child(3) { animation-delay: .3s; }

  #background-canvas{
    display: none;
  }
  .mobile{
    display: flex;
  }
  .desktop{
    display: none !important;
  }
  .intro-footer{
    bottom: var(--header-height);
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* position: relative; */
    padding: 0 var(--gutter);
    left: 0;
  }

  p {
    font-size: var(--m-font)
  }
  .logo{
    /* z-index: 100; */
  }
  .logo-wrapper{
    height: var(--header-height);
  }
  .front-p-wrapper {
    grid-column: 2 / span 10;
  }

  .project-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 6px;
    padding: calc(56px + var(--gutter)) var(--gutter) var(--gutter) var(--gutter);
  }
  .project-grid-title{
    text-align: center;
  }
  .footer-section{
    flex-direction: column;
  }
  .project-grid-project{
    display: flex;
    justify-content: center;
    align-items: center;

    touch-action: manipulation;
  }


  .project-grid-info-section{
    display: none;
  }
  .project-grid-details{
    position: relative;
    margin: auto;
  }

  /* #nav-home-mobile{
    grid-column-start: 1;
    grid-column-end:3;
  } */
  #nav-home-desktop{
    grid-column-start: 1;
    grid-column-end:2;
  }
  #nav-projects {
    grid-column-start: 3;
  }
  #nav-about {
    grid-column-start: 4;
  }
  #nav-lg{
    grid-column-start: 4;
    display: none;
  }
  .outro{
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    /* background-color: pink; */
  }
  .outro .columnGrid{
    padding: 0 var(--gutter);
  }
  .intro .columnGrid{
    padding: 0 var(--gutter);
  }
  .intro-footer.mobile{
    width: 100%;
    left: 0;
    padding: 0 var(--gutter);
    bottom: var(--header-height);
    position: absolute;
  }
  .front-p-wrapper {
    grid-column: 1 / span 4;
  }
  .project-grid .project-grid-details {
    bottom: 0;
    left: 0;
  }
  /* * PROJECTS * */
  .indepth-title{
    /* line-height: 3.5rem; */
    padding: 0 var(--gutter);
  }
  .indepth-title :nth-child(2){
    display: none;
  }
  .indepth-grid-labels{
    margin: var(--gutter);
    border-bottom: 1px solid white;
    padding-bottom: 10px;
  }
  .indepth-label-wrap{
    line-height: unset;
    flex-direction: column;
  }
  .indepth-grid p {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: var(--gutter);
  }
  .indepth-grid{
    left: 0;
  }
  .indepth-title-wrapper {
    align-items: baseline;
    top: var(--header-height);
  }
  .indepth-mobile-wrap :nth-child(2), .indepth-mobile-wrap :nth-child(3){
    display: none;
  }
  .imgMobile{
    max-height: 76vh;
  }
  .captionedImage{
    padding: 0 var(--gutter);
  }
  .phone{
    pointer-events: none;
  }
  .phone > a{
    text-decoration:none; color:inherit;
  }
  .footer-section .info {
    font-size: var(--s-bold) !important;
    -webkit-text-size-adjust: none !important;
  }

  .indepth-section-title{
    display: none;
  }
  .moreInfoBtn.mobile{
  font-family: "GT-Alpina-Standard-Light";
  /* position: fixed; */
  cursor: pointer;
  font-size: 3.7rem;
  top: 0.4rem;
  z-index: 10;
  line-height: 1rem;
  text-align: center;
  touch-action: manipulation;
  left: -0.3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  opacity: 1;
  height: 2.5rem;
  width: 2.2rem;
  }
  .fullBackgoundImage{
    background-image: var(--background-mobile);
  }
  .project-grid-bg {
    background-image: var(--background-mobile);
  }
  #nav-mobile{
    background-color: unset;
    height: unset;
    padding-top: 0;
  }
  #nav-mobile.show{
    background-color: white;
    height: 100dvh;
  }
  .nav-mobile-top{
    margin-top: 14px;
  }
  .more-title{
    display: flex;
    border-bottom: 1px solid white;
    margin: 0 var(--gutter);
    padding-bottom: 10px;
    font-family: "GT-Alpina-Standard-Light";
  }
  .more-title div{
    font-size: var(--s-bold);
    font-family: "GT-Flexa-Standard-Bold";
  }
  .more-title :nth-child(2){
    display: none;
  }
  .indepth-wrapper{
    scroll-snap-type: block;
    overflow-y: scroll;
    scroll-behavior: auto;
  }
  .moreInfoBtn .desktop-text {
    display: none;
  }
  .moreInfoBtn .mobile-text {
    display: inline;
    font-family: "GT-Alpina-Standard-Light";
    /* position: fixed; */
    cursor: pointer;
    font-size: 3.7rem;
    top: 0.4rem;
    z-index: 10;
    line-height: 1rem;
    text-align: center;
    touch-action: manipulation;
    left: -0.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    opacity: 1;
    height: 2.5rem;
    width: 2.2rem;

  }
}