*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-light: #c8c8c8;
  --gray-mid: #888;
  --gray-dim: #b0b0b0;
  --font-sans: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  --site-color: #0a0a0a;
  --menu-color: #ffffff;
  --nav-h: 70px;
  --transition: 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

html.about-page,
body.about-page,
html.work-page,
body.work-page,
html.portfolio-page,
body.portfolio-page {
  height: auto;
  overflow: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-dim);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-mid);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-dim) #f8f8f8;
}

/* -- NAV -- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  animation: fadeDown 0.9s 0.1s both;
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

body.portfolio-page nav::before {
  display: none;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

.nav-logo.light {
  color: #fff;
}

.nav-logo sup {
  font-size: 9px;
  vertical-align: super;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.05);
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-links a:hover {
  opacity: 0.6;
  transform: translateY(-1px);
}

.nav-links.light a {
  color: #fff;
}

.nav-links.light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-icon {
  width: 20px;
  height: 20px;
  color: #000;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 120;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px 10px 24px;
  text-align: center;
}

.mobile-menu-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.mobile-logo {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-close {
  /* position: absolute;
  right: 0;
  top: 0; */
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-close svg {
  width: 20px;
  height: 20px;
}

.mobile-links {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 42px;
  width: 100%;
}

.mobile-links a {
  display: block;
  font-size: clamp(28px, 7vw, 52px);
  line-height: 1;
}

.mobile-menu a {
  color: #000;
  text-decoration: none;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.about-hero video,
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 24px 80px;
}

.about-hero-content h1 {
  max-width: 1150px;
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
}

.about-hero-content p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  background: #fff;
  color: #111;
}

.about-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.about-content p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #222;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 1fr);
  gap: 40px;
  align-items: start;
}

.about-card {
  display: grid;
  gap: 24px;
}

.about-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
}

.about-card address,
.about-card a,
.about-card p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.about-card address {
  font-style: normal;
}

.about-footer {
  position: static;
  background: #fff;
  color: #111;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
  animation: none;
  opacity: 1;
}

.about-footer-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 56px 48px 48px;
}

.footer-instagram {
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.footer-instagram:hover {
  text-decoration: underline;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 48px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-links a:hover {
  text-decoration: underline;
  font-weight: 800;
}

.about-footer-copyright {
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  text-align: center;
}

.about-footer-copyright p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.6);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-hero-content {
    padding: 100px 18px 60px;
  }

  .about-content {
    padding: 60px 18px 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 48px 18px 40px;
    gap: 16px;
    justify-content: center;
  }

  .footer-instagram {
    order: 2;
    margin-right: 0;
  }

  .footer-links {
    order: 1;
    justify-content: center;
    gap: 24px;
    flex: auto;
  }

  .about-footer-copyright {
    padding: 18px;
  }

  .about-footer-copyright p {
    font-size: 11px;
  }
}


/* -- SCENE -- */
#scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, transparent 15%, rgba(0, 0, 0, 0.75) 90%);
  z-index: 20;
  pointer-events: none;
}

/* -- BG SLIDES -- */
.bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.bg-slide.active {
  opacity: 1;
}

.bg-slide video,
.bg-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* -- GIANT BRAND TEXT -- */
.brand-text {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  font-family: var(--font-sans);
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.75s var(--transition);
  z-index: 10;
}

.brand-text.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.brand-text.exit {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}

/* -- PROJECT LIST (CENTER) -- */
#list-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 36px;
  pointer-events: none;
  z-index: 50;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

@media (max-width: 900px) {
  nav {
    padding: 0 18px;
    justify-content: center;
  }

  .nav-logo {
    color: #fff;
  }

  .nav-logo.light {
    color: #fff;
  }

  .nav-toggle {
    position: absolute;
    right: 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    padding-top: 10px;
  }

  #list-wrapper {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    /* justify-content: center; */
    align-items: center;
  }

  #project-list {
    gap: 8px;
  }

  .project-item {
    font-size: clamp(18px, 4.2vw, 24px);
    letter-spacing: 0.02em;
    padding: 4px 0;
    text-align: left;
  }

  .project-item.active {
    font-size: clamp(20px, 4.4vw, 26px);
  }

  .project-item.inactive {
    font-size: clamp(16px, 3.5vw, 18px);
    opacity: 0.45;
  }

  .project-item .proj-credit {
    display: none;
  }
}

.menu-open .nav-logo.light {
  color: #000;
}

#project-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: all;
  animation: fadeUp 1s 0.4s both;
  width: fit-content;
  will-change: transform;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-item {
  font-family: var(--font-sans);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--menu-color);
  cursor: pointer;
  padding: 3px 0;
  line-height: 1.2;
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 8px;
  user-select: none;
  position: relative;
  will-change: opacity, transform;
  transition:
    color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    font-size 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item .proj-name {
  display: inline;
  font-weight: 700;
  transition: font-weight 0.3s;
  color: inherit;
  text-decoration: none;
}

.project-item .proj-credit {
  display: inline-block;
  color: currentColor;
  font-size: 1em;
  font-weight: inherit;
  letter-spacing: inherit;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  text-transform: capitalize;
  transition: opacity 0.3s ease;
  font-family: var(--font-sans);
  vertical-align: baseline;
}

/* Active state */
.project-item.active {
  color: var(--menu-color);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.project-item.active .proj-name {
  font-weight: 700;
}

.project-item.active .proj-credit {
  opacity: 0.5;
  visibility: visible;
}

.project-item.inactive {
  opacity: 0.35;
  font-size: 13px;
}

.project-item:hover:not(.active) {
  opacity: 0.7;
}

/* -- FOOTER -- */
footer {
  position: fixed;
  bottom: 24px;
  left: 36px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
  z-index: 50;
  animation: fadeUp 0.8s 0.7s both;
}

footer.light {
  opacity: 0.7;
  font-weight: 700;
}

/* -- SCROLL HINT -- */
.scroll-hint {
  position: fixed;
  right: 28px;
  bottom: 24px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.5;
  z-index: 50;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: fadeHint 4s 1.5s both;
}

@keyframes fadeHint {

  0%,
  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

/* -- SLIDE COUNT -- */
.slide-count {
  position: fixed;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #bbb;
  z-index: 50;
  font-family: var(--font-sans);
}

.slide-count.light {
  color: rgba(255, 255, 255, 0.4);
}

.slide-count .curr {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.slide-count.light .curr {
  color: #fff;
}

.d-none {
  display: none;
}

/* -- WORK PAGE -- */
.work-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.work-hero {
  flex: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.work-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-meta {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  background: #fff;
  color: #111;
}

.work-meta-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.work-credit {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #555;
  text-transform: uppercase;
  margin: 0;
}

.next-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.next-project-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.next-project-btn svg {
  transition: transform 0.3s ease;
}

.next-project-btn:hover svg {
  transform: translateX(4px);
}

.work-footer {
  position: static;
  animation: none;
  opacity: 1;
  z-index: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 48px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.work-footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.work-footer a:hover {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .work-meta {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
  }

  .next-project-btn {
    padding: 12px 16px;
    font-size: 10px;
    gap: 8px;
  }

  .next-project-btn svg {
    width: 16px;
    height: 16px;
  }

  .work-footer {
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    text-align: center;
  }
}

/* -- WORK HERO OVERLAY -- */
.work-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

/* -- PORTFOLIO PAGE -- */
.portfolio-page nav {
  background: #fff;
}

.portfolio-page .nav-logo,
.portfolio-page .nav-logo.light {
  color: #000;
}

.portfolio-page .nav-links,
.portfolio-page .nav-links.light {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.8);
}

.portfolio-page .nav-links a,
.portfolio-page .nav-links.light a {
  color: #000;
}

.portfolio-page .logo-img {
  height: 50px !important;
  margin: 0 !important;
}

.portfolio-main {
  padding: 120px 32px 0;
  background: #fff;
  min-height: 100vh;
}

.portfolio-header {
  margin-bottom: 48px;
}

.portfolio-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
  text-transform: uppercase;
  margin: 0;
}

.masonry-grid {
  column-count: 3;
  column-gap: 32px;
  margin-bottom: 96px;
}

@media (max-width: 1100px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .masonry-grid {
    column-count: 1;
    column-gap: 0;
  }
}

.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 48px;
  text-decoration: none;
  color: #111;
}

.masonry-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #f1f1f1;
  margin-bottom: 16px;
}

.masonry-media video,
.masonry-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.4s ease;
  filter: brightness(0.9) grayscale(20%);
}

.masonry-item:hover .masonry-media video,
.masonry-item:hover .masonry-media img {
  filter: brightness(1) grayscale(0%);
}

.masonry-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-info {
  transform: translateY(-2px);
}

.masonry-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  color: #111;
}

.masonry-credit {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #666;
  text-transform: uppercase;
  margin: 0;
}

/* -- SHOWCASE GRID FOR PORTFOLIO -- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 96px;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #111;
  height: 100%;
}

.showcase-media {
  flex: 1;
  position: relative;
  width: 100%;
  border-radius: 4px;
  background: #f1f1f1;
  margin-bottom: 16px;
  overflow: hidden;
}

.showcase-media video,
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.6s ease;
  filter: brightness(0.9) grayscale(20%);
}

.showcase-item:hover .showcase-media video,
.showcase-item:hover .showcase-media img {
  filter: brightness(1) grayscale(0%);
  transform: scale(1.02);
}

.showcase-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-info {
  transform: translateY(-2px);
}

.showcase-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  color: #111;
}

.showcase-credit {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #666;
  text-transform: uppercase;
  margin: 0;
}

/* Cinemascope Zoom */
.bg-slide video.cinemascope,
.bg-slide img.cinemascope,
.showcase-media video.cinemascope,
.showcase-media img.cinemascope,
.work-hero video.cinemascope,
.work-hero img.cinemascope {
  transform: scale(1.35);
}

.showcase-item:hover .showcase-media video.cinemascope,
.showcase-item:hover .showcase-media img.cinemascope {
  transform: scale(1.38);
  /* 1.35 * 1.02 */
}

/* Sizing Classes */
.grid-item-full {
  grid-column: span 12;
}

.grid-item-half {
  grid-column: span 6;
}

.grid-item-one-third {
  grid-column: span 4;
}

.grid-item-two-thirds {
  grid-column: span 8;
}

@media (max-width: 900px) {
  .showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

/* -- SOUND TOGGLE -- */
.sound-toggle {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: all 0.3s ease;
}

.sound-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
}

.sound-toggle svg {
  width: 24px;
  height: 24px;
}

.sound-toggle.muted svg path {
  display: none;
}

.sound-toggle.muted::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 28px;
  background: #fff;
  transform: rotate(45deg);
}


/* -- LOGO IMG -- */
.logo-img {
  height: 50px;
  margin-top: 10px;
  width: auto;
  display: block;
}

.mobile-logo .logo-img {
  margin: 0;
  height: 50px;
  margin-left: 20px;
}

@media (max-width: 900px) {

  .about-page .logo-img,
  .work-page .logo-img {
    height: 50px;
    margin: 0 !important;
  }
}

/* -- PLAY TOGGLE -- */
.play-toggle {
  position: absolute;
  bottom: 32px;
  right: 96px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: all 0.3s ease;
}

.play-toggle:hover {
  background: rgba(255, 255, 255, 0.4);
}

.play-toggle svg {
  width: 20px;
  height: 20px;
}

/* -- ZOOM CONTROL -- */
.zoom-control-wrapper {
  position: absolute;
  bottom: 32px;
  right: 160px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.zoom-control-wrapper input[type=range] {
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  border-radius: 2px;
  width: 100px;
  outline: none;
}

.zoom-control-wrapper input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s;
}

.zoom-control-wrapper input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .zoom-control-wrapper {
    bottom: 96px;
    right: 16px;
    padding: 8px 12px;
    gap: 8px;
  }
  .zoom-control-wrapper input[type=range] {
    width: 80px;
  }
  .sound-toggle {
    right: 16px;
  }
  .play-toggle {
    right: 80px;
  }
}