/* Style
----------------------------------------------------------------------------- */


/* Section cover
----------------------------------------------------------------------------- */


.section.cover {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  transform: translateY(-15vh);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.33, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.33, 0, 0.2, 1) 0.25s;
  pointer-events: none;
  display: none;
}

.section.cover>.content {
  grid-column: 1 / -1;
  display: flex;
}

.section.cover h1 {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 40px;
  animation: welcome 1.5s ease-in-out;
}

@keyframes welcome {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body.is--loading {
  overflow: hidden;
  pointer-events: none;
}

body.is--loading .app-header,
body.is--loading .app-nav,
body.is--loading .app-aside .options .option {
  transition: opacity 1s cubic-bezier(0.33, 0, 0.2, 1) 0.75s;
}

body.is--loading .app-main {
  position: relative;
  transform: none;
  transition: transform 1.5s cubic-bezier(0.33, 0, 0.2, 1);
}

body.is--loading .section.cover {
  display: grid;
}

body.is--loading .section.work .hero-image figure {
  visibility: hidden;
}

body.cover--is--visible .app-main {
  transform: translateY(115vh);
}

body.cover--is--visible .section.cover {
  transform: translateY(-115vh);
  opacity: 1;
}

body.cover--is--visible .app-header,
body.cover--is--visible .app-nav,
body.cover--is--visible .app-aside .options .option {
  opacity: 0;
}



/* App header
----------------------------------------------------------------------------- */

.app-header {
  position: fixed;
  width: 100%;
  padding: 0 var(--grid--app-margin);
  /* background-color: rgb(0 0 0 / 0.6); */
  /* -webkit-backdrop-filter: blur(12px); */
  /* backdrop-filter: blur(12px); */
  z-index: 100;
  -webkit-user-select: none;
  user-select: none;
}

.app-header>.content {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-header .brand {
  padding: 12px 0;
}

.app-header .brand:hover {
  cursor: default;
}

.app-header .brand h3 {
  margin-left: var(--font--margin-left);
  font-size: var(--font--size-medium);
  line-height: 1;
}

.app-header .brand h3 span:nth-child(n+2) {
  margin-left: var(--font--margin-left);
  margin-left: -0.035em;
  opacity: 0;
  transition: margin-left 0.3s ease-in, opacity 0.3s ease-in;
}

.app-header .brand:hover h3 span:nth-child(n+2) {
  margin-left: 0;
  opacity: 1;
  transition: margin-left 0.3s ease-out, opacity 0.3s ease-out;
}

/* time of app-heder */

.app-header .brand:hover h3 span:nth-child(2) {
  transition-delay: 0.00s;
}

.app-header .brand:hover h3 span:nth-child(3) {
  transition-delay: 0.01;
}

.app-header .brand:hover h3 span:nth-child(4) {
  transition-delay: 0.02s;
}

.app-header .brand:hover h3 span:nth-child(5) {
  transition-delay: 0.03s;
}

.app-header .brand:hover h3 span:nth-child(6) {
  transition-delay: 0.04s;
}

.app-header .brand:hover h3 span:nth-child(7) {
  transition-delay: 0.05s;
}

.app-header .brand:hover h3 span:nth-child(8) {
  transition-delay: 0.06s;
}

.app-header .brand:hover h3 span:nth-child(9) {
  transition-delay: 0.07s;
}

.app-header .brand:hover h3 span:nth-child(10) {
  transition-delay: 0.08s;
}

.app-header .brand:hover h3 span:nth-child(11) {
  transition-delay: 0.09s;
}

.app-header .brand:hover h3 span:nth-child(12) {
  transition-delay: 0.10s;
}

.app-header .brand:hover h3 span:nth-child(13) {
  transition-delay: 0.11s;
}

.app-header .brand h3 span:nth-child(2) {
  transition-delay: 0.11s;
}

.app-header .brand h3 span:nth-child(3) {
  transition-delay: 0.10s;
}

.app-header .brand h3 span:nth-child(4) {
  transition-delay: 0.09s;
}

.app-header .brand h3 span:nth-child(5) {
  transition-delay: 0.08s;
}

.app-header .brand h3 span:nth-child(6) {
  transition-delay: 0.07s;
}

.app-header .brand h3 span:nth-child(7) {
  transition-delay: 0.06s;
}

.app-header .brand h3 span:nth-child(8) {
  transition-delay: 0.05s;
}

.app-header .brand h3 span:nth-child(9) {
  transition-delay: 0.04s;
}

.app-header .brand h3 span:nth-child(10) {
  transition-delay: 0.03s;
}

.app-header .brand h3 span:nth-child(11) {
  transition-delay: 0.02s;
}

.app-header .brand h3 span:nth-child(12) {
  transition-delay: 0.01s;
}

.app-header .brand h3 span:nth-child(13) {
  transition-delay: 0.00s;
}

.app-header .actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-header .contact {
  display: flex;
  padding: 12px 0;
  font-size: var(--font--size-medium);
  line-height: 1;
  cursor: pointer;
}

.app-header .status {
  padding-right: 0.23em;
}

.app-header .status .content {
  display: flex;
  gap: 0.2em;
}

.app-header .status .text {
  color: var(--color--foreground--33);
  animation: sway-text 1.5s ease-in-out alternate infinite;
}

@keyframes sway-text {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0.15;
    transform: translateX(-8px);
  }
}

.app-header .status .arrow {
  color: var(--color--foreground--33);
  animation: sway-arrow 1.5s ease-in-out alternate infinite;
}

@keyframes sway-arrow {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0.15;
    transform: translateX(-16px);
  }
}


.app-header .navigation {
  display: none;
  padding: 12px;
  margin-right: -12px;
  border-radius: 24px;
}

.app-header .navigation:hover {
  cursor: pointer;
}

.app-header .navigation .icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-header .navigation .line {
  position: absolute;
}

.app-header .navigation .line .content {
  width: 24px;
  height: 2px;
  background-color: var(--color--foreground--100);
}

.app-header .navigation .line:nth-child(1) {
  transform: rotate(0);
  transition: transform 0.1s ease-in;
}

.app-header .navigation .line:nth-child(2) {
  transform: rotate(0);
  transition: transform 0.1s ease-in;
}

.app-header .navigation .line:nth-child(1) .content {
  transform: translateY(-4px);
  transition: transform 0.1s ease-out 0.1s;
}

.app-header .navigation .line:nth-child(2) .content {
  transform: translateY(4px);
  transition: transform 0.1s ease-out 0.1s;
}

body.mobile-nav--is--visible .app-header .navigation .line:nth-child(1) {
  transform: rotate(45deg);
  transition: transform 0.1s ease-out 0.1s;
}

body.mobile-nav--is--visible .app-header .navigation .line:nth-child(2) {
  transform: rotate(-45deg);
  transition: transform 0.1s ease-out 0.1s;
}

body.mobile-nav--is--visible .app-header .navigation .line:nth-child(1) .content {
  transform: translateY(0);
  transition: transform 0.1s ease-in;
}

body.mobile-nav--is--visible .app-header .navigation .line:nth-child(2) .content {
  transform: translateY(0);
  transition: transform 0.1s ease-in;
}


/* Nigga section
----------------------------------------------------------------------------- */


/* App nav
----------------------------------------------------------------------------- */

.app-nav {
  position: fixed;
  top: var(--grid--app-xheight);
  /* Problematic MF */
  left: var(--grid--app-margin);
  z-index: 100;
  -webkit-user-select: none;
  user-select: none;
}

.app-nav .content:hover {
  cursor: pointer;
}

.app-nav .item {
  font-size: var(--font--size-regular);
  padding: 1px 0;
  color: var(--color--foreground--33);
}

.app-nav .item:hover {
  color: var(--color--foreground--100);
  cursor: pointer;
}

.app-nav .item.is--active {
  color: var(--color--foreground--100);
}


/* Values section h1 hover effect
----------------------------------------------------------------------------- */

.section.values .title h1 {
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.section.values .title h1:hover {
  transform: scale(1.05);
  opacity: 0.9;
  color: var(--color--primary);
}

/* App aside -
----------------------------------------------------------------------------- */

.app-aside {
  position: fixed;
  left: calc(var(--grid--app-margin) - 12px);
  bottom: calc(var(--grid--app-margin) - 12px);
  z-index: 100;
}

.app-aside .options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-aside .option {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: var(--color--foreground--5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.app-aside .option:hover {
  cursor: pointer;
  background-color: var(--color--foreground--15);
}

.app-aside .option:active {
  background-color: var(--color--foreground--20);
}

.app-aside .option svg path {
  fill: var(--color--foreground--100);
}

.app-aside .option.grid {
  display: flex;
  justify-content: center;
}

.app-aside .option.grid .content {
  display: flex;
  align-items: center;
}

.app-aside .option.theme {
  position: relative;
  transition: height 0.3s ease 0.62s;
}

.app-aside .option.theme .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 0;
  transition: bottom 0.5s ease-in-out;
}

.app-aside .option.theme .slider-container {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  transform: rotate(-90deg);
  transform-origin: top left;
  position: absolute;
  bottom: -48px;
  pointer-events: none;
  transition: width 0.3s ease 0.62s;
}

.app-aside .option.theme .dots {
  position: absolute;
  width: 100%;
  padding: 22px;
  display: flex;
  justify-content: space-between;
}

.app-aside .option.theme .dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  transform: translateX(-16px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.app-aside .option.theme .slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 48px;
  outline: none;
  position: absolute;
  background-color: var(--color--background--0);
  cursor: pointer;
}

.app-aside .option.theme .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  cursor: pointer;
}

.app-aside .option.theme .slider::-moz-range-thumb {
  background: transparent;
  box-shadow: none;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  cursor: pointer;
}


body.theme-slider--is--visible .app-aside .option.theme {
  height: 368px;
  transition: height 0.3s ease;
}

body.theme-slider--is--visible .app-aside .option.theme .icon-container {
  transition: bottom 0.3s ease;
  transition-delay: 0s !important;
}

body.theme-slider--is--visible .app-aside .option.theme .slider-container {
  width: 368px;
  transition: width 0.3s ease;
  pointer-events: auto;
}

body.theme-slider--is--visible .app-aside .option.theme .dot {
  transform: none;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.theme-slider--is--visible.theme--16 .app-aside .option.theme .icon-container {
  bottom: 320px;
}

body.theme-slider--is--visible.theme--15 .app-aside .option.theme .icon-container {
  bottom: 300px;
}

body.theme-slider--is--visible.theme--14 .app-aside .option.theme .icon-container {
  bottom: 280px;
}

body.theme-slider--is--visible.theme--13 .app-aside .option.theme .icon-container {
  bottom: 260px;
}

body.theme-slider--is--visible.theme--12 .app-aside .option.theme .icon-container {
  bottom: 240px;
}

body.theme-slider--is--visible.theme--11 .app-aside .option.theme .icon-container {
  bottom: 220px;
}

body.theme-slider--is--visible.theme--10 .app-aside .option.theme .icon-container {
  bottom: 200px;
}

body.theme-slider--is--visible.theme--09 .app-aside .option.theme .icon-container {
  bottom: 180px;
}

body.theme-slider--is--visible.theme--08 .app-aside .option.theme .icon-container {
  bottom: 160px;
}

body.theme-slider--is--visible.theme--07 .app-aside .option.theme .icon-container {
  bottom: 140px;
}

body.theme-slider--is--visible.theme--06 .app-aside .option.theme .icon-container {
  bottom: 120px;
}

body.theme-slider--is--visible.theme--05 .app-aside .option.theme .icon-container {
  bottom: 100px;
}

body.theme-slider--is--visible.theme--04 .app-aside .option.theme .icon-container {
  bottom: 80px;
}

body.theme-slider--is--visible.theme--03 .app-aside .option.theme .icon-container {
  bottom: 60px;
}

body.theme-slider--is--visible.theme--02 .app-aside .option.theme .icon-container {
  bottom: 40px;
}

body.theme-slider--is--visible.theme--01 .app-aside .option.theme .icon-container {
  bottom: 20px;
}

body.theme-slider--is--visible.theme--00 .app-aside .option.theme .icon-container {
  bottom: 0;
}

body.theme--16 .app-aside .option.theme .icon-container {
  transition-delay: 0.00s;
}

body.theme--15 .app-aside .option.theme .icon-container {
  transition-delay: 0.02s;
}

body.theme--14 .app-aside .option.theme .icon-container {
  transition-delay: 0.04s;
}

body.theme--13 .app-aside .option.theme .icon-container {
  transition-delay: 0.06s;
}

body.theme--12 .app-aside .option.theme .icon-container {
  transition-delay: 0.08s;
}

body.theme--11 .app-aside .option.theme .icon-container {
  transition-delay: 0.10s;
}

body.theme--10 .app-aside .option.theme .icon-container {
  transition-delay: 0.12s;
}

body.theme--09 .app-aside .option.theme .icon-container {
  transition-delay: 0.14s;
}

body.theme--08 .app-aside .option.theme .icon-container {
  transition-delay: 0.16s;
}

body.theme--07 .app-aside .option.theme .icon-container {
  transition-delay: 0.18s;
}

body.theme--06 .app-aside .option.theme .icon-container {
  transition-delay: 0.20s;
}

body.theme--05 .app-aside .option.theme .icon-container {
  transition-delay: 0.22s;
}

body.theme--04 .app-aside .option.theme .icon-container {
  transition-delay: 0.24s;
}

body.theme--03 .app-aside .option.theme .icon-container {
  transition-delay: 0.26s;
}

body.theme--02 .app-aside .option.theme .icon-container {
  transition-delay: 0.28s;
}

body.theme--01 .app-aside .option.theme .icon-container {
  transition-delay: 0.30s;
}

body.theme--00 .app-aside .option.theme .icon-container {
  transition-delay: 0.32s;
}

.app-aside .option.theme .dot:nth-child(17) {
  background-color: var(--color--foreground--100);
  transition-delay: 0.00s;
}

.app-aside .option.theme .dot:nth-child(16) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.02s;
}

.app-aside .option.theme .dot:nth-child(15) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.04s;
}

.app-aside .option.theme .dot:nth-child(14) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.06s;
}

.app-aside .option.theme .dot:nth-child(13) {
  background-color: var(--color--foreground--100);
  transition-delay: 0.08s;
}

.app-aside .option.theme .dot:nth-child(12) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.10s;
}

.app-aside .option.theme .dot:nth-child(11) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.12s;
}

.app-aside .option.theme .dot:nth-child(10) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.14s;
}

.app-aside .option.theme .dot:nth-child(9) {
  background-color: var(--color--foreground--100);
  transition-delay: 0.16s;
}

.app-aside .option.theme .dot:nth-child(8) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.18s;
}

.app-aside .option.theme .dot:nth-child(7) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.20s;
}

.app-aside .option.theme .dot:nth-child(6) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.22s;
}

.app-aside .option.theme .dot:nth-child(5) {
  background-color: var(--color--foreground--100);
  transition-delay: 0.24s;
}

.app-aside .option.theme .dot:nth-child(4) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.26s;
}

.app-aside .option.theme .dot:nth-child(3) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.28s;
}

.app-aside .option.theme .dot:nth-child(2) {
  background-color: var(--color--foreground--25);
  transition-delay: 0.30s;
}

.app-aside .option.theme .dot:nth-child(1) {
  background-color: var(--color--foreground--100);
  transition-delay: 0.32s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(17) {
  transition-delay: 0.32s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(16) {
  transition-delay: 0.30s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(15) {
  transition-delay: 0.28s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(14) {
  transition-delay: 0.26s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(13) {
  transition-delay: 0.24s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(12) {
  transition-delay: 0.22s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(11) {
  transition-delay: 0.20s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(10) {
  transition-delay: 0.18s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(9) {
  transition-delay: 0.16s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(8) {
  transition-delay: 0.14s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(7) {
  transition-delay: 0.12s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(6) {
  transition-delay: 0.10s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(5) {
  transition-delay: 0.08s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(4) {
  transition-delay: 0.06s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(3) {
  transition-delay: 0.04s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(2) {
  transition-delay: 0.02s;
}

body.theme-slider--is--visible .app-aside .option.theme .dot:nth-child(1) {
  transition-delay: 0.00s;
}


/* App main
----------------------------------------------------------------------------- */

.app-main a {
  border-bottom: 1px solid var(--color--foreground--25);

}

.app-main a:hover {
  border-bottom-color: var(--color--foreground--100);
  cursor: pointer;
}


/* Sections
----------------------------------------------------------------------------- */

.section {
  padding: 0 var(--grid--app-margin);
  display: grid;
  grid-template-columns: var(--grid--app-columns);
  gap: var(--grid--app-gutter);
}


.beyond-title-row {
  
  align-items: flex-end;
  margin-bottom: 1.5vw;
  /* Push title to align with image and columns */
  width: 100%;
}
.beyond-title {
  font-size: 2.8vw;
}
@media (max-width: 900px) {
  .beyond-title {
    font-size: 5vw;
    top: 0;
    text-align: left;
  }
  .beyond-title-row {
    margin-bottom: 3vw;
  }
}
.section.beyond h1{
    top: 0;
    margin-top: 10%;
    font-size: 3.8vw;
    margin-bottom: 3.5vw;
  }
 

.section.beyond>.content {padding: 220px 0 150px 0px;
  /* Increased left padding to 95px */
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
  margin-left: 15%;
}



.section.beyond .title {
  padding-bottom: 80px;
  grid-column: 1 / -1;
}

.section.beyond .description {
  grid-column: 2 / -1;
  font-size: 1.2vw;
}
@media (max-width: 630px) {
  .section.beyond .description {
    grid-column: 2 / -1;
  font-size: 3.2vw;
}}


/* Custom Values Section Layout */
.custom-values-flex {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  min-height: 340px;
}
.custom-values-photo {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 19.7%;
}
.custom-values-photo img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 0;
  /* border-radius: 16px; */
  ;
}
.custom-values-columns {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 50px;
  height: 100%;
}
.custom-values-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 8px 0;
    margin-left: 4%;
    font-size: 1.35vw;
    height: 100%;

}
.custom-values-content {
  width: 50%;
  margin-left: 15%;
  margin-bottom: 10%;


}
.custom-values-col .mb {
  margin-bottom: 0.5em;
  font-size: 1vw;
  color: var(--color--primary);
}

/* Reference section styles from eternal.html */
.mb {
  margin-bottom: 3.415rem;
}
@media (min-width: 759px) {
  .mb {
    margin-bottom: 1.425rem;
  }
}

.custom-values-col p{
  color: var(--color--foreground--50);
}
.custom-values-col b {
  color: var(--color--foreground--100);
  font-weight: 700;
  font-family: neue-haas-grotesk-display, sans-serif;
}

@media (max-width: 900px) {
  .custom-values-content {
    width: 70%;
  }
  .custom-values-flex {
    align-items: stretch;
    gap: 24px;
  }
  .custom-values-columns {
    flex-direction: column;
    gap: 16px;
  }
  .custom-values-col h1 {
    font-size: 5.8vw!important;
    margin-top: 15vw!important;
    margin-bottom: 23vw!important;
  }
  .custom-values-col p {
    font-size: 3.2vw!important;
    margin-left: -80%!important;
  
  }
    .custom-values-col .mb {
      margin-bottom: 1px !important;

}
}

.section h1 {
  margin-left: var(--font--margin-left);
  font-size: var(--font--size-huge);
  line-height: 0.975;
  letter-spacing: -0.02em;
}

.section h2 {
  margin-left: var(--font--margin-left);
  font-size: var(--font--size-large);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.section h3 {
  font-size: var(--font--size-regular);
  line-height: var(--font--size-regular-line-height);
  color: var(--color--foreground--50);
}


/* Section intro
----------------------------------------------------------------------------- */

.section.intro>.content {
  padding: calc(var(--grid--app-xheight) - 100px) 0 80px 0;
  /* Problematic MF */
  position: relative;

}

/* Container for the parallax section */
.section.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  /* Hide overflow to prevent scrolling issues */
}


/* Parallax container */
.parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Place it behind the text */
}

/* Parallax image */
.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the image covers the container */
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  /* Optimize for performance */
}

/* Parallax Container */
/* Parallax Container */
.jarallax-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden !important;
  z-index: -100 !important;
  isolation: isolate;
}

.jarallax-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--color--background--100) 50%, transparent);
  /* Ajusta el último valor para cambiar la opacidad */
  z-index: 1;
}

/* Ensure the image is displayed properly */
.jarallax-img {
  object-fit: cover;
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  display: block;
  filter: grayscale(100%);
}


body.is--loading .section.intro {
  display: block;
  /* or grid, flex, depending on your layout */
  opacity: 1;
  transform: translateY(0);
}


.section.intro .options {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -webkit-user-select: none;
  user-select: none;
}

.section.intro .options::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.section.intro .options:hover {
  cursor: pointer;
}

.section.intro .options .option {
  font-size: var(--font--size-regular);
  line-height: 20px;
  padding: 12px 10px;
  color: var(--color--foreground--33);
  white-space: nowrap;
}

.section.intro .options .option:hover {
  color: var(--color--foreground--100);
  cursor: pointer;
}

.section.intro .options .option:first-child {
  padding-left: 0;
}

.section.intro .options .option:last-child {
  padding-right: 80px;
}

.section.intro .options .option.is--active {
  color: var(--color--foreground--100);
}

.section.intro .gradient-mask {
  width: 80px;
  height: 44px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease;
}

/* Apply a text fade mask to the content area */
.section.intro .content {
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  padding-left: 0;
  /* Ensure no padding cuts off text */
}

.section.intro .gradient-mask.left.is--visible,
.section.intro .gradient-mask.right.is--visible {
  opacity: 1;
}



.section.intro .texts {
  padding-left: 0;
  margin-left: 0;
}

.section.intro .text {
  min-height: calc(1em * 0.975 * 7);
  display: none;
  padding-left: 0;
  margin-left: 0;
}

.section.intro .text.is--visible {
  display: block;
}

.section.intro .text span {
  white-space: nowrap;
}

.section.intro .text span.script {
  font-family: "sloop Script", var(--font--family-fallback); /* Apply the new font */
  /* Add any additional styling for the script font if needed */
}

.section h1 a {
  border-bottom: 2px solid var(--color--foreground--25);
  display: inline-block;
  line-height: 0.88;
}

.exploring {
  margin-top: -80px;
  margin-bottom: -20px;
}


@media (max-width: 768px) {

  /* Adjust the breakpoint as needed */
  .exploring {
    margin-top: 50px;
    /* Remove the negative margin */
    margin-bottom: 20px;
    /* Adjust bottom margin */
  }

  .section.intro>.content {
    padding-bottom: 40px;
    /* optional reduce content padding */

  }

}

/* Section Skills
----------------------------------------------------------------------------- */
.section.crafted-experiences {
  position: relative;
  min-height: 200vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.crafted-experiences .sticky-wrapper {
  position: sticky;
  width: 100%;
  height: 100vh;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color--background--100);
}

.section.crafted-experiences .content {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section.crafted-experiences .scroll-spacer {
  height: 100vh;
  position: absolute;
  width: 100%;
  top: 100vh;
  pointer-events: none;
}

.section.crafted-experiences h1 {
  font-size: var(--font--size-huge);
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0 auto;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color--foreground--10), var(--color--foreground--100), var(--color--foreground--10));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeText 5s infinite ease-in-out;
}
@media (max-width: 1020px) {
.section.crafted-experiences h1 {
  font-size: clamp(36px, 6.14vw, 6.14vw);
}
}
@media (max-width: 558px) {
.section.crafted-experiences h1 {
  font-size: clamp(26px, 2.14vw, 2.14vw);
}
}

@keyframes fadeText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Section work
----------------------------------------------------------------------------- */
.section.work {
  padding: 0;
  display: flex;
}

.section.work>.content {
  width: 100%;
  position: relative;
}

.section.work .hero-image {
  position: relative;
  width: 100%;
  overflow: visible;
  /* Allow overflow for scaling images */
}

.section.work .hero-image .collage-grid {
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .section.work .hero-image .collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: transparent;
  }
  .section.work .hero-image .collage-column {
    display: contents;
    margin: 0;
    padding: 0;
  }
  .section.work .hero-image .collage-item {
    margin: 0;
    padding: 0;
  }
}

.section.work .hero-image .collage-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section.work .hero-image .collage-item {
  position: relative;
  /* Ensure positioning context for z-index */
  overflow: visible;
  /* Allow images to overflow */
  margin-bottom: 0px;
}

.section.work .hero-image .collage-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, z-index 0s ease;
  /* Transition for smooth scaling */
}

.section.work .hero-image .collage-item:hover img {
  transform: scale(1.2);
  /* Scale up the image */
  z-index: 10;
  /* Bring the hovered image to the front */
}

/* Staggered column offsets */
.section.work .hero-image .collage-column:nth-child(2) {
  margin-top: 25px;
}

.section.work .hero-image .collage-column:nth-child(3) {
  margin-top: 0px;
}

.section.work .hero-image .collage-column:nth-child(4) {
  margin-top: 38px;
}

.section.work .hero-image .collage-column:nth-child(5) {
  margin-top: 18px;
}

.section.work .hero-image .collage-column:nth-child(6) {
  margin-top: 25px;
}





/* Section values
----------------------------------------------------------------------------- */

.section.values>.content {
  padding: 220px 0 50px 0px;
  /* Increased left padding to 95px */
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
  margin-left: 15%!important;
}
@media (max-width: 630px) {
  .section.background > .content,
  .section.contact > .content,.section.values > .content,
   .section.intro >.content,.section.beyond >.content {
    padding: 100px 0 20px 0px !important;
    margin-left: 7% !important;
  }
}


.section.values .title {
  padding-bottom: 80px;
  grid-column: 1 / -1;
}

.section.values .description {
  grid-column: 2 / -1;
  font-size: 1.2vw;
}
@media (max-width: 630px) {
  .section.values .description {
    grid-column: 2 / -1;
  font-size: 3.2vw;
}}


/* Specialties Section
----------------------------------------------------------------------------- */
/* Section specialties */
.section.specialties {
  padding: 80px var(--grid--app-margin) 80px var(--grid--app-margin);
  /* Removed original left padding */
  background-color: var(--color--background--100);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Add specific content padding for specialties */
@media (min-width: 1020px) {
  .section.specialties {
    padding-left: calc(var(--grid--app-margin) + 80px);
  }
}


.section.specialties h1 {
  font-size: clamp(30px, 4.14vw, 4.14vw);
  margin-bottom: 30px;
  /* Add space below the title */

}

.services-container {
  display: flex;
  width: 100%;
  gap: 20px;
}

.services-image {
  flex: 1;
  max-width: 40%;
  position: relative;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
  object-fit: cover;
}

.service-list {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  position: relative;
  padding-bottom: 20px;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color--foreground--25);
  transition: width 2s ease;
}

.service-item.in-view::after {
  width: 100%;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.service-header h3 {
  font-size: var(--font--size-regular);
  color: var(--color--foreground--100);
  transition: color 0.3s ease;
}

.service-header:hover h3 {
  color: var(--color--foreground--75);
}

.expand-icon {
  font-size: var(--font--size-large);
  color: var(--color--foreground--50);
  transition: transform 0.3s ease;
}

.service-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.service-item.active .service-description {
  max-height: 200px;
  padding-top: 10px;
}

.service-item.active .expand-icon {
  transform: rotate(45deg);
}

/*
/* Section background
----------------------------------------------------------------------------- */


.section.background>.content {
  padding: 220px 0 20px 0px;
  /* Increased left padding to 95px */
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
  margin-left: 15%;
}


.section.background .item {
  padding-top: 80px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  column-gap: var(--grid--app-gutter);
}

.section.background .item .logo {
  grid-column: 1 / -1;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  margin-left: -8px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  background-color: var(--color--foreground--5);
}

.section.background .item .logo .content {
  display: flex;
  align-items: center;
}

.section.background .item .logo .content svg path {
  fill: var(--color--foreground--100);
}

.section.background .item .company {
  grid-column: 1 / -1;
}

.section.background .item .role {
  grid-column: 1 / -1;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

.section.background .item .metadata {
  grid-column: 1 / -1;
  padding-top: 10px;
}

.section.background .item .time {
  padding-right: 0.3em;
}



.section.background .item .description {
  padding-top: 10px;
  grid-column: 1 / 2;
  color: var(--color--foreground--50);
}

/* Academic section styles */
.section.academic > .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid--app-gutter);
  margin-left: 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section.academic {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.section.academic .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--color--primary);
}

.academic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  text-align: left;
}

.academic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--color--foreground--10);
  padding-bottom: 20px;
}

.academic-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.role {
  font-size: var(--font--size-big)!important;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  70% {
    transform: scale(0.8);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.academic-description {
  color: var(--color--foreground--50);
  line-height: 1.6;
}


/* Section references
----------------------------------------------------------------------------- */

.section.references>.content {
  padding: 220px 0 20px 95px;
  /* Increased left padding to 95px */
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}

.section.references .item:nth-child(n+3) {
  padding-top: 40px;
}

.section.references .quote {
  padding-right: 20px;
}

.section.references .item p {
  padding-top: 10px;
}

.section.references .person {
  padding-right: 0.3em;
}

.section.references .role {
  color: var(--color--foreground--50);
}

.section.references .promo {
  padding-top: 160px;
  grid-column: 1 / -1;
}


/* Section about
----------------------------------------------------------------------------- */

.section.about>.content {
  padding: 220px 0 20px 95px;
  /* Increased left padding to 95px */
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}

.section.about .biography,
.section.about .colophon {
  grid-column: 2 / -1;
}

.section.about h2 {
  padding-top: 40px;
  padding-bottom: 0.14em;
}

.section.about p {
  padding-top: 20px;
}

.section.about .biography p {
  padding-top: 0;
}

.section.about p span.description,
.section.about p span.copyright {
  font-size: 13px;
}


/* Section contact
----------------------------------------------------------------------------- */

.section.contact>.content {
  padding: 220px 0 var(--grid--app-margin) 95px;
  /* Increased left padding to 95px */
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}

.section.contact>.content .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section.contact .actions {
  display: grid;
  grid-template-columns: var(--grid--app-columns-2);
  gap: var(--grid--app-gutter);
}

.section.contact .status h3,
.section.contact .actions a {
  line-height: 1.375;
}

.section.contact h2 {
  padding-top: 0.14em;
}

.section.contact .status {
  color: var(--color--foreground--50);
}

.section.contact .image figure {
  position: relative;
}

.section.contact .image img {
  width: 100%;
  height: 100%;
}

.section.contact .image .image-overlay-01,
.section.contact .image .image-overlay-02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.look {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  margin-left: -32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.look .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--color--foreground--100);
}

.look .radius {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--color--foreground--0);
  animation: pulse 3s cubic-bezier(0.1, 0.5, 0.6, 1) infinite;
}

@keyframes pulse {
  0% {
    background-color: var(--color--foreground--25);
    transform: scale(1, 1)
  }

  66.666% {
    background-color: var(--color--foreground--0);
    transform: scale(4, 4)
  }

  100% {}
}


/* General
----------------------------------------------------------------------------- */

.text-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}


::selection {
  background-color: var(--color--foreground--10);
}


/* Page not found
----------------------------------------------------------------------------- */

body.page-not-found .app-header {
  position: fixed;
  width: 100%;
}

body.page-not-found .section.intro {
  min-height: 100vh;
  align-items: center;
}

body.page-not-found .section.intro>.content {
  grid-column: 1 / -1;
  padding: 0;
}

body.page-not-found .section.intro .text {
  min-height: none;
  display: block;
}

body.page-not-found .section.intro h1 {
  padding-bottom: 0.5em;
}

@media (max-width: 759px) {
  .header-img {
    visibility: hidden;
    display: none;
  }

  header.project-header-equivalent h1 {
    text-align: center;
    font-size: 15rem;
  }
}

/* New Parallax Section */
.parallax-section {
  position: relative;
  height: 75vh;
  margin: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.parallax-section .jarallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.parallax-section .jarallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-section .content {
    position: relative;
    z-index: 1;
}

.parallax-section h2 {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-section p {
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

