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

html {
  background: #000000;
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: #000000;
  color: #ffffff;
  font-family: "Suisse Intl", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

ul,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

::selection {
  background: #a81e1d;
  color: #ffffff;
}

.site {
  position: relative;
  overflow-x: hidden;
}

.site-main {
  position: relative;
}

.empty-state {
  padding: 120px 32px;
  text-align: center;
  color: #7a7a7a;
}

.btn {
  display: inline-block;
  padding: 16px 64px;
  border: 1px solid #ffffff;
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: background 120ms cubic-bezier(0.65, 0, 0.35, 1), color 120ms cubic-bezier(0.65, 0, 0.35, 1), box-shadow 120ms cubic-bezier(0.65, 0, 0.35, 1);
}
.btn--outline:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 40px rgba(91, 61, 240, 0.35);
}

.site::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

h1, h2, h3, h4 {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}

.hero__tagline {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin: 0;
}

dt {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 4px;
}

dd {
  margin: 0;
  font-size: 0.95rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  mix-blend-mode: difference;
  transition: transform 280ms cubic-bezier(0.65, 0, 0.35, 1);
  max-height: 200px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  max-height: 40px;
}
.site-header__logo img {
  max-height: 40px;
  width: auto;
}

.logo {
  position: relative;
  display: inline-block;
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: lowercase;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo__mark {
  position: relative;
  z-index: 1;
}

.logo::before {
  content: "";
  position: absolute;
  inset: -12px -20px;
  background: radial-gradient(circle, rgba(91, 61, 240, 0.5), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.nav__list a {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: #a81e1d;
  transition: right 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__list a:hover::after {
  right: 0;
}

@media (max-width: 768px) {
  .site-header__inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
  }
  .site-header__logo {
    justify-content: center;
  }
  .site-header__nav {
    width: 100%;
  }
  .nav__list {
    justify-content: center;
    gap: 16px 32px;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__video,
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111111;
}

.hero__embed {
  position: absolute;
  inset: 0;
}
.hero__embed iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
}
.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slider__zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  z-index: 5;
  cursor: pointer;
}
.hero-slider__zone--prev {
  left: 0;
  cursor: w-resize;
}
.hero-slider__zone--next {
  right: 0;
  cursor: e-resize;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 32px 120px;
  width: 100%;
  pointer-events: none;
}
.hero__content > * {
  pointer-events: auto;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 6px;
  transition: border-color 120ms cubic-bezier(0.65, 0, 0.35, 1);
}
.hero__scroll:hover {
  border-color: #a81e1d;
}

.featured-strip {
  padding: 120px 32px;
}

.featured-strip__row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 16px;
}
.featured-strip__row::-webkit-scrollbar {
  display: none;
}

.featured-strip__item {
  flex: 0 0 auto;
  height: 380px;
}
.featured-strip__item img {
  height: 100%;
  width: auto;
  display: block;
}

.featured-strip__cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.portfolio {
  padding: 140px 32px 120px;
}

.portfolio__header {
  margin-bottom: 64px;
  max-width: 900px;
}

.portfolio__switch {
  display: flex;
  gap: 32px;
  margin-top: 16px;
}

.portfolio__switch-item {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #7a7a7a;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.portfolio__switch-item.is-active {
  color: #ffffff;
  border-color: #a81e1d;
}
.portfolio__switch-item:hover:not(.is-active) {
  color: #ffffff;
}

.portfolio__intro {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.filter-bar__item {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  color: #7a7a7a;
  transition: color 120ms cubic-bezier(0.65, 0, 0.35, 1), border-color 120ms cubic-bezier(0.65, 0, 0.35, 1);
}
.filter-bar__item.is-active, .filter-bar__item:hover {
  color: #ffffff;
  border-color: #a81e1d;
}

.filter-dropdowns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.filter-dropdown {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 8px 16px;
}
.filter-dropdown:focus {
  outline: none;
  border-color: #5b3df0;
  box-shadow: 0 0 40px rgba(91, 61, 240, 0.35);
}

.portfolio-grid--justified {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  height: 320px;
}
.portfolio-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 280ms cubic-bezier(0.65, 0, 0.35, 1), filter 280ms cubic-bezier(0.65, 0, 0.35, 1);
}
.portfolio-item:hover img {
  transform: scale(1.03);
  filter: blur(0.5px) saturate(1.1);
}
.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 30% 30%, rgba(168, 30, 29, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 120ms cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.portfolio-item:hover::before {
  opacity: 1;
}
.portfolio-item.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .portfolio-item {
    height: 220px;
    flex-grow: 1 !important;
    flex-basis: 100% !important;
  }
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-item {
  position: relative;
}
.video-item.is-hidden {
  display: none;
}

.video-item__play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111111;
}

.video-item__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms cubic-bezier(0.65, 0, 0.35, 1);
}

.video-item__play:hover .video-item__cover {
  transform: scale(1.04);
}

.video-item__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.video-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
}

.video-item__title {
  margin-top: 8px;
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms cubic-bezier(0.65, 0, 0.35, 1);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}

.lightbox__video-embed {
  width: min(92vw, 1100px);
  aspect-ratio: 16/9;
}
.lightbox__video-embed iframe {
  width: 100%;
  height: 100%;
}

.lightbox__close {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  transition: color 120ms cubic-bezier(0.65, 0, 0.35, 1);
}
.lightbox__close:hover {
  color: #a81e1d;
}

.site-footer {
  padding: 64px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
}

.site-footer__name {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}

.site-footer__label {
  color: #7a7a7a;
  font-size: 0.8rem;
}

.site-footer__list {
  display: flex;
  gap: 32px;
}

.site-footer__meta {
  display: flex;
  gap: 32px;
  color: #7a7a7a;
  font-size: 0.85rem;
}
.site-footer__meta a:hover {
  color: #a81e1d;
}

.about-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
}

.about-page__portrait {
  height: 100%;
}

.about-page__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}

.about-page__content {
  padding: 120px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page__bio p {
  margin: 0 0 16px;
}

.about-page__scope {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-page__scope li {
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .about-page {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-page__email {
  display: inline-block;
  margin-top: 64px;
  font-family: "Neue Machina", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 2px solid #a81e1d;
}

.contact-page__meta {
  margin-top: 32px;
  color: #7a7a7a;
}

.contact-page__social {
  margin-top: 32px;
  display: flex;
  gap: 32px;
}
.contact-page__social a:hover {
  color: #a81e1d;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 160px 32px 120px;
}

.legal-page__content {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.8);
}
.legal-page__content p {
  margin: 0 0 16px;
}
.legal-page__content h2 {
  font-size: 1.25rem;
  margin-top: 64px;
  margin-bottom: 8px;
}
