/* ---------- Tokens ---------- */
:root {
  --ink: #211d18;
  --limewash: #e9e1cf;
  --limewash-dim: #ddd3bd;
  --paper: #fbf8f1;
  --shutter-blue: #2b4c56;
  --shutter-blue-dim: #1c343c;
  --shutter-green: #4b5d3a;
  --brass: #a9803e;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-logo: "Lato", sans-serif;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--limewash);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Shared ---------- */
.container {
  max-width: 64rem;
  margin: 0 auto;
}

.h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 3rem;
  }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}
.eyebrow--light {
  color: rgba(251, 248, 241, 0.6);
}
.eyebrow--blue {
  color: var(--shutter-blue);
}
.eyebrow--brass {
  color: var(--brass);
}
.eyebrow--green {
  color: var(--shutter-green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn--outline-light {
  border: 1px solid rgba(251, 248, 241, 0.4);
  color: var(--paper);
}
.btn--outline-light:hover {
  background: var(--paper);
  color: var(--shutter-blue-dim);
}
.btn--green {
  background: var(--shutter-green);
  color: var(--paper);
  border: none;
}
.btn--green:hover {
  background: var(--ink);
}

.wall-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, rgba(33, 29, 24, 0.05) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(33, 29, 24, 0.04) 0, transparent 40%),
    repeating-linear-gradient(115deg, rgba(33, 29, 24, 0.025) 0px, rgba(33, 29, 24, 0.025) 1px, transparent 1px, transparent 3px);
}

.paper-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(33, 29, 24, 0.035) 0px, rgba(33, 29, 24, 0.035) 1px, transparent 1px, transparent 26px);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.05;
  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");
}

/* ---------- Shutter intro ---------- */
.shutter {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  pointer-events: none;
}
.shutter__panel {
  height: 100%;
  width: 50%;
  background: var(--shutter-blue-dim);
  transition: transform 1.1s cubic-bezier(0.6, 0, 0.2, 1);
  position: relative;
}
.shutter__panel--left {
  transform-origin: left;
}
.shutter__panel--right {
  transform-origin: right;
}
.shutter.is-open .shutter__panel--left {
  transform: rotateY(-92deg);
}
.shutter.is-open .shutter__panel--right {
  transform: rotateY(92deg);
}
.shutter.is-hidden {
  visibility: hidden;
}
.shutter__slats {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0px, rgba(0, 0, 0, 0.18) 2px, transparent 2px, transparent 34px);
}
.shutter__hinge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2.5rem;
  width: 0.75rem;
  border-radius: 0.15rem;
  background: linear-gradient(180deg, #c6a25c, var(--brass) 55%, #7d5e2b);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.shutter__hinge--left {
  right: 0.75rem;
}
.shutter__hinge--right {
  left: 0.75rem;
}
.shutter__emblem {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-out;
}
.shutter.is-open .shutter__emblem {
  opacity: 0;
}
.shutter__emblem-circle {
  height: 4rem;
  width: 4rem;
  border-radius: 999px;
  background: var(--limewash);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.invert {
  filter: invert(1);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(233, 225, 207, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(33, 29, 24, 0.1);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media (min-width: 768px) {
  .nav__row {
    padding: 1rem 2.5rem;
  }
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__wordmark {
  font-family: var(--font-logo);
  font-weight: 700;
  text-transform: lowercase;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(33, 29, 24, 0.7);
}
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}
.nav__links a:hover {
  color: var(--shutter-blue);
}
.nav__cta {
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 1rem;
  text-transform: none;
  letter-spacing: normal;
  transition: background-color 0.2s;
}
.nav__cta:hover {
  background: var(--shutter-blue);
}
.nav__cta--block {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
}
.nav__toggle {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(33, 29, 24, 0.2);
}
.nav__toggle svg {
  height: 1.25rem;
  width: 1.25rem;
}
.nav__toggle svg[hidden] {
  display: none;
}
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}
.nav__mobile[hidden] {
  display: none;
}
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(33, 29, 24, 0.8);
  border-top: 1px solid rgba(33, 29, 24, 0.1);
}
.nav__mobile a:not(.nav__cta) {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(33, 29, 24, 0.1);
}
@media (min-width: 768px) {
  .nav__mobile {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  background: var(--shutter-blue-dim);
  padding: 0 1.5rem;
  color: var(--paper);
}
.hero__texture {
  opacity: 0.4;
}
.hero__center {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__title {
  font-family: var(--font-display);
  text-align: center;
  font-size: 15vw;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 8rem;
  }
}
.hero__subtitle {
  margin-top: 2rem;
  max-width: 28rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(251, 248, 241, 0.8);
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
.hero .btn {
  margin-top: 3.5rem;
}
.marquee {
  position: relative;
  border-top: 1px solid rgba(251, 248, 241, 0.1);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251, 248, 241, 0.4);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Estúdio ---------- */
.studio {
  position: relative;
  background: var(--limewash);
  padding: 7rem 1.5rem;
}
@media (min-width: 768px) {
  .studio {
    padding: 7rem 2.5rem;
  }
}
.studio__title {
  max-width: 32rem;
  margin-bottom: 4rem;
}
.studio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(33, 29, 24, 0.15);
  border: 1px solid rgba(33, 29, 24, 0.15);
}
@media (min-width: 640px) {
  .studio__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.studio__card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 1.5rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.studio__card--button {
  width: 100%;
}
.studio__card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.studio__card:hover::before {
  opacity: 1;
}
.studio__card[data-texture="grid"]::before {
  background-image: repeating-linear-gradient(0deg, rgba(43, 76, 86, 0.14) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(43, 76, 86, 0.14) 0 1px, transparent 1px 22px);
}
.studio__card[data-texture="scan"]::before {
  background-image: repeating-linear-gradient(0deg, rgba(43, 76, 86, 0.16) 0 2px, transparent 2px 6px);
}
.studio__card[data-texture="grain"]::before {
  background-image: radial-gradient(rgba(43, 76, 86, 0.5) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
}
.studio__card[data-texture="wire"]::before {
  background-image: repeating-linear-gradient(45deg, rgba(43, 76, 86, 0.14) 0 1px, transparent 1px 18px);
}
.studio__icon {
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  color: var(--shutter-blue);
  margin-bottom: 0.75rem;
  transition: transform 0.5s;
}
.studio__card:hover .studio__icon {
  transform: rotate(20deg);
}
.studio__label {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pill {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--shutter-blue);
  border: 1px solid rgba(43, 76, 86, 0.4);
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
}
.studio__detail {
  position: relative;
  font-size: 0.9rem;
  color: rgba(33, 29, 24, 0.7);
  max-width: 20rem;
  margin: 0;
}
.studio__links {
  position: relative;
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.studio__links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--shutter-blue);
  text-decoration: underline;
  text-decoration-color: rgba(43, 76, 86, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.studio__links a:hover {
  color: var(--ink);
}

/* ---------- Trabalhos ---------- */
.work {
  background: var(--ink);
  padding: 7rem 1.5rem;
  color: var(--paper);
}
@media (min-width: 768px) {
  .work {
    padding: 7rem 2.5rem;
  }
}
.work__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}
.work__title {
  max-width: 32rem;
}
.work__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(251, 248, 241, 0.4);
  max-width: 16rem;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 10rem;
  grid-auto-flow: dense;
  gap: 1rem;
}
@media (min-width: 640px) {
  .work__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.work__card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(251, 248, 241, 0.1);
  text-align: left;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.work__card--wide {
  grid-column: span 2;
}
.work__card--tall {
  grid-row: span 2;
}
.work__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.work__card:hover img {
  transform: scale(1.05);
}
.work__card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 29, 24, 0.9), rgba(33, 29, 24, 0.1) 60%, transparent);
}
.work__card__expand {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(33, 29, 24, 0.7);
  color: var(--paper);
  backdrop-filter: blur(4px);
  transition: background-color 0.2s, color 0.2s;
}
.work__card__expand svg {
  height: 1rem;
  width: 1rem;
}
.work__card:hover .work__card__expand {
  background: var(--paper);
  color: var(--ink);
}
.work__card__body {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
@media (min-width: 640px) {
  .work__card__body {
    padding: 1.25rem;
  }
}
.work__card__category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(251, 248, 241, 0.7);
}
@media (min-width: 640px) {
  .work__card__category {
    font-size: 0.65rem;
  }
}
.work__card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(251, 248, 241, 0.9);
  transition: transform 0.3s, opacity 0.3s;
}
@media (min-width: 640px) {
  .work__card__title {
    font-size: 1.125rem;
    transform: translateY(0.5rem);
    opacity: 0;
  }
  .work__card:hover .work__card__title {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---------- Papers ---------- */
.papers {
  position: relative;
  background: var(--paper);
  padding: 7rem 1.5rem;
}
@media (min-width: 768px) {
  .papers {
    padding: 7rem 2.5rem;
  }
}
.papers__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.papers__title {
  max-width: 28rem;
}
.papers__note {
  max-width: 24rem;
  color: rgba(33, 29, 24, 0.7);
}
.papers__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .papers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.papers__card {
  border: 1px solid rgba(33, 29, 24, 0.15);
  background: rgba(233, 225, 207, 0.4);
  padding: 1.5rem;
  transition: background-color 0.2s, border-color 0.2s;
}
.papers__card:hover {
  background: var(--shutter-green);
  border-color: var(--shutter-green);
}
.papers__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}
.papers__card:hover h3 {
  color: var(--paper);
}
.papers__card p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(33, 29, 24, 0.6);
  margin: 0;
  transition: color 0.2s;
}
.papers__card:hover p {
  color: rgba(251, 248, 241, 0.8);
}
.papers .btn {
  position: relative;
  margin-top: 3rem;
}

/* ---------- Manifesto ---------- */
.manifesto {
  position: relative;
  background: var(--limewash-dim);
  padding: 7rem 1.5rem;
}
@media (min-width: 768px) {
  .manifesto {
    padding: 7rem 2.5rem;
  }
}
.manifesto__inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: rgba(33, 29, 24, 0.9);
}
@media (min-width: 768px) {
  .manifesto__quote {
    font-size: 1.875rem;
  }
}
.manifesto__sign {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(33, 29, 24, 0.5);
}

/* ---------- Contacto ---------- */
.contact {
  position: relative;
  background: var(--shutter-blue-dim);
  padding: 7rem 1.5rem;
  color: var(--paper);
}
@media (min-width: 768px) {
  .contact {
    padding: 7rem 2.5rem;
  }
}
.contact__texture {
  opacity: 0.3;
}
.contact__grid {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__title {
  margin-bottom: 1.5rem;
}
.contact__email {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(251, 248, 241, 0.9);
  transition: color 0.2s;
}
.contact__email:hover {
  color: var(--brass);
}
@media (min-width: 768px) {
  .contact__email {
    font-size: 1.5rem;
  }
}
.contact__location {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(251, 248, 241, 0.5);
}
.contact__social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.contact__social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(251, 248, 241, 0.15);
  padding-bottom: 1rem;
}
.contact__social a span:first-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(251, 248, 241, 0.6);
  transition: color 0.2s;
}
.contact__social a span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(251, 248, 241, 0.9);
  transition: color 0.2s;
}
.contact__social a:hover span:first-child {
  color: var(--paper);
}
.contact__social a:hover span:last-child {
  color: var(--brass);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(251, 248, 241, 0.5);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .footer {
    padding: 1.5rem 2.5rem;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__wordmark {
  font-family: var(--font-logo);
  font-weight: 700;
  text-transform: lowercase;
  color: rgba(251, 248, 241, 0.8);
}
.footer__year {
  color: rgba(251, 248, 241, 0.4);
}
.footer__year::before {
  content: "© ";
}

/* ---------- Lightbox / Video modal ---------- */
.lightbox,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 29, 24, 0.95);
  backdrop-filter: blur(4px);
  padding: 2.5rem 1rem;
}
.lightbox[hidden],
.video-modal[hidden] {
  display: none;
}
.lightbox__close,
.video-modal .lightbox__close,
.lightbox__nav {
  position: absolute;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(251, 248, 241, 0.3);
  color: var(--paper);
  transition: background-color 0.2s, color 0.2s;
}
.lightbox__close svg,
.lightbox__nav svg {
  height: 1.25rem;
  width: 1.25rem;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--paper);
  color: var(--ink);
}
.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox__nav--prev {
  left: 0.75rem;
}
.lightbox__nav--next {
  right: 0.75rem;
}
@media (min-width: 768px) {
  .lightbox__nav--prev {
    left: 2rem;
  }
  .lightbox__nav--next {
    right: 2rem;
  }
}
.lightbox__body {
  position: relative;
  display: flex;
  max-height: 100%;
  width: 100%;
  max-width: 48rem;
  flex-direction: column;
  align-items: center;
}
.lightbox__image-wrap {
  position: relative;
  height: 65vh;
  width: 100%;
}
.lightbox__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox__category {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251, 248, 241, 0.5);
  text-align: center;
}
.lightbox__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(251, 248, 241, 0.95);
  margin-top: 0.25rem;
  text-align: center;
}
.video-modal__frame {
  width: 100%;
  max-width: 48rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
