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

html, body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

:root {
  --grain-image: url('../img/grain.avif');
  --grain-overlay: rgba(11, 11, 11, 0.9);
  --grain-repeat: repeat;
  --grain-size: 100vw;
  --grain-attachment: fixed;
}

[id] {
  scroll-margin-top: 70px;
}

body {
  background-color: #0b0b0b;
  background-image: linear-gradient(var(--grain-overlay), var(--grain-overlay)), var(--grain-image);
  background-repeat: var(--grain-repeat);
  background-size: var(--grain-size);
  background-attachment: var(--grain-attachment);
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.site-logo,
.project__title,
.about__portrait-name,
.site-nav a {
  font-family: "Antonio", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.header {
  font-size: clamp(36px, 5.5vw, 88px);
  font-weight: 300;
}

.tagline {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(150, 150, 150);
}

.site-header {
  position: sticky;
  top: -10px;
  z-index: 100;
  height: 70px;
  background-color: #0b0b0b;
  background-image: linear-gradient(var(--grain-overlay), var(--grain-overlay)), var(--grain-image);
  background-repeat: var(--grain-repeat);
  background-size: var(--grain-size);
  background-attachment: var(--grain-attachment);
  padding: 0 10vw;
  margin-top: 6vw;
  font-size: 34px;
  font-weight: 100;
  border-bottom: 8px solid #0b0b0b;
  border-top: 8px solid #0b0b0b;
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-top: white 1px solid;
  border-bottom: white 1px solid;
}

.site-logo {
  letter-spacing: 1vw;
  text-transform: uppercase;
  background: linear-gradient(-45deg, #f7bba9, #f39ebf, #91d3ea, #91ead5);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: super-rainbow 3s infinite alternate linear;
}

@keyframes super-rainbow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.site-nav {
  display: flex;
  gap: 1.5vw;
}
.site-nav a {
  display: flex;
  align-items: center;
  letter-spacing: 0.06em;
  color: rgb(150, 150, 150);
  transition: color 0.2s;
  margin: -1px 0;
  padding-bottom: 1%;
}
.site-nav a:hover, .site-nav a.is-active {
  color: #ffffff;
}
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #ffffff;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 1100px) {
  .site-header__inner {
    align-items: center;
  }
  .site-logo {
    letter-spacing: 0.3em;
    font-size: clamp(20px, 3.4vw, 30px);
  }
  .site-nav__toggle {
    display: flex;
  }
  .site-header.is-open .site-nav__toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .site-header.is-open .site-nav__toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .site-nav__toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0 10vw;
    background-color: #0b0b0b;
    background-image: linear-gradient(var(--grain-overlay), var(--grain-overlay)), var(--grain-image);
    background-repeat: var(--grain-repeat);
    background-size: var(--grain-size);
    background-attachment: var(--grain-attachment);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav a {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-nav a:first-child {
    border-top: none;
  }
  .site-header.is-open .site-nav {
    max-height: 60vh;
    border-bottom: 1px solid #ffffff;
  }
}
.portfolio-filter {
  padding: 50px 10vw 16px;
  display: flex;
  justify-content: flex-end;
}
.portfolio-filter__wrap {
  position: relative;
  display: inline-block;
}
.portfolio-filter__trigger {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.portfolio-filter__trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5px;
  height: 0;
  background: #ffffff;
  transition: height 0.125s ease 0.25s;
}
.portfolio-filter__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.5px;
  height: 0;
  background: #ffffff;
  transition: height 0.125s ease 0s;
}
.portfolio-filter__trigger:hover::before, .portfolio-filter__trigger:hover::after, .portfolio-filter__wrap.is-open .portfolio-filter__trigger::before, .portfolio-filter__wrap.is-open .portfolio-filter__trigger::after {
  height: 100%;
}
.portfolio-filter__trigger:hover .portfolio-filter__trigger-btn, .portfolio-filter__wrap.is-open .portfolio-filter__trigger-btn {
  color: #ffffff;
}
.portfolio-filter__trigger:hover .portfolio-filter__trigger-btn::before, .portfolio-filter__wrap.is-open .portfolio-filter__trigger-btn::before {
  height: 1.5px;
  left: 0;
  width: 100%;
  background: #ffffff;
}
.portfolio-filter__trigger:hover .portfolio-filter__trigger-btn::after, .portfolio-filter__wrap.is-open .portfolio-filter__trigger-btn::after {
  width: 100%;
}
.portfolio-filter__trigger-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: none;
  border: none;
  color: rgb(150, 150, 150);
  font-family: "Antonio", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.1s;
}
.portfolio-filter__trigger-btn::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 0;
  height: 1px;
  width: calc(100% - 28px);
  background: rgb(150, 150, 150);
  transition: left 0.1s ease, width 0.1s ease, background 0.1s, height 0.1s;
}
.portfolio-filter__trigger-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 1.5px;
  width: 0;
  background: #ffffff;
  transition: width 0.125s ease 0.125s;
}
.portfolio-filter__icon {
  flex-shrink: 0;
  color: rgb(150, 150, 150);
  transition: color 0.1s;
}
.portfolio-filter__trigger-btn:hover .portfolio-filter__icon, .portfolio-filter__wrap.is-open .portfolio-filter__trigger-btn .portfolio-filter__icon {
  color: #ffffff;
}
.portfolio-filter__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background-color: #0b0b0b;
  background-image: linear-gradient(var(--grain-overlay), var(--grain-overlay)), var(--grain-image);
  background-repeat: var(--grain-repeat);
  background-size: var(--grain-size);
  background-attachment: var(--grain-attachment);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.portfolio-filter__wrap.is-open .portfolio-filter__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(2px);
}
.portfolio-filter__btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgb(150, 150, 150);
  font-family: "Antonio", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 14px;
  transition: color 0.15s, background-color 0.15s;
}
.portfolio-filter__btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}
.portfolio-filter__btn.is-active {
  color: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: row;
  gap: 16px;
  padding-top: 16px;
  padding-left: 10vw;
  padding-right: 10vw;
  padding-bottom: 50px;
}
.portfolio-grid .project {
  grid-column: span 3;
  aspect-ratio: 2/1;
}
.portfolio-grid .project:nth-child(24n+3),
.portfolio-grid .project:nth-child(24n+6),
.portfolio-grid .project:nth-child(24n+9) {
  grid-column: span 6;
  aspect-ratio: 32/9;
}
.portfolio-grid .project:nth-child(24n+12),
.portfolio-grid .project:nth-child(24n+13),
.portfolio-grid .project:nth-child(24n+14),
.portfolio-grid .project:nth-child(24n+17),
.portfolio-grid .project:nth-child(24n+18),
.portfolio-grid .project:nth-child(24n+19),
.portfolio-grid .project:nth-child(24n+22),
.portfolio-grid .project:nth-child(24n+23),
.portfolio-grid .project:nth-child(24n) {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
  }
  .portfolio-grid .project {
    grid-column: span 1 !important;
    aspect-ratio: 16/9 !important;
  }
}
.portfolio-grid--filtered .project {
  grid-column: span 3 !important;
  aspect-ratio: 2/1 !important;
}
.portfolio-grid--favorites .project[data-fav=solo] {
  grid-column: span 6 !important;
  aspect-ratio: 32/9 !important;
}
.portfolio-grid--favorites .project[data-fav=pair] {
  grid-column: span 3 !important;
  aspect-ratio: 2/1 !important;
}

.project {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project.is-hidden {
  display: none !important;
}
.project:hover .project__image {
  transform: scale(1.03);
}
.project:hover .project__meta {
  opacity: 1;
}
.project__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.project__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0.85;
  transition: opacity 0.25s;
}
.project__title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.project__link {
  display: block;
  position: absolute;
  inset: 0;
  color: inherit;
}

.section-inner {
  padding: 50px 10vw;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding: 50px 10vw;
}
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about__portrait {
  width: 100%;
  position: relative;
}
.about__portrait-img {
  display: block;
  width: calc(100% - 4vw);
  margin-left: 4vw;
  aspect-ratio: 17/24;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1vw;
}
.about__portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__portrait-role {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgb(150, 150, 150);
  text-transform: uppercase;
}
.about__portrait-name {
  font-size: clamp(18px, 2vw, 30px);
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 2vw;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__heading {
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.about__body p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.2em;
}
.about__body p:last-child {
  margin-bottom: 0;
}
.about__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about__social .box-link {
  --box-pad-x: 12px;
  --box-pad-y: 6px;
}
.about__social-link {
  font-size: 14px;
  gap: 8px;
}
.about__social-link svg {
  width: 11px;
  height: 11px;
}

.featured-at__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgb(150, 150, 150);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 32px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: rgb(150, 150, 150);
  cursor: default;
}
.brand svg {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
}
.brand:hover {
  color: var(--brand-color, rgb(150, 150, 150));
  border-bottom-color: var(--brand-color, rgb(150, 150, 150));
}
.brand--raster img {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
  filter: grayscale(100%) opacity(0.4);
}
.brand--raster:hover img {
  filter: var(--brand-filter, none);
}

.site-footer {
  padding: 0 10vw;
  margin-bottom: 6vw;
  font-size: 14px;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgb(150, 150, 150);
  gap: 24px;
}
@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.site-footer__copy {
  color: rgb(150, 150, 150);
  letter-spacing: 0.04em;
}
.site-footer__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.box-link {
  --box-pad-x: 8px;
  --box-pad-y: 5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.box-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5px;
  height: 0;
  background: #ffffff;
  transition: height 0.125s ease 0.25s;
}
.box-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.5px;
  height: 0;
  background: #ffffff;
  transition: height 0.125s ease 0s;
}
.box-link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: var(--box-pad-y) var(--box-pad-x);
  color: rgb(150, 150, 150);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.1s;
}
.box-link a svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}
.box-link a::before {
  content: "";
  position: absolute;
  left: var(--box-pad-x);
  bottom: 0;
  height: 1px;
  width: calc(100% - 2 * var(--box-pad-x));
  background: rgb(150, 150, 150);
  transition: left 0.1s ease, width 0.1s ease, background-color 0.1s;
}
.box-link a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 1.5px;
  width: 0;
  background: #ffffff;
  transition: width 0.125s ease 0.125s;
}
.box-link:hover::before, .box-link:hover::after {
  height: 100%;
}
.box-link:hover a {
  color: #ffffff;
}
.box-link:hover a::before {
  height: 1.5px;
  left: 0;
  width: 100%;
  background: #ffffff;
}
.box-link:hover a::after {
  width: 100%;
}

.project-detail__intro {
  padding: 40px 10vw 24px;
}
.project-detail__intro .section-label {
  margin-bottom: 12px;
}
.project-detail__back {
  position: fixed;
  left: 0;
  top: 210px;
  font-size: 14px;
  text-transform: uppercase;
  color: rgb(150, 150, 150);
  z-index: 1000;
  white-space: nowrap;
  width: calc(10vw - 24px);
  transition: color 0.2s;
  text-align: right;
}
.project-detail__back:hover {
  color: #ffffff;
}
.project-detail__main-media {
  padding: 0 10vw;
}
.project-detail__main-media video, .project-detail__main-media img {
  width: 100%;
  display: block;
  background: #000;
}
.project-detail__specs {
  padding: 20px 10vw 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(150, 150, 150);
}
.project-detail__crew {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 60px;
  padding: 32px 10vw 0;
}
.project-detail__crew p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 700px) {
  .project-detail__crew {
    grid-template-columns: 1fr;
  }
}
.project-detail__crew-role {
  text-transform: capitalize;
}
.project-detail__ext-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 24px 10vw;
}
.project-detail__ext-links a, .project-detail__ext-links span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(150, 150, 150);
  transition: color 0.2s;
}
.project-detail__ext-links a:hover {
  color: #ffffff;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 50px 10vw;
  align-items: start;
}
@media (max-width: 1000px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }
}
.project-gallery__item {
  display: block;
  overflow: hidden;
  aspect-ratio: var(--gallery-image-ratio);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  align-self: start;
}
.project-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.project-gallery__item:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox--open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}
.lightbox__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 16px;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  color: #fff;
}
.lightbox__close {
  top: 24px;
  right: 24px;
  font-size: 20px;
}
.lightbox__prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}
.lightbox__next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.light-page {
  padding-top: 32px;
  padding-bottom: 100px;
}
.light-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 0 10vw 32px;
}
.light-page__heading-block {
  flex: 1;
}
.light-page__subtitle {
  font-size: 14px;
  color: rgb(150, 150, 150);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.light-page__filter.portfolio-filter {
  flex-shrink: 0;
  padding: 10px 0 0;
}

.light-project {
  margin-bottom: 24px;
}
.light-project.is-hidden {
  display: none !important;
}
.light-project__header {
  padding: 0 10vw 8px;
}
.light-project__title-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.light-project__title-row .box-link {
  transform: translateY(-6px);
}
.light-project__title {
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.light-project__slider-area {
  position: relative;
}
.light-project__slider-wrap {
  padding-left: 10vw;
  width: 90vw;
  overflow: hidden;
}
.light-project__slider {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.light-project__slider::-webkit-scrollbar {
  display: none;
}
.light-project__slide {
  flex: 0 0 auto;
  height: clamp(220px, 14vw, 420px);
  aspect-ratio: var(--light-slide-ratio);
  max-width: 72vw;
  overflow: hidden;
  cursor: zoom-in;
}
.light-project__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.light-project__slide:hover img {
  transform: scale(1.03);
}
.light-project__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgb(150, 150, 150);
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  padding: 16px 20px;
  transition: color 0.2s;
  z-index: 10;
}
.light-project__arrow:hover {
  color: #ffffff;
}
.light-project__arrow.is-hidden {
  display: none;
}
.light-project__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.light-project__arrow--prev {
  left: calc(10vw - 64px);
  right: auto;
}
.light-project__arrow--next {
  right: calc(10vw - 64px);
  left: auto;
}
.light-project__specs {
  padding: 14px 10vw 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(150, 150, 150);
}
@media (max-width: 900px) {
  .light-project__slide {
    height: clamp(180px, 28vw, 320px);
    max-width: 82vw;
  }
}
@media (max-width: 600px) {
  .light-project__slide {
    height: clamp(160px, 42vw, 240px);
    max-width: calc(100vw - 2 * 10vw);
  }
}

.project-video__embed {
  position: relative;
  aspect-ratio: 16/9;
}
.project-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.testimonials {
  padding: 70px 0 90px;
  display: none;
}
.testimonials__header {
  padding: 0 10vw 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonials__heading {
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}
.testimonials__slider-area {
  position: relative;
}
.testimonials__slider-wrap {
  padding-left: 10vw;
  width: 90vw;
  overflow: hidden;
}
.testimonials__slider {
  --visible: 1;
  display: flex;
  gap: 16px;
  padding-bottom: 4px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials__slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 900px) {
  .testimonials__slider {
    --visible: 2;
  }
}
.testimonials--static .testimonials__arrow, .testimonials--static .testimonials__dots {
  display: none;
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding: 0 10vw;
}
.testimonials__dot {
  width: 22px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.testimonials__dot:hover {
  background: rgba(255, 255, 255, 0.45);
}
.testimonials__dot.is-active {
  background: #ffffff;
}
.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgb(150, 150, 150);
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  padding: 16px 20px;
  transition: color 0.2s;
  z-index: 10;
}
.testimonials__arrow:hover {
  color: #ffffff;
}
.testimonials__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.testimonials__arrow--prev {
  left: calc(10vw - 64px);
}
.testimonials__arrow--next {
  right: calc(10vw - 64px);
}

.testimonial {
  flex: 0 0 calc((100% - (var(--visible, 1) - 1) * 16px) / var(--visible, 1));
  margin: 0;
  padding: 32px 30px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial.is-hidden {
  display: none;
}
.testimonial__mark {
  font-family: "Antonio", sans-serif;
  font-size: 56px;
  line-height: 0.4;
  color: rgba(255, 255, 255, 0.18);
}
.testimonial__quote {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  flex: 1;
}
.testimonial__cite {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: normal;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  flex-shrink: 0;
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial__name {
  color: #ffffff;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.testimonial__role {
  color: rgb(150, 150, 150);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}/*# sourceMappingURL=style.css.map */