:root {
  --ink: #131311;
  --paper: #f1efe9;
  --bone: #e5e1d7;
  --white: #fff;
  --line: rgba(19, 19, 17, 0.2);
  --serif: Baskerville, "Baskerville Old Face", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 24px 38px;
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background-color 0.45s ease,
    border-color 0.45s ease,
    color 0.45s ease,
    padding 0.45s ease;
  z-index: 30;
}

.site-header.is-scrolled,
.site-header--paper {
  background: rgba(241, 239, 233, 0.96);
  border-bottom-color: rgba(19, 19, 17, 0.12);
  color: var(--ink);
  padding-bottom: 14px;
  padding-top: 14px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: clamp(108px, 10vw, 160px);
}

.brand img {
  height: auto;
  transition: filter 0.45s ease;
  width: 100%;
}

.brand--light img {
  filter: invert(1);
}

.brand--dark img {
  filter: none;
}

.site-header.is-scrolled .brand--light img {
  filter: none;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3.6vw, 62px);
}

.desktop-nav a,
.hero-bottom,
.eyebrow,
.menu-trigger,
.text-button,
.footer-links,
.footer-meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  position: relative;
}

.desktop-nav a:first-child {
  font-weight: 500;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-self: end;
}

.language-switch {
  align-items: center;
  display: flex;
  font-size: 9px;
  gap: 8px;
  letter-spacing: 0.15em;
}

.language-switch a {
  opacity: 0.48;
  padding: 8px 0;
}

.language-switch a[aria-current="page"],
.language-switch a:hover,
.language-switch a:focus-visible {
  opacity: 1;
}

.desktop-nav a::after {
  background: currentColor;
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-trigger {
  align-items: flex-end;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 6px;
  justify-self: end;
  padding: 12px 0 12px 16px;
}

.menu-trigger span {
  background: currentColor;
  display: block;
  height: 1px;
  width: 30px;
}

.menu-trigger span:last-child {
  width: 19px;
}

.hero {
  align-items: center;
  color: var(--white);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 130px 7vw 100px;
  position: relative;
}

.hero-video,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-video {
  background: #080807;
  left: 50%;
  min-height: 56.25vw;
  min-width: 177.77vh;
  pointer-events: none;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-video iframe {
  --hero-scale-start: 1.22;
  --hero-scale-end: 1.275;
  animation: deus-hero-drift 24s ease-in-out infinite alternate;
  border: 0;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.22);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.65s ease;
  width: 100%;
}

.hero-video.is-video-playing iframe {
  opacity: 1;
}

.video-loading-mark {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  left: 50%;
  letter-spacing: 0.38em;
  padding-left: 0.38em;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
  z-index: 0;
}

.is-video-playing > .video-loading-mark,
.is-video-playing .video-loading-mark {
  opacity: 0;
}

@keyframes deus-hero-drift {
  from {
    transform: translate(-50%, -50%) scale(var(--hero-scale-start));
  }
  to {
    transform: translate(-49.4%, -50.4%) scale(var(--hero-scale-end));
  }
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.52) 0%, rgba(10, 10, 9, 0.04) 36%, rgba(10, 10, 9, 0.58) 100%),
    linear-gradient(90deg, rgba(8, 8, 7, 0.25), transparent 65%);
}

.hero-copy {
  margin: 2vh auto 0;
  max-width: 1180px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

[data-hero] .hero-kicker,
[data-hero] .hero-copy h1,
[data-hero] .hero-copy .text-button,
[data-hero] .hero-bottom > * {
  animation: deus-hero-enter 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-hero] .hero-kicker {
  animation-delay: 0.16s;
}

[data-hero] .hero-copy h1 {
  animation-delay: 0.28s;
}

[data-hero] .hero-copy .text-button {
  animation-delay: 0.46s;
}

[data-hero] .hero-bottom > * {
  animation-delay: 0.62s;
}

[data-hero] .hero-bottom > :nth-child(2) {
  animation-delay: 0.7s;
}

[data-hero] .hero-bottom > :nth-child(3) {
  animation-delay: 0.78s;
}

@keyframes deus-hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  margin: 0 0 28px;
}

.hero h1,
.manifesto h2,
.section-heading h2,
.about h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(58px, 9.1vw, 148px);
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 em,
.manifesto h2 em,
.about h2 em,
.contact h2 em {
  font-weight: 400;
  text-transform: none;
}

.text-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 12px;
  margin-top: 48px;
  padding: 10px 0;
}

.text-button--light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.play-mark {
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  border-top: 4px solid transparent;
  display: inline-block;
  flex: 0 0 auto;
  height: 0;
  width: 0;
}

.hero-bottom {
  align-items: flex-end;
  bottom: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 38px;
  position: absolute;
  right: 38px;
  z-index: 2;
}

.hero-bottom span:nth-child(2) {
  text-align: center;
}

.hero-bottom a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-self: end;
}

.dw-arrow {
  display: inline-block;
  flex: 0 0 auto;
  height: 11px;
  position: relative;
  vertical-align: -1px;
  width: 11px;
}

.dw-arrow::before {
  background: currentColor;
  bottom: 1px;
  content: "";
  height: 1px;
  left: 1px;
  position: absolute;
  transform: rotate(-45deg);
  transform-origin: left center;
  width: 12px;
}

.dw-arrow::after {
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  height: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
}

.section-pad {
  padding-left: 7vw;
  padding-right: 7vw;
}

.eyebrow {
  line-height: 1.4;
  margin: 0;
}

.manifesto {
  padding-bottom: 13vw;
  padding-top: 13vw;
}

.manifesto > .eyebrow {
  margin-bottom: 6vw;
}

.manifesto h2 {
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.95;
  max-width: 1250px;
}

.manifesto-story {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  margin-top: 8vw;
}

.manifesto-image {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.manifesto-reels {
  background: var(--ink);
  display: grid;
  flex: 1;
  gap: 3px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 510px;
  overflow: hidden;
}

.manifesto-reel {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  min-height: 510px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.manifesto-reel img {
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  transform: scale(1.005);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.manifesto-image[data-reveal="image"].is-visible .manifesto-reel img {
  animation: none;
}

.manifesto-reel:hover img,
.manifesto-reel:focus-visible img {
  transform: scale(1.055);
}

.manifesto-reel__shade {
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.08), transparent 42%, rgba(10, 10, 9, 0.68));
  inset: 0;
  position: absolute;
  transition: background 0.45s ease;
}

.manifesto-reel:hover .manifesto-reel__shade,
.manifesto-reel:focus-visible .manifesto-reel__shade {
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.02), transparent 36%, rgba(10, 10, 9, 0.78));
}

.manifesto-reel__number {
  font-size: 8px;
  left: 18px;
  letter-spacing: 0.16em;
  position: absolute;
  top: 18px;
}

.manifesto-reel__title {
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  left: 18px;
  position: absolute;
  right: 18px;
}

.manifesto-reel__title strong {
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 28px);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.manifesto-reel__title small {
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto-image figcaption {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  padding: 14px 0;
  text-transform: uppercase;
}

.manifesto-image figcaption span:last-child {
  opacity: 0.58;
}

.manifesto-copy {
  background: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.5vw, 96px);
}

.manifesto-lead {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 clamp(38px, 4vw, 64px);
}

.manifesto-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin: 0;
  max-width: none;
}

.manifesto-copy .line-link {
  margin-top: clamp(42px, 5vw, 72px);
  max-width: 320px;
}

.manifesto-grid p,
.about-copy > p,
.section-heading > p,
.contact-intro > p {
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 350;
  line-height: 1.7;
  margin: 0;
}

.featured-film {
  background: var(--ink);
  padding: 0 3vw;
}

.featured-film__button {
  aspect-ratio: 16 / 8.6;
  background: #000;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.featured-film__button img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.featured-film__wash {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.68));
  inset: 0;
  position: absolute;
}

.featured-film__button:hover img {
  transform: scale(1.055);
}

.featured-film__label {
  bottom: 5vw;
  left: 5vw;
  position: absolute;
}

.featured-film__label strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 98px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-top: 10px;
}

.round-play {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  display: flex;
  font-size: 10px;
  height: clamp(76px, 9vw, 138px);
  justify-content: center;
  letter-spacing: 0.17em;
  position: absolute;
  right: 5vw;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
  width: clamp(76px, 9vw, 138px);
}

.featured-film__button:hover .round-play {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}

.films {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 14vw;
  padding-top: 13vw;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr minmax(260px, 420px);
  margin-bottom: 9vw;
}

.section-heading h2 {
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.9;
  margin-top: 20px;
}

.film-grid {
  display: grid;
  gap: 8vw 3vw;
  grid-template-columns: 1fr 1fr;
}

.film-card {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.film-card:nth-child(even) {
  margin-top: 12vw;
}

.film-card__image {
  aspect-ratio: 4 / 2.7;
  display: block;
  overflow: hidden;
  position: relative;
}

.film-card--tall .film-card__image {
  aspect-ratio: 4 / 3.35;
}

.film-card__image img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease;
  width: 100%;
}

.film-card__overlay {
  background: rgba(0, 0, 0, 0.12);
  inset: 0;
  position: absolute;
  transition: background 0.5s ease;
}

.film-card__play {
  align-items: center;
  background: rgba(245, 243, 237, 0.92);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 9px;
  height: 88px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.15em;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -40%);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  width: 88px;
}

.film-card:hover .film-card__image img {
  transform: scale(1.045);
}

.film-card:hover .film-card__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.film-card:hover .film-card__play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.film-card__meta {
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
  margin-top: 19px;
  padding-top: 14px;
}

.film-card__meta > span {
  align-items: baseline;
  display: flex;
  gap: 16px;
}

.film-card__meta small,
.film-card__meta em {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-card__meta strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.film-card__meta em {
  opacity: 0.6;
  padding-top: 8px;
}

.portfolio-preview {
  background: var(--paper);
  padding-bottom: 12vw;
  padding-top: 12vw;
}

.portfolio-preview .section-heading {
  margin-bottom: 6vw;
}

.portfolio-preview .section-heading h2 {
  font-size: clamp(54px, 6.4vw, 104px);
  max-width: 940px;
}

.portfolio-preview__grid,
.portfolio-grid {
  display: grid;
  gap: 5.5vw 1.5vw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  min-width: 0;
  padding: 0;
  text-align: left;
}

.portfolio-card__image {
  aspect-ratio: 16 / 9;
  background: var(--bone);
  display: block;
  overflow: hidden;
  position: relative;
}

.portfolio-card__image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.portfolio-card__shade {
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.24));
  inset: 0;
  position: absolute;
  transition: background 0.45s ease;
}

.portfolio-card__play {
  align-items: center;
  background: rgba(245, 243, 237, 0.94);
  border-radius: 50%;
  display: flex;
  font-size: 0;
  height: 76px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.16em;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -42%);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  width: 76px;
}

.portfolio-card__play::before,
.editorial-hero__video-play::before {
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  border-top: 6px solid transparent;
  content: "";
  display: block;
  height: 0;
  margin-left: 3px;
  width: 0;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.055);
}

.portfolio-card:hover .portfolio-card__shade {
  background: rgba(0, 0, 0, 0.22);
}

.portfolio-card:hover .portfolio-card__play,
.portfolio-card:focus-visible .portfolio-card__play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.portfolio-card__meta {
  display: block;
  padding: 20px 4px 0;
  text-align: center;
}

.portfolio-card__meta strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.portfolio-card__meta em {
  display: block;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.16em;
  margin-top: 9px;
  opacity: 0.58;
  text-transform: uppercase;
}

.portfolio-preview__link {
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  margin: 7vw auto 0;
  max-width: 330px;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.portfolio-page {
  background: var(--paper);
  min-height: 100svh;
}

.portfolio-intro {
  padding-bottom: clamp(50px, 5vw, 84px);
  padding-top: clamp(150px, 12vw, 210px);
  text-align: center;
}

.portfolio-intro h1,
.portfolio-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
}

.portfolio-intro h1 {
  font-size: clamp(48px, 4.6vw, 74px);
  line-height: 1;
  margin: 0 auto 28px;
  text-transform: uppercase;
}

.portfolio-intro h1 em,
.portfolio-cta h2 em {
  font-weight: 400;
  text-transform: none;
}

.portfolio-intro__copy {
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.35;
  margin: 0 auto;
  max-width: 660px;
}

.portfolio-archive {
  padding-bottom: 13vw;
  padding-top: 0;
}

.portfolio-archive__top {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 9px;
  justify-content: flex-end;
  letter-spacing: 0.17em;
  margin-bottom: 5vw;
  padding-bottom: 18px;
  text-transform: uppercase;
}

.portfolio-page .portfolio-grid {
  gap: clamp(16px, 1.5vw, 26px);
}

.portfolio-page .portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.portfolio-page .portfolio-card__image {
  border-radius: 8px;
}

.portfolio-page .portfolio-card__shade {
  background: rgba(0, 0, 0, 0.16);
}

.portfolio-page .portfolio-card__play {
  background: transparent;
  color: var(--white);
  font-size: clamp(30px, 3vw, 48px);
  height: auto;
  left: 50%;
  letter-spacing: 0;
  opacity: 1;
  padding-left: 4px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  z-index: 2;
}

.portfolio-page .portfolio-card__meta {
  bottom: clamp(16px, 1.6vw, 26px);
  color: var(--white);
  left: clamp(16px, 1.6vw, 26px);
  opacity: 0;
  padding: 0;
  position: absolute;
  text-align: left;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: 2;
}

.portfolio-page .portfolio-card__meta strong {
  font-size: clamp(22px, 2vw, 34px);
}

.portfolio-page .portfolio-card__meta em {
  margin-top: 6px;
}

.portfolio-page .portfolio-card:hover .portfolio-card__meta,
.portfolio-page .portfolio-card:focus-visible .portfolio-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-cta {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding-bottom: 11vw;
  padding-top: 11vw;
  text-align: center;
}

.portfolio-cta h2 {
  font-size: clamp(55px, 7.4vw, 120px);
  line-height: 0.86;
  margin: 4vw 0 0;
}

.instagram {
  align-items: end;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(70px, 8vw, 150px);
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.32fr);
  padding-bottom: clamp(90px, 9vw, 150px);
  padding-top: clamp(90px, 9vw, 150px);
}

.instagram-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.instagram-heading h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 6.2vw, 100px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.84;
  margin: clamp(28px, 3vw, 46px) 0 0;
}

.instagram-heading h2 em {
  font-weight: 400;
}

.instagram-heading__copy {
  font-size: 13px;
  line-height: 1.7;
  margin: clamp(34px, 4vw, 62px) 0 0;
  max-width: 390px;
  opacity: 0.66;
}

.instagram-heading > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  margin-top: clamp(44px, 5vw, 76px);
  max-width: 310px;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.instagram-live {
  min-width: 0;
  width: 100%;
}

.instagram-live__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  padding-bottom: 17px;
  text-transform: uppercase;
}

.instagram-live__top a {
  opacity: 0.68;
  transition: opacity 0.25s ease;
}

.instagram-live__top a:hover,
.instagram-live__top a:focus-visible {
  opacity: 1;
}

.instagram-live__viewport {
  aspect-ratio: 3 / 1;
  background: #fff;
  margin-top: clamp(22px, 2.2vw, 34px);
  overflow: hidden;
  position: relative;
}

.instagram-live__viewport iframe {
  background: #fff;
  border: 0;
  height: 1100px;
  left: 0;
  position: absolute;
  top: -158px;
  width: 100%;
}

.about {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 100svh;
}

.about-image {
  min-height: 820px;
  overflow: hidden;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-copy {
  align-self: center;
  padding-bottom: 10vw;
  padding-top: 10vw;
}

.about h2 {
  font-size: clamp(50px, 6vw, 98px);
  line-height: 0.98;
  margin: 4vw 0 5vw;
}

.about-copy > p {
  max-width: 600px;
}

.about-copy .about-lead {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.25;
  margin-bottom: 28px;
}

.line-link {
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  margin-top: 5vw;
  max-width: 280px;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.line-link .dw-arrow,
.portfolio-preview__link .dw-arrow,
.editorial-next .dw-arrow,
.submit-button .dw-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-link:hover .dw-arrow,
.line-link:focus-visible .dw-arrow,
.portfolio-preview__link:hover .dw-arrow,
.portfolio-preview__link:focus-visible .dw-arrow,
.editorial-next:hover .dw-arrow,
.editorial-next:focus-visible .dw-arrow,
.submit-button:hover .dw-arrow,
.submit-button:focus-visible .dw-arrow {
  transform: translate(4px, -4px);
}

.philosophy {
  background: var(--bone);
  padding-bottom: 12vw;
  padding-top: 11vw;
}

.philosophy > .eyebrow {
  margin-bottom: 6vw;
}

.philosophy-line {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2vw;
  grid-template-columns: 50px 1fr minmax(250px, 370px);
  padding: 34px 0;
}

.philosophy-line:last-child {
  border-bottom: 1px solid var(--line);
}

.philosophy-line > span {
  font-size: 9px;
  letter-spacing: 0.15em;
}

.philosophy-line h3 {
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

.philosophy-line p {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.contact {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.contact-intro {
  align-self: center;
  padding-bottom: 10vw;
  padding-top: 10vw;
}

.contact h2 {
  font-size: clamp(64px, 7.8vw, 128px);
  line-height: 0.82;
  margin: 4.5vw 0;
}

.contact-intro > p {
  margin-bottom: 45px;
  max-width: 540px;
}

.contact-intro > a {
  display: table;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.contact-preview {
  align-self: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 7vw 0;
  min-height: 58vh;
  padding-bottom: 7vw;
  padding-top: 7vw;
}

.contact-preview__lead {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  max-width: 620px;
}

.contact-preview .line-link--light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  margin-top: clamp(50px, 6vw, 86px);
  max-width: 340px;
}

.contact-preview__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  margin-top: clamp(70px, 8vw, 120px);
  padding-top: 18px;
  text-transform: uppercase;
}

.inquiry-form {
  align-self: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 7vw 0;
  padding: 6vw 7vw;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inquiry-form label > span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.15vw, 34px);
  outline: 0;
  padding: 2px 0 13px;
  resize: vertical;
  width: 100%;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--white);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.33);
}

.inquiry-form .form-honeypot {
  height: 1px;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.inquiry-form__status {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  min-height: 20px;
}

.inquiry-form__status.is-success {
  color: #295f3d;
}

.inquiry-form__status.is-error {
  color: #8b2f26;
}

.form-row {
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr 1fr;
}

.submit-button {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--paper);
  cursor: pointer;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  margin-top: 10px;
  padding: 21px 24px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.submit-button:hover {
  background: transparent;
  color: var(--white);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.editorial-page {
  background: var(--paper);
  min-height: 100svh;
}

.editorial-hero {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6vw;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  min-height: 100svh;
  padding-bottom: 7vw;
  padding-top: clamp(160px, 15vw, 230px);
}

.editorial-hero__copy {
  align-self: center;
}

.editorial-hero__copy h1 {
  font-family: var(--serif);
  font-size: clamp(62px, 7.2vw, 116px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.84;
  margin: 42px 0 4vw;
}

.editorial-hero__copy h1 em {
  font-weight: 400;
}

.editorial-hero__copy > p:last-child {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.5;
  max-width: 720px;
}

.editorial-hero__image {
  margin: 0;
}

.editorial-hero__image img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.editorial-hero__image--inquire > img {
  object-position: 68% center;
}

.editorial-hero__video {
  aspect-ratio: 4 / 5;
  background: #111;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.editorial-hero__video-trigger {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  inset: 0;
  padding: 0;
  position: absolute;
  z-index: 3;
}

.editorial-hero__video > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.editorial-hero__video-embed {
  background: #080807;
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.editorial-hero__video-embed iframe {
  border: 0;
  height: 122%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.24);
  transition: opacity 0.55s ease;
  width: 244%;
}

.editorial-hero__video-embed.is-video-playing iframe {
  opacity: 1;
}

.editorial-hero__video-play {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(12, 12, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: flex;
  font-size: 0;
  height: 58px;
  justify-content: center;
  left: 50%;
  padding-left: 3px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  width: 58px;
}

.editorial-hero__video:hover .editorial-hero__video-play,
.editorial-hero__video-trigger:focus-visible .editorial-hero__video-play {
  background: var(--white);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.06);
}

.editorial-hero__video-trigger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -8px;
}

.editorial-hero__image figcaption {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.15em;
  padding: 14px 0;
  text-transform: uppercase;
}

.editorial-hero__image figcaption span:last-child {
  opacity: 0.56;
}

.editorial-body {
  padding-bottom: 11vw;
  padding-top: 10vw;
}

.editorial-body__lead {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 104px);
  letter-spacing: -0.025em;
  line-height: 0.92;
  margin: 0 0 9vw;
  max-width: 1200px;
}

.editorial-chapters {
  border-top: 1px solid var(--line);
}

.editorial-chapters article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5vw;
  grid-template-columns: minmax(180px, 0.55fr) minmax(280px, 1fr);
  padding: 42px 0;
}

.editorial-chapters h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

.editorial-chapters p {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.75;
  margin: 0;
  max-width: 720px;
}

.editorial-next {
  border-bottom: 1px solid var(--ink);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.18em;
  margin: 7vw auto 0;
  max-width: 390px;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.editorial-inquire {
  align-items: start;
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.72fr 1.28fr;
  padding-bottom: 10vw;
  padding-top: 10vw;
}

.editorial-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 130px;
}

.editorial-contact .eyebrow {
  margin-bottom: 42px;
}

.editorial-contact a {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
}

.inquiry-form--light {
  border-left-color: var(--line);
  margin: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-top: 0;
}

.inquiry-form--light input,
.inquiry-form--light textarea {
  border-bottom-color: var(--line);
}

.inquiry-form--light input:focus,
.inquiry-form--light textarea:focus {
  border-color: var(--ink);
}

.inquiry-form--light input::placeholder,
.inquiry-form--light textarea::placeholder {
  color: rgba(19, 19, 17, 0.34);
}

.submit-button--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.submit-button--dark:hover {
  background: transparent;
  color: var(--ink);
}

footer {
  align-items: end;
  background: var(--paper);
  display: grid;
  gap: 5vw;
  grid-template-columns: 1fr auto 1fr;
  padding: 8vw 7vw 42px;
}

.footer-brand {
  width: clamp(180px, 19vw, 310px);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-self: end;
  text-align: right;
}

.menu-overlay {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 7vw;
  pointer-events: none;
  position: fixed;
  transform: translateY(-100%);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  z-index: 60;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 20px;
  position: absolute;
  right: 3vw;
  text-transform: uppercase;
  top: 2vw;
}

.menu-overlay nav {
  display: flex;
  flex-direction: column;
}

.menu-overlay nav a {
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 118px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  padding: 8px 0;
}

.menu-overlay nav small {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.16em;
  width: 55px;
}

.menu-language {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.menu-language a {
  font-size: 9px;
  letter-spacing: 0.16em;
  opacity: 0.42;
  text-transform: uppercase;
}

.menu-language a[aria-current="page"],
.menu-language a:hover,
.menu-language a:focus-visible {
  opacity: 1;
}

.menu-social {
  bottom: 3vw;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  left: 7vw;
  letter-spacing: 0.16em;
  position: absolute;
  right: 7vw;
  text-transform: uppercase;
}

.film-modal {
  align-items: center;
  background: rgba(8, 8, 7, 0.98);
  color: var(--white);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 7vw;
  position: fixed;
  z-index: 100;
}

.film-modal__close {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.17em;
  padding: 18px;
  position: absolute;
  right: 2.5vw;
  text-transform: uppercase;
  top: 2vw;
}

.film-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
  max-height: 75vh;
  overflow: hidden;
  position: relative;
  width: min(1180px, 88vw);
}

.film-modal__frame::before {
  color: rgba(255, 255, 255, 0.44);
  content: "DEUS";
  font-size: 10px;
  left: 50%;
  letter-spacing: 0.38em;
  padding-left: 0.38em;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.film-modal__frame iframe {
  border: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  width: 100%;
}

.film-modal__frame.is-video-playing::before {
  opacity: 0;
}

.film-modal__frame.is-video-playing iframe {
  opacity: 1;
}

.film-modal__caption {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  margin-top: 17px;
  width: min(1180px, 88vw);
}

.film-modal__caption span,
.film-modal__caption em {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.film-modal__caption strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.reel-modal {
  padding: 3vh 24px;
}

.reel-modal__frame {
  aspect-ratio: 9 / 16;
  background: #fff;
  overflow: hidden;
  width: min(440px, calc(78svh * 9 / 16), calc(100vw - 36px));
}

.reel-modal__frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.reel-modal__caption {
  grid-template-columns: 90px 1fr auto;
  width: min(440px, calc(100vw - 36px));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="copy"] {
  transform: translateY(18px);
}

[data-reveal="image"] {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  transform: none;
  transition: clip-path 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="image"] img {
  transform: scale(1.045);
  transition: transform 1.45s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="image"].is-visible {
  clip-path: inset(0 0 0 0);
}

[data-reveal="image"].is-visible img {
  transform: scale(1);
}

[data-reveal="card"] {
  transform: translateY(22px);
}

.portfolio-card[data-reveal="card"]:nth-child(2),
.editorial-chapters article[data-reveal="card"]:nth-child(2) {
  transition-delay: 0.08s;
}

.portfolio-card[data-reveal="card"]:nth-child(3),
.editorial-chapters article[data-reveal="card"]:nth-child(3) {
  transition-delay: 0.16s;
}

.portfolio-card[data-reveal="card"]:nth-child(5),
.portfolio-card[data-reveal="card"]:nth-child(8) {
  transition-delay: 0.08s;
}

.portfolio-card[data-reveal="card"]:nth-child(6) {
  transition-delay: 0.16s;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: max(18px, env(safe-area-inset-top)) 20px 18px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    color: inherit;
    display: flex;
  }

  .hero {
    min-height: 100dvh;
    padding-inline: 20px;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(54px, 14.2vw, 94px);
    line-height: 0.84;
  }

  .hero-bottom {
    bottom: 20px;
    grid-template-columns: 1fr auto;
    left: 20px;
    right: 20px;
  }

  .hero-bottom span:nth-child(2) {
    display: none;
  }

  .section-pad {
    padding-left: 24px;
    padding-right: 24px;
  }

  .manifesto {
    padding-bottom: 110px;
    padding-top: 110px;
  }

  .manifesto > .eyebrow {
    margin-bottom: 60px;
  }

  .manifesto h2 {
    font-size: clamp(43px, 11.4vw, 72px);
  }

  .manifesto-story {
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .manifesto-reels {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .manifesto-reel,
  .manifesto-reel img {
    min-height: 0;
  }

  .manifesto-copy {
    padding: 58px 34px 64px;
  }

  .manifesto-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .featured-film {
    padding: 0;
  }

  .featured-film__button {
    aspect-ratio: 4 / 5;
  }

  .featured-film__label {
    bottom: 30px;
    left: 24px;
  }

  .featured-film__label strong {
    font-size: 48px;
  }

  .round-play {
    right: 24px;
    top: 28px;
    transform: none;
  }

  .featured-film__button:hover .round-play {
    transform: scale(1.06);
  }

  .films {
    padding-bottom: 120px;
    padding-top: 110px;
  }

  .section-heading {
    align-items: start;
    gap: 35px;
    grid-template-columns: 1fr;
    margin-bottom: 75px;
  }

  .section-heading h2 {
    font-size: 60px;
  }

  .film-grid {
    gap: 70px;
    grid-template-columns: 1fr;
  }

  .film-card:nth-child(even) {
    margin-top: 0;
  }

  .film-card__meta em {
    display: none;
  }

  .portfolio-preview {
    padding-bottom: 110px;
    padding-top: 105px;
  }

  .portfolio-preview .section-heading {
    margin-bottom: 60px;
  }

  .portfolio-preview__grid,
  .portfolio-grid {
    gap: 62px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-preview__link {
    margin-top: 70px;
  }

  .portfolio-intro {
    padding-bottom: 100px;
    padding-top: 170px;
  }

  .portfolio-intro h1 {
    font-size: clamp(58px, 13.5vw, 92px);
    margin-bottom: 42px;
    margin-top: 34px;
  }

  .portfolio-archive {
    padding-bottom: 110px;
    padding-top: 42px;
  }

  .portfolio-archive__top {
    margin-bottom: 50px;
  }

  .portfolio-cta {
    padding-bottom: 110px;
    padding-top: 110px;
  }

  .portfolio-cta h2 {
    font-size: clamp(52px, 11.8vw, 78px);
    margin-top: 42px;
  }

  .instagram {
    align-items: stretch;
    gap: 70px;
    grid-template-columns: 1fr;
    padding-bottom: 110px;
    padding-top: 100px;
  }

  .instagram-heading {
    align-items: start;
  }

  .instagram-heading h2 {
    font-size: clamp(58px, 13vw, 88px);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 0;
  }

  .about-image img {
    aspect-ratio: 4 / 5;
  }

  .about-copy {
    padding-bottom: 110px;
    padding-top: 100px;
  }

  .about h2 {
    font-size: 56px;
    margin: 45px 0;
  }

  .line-link {
    margin-top: 55px;
  }

  .philosophy {
    padding-bottom: 100px;
    padding-top: 100px;
  }

  .philosophy > .eyebrow {
    margin-bottom: 55px;
  }

  .philosophy-line {
    gap: 18px;
    grid-template-columns: 32px 1fr;
    padding: 28px 0;
  }

  .philosophy-line p {
    grid-column: 2;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    gap: 70px;
    grid-template-columns: 1fr;
    padding-bottom: 90px;
    padding-top: 160px;
  }

  .editorial-hero__copy h1 {
    font-size: clamp(56px, 12.5vw, 90px);
    margin-bottom: 45px;
  }

  .editorial-hero__image {
    margin-left: auto;
    width: min(78vw, 560px);
  }

  .editorial-body {
    padding-bottom: 110px;
    padding-top: 100px;
  }

  .editorial-body__lead {
    margin-bottom: 80px;
  }

  .editorial-chapters article {
    gap: 25px;
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .editorial-next {
    margin-top: 70px;
  }

  .editorial-inquire {
    gap: 70px;
    grid-template-columns: 1fr;
    padding-bottom: 100px;
    padding-top: 90px;
  }

  .editorial-contact {
    position: static;
  }

  .inquiry-form--light {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 65px;
  }

  .contact-intro {
    padding-bottom: 70px;
    padding-top: 100px;
  }

  .contact h2 {
    font-size: 68px;
    margin: 45px 0;
  }

  .contact-preview {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin: 0;
    min-height: 0;
    padding-bottom: 100px;
    padding-top: 70px;
  }

  .contact-preview__meta {
    flex-direction: column;
    gap: 12px;
  }

  .inquiry-form {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin: 0;
    padding: 70px 24px 100px;
  }

  .inquiry-form input,
  .inquiry-form textarea {
    font-size: 25px;
  }

  footer {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 90px 24px 30px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .brand {
    width: 104px;
  }

  .header-actions {
    gap: 16px;
  }

  .language-switch {
    font-size: 8px;
    gap: 6px;
  }

  .hero-video iframe {
    --hero-scale-start: 1.28;
    --hero-scale-end: 1.34;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    padding-top: calc(108px + env(safe-area-inset-top));
  }

  .hero h1 {
    font-size: clamp(42px, 12.4vw, 58px);
    line-height: 1.02;
  }

  .hero h1 > br,
  .manifesto h2 > br,
  .about h2 > br,
  .instagram-heading h2 > br,
  .contact h2 > br,
  .portfolio-cta h2 > br,
  .editorial-hero__copy h1 > br {
    display: none;
  }

  .hero h1 > em,
  .manifesto h2 > em,
  .about h2 > em,
  .instagram-heading h2 > em,
  .contact h2 > em,
  .portfolio-cta h2 > em,
  .editorial-hero__copy h1 > em {
    display: block;
    font-size: 0.86em;
    line-height: 1.04;
    margin-top: 0.14em;
  }

  .hero h1 > em {
    font-size: 0.78em;
    margin-inline: auto;
    max-width: 9.5em;
  }

  .manifesto h2,
  .section-heading h2,
  .portfolio-intro h1,
  .portfolio-cta h2,
  .instagram-heading h2,
  .about h2,
  .contact h2,
  .editorial-hero__copy h1,
  .editorial-body__lead {
    line-height: 1.02;
  }

  .hero-bottom {
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: max(18px, env(safe-area-inset-left));
    right: max(18px, env(safe-area-inset-right));
  }

  .hero-kicker {
    margin-bottom: 22px;
  }

  .text-button {
    margin-top: 35px;
  }

  .film-card__meta > span {
    gap: 10px;
  }

  .film-card__meta strong {
    font-size: 24px;
  }

  .portfolio-preview__grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card__meta strong {
    font-size: 28px;
  }

  .portfolio-intro {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-intro h1 {
    font-size: clamp(42px, 14vw, 54px);
  }

  .portfolio-intro__copy {
    font-size: 18px;
  }

  .manifesto-copy {
    padding: 48px 24px 54px;
  }

  .manifesto-lead {
    font-size: 38px;
  }

  .manifesto,
  .portfolio-preview,
  .instagram,
  .about-copy,
  .contact-intro,
  .contact-preview,
  .editorial-body,
  .editorial-inquire {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .manifesto-reels {
    aspect-ratio: auto;
    display: flex;
    gap: 3px;
    margin-right: -24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .manifesto-reels::-webkit-scrollbar {
    display: none;
  }

  .manifesto-reel {
    aspect-ratio: 9 / 14;
    flex: 0 0 min(76vw, 350px);
    min-height: 0;
    scroll-snap-align: start;
  }

  .manifesto-reel img {
    min-height: 0;
  }

  .instagram {
    gap: 58px;
  }

  .instagram-heading > a {
    max-width: none;
    width: 100%;
  }

  .instagram-live__top {
    font-size: 8px;
  }

  .editorial-hero {
    gap: 44px;
    min-height: auto;
    padding-bottom: 72px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: calc(126px + env(safe-area-inset-top));
  }

  .editorial-hero__image {
    width: 100%;
  }

  .editorial-hero__copy h1 {
    font-size: clamp(44px, 13.5vw, 62px);
    line-height: 1.02;
    margin-bottom: 32px;
    margin-top: 30px;
  }

  .editorial-hero__copy > p:last-child {
    font-size: 18px;
    line-height: 1.45;
  }

  .editorial-hero__video-play {
    height: 52px;
    width: 52px;
  }

  .editorial-body__lead {
    font-size: clamp(45px, 13.5vw, 68px);
  }

  .editorial-contact a {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form input,
  .inquiry-form textarea {
    font-size: 20px;
  }

  .contact h2 {
    font-size: clamp(48px, 13vw, 60px);
  }

  footer {
    gap: 0;
    padding: 72px 24px calc(34px + env(safe-area-inset-bottom));
  }

  .footer-brand {
    margin-left: -10px;
    width: 164px;
  }

  .footer-links {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 38px;
    max-width: 360px;
    width: 100%;
  }

  .footer-meta {
    gap: 10px;
    line-height: 1.55;
    margin-top: 34px;
    width: 100%;
  }

  .menu-overlay {
    padding: 24px;
  }

  .menu-overlay nav a {
    font-size: clamp(48px, 17vw, 78px);
  }

  .menu-social {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .menu-social span {
    display: none;
  }

  .film-modal {
    padding: 18px;
  }

  .film-modal__frame,
  .film-modal__caption {
    width: 100%;
  }

  .film-modal__caption {
    grid-template-columns: 32px 1fr;
  }

  .film-modal__caption em {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-reveal="image"] {
    clip-path: none;
  }

  [data-reveal="image"] img {
    transform: none;
  }
}

/* WordPress integration: keep the front-end identical while respecting the admin UI. */
[hidden] {
  display: none !important;
}

.admin-bar .site-header {
  top: 32px;
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

.no-js [data-reveal="image"] {
  clip-path: none;
}

.no-js [data-reveal="image"] img {
  transform: none;
}

.dw-fallback-page {
  min-height: 78vh;
  padding-top: 180px;
}

.dw-fallback-page h1 {
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 122px);
  font-weight: 400;
  line-height: 0.92;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}


/* Brand-free video loading state: keep the black frame, remove the DEUS label. */
.video-loading-mark {
  display: none !important;
}

.film-modal__frame::before {
  content: none !important;
  display: none !important;
}


/* Keep the three featured films aligned throughout the reveal. */
.portfolio-preview__grid .portfolio-card[data-reveal="card"] {
  transition-delay: 0s !important;
}


/* Give Serbian diacritics enough vertical space in the hero title. */
.dw-lang-sr .hero h1 {
  line-height: 0.94;
}


/* Editorial inquiry: dark, personal and conversion-focused */
.editorial-inquire--dark {
  background: #0b0b0a;
  color: #f2f0ea;
  margin-top: 2vw;
  padding-bottom: clamp(72px, 9vw, 150px);
  padding-top: clamp(72px, 9vw, 150px);
}

.editorial-inquire--dark .editorial-contact {
  position: static;
}

.editorial-inquire--dark .editorial-contact > h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 26px;
}

.editorial-inquire--dark .editorial-contact > h2 em {
  font-weight: 400;
}

.editorial-inquire--dark .editorial-contact > p:not(.eyebrow) {
  color: rgba(242, 240, 234, 0.66);
  line-height: 1.65;
  max-width: 520px;
}

.editorial-contact__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 24px 0 48px;
}

.editorial-inquire--dark .editorial-contact a {
  color: #f2f0ea;
  font-size: clamp(19px, 1.6vw, 27px);
}

.booking-steps {
  border-top: 1px solid rgba(242, 240, 234, 0.16);
  padding-top: 34px;
}

.booking-steps ol {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.booking-steps li {
  border-top: 1px solid rgba(242, 240, 234, 0.11);
  color: rgba(242, 240, 234, 0.68);
  display: grid;
  gap: 18px;
  grid-template-columns: 32px 1fr;
  line-height: 1.5;
  padding: 16px 0;
}

.booking-steps li span {
  color: #f2f0ea;
  font-family: var(--serif);
}

.inquiry-form--dark {
  border-left-color: rgba(242, 240, 234, 0.18);
  margin: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-top: 0;
}

.inquiry-form--dark label > span {
  color: rgba(242, 240, 234, 0.56);
}

.inquiry-form--dark input,
.inquiry-form--dark textarea {
  border-bottom-color: rgba(242, 240, 234, 0.22);
  color: #f2f0ea;
}

.inquiry-form--dark input:focus,
.inquiry-form--dark textarea:focus {
  border-color: #f2f0ea;
}

.inquiry-form--dark input::placeholder,
.inquiry-form--dark textarea::placeholder {
  color: rgba(242, 240, 234, 0.31);
}

.submit-button--light {
  background: #f2f0ea;
  border-color: #f2f0ea;
  color: #0b0b0a;
}

.submit-button--light:hover {
  background: transparent;
  color: #f2f0ea;
}

.inquiry-form__fineprint {
  color: rgba(242, 240, 234, 0.5);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .editorial-inquire--dark {
    gap: 58px;
    margin-top: 0;
  }

  .editorial-inquire--dark .editorial-contact > h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .inquiry-form--dark {
    border-left: 0;
    border-top: 1px solid rgba(242, 240, 234, 0.18);
    padding-left: 0;
    padding-top: 52px;
  }

  .editorial-contact__links {
    margin-bottom: 38px;
  }
}
