:root {
  --bg: #060606;
  --panel: #0b0b0b;
  --panel-soft: rgba(255, 255, 255, 0.02);
  --panel-border: rgba(255, 255, 255, 0.07);
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.62);
  --accent: #d8b36a;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  --max-width: 1680px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.07), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.025), transparent 22%),
    linear-gradient(180deg, #080808 0%, #060606 52%, #050505 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.showreel-private-page {
  background: #000;
}

.showreel-private-shell {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showreel-private-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.showreel-private-back {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.38);
  color: rgba(245, 241, 232, 0.76);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  backdrop-filter: blur(12px) saturate(0.95);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.showreel-private-back:hover,
.showreel-private-back:focus-visible {
  background: rgba(28, 28, 31, 0.52);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.showreel-private-hint {
  display: none;
}

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

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.05rem 1.35rem;
  background: transparent;
}

.nav a {
  letter-spacing: 0.03em;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.nav-menu-shell {
  position: relative;
  display: contents;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(14, 14, 16, 0.38);
  color: var(--text);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 0.95rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav a.is-active,
.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.nav a.is-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.page-main {
  padding-top: 5.5rem;
  flex: 1 0 auto;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: clip;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-video-mobile {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.content-section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 3.25rem 0 5rem;
}

.page-section {
  padding-top: 2rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.project-card {
  grid-column: span 6;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel-soft);
  border-radius: 1.15rem;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: var(--project-aspect-ratio, 16 / 9);
  box-shadow: var(--shadow);
}

.project-card.has-custom-width {
  width: var(--project-card-width, 100%);
}

body[data-page="commercial"] .project-card.is-triptych {
  grid-column: span 3;
  aspect-ratio: var(--project-aspect-ratio, 9 / 16);
  max-height: min(60vw, 38rem);
  justify-self: center;
  width: 100%;
}

.project-card.is-fallback,
.photo-card.is-fallback {
  background:
    linear-gradient(135deg, rgba(216, 179, 106, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

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

.project-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

body[data-page="commercial"] .project-card.is-triptych img,
body[data-page="commercial"] .project-card.is-triptych .project-preview-video {
  object-fit: cover;
}

.project-preview-slideshow,
.narrative-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.project-preview-slide,
.narrative-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 480ms ease;
}

.project-preview-slide.is-active,
.narrative-gallery-image.is-active {
  opacity: 1;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.38);
  color: var(--text);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.slideshow-arrow.is-prev {
  left: 0.9rem;
}

.slideshow-arrow.is-next {
  right: 0.9rem;
}

.slideshow-arrow:hover,
.slideshow-arrow:focus-visible {
  background: rgba(8, 8, 8, 0.56);
}

.slideshow-arrow.is-prev:hover,
.slideshow-arrow.is-prev:focus-visible,
.slideshow-arrow.is-next:hover,
.slideshow-arrow.is-next:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.project-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: auto;
  max-width: var(--project-logo-max-width, none);
  max-height: var(--project-logo-max-height, none);
  height: auto;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
  transform: translate(-50%, -50%) scale(var(--project-logo-scale, 0.25));
  transform-origin: center;
}

.project-logo.is-white {
  filter: brightness(0) invert(1) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

body[data-page="commercial"] .project-card.is-triptych .project-logo {
  width: auto;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(var(--project-logo-scale, 0.6));
  filter: brightness(0) invert(1) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

.project-visual-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 1.5rem;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.project-meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  padding: 1.2rem;
}

body[data-page="commercial"] .project-meta {
  display: none;
}

.project-copy h3,
.project-copy p,
.project-format {
  margin: 0;
}

.project-copy h3 {
  font-size: 1.05rem;
  font-weight: 500;
}

.project-copy p,
.project-format {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.photo-grid {
  columns: 3 280px;
  column-gap: 1rem;
}

.narrative-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.narrative-media {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.15rem;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.narrative-media.is-gallery {
  aspect-ratio: 16 / 9;
  padding: 0;
}

.narrative-player,
.narrative-poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.narrative-info {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.narrative-kicker {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.detail-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.detail-row {
  display: grid;
  gap: 0.25rem;
}

.detail-label,
.detail-value {
  margin: 0;
}

.detail-label {
  color: var(--muted);
  letter-spacing: 0.03em;
  font-size: 0.8rem;
}

.detail-value {
  font-size: 1rem;
  line-height: 1.45;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.3);
  color: rgba(245, 241, 232, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  backdrop-filter: blur(10px) saturate(0.95);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: rgba(28, 28, 31, 0.46);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.photo-card {
  break-inside: avoid;
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-fallback {
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: 1.5rem;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.empty-state {
  border: 1px solid var(--panel-border);
  border-radius: 1rem;
  padding: 1.4rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-size: 0.84rem;
  background: var(--panel-soft);
}

.contact-section {
  min-height: 56vh;
  display: grid;
  justify-items: center;
  align-content: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 7.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  font-weight: 400;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 1.05rem;
  width: min(100%, 38rem);
  justify-self: center;
}

.contact-field {
  display: grid;
  gap: 0.42rem;
}

.contact-field span {
  color: rgba(245, 241, 232, 0.44);
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  font-weight: 400;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 1rem 1.05rem;
  font: inherit;
  resize: vertical;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-button,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  letter-spacing: 0.02em;
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.contact-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.contact-status {
  min-height: 1.2rem;
  margin: 0;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.86rem;
  text-align: center;
}

.not-found-section {
  min-height: calc(100vh - 5.5rem);
  justify-items: center;
  align-content: center;
  gap: 2rem;
}

.not-found-copy {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.not-found-code,
.not-found-text {
  margin: 0;
}

.not-found-code {
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.not-found-text {
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.not-found-links {
  margin-bottom: 0;
}

.media-dialog {
  width: min(94vw, 1280px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.media-dialog::backdrop {
  background: rgba(6, 8, 12, 0.32);
  backdrop-filter: blur(18px) saturate(0.88);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-width: 4.5rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.38);
  color: rgba(245, 241, 232, 0.76);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  backdrop-filter: blur(12px) saturate(0.95);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: rgba(28, 28, 31, 0.52);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.dialog-content {
  aspect-ratio: var(--dialog-aspect-ratio, 16 / 9);
  background: transparent;
  width: min(94vw, 1280px);
  max-height: 88vh;
}

.dialog-content video,
.dialog-content img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  max-height: 88vh;
}

.dialog-photo-frame {
  position: relative;
  width: fit-content;
  max-width: min(92vw, 1280px);
  height: fit-content;
  max-height: 88vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.2rem;
}

.dialog-photo-backdrop {
  display: none;
}

.dialog-photo-image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(92vw, 1280px);
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 1.2rem;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  background: transparent;
}

.dialog-arrow {
  background: rgba(18, 18, 20, 0.38);
  z-index: 2;
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.14);
}

.media-dialog[data-mode="photo"] {
  width: auto;
  max-width: 96vw;
}

.media-dialog[data-mode="photo"] .dialog-content {
  aspect-ratio: auto;
}

.media-dialog[data-mode="photo"] .dialog-close {
  top: 1.2rem;
  right: 1.2rem;
}

.media-dialog[data-mode="photo"] .dialog-arrow.is-prev {
  left: 1.2rem;
}

.media-dialog[data-mode="photo"] .dialog-arrow.is-next {
  right: 1.2rem;
}

.media-dialog[data-mode="video"][data-video-format="portrait"] {
  width: auto;
  max-width: min(92vw, 34rem);
}

.media-dialog[data-mode="video"][data-video-format="portrait"] .dialog-content {
  width: min(92vw, 34rem);
  max-height: 88vh;
}

.media-dialog[data-mode="video"][data-video-format="portrait"] .dialog-content video {
  max-height: 88vh;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 1rem;
  }

  .hero {
    min-height: 100svh;
  }

  .content-section {
    width: min(calc(100% - 1.25rem), var(--max-width));
    padding: 2rem 0 3rem;
  }

  .project-card {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  body[data-page="commercial"] .project-card.is-triptych {
    grid-column: span 6;
    aspect-ratio: var(--project-aspect-ratio, 9 / 16);
    max-height: none;
  }

  .project-meta {
    align-items: flex-end;
    padding: 0.95rem 1rem;
  }

  .project-copy h3 {
    font-size: 1rem;
  }

  .project-copy p,
  .project-format {
    font-size: 0.8rem;
  }

  .project-logo {
    inset: 50% auto auto 50%;
  }

  .photo-grid {
    columns: 2 160px;
  }

  .narrative-layout {
    grid-template-columns: 1fr;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

}

@media (max-width: 620px) {
  .topbar {
    justify-content: flex-end;
    align-items: flex-start;
    position: fixed;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-menu-shell {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: var(--nav-menu-top, 1rem);
    right: var(--nav-menu-right, 4.2rem);
    display: none;
    min-width: 11.5rem;
    max-width: min(15rem, calc(100vw - 2.7rem));
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.9rem;
    background: rgba(12, 12, 14, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    justify-content: stretch;
    gap: 0.18rem;
    flex-direction: column;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    min-height: 2.4rem;
    justify-content: flex-start;
    padding: 0.5rem 0.75rem;
    border-radius: 0.7rem;
    font-size: 0.82rem;
  }

  .project-card {
    aspect-ratio: 16 / 9;
  }

  .project-card.has-custom-width {
    width: 100%;
  }

  body[data-page="commercial"] .project-card:not(.is-triptych) {
    grid-column: 1 / -1;
  }

  body[data-page="commercial"] .project-card.is-triptych {
    grid-column: span 6;
  }

  .slideshow-arrow {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.82rem;
  }

  .slideshow-arrow.is-prev {
    left: 0.65rem;
  }

  .slideshow-arrow.is-next {
    right: 0.65rem;
  }

  .project-meta {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    inset: auto 0 0 0;
    padding: 0.8rem 0.9rem;
  }

  .project-copy {
    max-width: calc(100% - 4rem);
  }

  .project-copy h3 {
    font-size: 0.96rem;
    line-height: 1;
  }

  .project-copy p {
    margin-top: 0.2rem;
    font-size: 0.74rem;
    line-height: 1.1;
  }

  .project-format {
    margin-top: 0;
    font-size: 0.74rem;
    line-height: 1;
    white-space: nowrap;
  }

  .photo-grid {
    columns: 1 100%;
  }
}

@media (max-width: 900px) and (orientation: portrait) {
  .showreel-private-shell {
    padding: 4.75rem 0.9rem 2.75rem;
  }

  .showreel-private-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
  .showreel-private-back {
    top: 1rem;
    right: 1rem;
  }
}
