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

@font-face {
  font-family: "Lexend Tera Fallback";
  src: local("Arial");
  size-adjust: 130%;
  ascent-override: 90%;
  descent-override: 20%;
  line-gap-override: 0%;
}

:root {
  --font-fam: "Lexend Tera", "Lexend Tera Fallback", sans-serif;
  --bg: #000;
  --color-prime: #fff;
  --color-subtle: #949494;
  --color-accent: #ff6200;
  --body-weight: 200;
  --title-weight: 500;
  --body-spacing: -0.12em;
  --title-spacing: -0.25em;
  --display-weight: 700;
  --ctn-mar-bottom: clamp(60px, 7.6vw, 100px);
  --section-mar-bottom: clamp(30px, 4.5vw, 60px);
  --des-size: clamp(9px, 1.5vw, 13px);
  --des-line-height: 1.6rem;
  --body-size: clamp(12px, 2vw, 20px);
  --body-size-2: clamp(11px, 1.5vw, 16px);
  --display-size: clamp(24px, 5vw, 75px);
  --heading-size: clamp(15px, 4vw, 30px);
  --title-size: clamp(52px, 9vw, 115px);
  --section-pad-top: clamp(30px, 8vw, 60px);
}
.light {
  --font-fam: "Lexend Tera", "Lexend Tera Fallback", sans-serif;
  --bg: #fff;
  --color-prime: #000;
  --color-subtle: #5c5c5c;
  --color-accent: #ff6200;
  --body-weight: 200;
  --title-weight: 500;
  --body-spacing: -0.12em;
  --title-spacing: -0.25em;
  --display-weight: 700;
  --ctn-mar-bottom: clamp(60px, 7.6vw, 100px);
  --section-mar-bottom: clamp(30px, 4.5vw, 60px);
  --des-size: clamp(9px, 1.5vw, 13px);
  --des-line-height: 1.6rem;
  --body-size: clamp(12px, 2vw, 20px);
  --body-size-2: clamp(11px, 1.5vw, 16px);
  --display-size: clamp(24px, 5vw, 75px);
  --heading-size: clamp(15px, 4vw, 30px);
  --title-size: clamp(52px, 9vw, 115px);
  --section-pad-top: clamp(30px, 8vw, 60px);
}
a {
  text-decoration: none;
  letter-spacing: var(--body-spacing);
}
img {
  display: block;
  width: auto;
  height: auto;
}
button {
  letter-spacing: var(--body-spacing);
}
html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}
::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg);
  letter-spacing: clamp(-0.05em, 6vw, -0.5em);
  color: var(--color-prime);
  font-family: var(--font-fam);
  font-weight: var(--body-weight);
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
  font-display: swap;
}
.container {
  padding: 0 20px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
*,
a,
button,
[role="button"],
input,
label,
select,
textarea {
  cursor: none !important;
}
body.menu-open {
  overflow: hidden;
  padding-right: var(--scrollbar-w, 0px);
}
body.menu-open::-webkit-scrollbar {
  display: none;
}
@media (hover: none) {
  #custom-cursor {
    display: none;
  }
}
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition:
    width 0.2s ease,
    height 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
#custom-cursor.cursor-hover {
  width: 40px;
  height: 40px;
  background: 0 0;
  border: 1.5px solid var(--color-accent);
}
#custom-cursor.cursor-hidden {
  opacity: 0;
}
.nav-items {
  margin: 20px auto;
  margin-bottom: var(--ctn-mar-bottom);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-accent);
  font-size: var(--body-size-2);
}
.nav-home {
  color: var(--color-accent);
}
.nav-arrow {
  width: 0.55em;
  height: 0.55em;
  flex-shrink: 0;
  color: var(--color-prime);
  transition: color 0.4s ease;
}
.menu-links .page > span {
  display: inline-flex;
  align-items: center;
  width: 0.55em;
  height: 0.55em;
  flex-shrink: 0;
}
.page:hover .nav-arrow {
  color: var(--color-accent);
}
.footer-socials,
.menu-footer-socials {
  color: var(--color-accent);
  display: flex;
  gap: clamp(20px, 2vw, 25px);
  font-size: var(--body-size-2);
  transition: all ease 0.3s;
}
.footer-socials:hover {
  color: var(--color-prime);
}
#real-time-footer,
.copyright {
  font-size: var(--body-size-2);
}
#menu-burger {
  max-width: 1600px;
  margin: 0 auto;
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0s 0.4s;
  color: var(--color-accent);
}
#menu-burger.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.4s, visibility 0s 0s;
}
.menu-top {
  font-size: var(--body-size-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  gap: clamp(60px, 9vw, 120px);
}
.page {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: var(--title-size);
  font-weight: var(--display-weight);
  color: var(--color-prime);
  line-height: 1.08;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.menu-links a:nth-child(2) { transition-delay: 0.05s; }
.menu-links a:nth-child(3) { transition-delay: 0.1s; }
.menu-links a.about {
  align-self: flex-start;
}
.menu-links a.about,
.menu-links a.work {
  align-self: center;
}
.menu-links a.home {
  align-self: flex-start;
}
.menu-links a.lab {
  align-self: flex-end;
}
#menu-burger.open .page {
  opacity: 1;
  transform: translateY(0);
}
.page:hover {
  color: var(--color-accent);
}
.menu-footer {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--body-size-2);
  color: var(--color-accent);
}
.nav-mail {
  color: var(--color-accent);
}
.nav-mid {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu {
  display: flex;
  gap: 20px;
}
.nav-menu button {
  background-color: transparent;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-fam);
  font-weight: var(--body-weight);
  font-size: var(--body-size-2);
}
.theme-btn {
  width: 1em;
}
.theme-btn i {
  color: var(--color-accent);
  font-size: clamp(16px, 2vw, 22px);
  transform: scaleX(-1);
  display: inline-block;
  transition: transform 0.3s ease;
}
.theme-btn i.spin {
  animation: theme-spin 0.4s ease forwards;
}
@keyframes theme-spin {
  0% {
    transform: scaleX(-1) rotate(0);
  }
  100% {
    transform: scaleX(-1) rotate(360deg);
  }
}
.nav-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  48%,
  52% {
    opacity: 0;
  }
}
.matter-ctn {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.matter-ctn.slide-in {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title.slide-in {
  opacity: 1;
  transform: translateY(0);
}
.hero-intro {
  text-align: center;
  letter-spacing: var(--body-spacing);
}
.hero-container {
  margin-bottom: var(--ctn-mar-bottom);
}
.hero-intro {
  width: 100%;
  max-width: 760px;
  line-height: 30px;
  margin: 0 auto 60px;
  padding: 0 20px;
  box-sizing: border-box;
  color: var(--color-prime);
  text-align: center;
  font-size: var(--body-size);
  font-weight: var(--body-weight);
}
.matter-ctn {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  height: clamp(280px, 44vh, 600px);
  padding: 0 20px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .matter-ctn {
    height: clamp(320px, 55vw, 420px);
  }
}
.matter {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 100px 20px;
  top: 0;
  left: 0;
}
.matter li {
  color: var(--color-prime);
  list-style-type: none;
  border: 1px solid var(--color-prime);
  width: fit-content;
  padding: 20px;
  border-radius: 40px;
}
.matter a {
  color: var(--color-prime);
}
.matter-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.matter-wrap-tags {
  position: absolute;
  height: auto;
  top: 50%;
  left: 50%;
  opacity: 0.2;
  transform: translate(50%, -50%);
  width: 450px;
}
.matter-bl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-title {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4px;
  box-sizing: border-box;
  position: relative;
  margin-top: 10px;
}
.hero-title svg {
  margin: 0 auto;
  width: 100%;
  display: block;
  color: var(--color-prime);
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.85));
  transition:
    color 0.4s ease,
    filter 0.4s ease;
}
.light .hero-title svg {
  filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.507));
}
.hero-roles-ctn {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-roles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-prime);
  font-size: clamp(10px, 1.5vw, 22px);
  font-weight: var(--body-weight);
  white-space: nowrap;
  letter-spacing: var(--body-spacing);
}
.hero-roles .char {
  display: inline-block;
  opacity: 0;
}
.ticker-section {
  max-width: 1600px;
  margin: 0 auto;
  margin-bottom: var(--ctn-mar-bottom);
  padding: 0 20px;
  box-sizing: border-box;
}
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--color-prime);
  border-bottom: 1px solid var(--color-prime);
  padding: clamp(8px, 2vw, 20px) 0;
  transition:
    border-color 0.4s ease,
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}
.ticker-wrap.fade-in {
  opacity: 1;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-track:hover .ticker-item:hover {
  color: var(--color-accent);
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 30px;
  white-space: nowrap;
  font-family: var(--font-fam);
  font-size: var(--body-size-2);
  font-weight: var(--body-weight);
  color: var(--color-prime);
  letter-spacing: var(--body-spacing);
  transition: color 0.4s ease;
}
.ticker-item svg path {
  transition: fill 0.4s ease;
}
.light .ticker-item svg path {
  fill: #000;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.selected-work-ctn {
  margin-bottom: var(--ctn-mar-bottom);
}
.selected-work-h1 {
  font-weight: var(--title-weight);
  color: var(--color-accent);
  font-size: var(--display-size);
  letter-spacing: var(--body-spacing);
}
.selected-work-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--section-mar-bottom);
}
.selected-work-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: clamp(25px, 3vw, 50px);
  column-gap: 40px;
}
.project-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.selected-work {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.selected-work .project-link {
  flex: 1;
  min-height: 0;
}
.coming-soon {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-text {
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  color: var(--bg);
}
.selected-work-svg {
  width: clamp(50px, 7vw, 105px);
  height: auto;
}
.work-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-title span {
  font-size: var(--body-size-2);
  letter-spacing: var(--body-spacing);
}
.work-name {
  color: var(--color-prime);
}
.work-cate {
  color: var(--color-subtle);
}

.cta-text-ctn {
  margin-bottom: var(--ctn-mar-bottom);
}
.cta-text-content svg path {
  fill: currentColor;
  transition: fill 0.4s ease;
}
.cta-text-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid var(--color-prime);
  border-bottom: 1px solid var(--color-prime);
  padding: clamp(8px, 2vw, 20px) 0;
  gap: 10px;
  text-align: center;
}
.cta-text {
  color: var(--color-prime);
  font-size: clamp(8px, 1.5vw, 16px);
}
.project-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.project-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.735);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.light .project-hover-overlay {
  background: rgba(0, 0, 0, 0.706);
}
.project-link:hover .project-hover-overlay {
  opacity: 1;
}
.project-hover-text {
  font-size: var(--heading-size);
  font-weight: var(--body-weight);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 8px #fff,
    0 0 20px rgba(255, 255, 255, 0.82);
}
.project-hover-text .char {
  display: inline-block;
  opacity: 0;
}
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-in {
  opacity: 1;
}
.posterfolio-ctn {
  margin-bottom: var(--ctn-mar-bottom);
}
.posterfolio-title {
  width: 100%;
  margin-bottom: clamp(30px, 4vw, 60px);
}
.posterfolio-title svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
#eye-pupil-left,
#eye-pupil-right {
  fill: var(--bg);
  transition: fill 0.4s ease;
}
#eye-highlight-left,
#eye-highlight-right {
  fill: var(--color-prime);
  transition: fill 0.4s ease;
}
.posterfolio-scatter {
  position: relative;
  width: 100%;
  aspect-ratio: 1409/1013;
}
.poster-arrows {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.poster-arrows svg {
  width: 100%;
  height: 100%;
}
.poster-scatter-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 16%;
  animation: poster-wiggle 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.bear {
  width: 17%;
}
.max {
  width: 19%;
}
.ant {
  width: 14%;
}
.functional {
  width: 22%;
}
.robert {
  width: 23%;
}
@keyframes poster-wiggle {
  0%,
  100% {
    transform: rotate(var(--rot)) translate(0, 0);
  }
  25% {
    transform: rotate(calc(var(--rot) + 0.5deg)) translate(1px, -2px);
  }
  50% {
    transform: rotate(var(--rot)) translate(0, 0);
  }
  75% {
    transform: rotate(calc(var(--rot) - 0.5deg)) translate(-1px, 2px);
  }
}
.poster-item-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1.5px solid var(--color-prime);
}
.poster-img {
  width: 100%;
  height: auto;
  display: block;
}
.poster-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.poster-scatter-item:hover .poster-hover-overlay {
  opacity: 1;
}
.poster-hover-text {
  font-size: var(--heading-size);
  font-weight: var(--body-weight);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 8px #fff,
    0 0 20px rgba(255, 255, 255, 0.82);
}
.poster-hover-text .char {
  display: inline-block;
  opacity: 0;
}
.poster-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.poster-modal.open {
  opacity: 1;
  pointer-events: all;
}
.poster-modal-img {
  max-width: 88vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transform: scale(0.88);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.poster-modal.open .poster-modal-img {
  transform: scale(1);
}
.poster-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.65;
  transition: opacity 0.2s;
  font-family: var(--font-fam);
  padding: 4px 8px;
}
.poster-modal-close:hover {
  opacity: 1;
}
.ticket-ctn {
  width: 100%;
  margin-bottom: var(--ctn-mar-bottom);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ticket-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.ticket-item {
  position: relative;
  display: block;
  flex-shrink: 0;
  line-height: 0;
  max-width: 390px;
  width: 30%;
  min-width: 240px;
  opacity: 0;
  transition: transform 0.25s ease;
}
@keyframes ticket-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ticket-item.fade-in {
  animation: ticket-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ticket-item.fade-in:nth-child(2) {
  animation-delay: 0.1s;
}
.ticket-item.fade-in:nth-child(3) {
  animation-delay: 0.15s;
}
.ticket-item svg {
  width: 100%;
  height: auto;
  display: block;
}
.light .tk-body {
  fill: #1a1a1a;
}
.light .tk-content path:not(.tk-body) {
  fill: #fff;
}
.light .tk-content [stroke] {
  stroke: rgba(255, 255, 255, 0.7);
}
.ticket-item:hover {
  transform: translateY(-4px);
}
.ticket-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ticket-item:hover .ticket-hover-overlay {
  opacity: 1;
}
.ticket-hover-label {
  font-size: var(--heading-size);
  font-family: var(--font-fam);
  font-weight: var(--body-weight);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 22px rgba(255, 255, 255, 0.55);
}
.ticket-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.ticket-onboard {
  text-align: center;
  color: var(--color-subtle);
  font-size: var(--body-size-2);
}
#ticket-loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#ticket-loading-screen.visible {
  opacity: 1;
  pointer-events: all;
}
.loading-runway {
  width: min(500px, 80vw);
  height: 60px;
  display: flex;
  align-items: center;
}
.loading-progress {
  position: relative;
  width: 0;
  height: 2px;
  overflow: visible;
}
#ticket-loading-screen.visible .loading-progress {
  animation: progress-grow 1.4s ease-in-out forwards;
}
@keyframes progress-grow {
  0% {
    width: 0;
  }
  100% {
    width: min(500px, 80vw);
  }
}
.loading-plane-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: var(--color-accent);
}
.loading-plane-icon svg {
  transform: rotate(90deg);
}
.loading-depart-text {
  color: var(--color-subtle);
  font-family: var(--font-fam);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-spacing);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.5s ease 0.2s;
}
#ticket-loading-screen.visible .loading-depart-text {
  opacity: 1;
  transform: translateY(0);
}
.site-footer {
  padding: 0 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--body-size);
  color: var(--color-accent);
}
.about-hero-ctn {
  margin-bottom: var(--ctn-mar-bottom);
}
.about-hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-hero-title {
  color: var(--color-accent);
  font-size: clamp(40px, 6vw, 75px);
  letter-spacing: var(--body-spacing);
  font-weight: var(--title-weight);
}
.about-hero-intro {
  color: var(--color-subtle);
  width: 100%;
  max-width: 420px;
  font-size: var(--des-size);
  margin: 0 auto;
  line-height: var(--des-line-height);
}
.about-hero-pics {
  display: flex;
  justify-content: center;
  align-items: end;
  margin-top: clamp(100px, 8vw, 130px);
  margin-bottom: 70px;
}
.pic-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}
.left-pic {
  transform: rotate(-10deg) translate(50px, -50px);
  z-index: 10;
}
.mid-pic {
  z-index: 11;
}
.right-pic {
  z-index: 10;
  transform: rotate(10deg) translate(-55px, -30px);
}
.about-resume {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  color: var(--color-accent);
  width: fit-content;
  margin: 0 auto;
}
.about-resume:hover {
  color: var(--color-prime);
}
.about-resume-content {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.about-resume-text {
  font-size: var(--heading-size);
  color: var(--color-accent);
  transition: color 0.35s ease;
}
.about-resume svg path {
  fill: var(--color-accent);
  transition: fill 0.35s ease;
}
.about-resume:hover .about-resume-text {
  color: var(--color-prime);
}
.about-resume:hover .resume-underline {
  background-color: var(--color-prime);
}
.about-resume:hover svg path {
  fill: var(--color-prime);
}
.resume-underline {
  width: 100%;
  max-width: clamp(80px, 20vw, 150px);
  border: none;
  height: 1px;
  background-color: var(--color-accent);
  transition: background-color 0.35s ease;
}
@keyframes about-fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes about-title-in {
  0% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}
@keyframes about-left-pic {
  0% {
    opacity: 0;
    transform: rotate(0) translate(60px, 0);
  }
  72% {
    opacity: 1;
    transform: rotate(-11.5deg) translate(56px, -56px);
  }
  100% {
    opacity: 1;
    transform: rotate(-10deg) translate(50px, -50px);
  }
}
@keyframes about-mid-pic {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  72% {
    opacity: 1;
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes about-right-pic {
  0% {
    opacity: 0;
    transform: rotate(0) translate(-60px, 0);
  }
  72% {
    opacity: 1;
    transform: rotate(11.5deg) translate(-61px, -34px);
  }
  100% {
    opacity: 1;
    transform: rotate(10deg) translate(-55px, -30px);
  }
}
.about-hero-title {
  min-height: 1lh;
  animation: about-title-in 0.45s ease both;
}
.about-hero-intro {
  animation: about-fade-up 0.45s ease both;
  animation-delay: 0.08s;
}
.left-pic {
  animation: about-left-pic 0.65s ease both;
  animation-delay: 0.15s;
}
.mid-pic {
  animation: about-mid-pic 0.65s ease both;
  animation-delay: 0.15s;
}
.right-pic {
  animation: about-right-pic 0.65s ease both;
  animation-delay: 0.15s;
}
.about-resume {
  animation: about-fade-up 0.45s ease both;
  animation-delay: 0.2s;
}
.services-ctn {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 40px;
  padding-top: var(--section-pad-top);
  margin-bottom: var(--ctn-mar-bottom);
  box-sizing: border-box;
  justify-items: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.skill-icons-ctn {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0 40px;
  padding-top: var(--section-pad-top);
  margin-bottom: var(--ctn-mar-bottom);
  box-sizing: border-box;
}
.services-title {
  width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: clamp(80px, 2vw, 100px);
  margin-bottom: var(--section-mar-bottom);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 11px;
  flex-shrink: 0;
}
.services-text {
  color: var(--color-accent);
  font-size: var(--heading-size);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-spacing);
}
.services-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 30px);
}
.service-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-self: center;
}
.service-row:first-child {
  justify-self: start;
}
.service-row:last-child {
  justify-self: end;
}
.services-content span {
  color: var(--color-prime);
  font-size: var(--body-size-2);
  font-weight: 150;
  letter-spacing: var(--body-spacing);
  transition: color 0.25s ease;
}
.services-content:hover span:hover {
  color: var(--color-accent);
}
.skill-icons-track {
  display: flex;
  gap: clamp(18px, 4vw, 45px);
  width: max-content;
  animation: icons-scroll 20s linear infinite;
}
.skill-icons-track:hover {
  animation-play-state: paused;
}
@keyframes icons-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.skill-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.skill-icon {
  position: relative;
  flex-shrink: 0;
  width: clamp(40px, 9vw, 72px);
  height: clamp(40px, 9vw, 72px);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.skill-icons-track:hover .skill-icon {
  opacity: 0.35;
}
.skill-icons-track:hover .skill-icon:hover {
  opacity: 1;
}
.skill-icon::after {
  content: attr(data-title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--color-accent);
  color: var(--bg);
  font-family: var(--font-fam);
  font-size: var(--des-size);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-spacing);
  white-space: nowrap;
  padding: 8px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.skill-icon:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.skill-icon svg circle[fill="black"],
.skill-icon svg path[fill="black"],
.skill-icon svg polygon[fill="black"],
.skill-icon svg rect[fill="black"] {
  fill: var(--bg);
}
.scroll-fade {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.scroll-fade.in-view {
  opacity: 1;
}
.scroll-fade-delay-1 {
  transition-delay: 0.1s;
}
.scroll-fade-delay-2 {
  transition-delay: 0.18s;
}
.scroll-fade-delay-3 {
  transition-delay: 0.24s;
}
.skill-icons-overflow {
  overflow-x: clip;
  width: 100%;
}
.skills-ctn {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--section-pad-top);
  margin-bottom: var(--ctn-mar-bottom);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.design-skills-ctn,
.dev-skills-ctn {
  margin: 0;
  padding: 0;
}
.social-icons-ctn {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0 40px;
  margin-bottom: var(--ctn-mar-bottom);
  box-sizing: border-box;
  padding-top: var(--section-pad-top);
}
.social-icons-track {
  display: flex;
  gap: clamp(18px, 4vw, 45px);
  width: max-content;
  animation: icons-scroll 20s linear infinite;
}
.social-icons-track:hover {
  animation-play-state: paused;
}
.social-icons-overflow {
  overflow-x: clip;
  width: 100%;
}
.social-icon {
  position: relative;
  flex-shrink: 0;
}
.social-icons-track:hover .social-icon {
  opacity: 0.35;
}
.social-icons-track:hover .social-icon:hover {
  opacity: 1;
}
.social-icon::after {
  content: attr(data-title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--color-accent);
  color: var(--bg);
  font-family: var(--font-fam);
  font-size: var(--des-size);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-spacing);
  white-space: nowrap;
  padding: 8px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.social-icon:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.social-icon svg circle[fill="black"],
.social-icon svg path[fill="black"],
.social-icon svg polygon[fill="black"],
.social-icon svg rect[fill="black"] {
  fill: var(--bg);
}
.social-icon svg line[stroke="black"],
.social-icon svg path[stroke="black"],
.social-icon svg rect[stroke="black"] {
  stroke: var(--bg);
}
.main-work {
  gap: 60px;
}
.poster-ctn {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: var(--section-mar-bottom);
  margin-bottom: var(--ctn-mar-bottom);
}
.poster-masonry {
  columns: 4 clamp(160px, 18vw, 280px);
  column-gap: clamp(20px, 1.5vw, 30px);
}
.poster-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: clamp(20px, 1.5vw, 30px);
  overflow: hidden;
  cursor: pointer;
}
.poster-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.poster-item:hover img {
  transform: scale(1.04);
}
.poster-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.735);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.poster-item:hover .poster-item-overlay {
  opacity: 1;
}
.lab-title {
  margin-bottom: 0;
}
.poster-item-overlay-text {
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow:
    0 0 8px #fff,
    0 0 20px rgba(255, 255, 255, 0.82);
}
.poster-item-overlay-text .char {
  display: inline-block;
  opacity: 0;
}
.poster-coming-soon {
  background-color: var(--color-accent);
  cursor: default;
}
.poster-coming-soon img {
  opacity: 0;
  min-height: 300px;
}
.poster-coming-soon:hover img {
  transform: none;
}
.poster-coming-soon .poster-item-overlay {
  opacity: 1;
  background: transparent;
  transition: background 0.3s ease;
}
.poster-coming-soon:hover .poster-item-overlay {
  background: rgba(0, 0, 0, 0.735);
}
.poster-coming-soon .poster-item-overlay-text {
  color: var(--bg);
  text-shadow: none;
}
.poster-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.poster-modal.open {
  opacity: 1;
  pointer-events: all;
}
.poster-modal-img {
  max-width: 88vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.poster-modal.open .poster-modal-img {
  transform: scale(1);
}
.poster-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  font-family: var(--font-fam);
}
.poster-modal-close:hover {
  opacity: 1;
}
.nav-lab {
  margin-bottom: var(--section-mar-bottom);
}
.pho-title-ctn {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: var(--ctn-mar-bottom);
  box-sizing: border-box;
}
.pho-title {
  display: flex;
  align-items: center;
  gap: clamp(50px, 6vw, 80px);
}

.pho-header {
  flex: 1;
}
.pho-header-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  column-gap: clamp(40px, 7vw, 100px);
  row-gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
  justify-content: end;
}
.pho-header-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pho-header-item span:first-child {
  font-size: var(--body-size);
  font-weight: var(--title-weight);
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 6px;
  letter-spacing: var(--body-spacing);
}
.pho-header-item span:last-child {
  font-size: var(--body-size-2);
  font-weight: var(--body-weight);
  color: var(--color-subtle);
  letter-spacing: var(--body-spacing);
}
.pho-overview-ctn {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: var(--ctn-mar-bottom);
  box-sizing: border-box;
  padding-top: var(--section-pad-top);
}
.pho-overview {
  display: grid;
  grid-template-columns: clamp(200px, 26vw, 340px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-bottom: var(--section-mar-bottom);
}
.pho-overview-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pho-overview-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pho-overview-heading {
  font-size: var(--heading-size);
  font-weight: var(--body-weight);
  color: var(--color-accent);
  letter-spacing: var(--body-spacing);
  line-height: 1;
  white-space: nowrap;
}
.pho-globe-svg {
  flex-shrink: 0;
  width: clamp(50px, 6vw, 90px);
  height: auto;
}
.pho-hr {
  height: 1px;
  margin: 0;
  width: 100%;
  border: 0.5px solid var(--color-accent);
}
.pho-section-des {
  font-size: var(--des-size);
  font-weight: var(--body-weight);
  color: var(--color-subtle);
  letter-spacing: var(--body-spacing);
  line-height: 1.8em;
  text-align: justify;
  padding-top: clamp(4px, 0.5vw, 8px);
}
.pho-assets-ctn {
  padding-top: 0;
}
.col-4-pics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 40px);
}
.col-3-pics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 40px);
}

.col-2-pics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 40px);
}
.sonex-ideation-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(24px, 3vw, 40px);
  overflow: hidden;
  cursor: pointer;
}
.sonex-ideation-carousel .pho-asset-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.sonex-ideation-carousel .pho-asset-img.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sonex-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  pointer-events: none;
}
.sonex-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.sonex-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

.pho-asset-img {
  position: relative;
  overflow: hidden;
  transition: opacity 0.35s ease;
}
.pho-asset-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pho-asset-img:hover img {
  transform: scale(1.04);
}
.pho-pic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.pho-asset-img:hover .pho-pic-overlay {
  opacity: 1;
}
.pho-title-svg {
  width: clamp(140px, 30vw, 422px);
  height: auto;
}
.pho-pic-overlay-text {
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow:
    0 0 8px #fff,
    0 0 20px rgba(255, 255, 255, 0.82);
}
.col-3-pics .pho-pic-overlay-text:first-child {
  font-size: var(--body-size);
  font-weight: var(--body-weight);
}
.col-3-pics .pho-pic-overlay-text:last-child {
  font-size: var(--des-size);
  font-weight: var(--body-weight);
  color: var(--color-accent);
  text-shadow:
    0 0 8px #000,
    0 0 20px rgba(255, 255, 255, 0.82);
}
.pho-pic-overlay-text .char {
  display: inline-block;
  opacity: 0;
}
.more-work-ctn {
  padding-top: var(--section-pad-top);
}
.more-work-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--section-mar-bottom);
}
.more-work-title .pho-overview-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.col-3-pics .pho-pic-overlay {
  pointer-events: none;
}
.sonex-prototype-btn {
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: none;
  line-height: 0;
}
.sonex-prototype-btn svg {
  display: block;
  max-width: clamp(100px, 12vw, 159px);
  height: auto;
}
.sonex-prototype-btn svg rect {
  fill: transparent;
  transition: fill 0.2s ease;
}
.sonex-prototype-btn:hover svg rect {
  fill: var(--color-accent);
}
.sonex-prototype-btn svg path {
  transition:
    fill 0.2s ease,
    stroke 0.2s ease;
}
.sonex-prototype-btn:hover svg path {
  fill: var(--color-prime);
}
.sonex-prototype-btn:hover svg path[d^="M147 1"],
.sonex-prototype-btn:hover svg path[d^="M147 46"],
.sonex-prototype-btn:hover svg path[d^="M12 46"],
.sonex-prototype-btn:hover svg path[d^="M12 1"],
.sonex-prototype-btn:hover svg path[d^="M116 46"],
.sonex-prototype-btn:hover svg path[d^="M116 1"] {
  fill: none;
  stroke: var(--color-accent);
}
.sonex-idea-text-overlay {
  font-size: var(--heading-size);
}

.mango-goal-ctn {
  padding-top: 0;
}

.candle-assets-ctn {
  padding-top: var(--section-pad-top);
}

/* ======== back to top ======== */
.back-to-top {
  position: fixed;
  bottom: 60px;
  right: max(32px, calc((100vw - 1600px) / 2 + 32px));
  z-index: 16;
  cursor: pointer;
  color: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.4s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 550px) {
  .pho-title-svg {
    width: 100%;
  }
  .pho-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pho-title {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 5vw, 40px);
  }
  .pho-title {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 5vw, 40px);
  }
  .pho-header {
    width: 100%;
  }
  .pho-header-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(16px, 5vw, 40px);
    row-gap: clamp(20px, 4vw, 36px);
    justify-content: start;
    width: 100%;
  }
  .pho-header-item:nth-child(4),
  .pho-header-item:nth-child(5) {
    grid-row: 2;
  }
  .col-4-pics {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .services-title {
    width: 100%;
    margin-bottom: 0;
  }
  .services-content {
    width: 100%;
    justify-content: start;
    align-items: start;
  }
  .service-row:last-child {
    justify-self: end;
  }
  .service-row:nth-child(2) {
    justify-self: center;
  }
  .service-row {
    justify-self: start;
  }
  .hero-title {
    padding: 0 10px;
  }
  .services-ctn {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 808px) {
  .ticket-ctn {
    display: none;
  }
}
@media (max-width: 540px) {
  .services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .pho-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pho-title {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(24px, 5vw, 40px);
  }
  .pho-header {
    width: 100%;
  }
  .pho-header-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(16px, 5vw, 40px);
    row-gap: clamp(20px, 4vw, 36px);
    justify-content: start;
    width: 100%;
  }
  .pho-header-item:nth-child(2),
  .pho-header-item:nth-child(3),
  .pho-header-item:nth-child(5) {
    justify-self: center;
  }
  .service-row:last-child {
    grid-column: 1/-1;
    justify-self: center;
  }
  .service-row:nth-child(2) {
    justify-self: end;
  }
  .service-row span {
    font-size: var(--body-size);
  }
}
@media (max-width: 768px) {
  .about-page .site-footer #real-time-footer,
  .about-page .site-footer .copyright {
    display: block;
  }
  .about-page .site-footer {
    justify-content: space-between;
  }
  .hero-title {
    padding: 0 15px;
  }
  .selected-work-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .coming-soon {
    height: auto;
    aspect-ratio: 4/3;
  }
  .nav-items .nav-mail {
    display: none;
  }
  .menu-top .nav-mail {
    display: none;
  }
  .menu-footer #real-time,
  .menu-footer .copyright {
    display: none;
  }
  .menu-footer {
    justify-content: center;
  }
  .menu-footer-socials {
    justify-content: center;
  }
  .site-footer #real-time-footer,
  .site-footer .copyright {
    display: none;
  }
  .site-footer {
    justify-content: center;
  }
  .ticket-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .ticket-item {
    width: clamp(260px, 75vw, 360px);
    max-width: 360px;
    min-width: 0;
  }
  .pho-overview {
    display: grid;
    grid-template-columns: 1fr;
  }
  .col-4-pics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .back-to-top {
    bottom: 40px;
  }
}
@media (max-width: 687px) {
  .col-4-pics {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 24px);
    margin-top: clamp(24px, 3vw, 40px);
  }

  .col-2-pics {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 24px);
    margin-top: clamp(24px, 3vw, 40px);
  }
  .about-page .site-footer #real-time-footer,
  .about-page .site-footer .copyright {
    display: none;
  }
  .about-page .site-footer {
    justify-content: center;
  }
  .hero-roles {
    display: none;
  }
  .selected-work-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .col-3-pics {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(20px, 2vw, 30px);
    margin-top: clamp(24px, 3vw, 40px);
  }
}

@media (max-width: 425px) {
  .ticket-ctn {
    display: block;
  }
  .poster-masonry {
    columns: 1;
  }
}
@media (max-width: 375px) {
  .services-content {
    grid-template-columns: 1fr;
  }
  .service-row:nth-child(2) {
    justify-self: start;
  }
  .service-row:last-child {
    justify-self: start;
  }
  .hero-title {
    padding: 0 18px;
  }
  .menu-links a.about {
    align-self: flex-start;
  }
  .menu-links a.work {
    align-self: flex-start;
  }
  .menu-links a.lab {
    align-self: flex-start;
  }
}
