@font-face {
  font-family: "Kammerlander";
  src: url("./kammerlander.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.logotype {
  width: var(--container-width);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-family: "Kammerlander", "Theano Didot", "Times New Roman", serif;
  font-size: clamp(3rem, var(--container-width) * 0.12, 5.75rem);
  letter-spacing: clamp(0.35rem, var(--container-width) / 90, 0.6rem);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  color: #9B2837;
}

.logotype a {
  display: inline-block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.logotype a:focus {
  outline: none;
}

.logotype a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 880px) {
  .logotype {
    letter-spacing: 0.4rem;
  }
}
.gallery-trigger {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-trigger:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(7, 7, 12, 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
}

.gallery-lightbox__content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 2vw, 2.5rem);
  align-items: center;
  width: min(100%, 70rem);
  position: relative;
}

.gallery-lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gallery-lightbox__stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-lightbox__image,
.gallery-lightbox__video {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.4);
  background: rgba(18, 18, 26, 0.8);
}

.gallery-lightbox__image[hidden],
.gallery-lightbox__video[hidden] {
  display: none;
}

.gallery-lightbox__video {
  display: block;
}

.gallery-lightbox__caption {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.gallery-lightbox__nav,
.gallery-lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox__nav span,
.gallery-lightbox__close span {
  font-size: 1.5rem;
  line-height: 1;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}

.gallery-lightbox__nav:focus-visible,
.gallery-lightbox__close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.gallery-lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
}

@media (max-width: 767px) {
  .gallery-lightbox__content {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }
  .gallery-lightbox__nav {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
  .gallery-lightbox__nav--prev {
    left: clamp(1.5rem, 10vw, 3rem);
  }
  .gallery-lightbox__nav--next {
    right: clamp(1.5rem, 10vw, 3rem);
  }
}
body.is-lightbox-open {
  overflow: hidden;
}

.project-detail__content .gallery-block {
  margin-block: clamp(1.2rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2.2vw, 1.4rem);
}

.project-detail__content .gallery-block:first-child {
  margin-top: clamp(1rem, 2.6vw, 1.8rem);
}

.project-detail__content .gallery-block:last-child {
  margin-bottom: clamp(1.4rem, 3.2vw, 2.4rem);
}

.project-detail__content .gallery-block .row {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.project-detail__content .gallery-block .row > * {
  grid-column: span 12;
  min-width: 0;
  height: 100%;
}

@media (min-width: 768px) {
  .project-detail__content .gallery-block .row > .col-md-6 {
    grid-column: span 6;
  }
  .project-detail__content .gallery-block .row > .col-md-4 {
    grid-column: span 4;
  }
}
.project-detail__content .gallery-block figure {
  margin: 0;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(4px);
}

.project-detail__content .gallery-block .gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.project-detail__content .gallery-block .gallery-trigger img,
.project-detail__content .gallery-block .gallery-trigger video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail__content .gallery-block figcaption {
  display: none !important;
}

:root {
  --bg-cream: #f9f5ec;
  --text-dark: #0a0a0a;
  --container-width: min(90vw, 700px);
  --header-offset: clamp(0.75rem, 2.2vw, 1.2rem);
  --header-height: clamp(2.75rem, 8vh, 3rem);
  --card-gap: clamp(1.5rem, 3vw, 2.5rem);
  --card-radius: 10px;
  --transition-duration: 800ms;
  --accent-teal: #4da6a6;
  --soft-gray: rgba(12, 16, 24, 0.08);
  --muted-text: rgba(10, 10, 10, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vh, 4rem) 1.5rem;
}

.page {
  width: var(--container-width);
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.5vh, 2.25rem);
  padding-top: calc(var(--header-offset) + var(--header-height) + clamp(0.6rem, 2vh, 1rem));
}

hr {
  border: none;
  border-top: 1px solid var(--soft-gray);
  margin: clamp(0.75rem, 2vh, 1.25rem) 0 clamp(0.75rem, 2vh, 1.25rem);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
.magic-text {
  position: relative;
  display: inline-block;
  font-weight: 700;
  background-image: linear-gradient(120deg, #6e1d28 0%, #9b2837 40%, #d46b78 50%, #9b2837 60%, #6e1d28 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: magic-wave 6s ease-in-out infinite;
  animation-play-state: paused;
  animation-delay: var(--magic-delay, 0s);
  transition: filter 240ms ease;
}

.magic-text.is-animated {
  animation-play-state: running;
  filter: drop-shadow(0 0.45rem 1rem rgba(245, 93, 26, 0.32));
}

@keyframes magic-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .magic-text {
    animation: none;
    background-position: 50% 50%;
    filter: none;
  }
}
.site-header {
  position: fixed;
  top: var(--header-offset);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: var(--container-width);
  padding: clamp(0.45rem, 1.6vw, 0.7rem) clamp(0.85rem, 2.2vw, 1.1rem);
  border-radius: clamp(0.9rem, 3vw, 1.4rem);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background-color 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: clamp(0.6rem, 2vw, 1.4rem);
}

.site-header__brand {
  font-family: "Kammerlander", "Theano Didot", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  text-decoration: none;
  color: #9B2837;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.site-header.is-logo-visible .site-header__brand {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  justify-content: flex-end;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
  white-space: nowrap;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  font-size: clamp(0.62rem, 1.4vw, 0.78rem);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
}

.site-header.is-scrolled {
  background: rgba(249, 245, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 42px rgba(10, 10, 10, 0.12);
}

@media (max-width: 700px) {
  .site-header {
    padding: clamp(0.4rem, 4vw, 0.65rem) clamp(0.7rem, 4vw, 1rem);
    border-radius: clamp(0.7rem, 4vw, 1rem);
    top: calc(var(--header-offset) * 0.75);
  }
  .site-header__inner {
    min-height: calc(var(--header-height) * 0.85);
    gap: clamp(0.4rem, 3vw, 0.9rem);
  }
  .site-header__brand {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
  .nav-links {
    gap: 0.6rem;
    letter-spacing: 0.12rem;
  }
}
@media (max-width: 520px) {
  .nav-links {
    gap: 0.5rem;
  }
  .nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.1rem;
  }
}
@media (max-width: 420px) {
  .site-header__brand {
    letter-spacing: 0.22rem;
    font-size: 1.3rem;
  }
  .nav-links {
    gap: 0.4rem;
  }
  .nav-links a {
    font-size: 0.54rem;
    letter-spacing: 0.08rem;
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  grid-auto-rows: minmax(320px, 1fr);
  align-items: stretch;
}

.card {
  display: block;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--card-radius);
  box-shadow: 0 25px 60px rgba(13, 22, 34, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
  min-height: 0;
}

.card--link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.card--link:hover {
  transform: translateY(-2px);
}

.card--about.card--link:hover {
  transform: none;
}

.card--link:focus-visible {
  outline: 2px solid rgba(249, 245, 236, 0.9);
  outline-offset: 4px;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.22) 0%, rgba(6, 10, 18, 0.05) 45%, rgba(6, 10, 18, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.card-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #f9f5ec;
  text-shadow: 0 10px 40px rgba(6, 10, 18, 0.6);
}

.card--about {
  grid-column: span 1;
}

.card--about img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.card--slider {
  grid-column: span 2;
}

.slider {
  position: absolute;
  inset: 0;
}

.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-duration) ease;
  margin: 0;
}

.slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slider__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slider__link:focus-visible {
  outline: 2px solid rgba(249, 245, 236, 0.9);
  outline-offset: 4px;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(249, 245, 236, 0.5);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.slider__dot.is-active {
  border-color: rgba(249, 245, 236, 0.95);
  background: rgba(249, 245, 236, 0.8);
}

@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(260px, auto);
  }
  .card--about,
  .card--slider {
    grid-column: span 1;
  }
}
.projects {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vh, 2.5rem);
}

.projects__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.projects__title {
  margin: 0;
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.projects__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.projects__dropdown {
  position: relative;
}

.projects__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--card-radius);
  border: 1px dashed rgba(12, 16, 24, 0.35);
  background: var(--bg-cream);
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.projects__dropdown-toggle:hover,
.projects__dropdown-toggle:focus-visible {
  border-color: rgba(12, 16, 24, 0.55);
  background: #f2e8d6;
  color: var(--text-dark);
}

.projects__dropdown-label {
  font-size: 0.82rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(12, 16, 24, 0.78);
}

.projects__dropdown-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.projects__dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  display: none;
  min-width: 18rem;
  padding: 0.4rem 0;
  margin: 0;
  list-style: none;
  border-radius: var(--card-radius);
  border: 1px solid rgba(12, 16, 24, 0.18);
  background: var(--bg-cream);
  box-shadow: 0 12px 28px rgba(12, 16, 24, 0.12);
  z-index: 5;
}

.projects__dropdown-menu.is-open {
  display: block;
}

.projects__dropdown-menu[hidden] {
  display: none;
}

.projects__dropdown-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 0.78rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: normal;
}

.projects__dropdown-option:hover,
.projects__dropdown-option:focus-visible {
  background: rgba(12, 16, 24, 0.08);
}

.projects__dropdown-option span {
  flex: 1;
}

.projects__dropdown-option.is-active {
  background: var(--accent-teal);
  color: #f7f7f7;
}

.projects-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
}

.projects__actions {
  display: flex;
  justify-content: center;
}

.projects__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.65rem;
  border-radius: var(--card-radius);
  border: 1px dashed rgba(12, 16, 24, 0.35);
  background: var(--bg-cream);
  color: var(--text-dark);
  font-size: 0.75rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.projects__button:hover,
.projects__button:focus-visible {
  border-color: rgba(12, 16, 24, 0.55);
  background: #f2e8d6;
  color: var(--text-dark);
}

@media (min-width: 901px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) and (min-width: 601px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .projects__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects__controls {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .projects__dropdown {
    width: 100%;
  }
  .projects__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .projects__dropdown-menu {
    width: 100%;
    min-width: 0;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 40px rgba(13, 22, 34, 0.08);
  border: 1px solid rgba(12, 16, 24, 0.08);
  transition: box-shadow 0.25s ease;
  min-height: 0;
  isolation: isolate;
}

.project-card.is-hidden {
  display: none;
}

.project-card:hover,
.project-card:focus-within {
  box-shadow: 0 28px 50px rgba(13, 22, 34, 0.12);
}

.project-card__link {
  position: relative;
  display: block;
  flex: 1 1 auto;
}

.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
}

.project-card__logos {
  position: absolute;
  inset-inline: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 1;
}

.project-card__logos img {
  height: 24px;
  object-fit: contain;
}

.project-card[data-project-slug=paris-fashion-week-photoshoot-saminamughal] .project-card__logos img {
  height: 52px;
}

.project-card__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.75rem);
  padding: clamp(1rem, 2vw, 1.75rem);
  background: rgba(6, 11, 17, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
  text-align: center;
}

.project-card__title {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.06rem;
  color: rgba(255, 255, 255, 0.95);
}

.project-card__meta {
  position: absolute;
  top: clamp(1rem, 2vw, 1.75rem);
  left: clamp(1rem, 2vw, 1.75rem);
  margin: 0;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.08rem;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
}

.project-card:hover .project-card__info,
.project-card:focus-within .project-card__info {
  opacity: 1;
}

.project-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vh, 3rem);
}

.project-detail__media-stack {
  display: flex;
  flex-direction: column;
  border-radius: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: 0 25px 60px rgba(13, 22, 34, 0.08);
  overflow: hidden;
  background: #f8f7f4;
}

.project-detail__media-stack--panel-only {
  overflow: visible;
}

.project-detail__hero {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-detail__hero-media {
  position: relative;
  overflow: hidden;
}

.project-detail__panel {
  background: transparent;
  border-radius: 0 0 clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 3vw, 1.8rem);
  border: none;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.project-detail__panel--solo {
  background: #f8f7f4;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: 0 25px 60px rgba(13, 22, 34, 0.08);
}

.project-detail__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-detail__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
}

.project-detail__meta span[aria-hidden=true] {
  opacity: 0.4;
}

.project-detail__meta time,
.project-detail__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.project-detail__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.06rem;
}

.project-detail__description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.6);
}

.project-detail__hero img {
  display: block;
  width: 100%;
  height: clamp(240px, 55vh, 373px);
  object-fit: cover;
  border-radius: inherit;
}

.project-detail__logos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 2;
  pointer-events: none;
}

.project-detail__logos img {
  height: clamp(26px, 3vw, 40px);
  width: auto;
  object-fit: contain;
}

.project-detail[data-project-slug=paris-fashion-week-photoshoot-saminamughal] .project-detail__logos img {
  height: clamp(44px, 6vw, 96px);
}

.project-detail__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.72);
}

.project-detail__content h2,
.project-detail__content h3,
.project-detail__content h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: rgba(10, 10, 10, 0.85);
}

.project-detail__content p {
  margin: 0;
}

.project-detail__content p + p {
  margin-top: 0.5rem;
}

.project-detail__gallery {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  padding-top: clamp(1rem, 3vw, 1.8rem);
  border-top: 1px solid rgba(10, 10, 10, 0.05);
}

.project-detail__gallery-item {
  margin: 0;
  border-radius: clamp(1rem, 3vw, 1.6rem);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 18px 40px rgba(13, 22, 34, 0.05);
  background: rgba(255, 255, 255, 0.8);
}

.project-detail__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-detail__back {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(10, 10, 10, 0.05);
}

.project-detail__back a {
  color: rgba(10, 10, 10, 0.55);
  text-decoration: none;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.project-detail__back a:hover,
.project-detail__back a:focus {
  color: rgba(10, 10, 10, 0.85);
}

.video-block {
  margin: 0;
}

.video-block__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.video-block__media {
  position: relative;
  border-radius: clamp(1rem, 3vw, 1.6rem);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 18px 40px rgba(13, 22, 34, 0.05);
  background: rgba(0, 0, 0, 0.1);
}

.video-block__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
  background: #000;
}

.video-block__sound-toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: none;
  background: rgba(10, 10, 10, 0.65);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(12px);
}

.video-block__sound-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
  opacity: 1;
}

.video-block__media:hover .video-block__sound-toggle,
.video-block__media:focus-within .video-block__sound-toggle {
  opacity: 1;
}

.video-block__sound-toggle:active {
  transform: scale(0.96);
}

.video-block__sound-toggle i {
  font-size: 1.2rem;
}

[data-video-container] i[data-video-icon-unmuted] {
  display: none;
}

[data-video-container].is-audio-on i[data-video-icon-muted] {
  display: none;
}

[data-video-container].is-audio-on i[data-video-icon-unmuted] {
  display: inline;
}

.video-block__caption {
  margin: 0;
  text-align: center;
}

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  align-items: center;
}

.links__item {
  position: relative;
}

.links__dropdown {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.65rem);
  transform: translateX(-50%);
  min-width: max(12rem, 100%);
  padding: 0.6rem;
  border-radius: var(--card-radius);
  border: 1px solid rgba(12, 16, 24, 0.16);
  background: #ffffff;
  box-shadow: 0 0.75rem 2.25rem rgba(12, 16, 24, 0.18);
  z-index: 10;
}

.links__dropdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.links__dropdown-link {
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: calc(var(--card-radius) / 1.6);
  color: inherit;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.links__dropdown-link:hover,
.links__dropdown-link:focus-visible {
  background: rgba(77, 166, 166, 0.12);
  color: inherit;
}

.link-pill--dropdown {
  padding-right: 2.2rem;
  cursor: pointer;
}

.link-pill__text {
  display: inline-flex;
  align-items: center;
}

.link-pill__caret {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  margin-left: 0.25rem;
}

.links__item--has-dropdown [aria-expanded=true] .link-pill__caret {
  transform: rotate(180deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--card-radius);
  border: 1px solid rgba(12, 16, 24, 0.12);
  background: rgba(77, 166, 166, 0.1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.7rem;
  color: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

button.link-pill {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}

.link-pill:hover,
.link-pill:focus-visible {
  background: var(--accent-teal);
  border-color: transparent;
  color: #f7f7f7;
}

.link-pill i {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .links {
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-start;
  }
  .links__list {
    justify-content: flex-start;
    margin-left: 0;
  }
  .links__dropdown {
    left: 0;
    right: auto;
    transform: none;
    min-width: 11rem;
  }
}
.footer-note {
  margin: 0;
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  font-size: 0.65rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-note .heart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2rem;
  vertical-align: middle;
  position: relative;
  top: 0.01rem;
}

.heart-icon .bi {
  font-size: 12px;
  line-height: 1;
  color: rgba(201, 82, 82, 0.72);
  text-shadow: 0 0 0 rgba(201, 82, 82, 0.9);
  transform-origin: center;
  animation: heart-beat 2.8s ease-in-out infinite;
  display: inline-block;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

@keyframes heart-beat {
  0% {
    transform: scale(1.18);
  }
  18% {
    transform: scale(0.92);
  }
  28% {
    transform: scale(1.02);
  }
  38% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 4vw, 3rem);
  background: #f8f7f4;
  border-radius: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 25px 60px rgba(13, 22, 34, 0.08);
}

.not-found__eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
}

.not-found__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.08rem;
}

.not-found__summary {
  margin: 0;
  max-width: 28rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.6);
}

.not-found__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.8rem;
  border-radius: var(--card-radius);
  border: 1px solid rgba(10, 10, 10, 0.16);
  background: rgba(77, 166, 166, 0.12);
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.75rem;
}

.not-found__cta:hover,
.not-found__cta:focus-visible {
  border-color: rgba(10, 10, 10, 0.35);
}

.nav-links__languages {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.26rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.22);
  background: rgba(250, 246, 238, 0.55);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.nav-language-link:hover,
.nav-language-link:focus {
  opacity: 1;
}

.nav-language-link.is-active {
  opacity: 1;
  pointer-events: none;
}

.nav-links__languages.has-highlight .nav-language-link.is-active {
  background: transparent;
}

.nav-language-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  padding: 0.2rem 0.54rem;
  border-radius: 999px;
  letter-spacing: 0.16rem;
  font-size: clamp(0.54rem, 1.05vw, 0.66rem);
  opacity: 0.68;
  transition: opacity 160ms ease;
}

.nav-language-link:hover .nav-language-pill,
.nav-language-link:focus .nav-language-pill,
.nav-language-link.is-active .nav-language-pill {
  opacity: 1;
}

.nav-language-highlight {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 0;
  height: 0;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.12);
  pointer-events: none;
  transition: transform 220ms ease, width 220ms ease, height 220ms ease, opacity 180ms ease;
  opacity: 0;
  z-index: 0;
  color: rgba(20, 20, 20, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: clamp(0.54rem, 1.05vw, 0.66rem);
  letter-spacing: 0.16rem;
  padding: 0.2rem 0.54rem;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .nav-links__languages {
    gap: 0.18rem;
    padding: 0.12rem 0.24rem;
  }
  .nav-language-pill {
    min-width: 2.1rem;
    padding: 0.16rem 0.42rem;
    font-size: 0.54rem;
    letter-spacing: 0.12rem;
  }
  .nav-language-highlight {
    font-size: 0.54rem;
    letter-spacing: 0.12rem;
    padding: 0.16rem 0.42rem;
  }
}
@media (max-width: 520px) {
  .nav-links__languages {
    gap: 0.14rem;
    padding: 0.12rem 0.18rem;
  }
  .nav-language-pill {
    min-width: 1.9rem;
    padding: 0.14rem 0.32rem;
    letter-spacing: 0.1rem;
    font-size: 0.5rem;
  }
  .nav-language-highlight {
    font-size: 0.5rem;
    letter-spacing: 0.1rem;
    padding: 0.14rem 0.32rem;
  }
}
@media (max-width: 420px) {
  .nav-links__languages {
    gap: 0.12rem;
    padding: 0.1rem 0.16rem;
  }
  .nav-language-pill {
    min-width: 1.7rem;
    padding: 0.12rem 0.28rem;
    letter-spacing: 0.08rem;
    font-size: 0.48rem;
  }
  .nav-language-highlight {
    font-size: 0.48rem;
    letter-spacing: 0.08rem;
    padding: 0.12rem 0.28rem;
  }
}
.retouche-block {
  --retouche-position: 50%;
  --retouche-handle-size: clamp(2.35rem, 6vw, 2.9rem);
}

.retouche-block__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

.retouche-block__media {
  position: relative;
  border-radius: clamp(1rem, 3vw, 1.6rem);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 18px 40px rgba(13, 22, 34, 0.05);
  background: rgba(255, 255, 255, 0.78);
  isolation: isolate;
  cursor: ew-resize;
  touch-action: none;
  transition: box-shadow 0.2s ease;
}

.retouche-block__media:focus-within,
.retouche-block__media:hover {
  box-shadow: 0 20px 44px rgba(12, 20, 32, 0.07);
}

.retouche-block__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.retouche-block__overlay {
  position: absolute;
  inset: 0;
  width: var(--retouche-position, 50%);
  overflow: hidden;
  pointer-events: none;
  transition: width 0.12s ease-out;
}

.retouche-block__overlay .retouche-block__image {
  width: auto;
  height: 100%;
  max-width: none;
}

.retouche-block__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--retouche-position, 50%);
  transform: translateX(-50%);
  width: var(--retouche-handle-size);
  pointer-events: none;
}

.retouche-block__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.retouche-block__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: var(--retouche-handle-size);
  height: var(--retouche-handle-size);
  border-radius: 999px;
  background: rgba(12, 12, 20, 0.85);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(8, 8, 18, 0.28);
  font-size: clamp(1rem, 3vw, 1.35rem);
}

.retouche-block__handle-knob i {
  line-height: 1;
}

.retouche-block__labels {
  position: absolute;
  inset: clamp(0.85rem, 2.4vw, 1.35rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
  font-size: clamp(0.7rem, 1.7vw, 0.85rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.retouche-block__label {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 12, 20, 0.65);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(8, 8, 18, 0.18);
}

.retouche-block__label--after {
  margin-left: auto;
}

.retouche-block__slider {
  width: min(100%, 26rem);
  margin: clamp(0.45rem, 1.5vw, 0.9rem) auto 0;
  display: block;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.18);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}

.retouche-block__slider:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.35);
  outline-offset: 4px;
}

.retouche-block__slider::-webkit-slider-runnable-track {
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.18);
}

.retouche-block__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(12, 12, 20, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(8, 8, 18, 0.24);
  cursor: pointer;
  margin-top: calc(-0.575rem + 1px);
}

.retouche-block__slider::-moz-range-track {
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.18);
}

.retouche-block__slider::-moz-range-thumb {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(12, 12, 20, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(8, 8, 18, 0.24);
  cursor: pointer;
}

.retouche-block__slider::-moz-focus-outer {
  border: 0;
}

.retouche-block__caption {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(10, 10, 10, 0.55);
}

@media (max-width: 600px) {
  .retouche-block__labels {
    inset: clamp(0.65rem, 4vw, 0.9rem);
    font-size: clamp(0.65rem, 2.4vw, 0.78rem);
    letter-spacing: 0.08em;
  }
  .retouche-block__handle-knob {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }
}