* { margin: 0; padding: 0; box-sizing: border-box; }

* {
  -webkit-user-select: none;
  user-select: none;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  justify-content: space-between;
  padding: 28px 40px 30px;
  position: relative;
  z-index: 10;
}


.nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
}

.nav-links li a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.nav-links li a:hover { opacity: 0.6; }

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: #fff;
}

.nav-links li a {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}


/* HERO */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 580px;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

#physics-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.badge {
  position: absolute;
  border: 2.5px solid #fff;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
  color: #fff;
  background: #000;
  cursor: grab;
  user-select: none;
  z-index: 20;
  pointer-events: auto;
  transform-origin: center center;
}

.badge:active { cursor: grabbing; }

.badge.filled {
  background: #fff;
  color: #000;
}

.circle-badge {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  z-index: 20;
  pointer-events: auto;
}

.circle-badge:active { cursor: grabbing; }

.circle-star span {
  font-size: 36px;
  color: #000;
  line-height: 1;
}

.circle-arrow svg {
  width: 32px;
  height: 32px;
}

.big-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
font-size: clamp(100px, 15vw, 220px);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.88;
  color: #fff;
  padding: 0 0 8px 4px;
  position: relative;
  z-index: 10;
  white-space: nowrap;
}

/* ABOUT */
.about {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  gap: 80px;
}

.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-eyebrow {
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}

.about-body {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  max-width: 600px;
}

.intro-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-image img {
  width: 100%;
  max-width: 550px;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  height: 820px;
  object-fit: fill;
  border-radius: 12px;
}

/* WORKS (homepage) */
.works {
  width: 100%;
  background: #fff;
  padding: 80px 40px;
}

.works-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 32px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}

.work-empty {
  pointer-events: none;
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.work-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: opacity 0.3s ease;
}

.work-item:hover img { opacity: 0.85; }

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.work-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.work-category {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
}

/* WORK PAGE */
.work-page-body {
  background: #000;
  color: #fff;
}

.work-page {
  padding: 40px 40px 80px;
}

.filters {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.filter-btn {
  background: none;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.filter-btn:hover { color: #fff; }
.filter-btn.active { color: #fff; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.work-cell {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.work-cell.wide {
  grid-column: span 2;
}

.work-cell img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.work-cell:hover img { opacity: 0.75; }

/* PROJECT PAGE */
.project-page-body {
  background: #fff;
  color: #000;
}

.project-title-wrap {
  background: #fff;
  padding: 40px 40px 0;
}

.project-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #000;
}

.project {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 20px 40px 60px;
  gap: 80px;
}

.project-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-eyebrow {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
}

.project-body {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  max-width: 500px;
}

.project-image-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-image-left img {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.project-full-image {
  width: 100%;
  background: #fff;
  padding: 0 40px 100px;
  padding-top: 80px;
}

.project-full-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.project-full-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.project-right img {
  width: 100%;
  max-width: 1300px;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  
}

.project-right .project-image {
  justify-content: flex-end;
  padding-left: 100px;
}

.my-video {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
}

.project-right {
  padding-bottom: 100px;
  flex-direction: row;
}

/* ABOUT PAGE */
.about-page-body {
  background: #000;
  color: #fff;
  min-height: 100vh;
}

.about-page-body nav {
  background: #000;
}

.pronunciation-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start; 
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
  scroll-snap-align: start; 
}

.about-page-body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.pronunciation-intro {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
}

.pronunciation-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-bottom: 0;
}

.name-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-decoration: underline wavy #fff;
  text-underline-offset: 16px;
  text-decoration-thickness: 3px;
}

.speaker-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.2s;
}

.speaker-btn:hover { opacity: 0.6; }

.speaker-btn svg {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  fill: #fff;
}

.pronunciation-subtext {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-top: 60px;
  max-width: 600px;
  line-height: 1.6;
  text-align: left;
  align-self: flex-start;
}

/* EXPERIENCE PAGE */

.experience {
  padding: 80px 40px;
  background: #fff;
}

.experience-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.experience-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-year {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.exp-role {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.exp-place {
  font-size: 18px;
  font-weight: 400;
  color: #999;
}

/* CONTACT PAGE */

.contact {
  padding: 80px 40px;
  background: #fff;
}

.contact-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.contact-label {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}

.contact-subtext {
  font-size: 18px;
  font-weight: 400;
  color: #999;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-detail {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.form-input {
  background: none;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  outline: none;
  width: 100%;
  font-family: inherit;
}

.form-input::placeholder {
  color: #999;
}

.form-input:focus {
  border-bottom: 2px solid #000;
}

.form-textarea {
  resize: none;
  height: 120px;
}

.form-btn {
  align-self: flex-start;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.form-btn:hover {
  opacity: 0.7;
}

/* FOOTER */

.footer {
  background: #000;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-connect {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.15em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 8px 24px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.6;
}

/* pill border on LinkedIn */
.footer-link.active {
  border: 2px solid #fff;
  border-radius: 999px;
}

.project-intro {
  align-items: stretch;
  padding: 40px 40px 60px;
  gap: 60px;
}
.project-intro-left {
  flex: 1;
}
.project-intro-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.project-intro-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.project-team-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.project-team-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-team-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(0,0,0,0.35);
}
.project-team-names {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-team-names span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.project-team-role {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
}
.project-team-year {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.project-intro-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-cell img {
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.work-cell.dimmed img {
  filter: grayscale(100%);
  opacity: 0.3;
}