:root {
  --paper: #f3f0e9;
  --ink: #111111;
  --soft-ink: #55534e;
  --line: rgba(17, 17, 17, 0.18);
  --orange: #ff5c35;
  --acid: #d8ff36;
  --blue: #9adff2;
  --white: #fffefa;
  --max: 1440px;
  --pad: clamp(1.25rem, 3vw, 3.5rem);
  --radius: 1.2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

body.menu-open .site-header {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(243, 240, 233, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 7.4rem;
}

.brand img {
  height: 2.9rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.4rem);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.nav-cta span,
.text-link span {
  transition: transform 0.25s var(--ease);
}

.nav-cta:hover span,
.text-link:hover span {
  transform: translate(0.16rem, -0.16rem);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 0.85rem;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, top 0.25s;
}

.menu-toggle span:nth-child(2) { top: 1.22rem; }
.menu-toggle span:nth-child(3) { top: 1.68rem; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 1.45rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 1.45rem; transform: rotate(-45deg); }

.hero {
  display: grid;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8.5rem, 14vh, 11rem) var(--pad) 2.8rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  grid-template-rows: 1fr auto;
  gap: 3rem clamp(2.5rem, 6vw, 7rem);
  align-items: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 7vh, 5.5rem);
}

.eyebrow,
.kicker,
.hero-index {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #4dc469;
  box-shadow: 0 0 0 0 rgba(77, 196, 105, 0.5);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 0.45rem rgba(77, 196, 105, 0); }
}

.hero h1,
.production-section h2,
.production-flow h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.3rem, 6.8vw, 7.4rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.hero h1 span,
.production-section h2 span,
.production-flow h2 span,
.contact h2 span {
  font-weight: 420;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 5.5vw, 6.4rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-lede {
  max-width: 36rem;
  margin: 2.4rem 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.button-outline {
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.button-light:hover {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: min(65vh, 43rem);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: 0 1.8rem 5rem rgba(17, 17, 17, 0.12);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-card:hover img {
  transform: scale(1.035);
}

.hero-card-main {
  inset: 0 0 1.8rem 8%;
  transform: rotate(2.4deg);
}

.hero-card-main figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  color: var(--white);
  background: rgba(17, 17, 17, 0.8);
  font-size: 0.68rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-card-accent {
  right: -1rem;
  bottom: -0.5rem;
  width: 34%;
  aspect-ratio: 1;
  border: 0.5rem solid var(--paper);
  transform: rotate(-7deg);
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  top: -2.6rem;
  left: -1.5rem;
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 1rem 2.8rem rgba(17, 17, 17, 0.16);
  animation: spin 18s linear infinite;
}

.hero-sticker svg {
  width: 100%;
  height: 100%;
}

.hero-sticker text {
  font-size: 8.5px;
  font-weight: 850;
  letter-spacing: 1.7px;
}

.sticker-arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-proof {
  display: grid;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.hero-proof a {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.35rem 1rem;
  border-right: 1px solid var(--line);
  transition: color 0.2s, transform 0.2s var(--ease);
}

.hero-proof a:first-child { padding-left: 0; }
.hero-proof a:last-child { border-right: 0; }
.hero-proof a:hover { color: var(--orange); transform: translateX(0.25rem); }
.hero-proof strong { font-size: 1.45rem; letter-spacing: -0.05em; }
.hero-proof span { color: var(--soft-ink); font-size: 0.73rem; font-weight: 700; }

.ticker {
  overflow: hidden;
  padding: 1rem 0;
  color: var(--white);
  background: var(--orange);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.8rem;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ticker i { color: var(--acid); font-size: 1.3rem; font-style: normal; }

@keyframes ticker { to { transform: translateX(-50%); } }

.production-section,
.production-flow {
  padding: clamp(6.5rem, 11vw, 11rem) var(--pad);
}

.production-section > *,
.production-flow > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.section-head {
  display: grid;
  margin-bottom: clamp(3.8rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: end;
}

.section-head .kicker {
  margin-bottom: 1.5rem;
}

.section-intro {
  padding-bottom: 0.35rem;
}

.section-intro > p:first-child {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.tag-list li {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(6.5rem, 10vw, 10rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1.2rem);
}

.media-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #d9d6cf;
  cursor: zoom-in;
  grid-column: span 3;
  grid-row: span 2;
}

.media-card.media-wide {
  grid-column: span 6;
}

.media-card.media-tall {
  grid-row: span 4;
}

.media-card::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  content: "+";
  font-size: 1.25rem;
  font-weight: 450;
  opacity: 0;
  place-items: center;
  transform: translateY(0.5rem);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}

.media-card:hover::after,
.media-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.35s;
}

.media-card:hover img {
  transform: scale(1.035);
}

.gallery-grid.is-collapsed .media-card:nth-child(n + 9) {
  display: none;
}

.gallery-toggle {
  margin-top: 2rem;
}

.graphics {
  color: var(--ink);
  background: var(--white);
}

.section-head-light .section-intro > p:first-child {
  color: rgba(255, 255, 255, 0.64);
}

.section-head-light .tag-list li {
  border-color: rgba(255, 255, 255, 0.22);
}

.graphics-grid {
  display: block;
  columns: 4;
  column-gap: clamp(0.65rem, 1.2vw, 1.2rem);
}

.graphics-grid .media-card,
.graphics-grid .media-card.media-wide,
.graphics-grid .media-card.media-tall {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 clamp(0.65rem, 1.2vw, 1.2rem);
  background: var(--paper);
  break-inside: avoid;
}

.graphics-grid .media-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.graphics-grid.is-collapsed .media-card:nth-child(n + 9) {
  display: none;
}

.video-section {
  background: var(--blue);
}

.video-section .section-intro > p:first-child {
  color: rgba(17, 17, 17, 0.68);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
}

.video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
  text-align: left;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: opacity 0.3s, transform 0.75s var(--ease);
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
  content: "";
}

.video-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(4rem, 7vw, 6.4rem);
  height: clamp(4rem, 7vw, 6.4rem);
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  place-items: center;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-meta {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.video-meta b {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.video-meta small {
  font-size: 0.68rem;
  font-weight: 700;
}

.social-section {
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
}

.social-section .section-intro > p:first-child {
  color: rgba(255, 255, 255, 0.74);
}

.swipe-note {
  margin-top: 1.6rem !important;
  color: var(--white) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.reel-track {
  display: flex;
  width: auto;
  max-width: none;
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
  overflow-x: auto;
  padding-right: var(--pad);
  padding-bottom: 1.2rem;
  margin-right: calc(var(--pad) * -1);
  scroll-padding-inline: var(--pad);
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--acid) rgba(255, 255, 255, 0.2);
  scrollbar-width: thin;
}

.reel-card {
  position: relative;
  flex: 0 0 clamp(14rem, 22vw, 20rem);
  overflow: hidden;
  aspect-ratio: 9 / 13.5;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  scroll-snap-align: start;
}

.reel-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.75));
  content: "";
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.reel-card:hover img {
  transform: scale(1.04);
}

.reel-card > span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 800;
}

.reel-card i {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-style: normal;
  place-items: center;
  transition: transform 0.25s var(--ease);
}

.reel-card:hover i {
  transform: translate(0.15rem, -0.15rem);
}

.production-flow {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper);
}

.production-flow > * {
  width: auto;
  margin: 0;
}

.flow-intro .kicker {
  margin-bottom: 1.5rem;
}

.flow-intro > p:last-child {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: var(--soft-ink);
  font-size: 1.1rem;
  line-height: 1.55;
}

.flow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 4rem 1fr;
  gap: 1.2rem;
}

.flow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-list > li > span {
  padding-top: 0.25rem;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
}

.flow-list h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.flow-list p {
  margin: 0.6rem 0 0;
  color: var(--soft-ink);
  line-height: 1.5;
}

.contact {
  display: grid;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
  color: var(--white);
  background: var(--orange);
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
}

.contact .kicker {
  margin-bottom: 1.5rem;
}

.contact-main > p:last-child {
  max-width: 38rem;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-mail {
  display: grid;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  grid-template-columns: 1fr auto;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.contact-mail span,
.contact-mail strong {
  grid-column: 1;
}

.contact-mail span {
  margin-bottom: 2.6rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.contact-mail strong {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  letter-spacing: -0.04em;
}

.contact-mail i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-size: 2rem;
  font-style: normal;
}

.contact-mail:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-3px);
}

.contact-small {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.site-footer {
  display: grid;
  padding: 4rem var(--pad) 1.5rem;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: minmax(15rem, 1.6fr) repeat(3, minmax(9rem, 0.6fr));
  gap: 3rem;
}

.footer-brand img {
  width: 8rem;
  filter: invert(1);
}

.footer-brand p {
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  font-size: 0.76rem;
}

.footer-column > p {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-column: 1 / -1;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
}

dialog {
  margin: auto;
}

.lightbox,
.video-dialog {
  width: calc(100% - 2rem);
  max-width: 92rem;
  height: calc(100% - 2rem);
  max-height: 58rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: #090909;
}

.lightbox::backdrop,
.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 17, 0.72);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  place-items: center;
  backdrop-filter: blur(10px);
}

.lightbox figure {
  display: grid;
  height: 100%;
  padding: 4rem 5rem 2rem;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 750;
}

.lightbox-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 17, 0.72);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.video-frame {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 4rem;
  place-items: center;
}

.video-frame iframe {
  width: min(100%, 80rem);
  aspect-ratio: 16 / 9;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.22s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: 2.5rem;
  }

  .hero-sticker {
    left: -0.5rem;
  }

  .gallery-grid {
    grid-auto-rows: clamp(6rem, 13vw, 8.5rem);
  }

  .media-card { grid-column: span 4; }
  .media-card.media-wide { grid-column: span 8; }

  .graphics-grid {
    columns: 3;
  }

  .site-footer {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
  }
}

@media (max-width: 820px) {
  .admin-bar .site-header { top: 46px; }

  .menu-toggle { display: block; }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.4rem;
    padding: 7rem var(--pad) 2rem;
    background: var(--acid);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 0.25s, transform 0.35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta) {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 850;
    letter-spacing: -0.07em;
    line-height: 0.98;
  }

  .site-nav a:not(.nav-cta)::after { display: none; }

  .nav-cta {
    margin-top: 1.5rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .eyebrow-row { margin-bottom: 2.5rem; }

  .hero-visual {
    min-height: 34rem;
    margin-top: 1rem;
  }

  .hero-card-main { left: 3%; }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof a {
    padding: 0.8rem;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof a:nth-child(2) { border-right: 0; }
  .hero-proof a:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .hero-proof a:nth-child(4) { border-bottom: 0; }

  .section-head,
  .production-flow,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-head { align-items: start; }

  .gallery-grid {
    grid-auto-rows: clamp(6rem, 21vw, 10rem);
  }

  .media-card { grid-column: span 6; }
  .media-card.media-wide { grid-column: span 12; }
  .media-card.media-tall { grid-row: span 3; }

  .graphics-grid {
    columns: 2;
  }

  .video-grid { grid-template-columns: 1fr; }

  .production-flow {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-header { min-height: 4.7rem; }
  .brand { width: 6.4rem; }
  .brand img { height: 2.5rem; }

  .hero h1,
  .production-section h2,
  .production-flow h2,
  .contact h2 {
    font-size: clamp(3rem, 15.2vw, 5.2rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.65rem, 11vw, 3.3rem);
    letter-spacing: -0.055em;
    line-height: 0.94;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual { min-height: 27rem; }
  .hero-card-main { inset: 0 0 1.4rem 0; }
  .hero-card-accent { right: -0.3rem; width: 38%; }
  .hero-sticker { top: -1.8rem; left: -0.3rem; width: 6.5rem; height: 6.5rem; }

  .hero-card-main figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .production-section,
  .production-flow,
  .contact {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-head { margin-bottom: 3rem; }

  .gallery-grid {
    grid-auto-rows: 34vw;
    gap: 0.55rem;
  }

  .media-card,
  .media-card.media-wide {
    border-radius: 0.8rem;
    grid-column: span 6;
    grid-row: span 2;
  }

  .media-card.media-tall { grid-row: span 3; }
  .gallery-grid.is-collapsed .media-card:nth-child(n + 7) { display: none; }

  .graphics-grid {
    columns: 1;
  }

  .video-card { aspect-ratio: 4 / 3; }

  .video-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .reel-card { flex-basis: 72vw; }

  .flow-list li { grid-template-columns: 2.5rem 1fr; }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .footer-column:last-of-type { grid-column: 1 / -1; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .lightbox,
  .video-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .lightbox figure { padding: 4.2rem 0.75rem 1.5rem; }
  .lightbox-nav { top: auto; bottom: 1rem; transform: none; }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox figcaption { padding-right: 3.5rem; padding-left: 3.5rem; }
  .video-frame { padding: 1rem; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Keeps the WordPress template visually identical to the static preview. */
body.paguru-produzioni-2026 {
  color: var(--ink) !important;
  background: var(--paper) !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

body.paguru-produzioni-2026 h1,
body.paguru-produzioni-2026 h2,
body.paguru-produzioni-2026 h3,
body.paguru-produzioni-2026 p,
body.paguru-produzioni-2026 a,
body.paguru-produzioni-2026 button {
  font-family: inherit !important;
}

body.paguru-produzioni-2026 button {
  box-shadow: none !important;
  text-transform: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body.paguru-produzioni-2026 .menu-toggle {
  width: 3rem !important;
  height: 3rem !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 50% !important;
  color: var(--ink) !important;
  background: var(--paper) !important;
}

body.paguru-produzioni-2026 .nav-cta,
body.paguru-produzioni-2026 .button-dark {
  border-color: var(--ink) !important;
  color: var(--white) !important;
  background: var(--ink) !important;
}

body.paguru-produzioni-2026 .button-dark:hover {
  color: var(--ink) !important;
  background: var(--acid) !important;
}

body.paguru-produzioni-2026 .button {
  min-height: 3.4rem !important;
  padding: 0.75rem 1.2rem !important;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  text-transform: none !important;
}

body.paguru-produzioni-2026 .media-card,
body.paguru-produzioni-2026 .video-card {
  padding: 0 !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
}

body.paguru-produzioni-2026 .media-card {
  background: #d9d6cf !important;
}

body.paguru-produzioni-2026 .video-card {
  background: var(--ink) !important;
}

body.paguru-produzioni-2026 .contact-mail,
body.paguru-produzioni-2026 .contact-small {
  color: var(--white) !important;
}

body.paguru-produzioni-2026 .contact-mail:hover {
  color: var(--ink) !important;
  background: var(--acid) !important;
}

body.paguru-produzioni-2026 .site-footer a {
  color: inherit !important;
}

@media (max-width: 560px) {
  body.paguru-produzioni-2026 .media-card {
    border-radius: 0.8rem !important;
  }
}
