*{
    box-sizing: border-box;
}

html,body{
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Noto Sans', system-ui, -apple-system,'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: black;
}

#intro {
  position: fixed;
  inset: 0;
  background: rgb(255, 80, 240);
  color: white;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity 1s ease, visibility 1s ease;
}

.intro-text {
  font-weight: 200;
  /* font-size: clamp(15px, 12vw, 20px); */
  font-size: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease;
}

#intro.show .intro-text {
  opacity: 1;
  transform: translateY(0);
}

#intro.hide {
  opacity: 0;
  visibility: hidden;
}

header{
    color:black;
    a{
        color: black;
        text-decoration: none;
    }
}

nav{
    height: 6em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 40px;
    gap: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    /* opacity: 0.8; */
    .nav1 img{
        width: 50px;
    }
}

.nav_logo {
  display: flex;
  align-items: center;
  margin-right: 0;
}

.nav_center {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 0;
}

.nav_center a,
.nav_logo a {
  padding: clamp(6px, 1.5vw, 20px);
  font-size: clamp(13px, 1.4vw, 18px);
  color: black;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav_center a:hover {
  transform: translate(3px, 3px);
  text-decoration: none;
}

.nav_right_desktop {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 8px);
  margin-left: auto;
}

.nav_right_desktop a {
  padding: clamp(6px, 1.5vw, 20px);
  font-size: clamp(13px, 1.4vw, 18px);
  color: black;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav_right_desktop a:hover {
  transform: translate(3px, 3px);
  text-decoration: underline;
}

.nav_logo a:hover{
    transform: translate(3px, 3px);
}

.music-player {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
 
.music-controls {
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      color: #000;
}
 
.music-controls .play  { display: block; }
.music-controls .pause { display: none; }
.music-controls.playing .play  { display: none; }
.music-controls.playing .pause { display: block; }
 
.music-strip {
      display: inline-flex;
      gap: 2px;
      pointer-events: none;
}
 
.music-strip img {
      width: 10px;
      height: 10px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
}
 
.music-player.playing .music-strip img { opacity: 1; }
 
.track-name {
      font-size: 12px;
      color: #000;
      letter-spacing: 0.04em;
      pointer-events: none;
}

nav a.active{
    text-decoration: underline;
    font-weight: 500;
    color: rgb(13, 85, 253);
}


.hamburger{
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span{
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
}

/* main{
    /* display:grid;
    grid-template-columns: auto 600px auto;
    grid-template-rows: auto;
    grid-template-areas:
    "space collage space"
    "title title title"
    "scroll scroll scroll"
    "sidebar content sidebar"
    "footer footer footer";
    gap:2.5em;
    padding: 40px 20px;
    width: 100%;
} */

.hero{
    position: relative;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    background-color: white ;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero.loaded {
    opacity: 1;
    transform: translateY(0);
}

.title{
    font-family: "Lexend Giga", sans-serif;
    font-weight: 200;
    line-height: 1;
    z-index: -1;
    font-size: 120px;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 70vh;
    left: 80%;
    transform: translate(-135%, -50%);
    max-width: 900px;
    height: 100%;
    overflow: hidden;
    font-family: 'Lexend Giga', sans-serif;
    font-size: clamp(44px, 5.5vw, 88px);
    letter-spacing: -0.025em;
}

.reveal-word {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
}

.home-hero-left {
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 60px 56px;
  position: relative;
  z-index: 1;
}

.home-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: auto;
}

.title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: rgb(255, 80, 240);
}

.home-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.home-hero-sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.home-hero-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-hero-cta:hover {
  color: rgb(255, 80, 240);
  border-color: rgb(255, 80, 240);
}

.collage{
    grid-area: collage;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    img{
        width: auto;
    }
}

.collage1{
    max-height: 320px;
    position: absolute;
    top:50px;
    left: 10%;
}

.collage1_top{
    opacity: 0;
    transition: all 0.3s ease;
}

.collage1_{
    max-height: 350px;
    position: absolute;
    top: 50px;
    left: 10%;
}

.collage1_text{
    color:rgb(13, 85, 253);
    position: absolute;
    top: 30vh;
    left: 6%;
    font-size: 18px;
    width: 200px;
    text-align: left;
}

.collage1_top:hover{
    opacity: 1;
}

.collage2{
    max-height: 320px;
    position: absolute;
    top:5vh;
    left: 55%;
}

.collage2_top{
    opacity: 0;
}

.collage2_{
    max-height: 350px;
    position: absolute;
    top:5vh;
    left: 55%;
}

.collage2_text{
    color:rgb(13, 85, 253);
    position: absolute;
    top: 37vh;
    left: 60%;
    font-size: 18px;
    width: 200px;
    text-align: left;
    z-index: 1;
}

.collage2_top:hover{
    opacity: 1;
}

.collage3{
    max-height: 310px;
    position: absolute;
    top: 380px;
    left: 12%;
}

.collage3_top{
    opacity: 0;
}

.collage3_{
    max-height: 330px;
    position: absolute;
    top: 380px;
    left: 12%;
}

.collage3_text{
    color:rgb(13, 85, 253);
    position: absolute;
    top: 470px;
    left: 7%;
    font-size: 18px;
    width: 200px;
    text-align: left;
}

.collage3_top:hover{
    opacity: 1;
}

.collage4{
    max-height: 300px;
    position: absolute;
    top: 440px;
    left: 52%;
}

.collage4_top{
    opacity: 0;
}

.collage4_{
    max-height: 320px;
    position: absolute;
    top: 440px;
    left: 52%;
}

.collage4_text{
    color:rgb(13, 85, 253);
    position: absolute;
    top: 680px;
    left: 60%;
    font-size: 18px;
    width: 200px;
    text-align: left;
}

.collage4_top:hover{
    opacity: 1;
}

.collage img {
    transition: transform 0.4s ease;
}

.collage img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* .scroll{
    display:flex;
    flex-direction: column;
    align-items: center;
    color:rgb(255, 80, 240);
    letter-spacing: 2px;
    font-size: 15px;
    bottom:20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.arrow{
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce{
    0%,100%{
        transform: translateY(0);
    }
    50%{
            transform:translateY(10px);
    }
} */

.home-marquee {
  background: rgb(13, 85, 253);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.home-marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 18s linear infinite;
}

.home-marquee-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  flex-shrink: 0;
}

.home-marquee-track span:nth-child(even) {
  color: rgb(255, 80, 240);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.projects-preview {
  background-color: #000;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 60px 100px;
  overflow: hidden;
}
 
.projects-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin: 0 12px 12px;
  opacity: 0.5;
}
 
.projects-header {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: left;
  margin-left: 40px;
}
 
.projects-header a {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  line-height: 1.1;
  font-size: clamp(40px, 4vw, 80px);
  color: white;
  text-decoration: none;
  display: block;
}
 
.projects-header a:hover {
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
 
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
 
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.139);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
 
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.197);
}
 
.project-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
 
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.project-card:hover .project-card-img img {
  transform: scale(1.05);
}

.home-project-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255, 80, 240);
} 

.project-card-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  text-align: left;
}
 
.project-card-info h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: white;
}
 
.project-card-info p {
  font-size: 13.5px;
  color: rgba(164, 164, 164, 0.55);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
 
.project-link {
  font-size: 13px;
  font-weight: 700;
  color: rgb(136, 136, 136);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 8px;
  display: inline-block;
  text-transform: uppercase;
  transition: letter-spacing 0.2s ease;
}
 
.project-card:hover .project-link {
  letter-spacing: 0.03em;
}

.project-link:hover{
    color: rgb(255, 80, 240);
}

.about-preview{
    background: url(img/bg-pink.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    /* margin-top: 100px; */
    position: relative;
    background-attachment: fixed;
    padding: 70px 0 80px;
    overflow: hidden;
}

.about-header a{
    font-family: "Lexend Giga", sans-serif;
    font-weight: 200;
    letter-spacing: 0.02em;
    line-height: 1;
    z-index: 1;
    font-size: clamp(48px, 6vw, 90px);
    color: rgb(13, 85, 253);
    margin: 0;
    padding: 0;
    text-align: right;
    position: absolute;
    top: 50vh;
    left: 80%;
    transform: translate(-50%, -35%);
    max-width: 1000px;
    height: 100%;
    text-decoration: none;
}

.about-header a:hover{
    text-decoration: underline;
    text-decoration-thickness: 5px;
}

.about-preview-photo{
    width: fit-content;
  perspective: 1000px;
}

.about-preview-photo img{
    max-width: 750px;
    margin-top: 200px;
    margin-left: 200px;
    display: block;
    width: 100%;
    max-width: 700px;
    transition: transform 0.2s ease;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 4px 8px #cacaca;
}

.home-about-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(13, 85, 253);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: absolute;
  right: 140px; 
  top: 70vh; 
  overflow: hidden;
  z-index: 1;
}

.home-about-cta:hover {
  color: rgb(255, 80, 240);
  border-color: rgb(255, 80, 240);
}

#contact{
    background-color: rgb(255, 80, 240);
    color:white;
    padding: 70px 0 80px;
    background-attachment: fixed;
    position: relative;
    height: 90vh;
}

.contact-header{
    font-family: "Lexend Giga", sans-serif;
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1.0;
    z-index: 1;
    font-size: clamp(48px, 6vw, 90px);
    color: white;
    margin: 8px 20px 0 36px;
    padding: 0;
    text-align: left;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-left: 40px;
}

/* .contact-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 52px;
  margin-bottom: 20px;
}

.contact-logo img {
  width: min(300px, 100%);
  height: auto;
  display: block;
} */

.contact-eyebrow{
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    opacity: 0.8;
}

.contact-info ul {
  font-family: 'Noto Sans';
  list-style: none;
  margin: auto;
  padding: 0;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.6;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 24px;
}

.contact-info span {
 font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.445);
  flex-shrink: 0;
}

.contact-info li:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-info a {
  font-size: 18px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  letter-spacing: 0.02em;
}

nav {
  justify-content: space-between;
}

.nav_center {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 8px);
}

.nav_center a {
  padding: clamp(6px, 1.5vw, 20px);
  font-size: clamp(13px, 1.4vw, 18px);
  color: black;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.nav_center a:hover {
  text-decoration: underline;
}

.nav_right_desktop {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 8px);
}

.nav_right_desktop a {
  padding: clamp(6px, 1.5vw, 20px);
  font-size: clamp(13px, 1.4vw, 18px);
  color: black;
  text-decoration: none;
  white-space: nowrap;
}

.nav_right_desktop a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none; 
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: white;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: white;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgb(13, 85, 253);
  z-index: 10000;
  display: flex;
  align-items: stretch;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 120px 60px 60px;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.menu-links a {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: clamp(38px, 1vw, 60px);
  color: white;
  text-decoration: none;
  line-height: 1.1;
  transition: opacity 0.2s ease;
  letter-spacing: -12%;
}

.menu-links a:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.menu-music {
  align-self: flex-start;
}

.menu-music .music-player {
  gap: 8px;
}

.menu-music .music-controls,
.menu-music .track-name,
.menu-music .music-strip img {
  filter: brightness(0) invert(1); 
  color: white;
}

.menu-music .track-name {
  color: white;
  font-size: 13px;
}

main.blurred,
header.blurred,
footer.blurred {
  filter: blur(6px);
  transition: filter 0.4s ease;
  pointer-events: none;
}

@media (max-width: 780px) {
html, body {
    overflow-x: hidden;
}

.nav_center,
  .nav_right_desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 40px;
    position: relative;
  }

  .intro-text{
    font-size: 30px;
    justify-content: center;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 30px 60px;
    /* max-height: 100vh; */
    position: relative;
    min-height: 40vh;
  }

  .title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 72px;
    max-width: 90vw;
    text-align: left;
    z-index: 1;
    margin-bottom: 40px;
    height: auto;
    overflow: visible;
  }
  
  .collage {
    display: none;
  }

  .projects-preview { 
    padding: 60px 24px 80px; 
    margin: 20px auto;
}
 
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
 
  .project-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-header a {
    font-size: 72px;
    left: 50%;
    transform: translate(-8%, -35%);
    text-align: right;
    max-width: 90vw;
  }

  .about-preview-photo img {
    max-width: 480px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
  }

  #contact {
    height: auto;
    padding: 50px 20px 60px;
  }

  .contact-header {
    font-size: 64px;
    margin-left: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    justify-content: center;
  }

  .contact-logo img{
    max-width: 170px;
  }

  .contact-logo {
    justify-content: center;
    margin-left: 0;
  }

  .contact-info ul {
    text-align: center;
  }

  .scroll {
    position: relative;
    left: auto;
    transform: none;
    margin: 20px auto 0;
  }
}


@media (max-width: 520px) {

  .intro-text {
    font-size: 24px;
    text-align: center;
  }

    nav {
    margin: 0 10px;
    height: 5em;
  }

  .nav_left {
    display: none;
  }

  .hero {
    min-height: 40vh;
    padding-bottom: 60px;
  }

  .title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 90vw;
    text-align: left;
  }

  .title .reveal-word {
    font-size: 50px;
  }

  .collage {
    display:none;
  }

  .scroll {
    position: relative;
    left: auto;
    transform: none;
    margin: 10px auto 30px;
    bottom: auto;
  }

  .scroll p{
    font-size: 10px;
  }

  .projects-preview {
    padding: 40px 16px 60px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-preview {
    margin-top: 40px;
    padding: 40px 16px 50px;
    background-attachment: scroll;
    min-height: 80vh;
  }

  .about-header a {
    font-size: 40px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    text-align: left;
    max-width: 100%;
    line-height: 1.1;
    height: auto;
  }

  .about-preview-photo img {
    max-width: 100%;
    margin-top: 50px;
  }

  #contact {
    height: auto;
    padding: 40px 16px 50px;
    background-attachment: scroll;
  }

  .contact-header {
    font-size: 40px;
    margin-left: 0;
    text-align: left;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    margin-top: 20px;
  }

  .contact-logo {
    justify-content: center;
    margin-left: 0;
  }

  .contact-logo img {
    width: min(200px, 80%);
  }

  .contact-info ul {
    font-size: 1rem;
    text-align: center;
  }

  .manu-links a{
    font-size: 18px;
  }
}


.projects-page {
  background: #0a0a0a;
  color: white;
}

.projects-page header {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.projects-page header a,
.projects-page nav a {
  color: white;
  opacity: 1;
}

.projects-page nav a.active {
  color: rgb(255, 80, 240);
  text-decoration: underline;
  opacity: 1;
}

.projects-page .hamburger span {
  background-color: white;
}

.projects-page .track-name {
  color: white;
}

.projects-page .music-controls {
  color: white;
}

.projects-page footer {
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
}

.projects-page footer a {
  color: rgba(255,255,255,0.6);
}

.projects-hero {
  padding: 100px 60px 60px;
  text-align: left;
  max-width: 1300px;
  margin: 0 auto;
}

.projects-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
}

.projects-hero-title {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: clamp(56px, 8vw, 110px);
  color: white;
  margin:  0 0 20px;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.projects-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-weight: 300;
}

.filter-bar {
  display: flex;
  gap: 10px;
  padding: 0 60px 50px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.filter-btn.active {
  background: white;
  border-color: white;
  color: #0a0a0a;
}

.projects-list {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px 120px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.project-entry.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-entry:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.project-entry-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.project-num {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.project-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 100px;
}

.project-entry-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /* aspect-ratio: 4/3; */
  background: #111;
  object-fit: cover;
}

.project-entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-entry-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 80, 240, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-entry-img-overlay span {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: 18px;
  color: white;
  letter-spacing: 0.04em;
}

.project-entry:hover .project-entry-img img {
  transform: scale(1.04);
}

.project-entry:hover .project-entry-img-overlay {
  opacity: 1;
}

.project-entry-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.project-entry-title {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: clamp(32px, 3.5vw, 52px);
  color: white;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.project-entry-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
  max-width: 480px;
}

.project-entry-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.project-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.detail-value {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.project-entry-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  width: fit-content;
  transition: border-color 0.2s ease, letter-spacing 0.2s ease, color 0.2s ease;
  margin-top: 4px;
}

.project-entry-cta:hover {
  color: rgb(255, 80, 240);
  border-color: rgb(255, 80, 240);
  letter-spacing: 0.1em;
}

.project-entry--reverse .project-entry-img {
  order: 2;
}

.project-entry--reverse .project-entry-body {
  order: 1;
}


@media (max-width: 900px) {
  .project-entry {
    grid-template-columns: 1fr;
    gap: 28px 0;
    padding: 50px 0;
  }

  .project-entry--reverse .project-entry-img,
  .project-entry--reverse .project-entry-body {
    order: unset;
  }

  .project-entry-img { aspect-ratio: 16/9; }

  .project-entry-desc { max-width: 100%; }
}

@media (max-width: 780px) {
  .projects-hero { padding: 80px 24px 40px; }
  .filter-bar { padding: 0 24px 40px; }
  .projects-list { padding: 0 24px 80px; }

  .project-entry-title { font-size: 32px; }
}

@media (max-width: 520px) {
  .projects-hero { padding: 60px 16px 30px; }
  .projects-hero-title { font-size: 48px; }

  .filter-bar { padding: 0 16px 30px; gap: 8px; }
  .filter-btn { font-size: 11px; padding: 6px 14px; }

  .projects-list { padding: 0 16px 60px; gap: 0; }

  .project-entry { padding: 40px 0; gap: 20px; }

  .project-entry-title { font-size: 28px; }
  .project-entry-desc { font-size: 14px; }

  .project-entry-details { gap: 20px; }
}

.about-page {
  background: white;
  color:black;
}

.about-page header {
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-page .hamburger span {
  background-color: black;
}

.about-page footer {
  color: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(0,0,0,0.08);
  background: white;
}

.about-page footer a { color: black; }

.about-eyebrow,
.about-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:rgb(13, 85, 253);
  margin: 0 0 16px;
}

.about-statement-inner,
.about-bio-inner,
.about-value-item,
.about-now-item,
.about-gallery-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-statement-inner.in-view,
.about-bio-inner.in-view,
.about-value-item.in-view,
.about-now-item.in-view,
.about-gallery-img.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}

.about-hero-text {
  background: rgb(13,85,253);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px;
  position: relative;
}

.about-hero-text .about-eyebrow {
  color: rgba(255,255,255,0.5);
}

.about-hero-title {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: clamp(52px, 6vw, 96px);
  color: white;
  margin: 0 0 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: rgb(255, 80, 240);
}

.about-hero-role {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.about-hero-img {
  position: relative;
  overflow: hidden;
  background: #f4f4f2;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.about-hero-img:hover img {
  transform: scale(1.03);
}

.about-hero-img-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgb(255, 80, 240);
  color: white;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.about-hero-img-tag span:first-child {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: 20px;
}

.about-hero-img-tag-sub {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-bio {
  background: white;
  padding: 100px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.about-bio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-bio-heading {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 3vw, 48px);
  color: black;
  margin: 12px 0 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-bio-accent-line {
  width: 40px;
  height: 3px;
  background: black;
  border-radius: 2px;
}

.about-bio-right p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
  margin: 0 0 20px;
  font-weight: 300;
}

.about-bio-right p:last-of-type { margin-bottom: 32px; }

.about-bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-bio-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(13,85,253);
  border: 1.5px solid rgb(13,85,253);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-bio-tags span:hover {
  background: rgb(13,85,253);
  color: white;
}

.about-cta {
  background: rgb(13,85,253);
  padding: 120px 60px;
  text-align: center;
}

.about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
}

.about-cta-title {
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 200;
  font-size: clamp(52px, 7vw, 96px);
  color: white;
  margin: 0 0 44px;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.about-cta-btn {
  display: inline-block;
  background: rgb(255, 80, 240);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: -3px -3px 0 rgba(255,255,255,0.3);
}


@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-text {
    padding: 100px 40px 60px;
    min-height: 50vh;
  }

  .about-hero-img {
    height: 50vw;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
  }

  .about-bio-inner,
  .about-now-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-inner {
    grid-template-columns: 1fr 1fr;
    height: auto;
    grid-template-rows: 200px 200px;
  }
}

@media (max-width: 780px) {
  .about-statement,
  .about-bio,
  .about-gallery,
  .about-values,
  .about-now,
  .about-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero-text { padding: 80px 24px 48px; }

  .about-hero-img{
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 520px) {
  .about-hero-title { font-size: 44px; }

  .about-statement { padding: 60px 16px; }
  .about-bio       { padding: 60px 16px; }
  .about-gallery   { padding: 30px 16px; }
  .about-values    { padding: 60px 16px; }
  .about-now       { padding: 60px 16px; }
  .about-cta       { padding: 80px 16px; }

  .about-gallery-inner {
    grid-template-columns: 1fr 1fr;
    height: auto;
    grid-template-rows: 140px 140px;
    gap: 10px;
  }

  .about-value-item { padding: 28px 20px; }

  .about-now-inner { gap: 30px; }

  .about-cta-title { font-size: 44px; }
}

 .resume-page {
      background: white;
      min-height: 100vh;
    }

    .resume-page header {
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .resume-page footer {
      color: rgba(0,0,0,0.35);
      border-top: 1px solid rgba(0,0,0,0.08);
      background: #f4f4f2;
    }

    .resume-page footer a { color: black; }

    .resume-main {
      max-width: 960px;
      margin: 0 auto;
      padding: 60px 40px 100px;
    }

    .resume-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .resume-head-left p {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgb(13, 85, 253);
      margin: 0 5px 0 10px;
      text-align: left;
    }

    .resume-head-left h1 {
      font-family: 'Lexend Giga', sans-serif;
      font-weight: 200;
      font-size: clamp(28px, 4vw, 52px);
      color: #0a0a0a;
      margin: 0;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .resume-download-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgb(13, 85, 253);
      color: white;
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 100px;
      white-space: nowrap;
      transition: transform 0.2s ease, background 0.2s ease;
      flex-shrink: 0;
    }

    .resume-download-btn:hover {
      background: rgb(255, 80, 240);
      transform: translate(2px, 2px);
    }

    .resume-download-btn svg {
      width: 14px;
      height: 14px;
      fill: white;
      flex-shrink: 0;
    }

    .resume-embed-wrap {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      background: white;
    }

    .resume-embed-wrap iframe {
      display: block;
      width: 100%;
      height: 80vh;
      min-height: 600px;
      border: none;
    }

    .resume-fallback {
      display: none;
      text-align: center;
      padding: 80px 40px;
      background: white;
    }

    .resume-fallback p {
      font-size: 15px;
      color: rgba(0,0,0,0.5);
      margin: 0 0 24px;
      font-weight: 300;
    }

    @media (max-width: 780px) {
      .resume-main { padding: 40px 24px 80px; }
      .resume-embed-wrap iframe { height: 70vh; }
    }

    @media (max-width: 520px) {
      .resume-main { padding: 30px 16px 60px; }
      .resume-head { flex-direction: column; align-items: flex-start; gap: 16px; }
      .resume-embed-wrap iframe { height: 60vh; min-height: 400px; }
    }

footer { color: black; text-transform: uppercase; padding: 30px 20px; font-size: 14px; background: transparent; }
footer a { color: black; }
