:root {
  --black: #080808;
  --graphite: #111111;
  --graphite-2: #171414;
  --wine-950: #160102;
  --wine-900: #240306;
  --wine-700: #5a0710;
  --red: #9e0b1b;
  --red-bright: #c81228;
  --paper: #f5f0ea;
  --soft: #d7d2ca;
  --muted: #a79d96;
  --gold: #b78a3b;
  --line: rgba(245, 240, 234, .14);
  --line-strong: rgba(245, 240, 234, .28);
  --shade: 0 30px 100px rgba(0, 0, 0, .48);
  --radius: 8px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(36, 3, 6, .52), transparent 36rem),
    radial-gradient(circle at 88% 8%, rgba(158, 11, 27, .22), transparent 24rem),
    var(--black);
  color: var(--paper);
  font-family: "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--black);
  font-weight: 900;
}

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

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, .98), rgba(36, 3, 6, .96)),
    var(--black);
  transition: opacity .55s ease, visibility .55s ease;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(520px, calc(100vw - 38px));
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.loader-logo {
  width: 190px;
  height: 118px;
  object-fit: contain;
  padding: 12px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 90px rgba(158, 11, 27, .32);
  animation: logoEntry 1.7s cubic-bezier(.2, .8, .2, 1) both;
}

.loader-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: .95;
  font-weight: 700;
}

.loader-text {
  margin: 0;
  color: var(--soft);
  max-width: 36rem;
}

.loader-bar {
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: rgba(245, 240, 234, .12);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--paper));
  transition: width .2s ease;
}

.loader-skip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
  font-weight: 900;
}

@keyframes logoEntry {
  from { transform: perspective(700px) rotateY(-24deg) scale(.84); opacity: 0; }
  to { transform: perspective(700px) rotateY(0) scale(1); opacity: 1; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 30px;
  border-bottom: 1px solid rgba(245, 240, 234, .11);
  background: linear-gradient(180deg, rgba(8, 8, 8, .9), rgba(8, 8, 8, .56));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 96px auto;
  gap: 14px;
  align-items: center;
}

.brand img {
  width: 96px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  border-radius: var(--radius);
  background: #fff;
}

.brand span {
  display: block;
  color: var(--paper);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.header-status {
  justify-self: center;
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 234, .04);
}

.language-switch button,
.sound-toggle,
.menu-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 234, .045);
  color: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.language-switch button {
  min-width: 48px;
  border: 0;
  background: transparent;
  font-size: .75rem;
}

.language-switch button.is-active {
  background: var(--paper);
  color: var(--black);
}

.sound-toggle {
  min-width: 96px;
  padding: 0 14px;
  font-size: .75rem;
}

.menu-toggle {
  width: 58px;
  display: grid;
  place-items: center;
  gap: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

body.menu-open .menu-toggle span:first-child { transform: translateY(5px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-5px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .48fr);
  gap: 2rem;
  padding: 132px 44px 44px;
  background:
    linear-gradient(110deg, rgba(8, 8, 8, .98), rgba(36, 3, 6, .96) 62%, rgba(8, 8, 8, .98)),
    var(--black);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.overlay-nav {
  align-self: center;
  display: grid;
  gap: 6px;
}

.overlay-nav a {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 240, 234, .12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: .92;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.overlay-nav a span:first-child {
  color: var(--red-bright);
  font-family: "Aptos", "Inter", Arial, sans-serif;
  font-size: .85rem;
  font-weight: 950;
}

.overlay-nav a:hover,
.overlay-nav a.is-active {
  color: var(--red-bright);
  transform: translateX(8px);
}

.overlay-panel {
  align-self: center;
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 234, .04);
  box-shadow: var(--shade);
}

.overlay-panel img {
  width: 220px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
}

.overlay-panel p {
  margin: 0;
  color: var(--soft);
}

.quick-links {
  display: grid;
  gap: 10px;
}

.quick-links a {
  color: var(--paper);
  font-weight: 900;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--paper));
}

main {
  position: relative;
  z-index: 1;
}

.hero-cinema {
  position: relative;
  min-height: 760svh;
}

.cinema-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px 34px 34px;
  background: #050505;
  isolation: isolate;
}

.atelier-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
}

#atelierScene {
  width: 100%;
  height: 100%;
  display: block;
  background: radial-gradient(circle at 50% 50%, #190407, #050505 70%);
}

.cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), transparent 42%, rgba(0,0,0,.54)),
    linear-gradient(180deg, rgba(0,0,0,.72), transparent 38%, rgba(0,0,0,.78));
}

.hero-copy {
  width: min(790px, 100%);
  display: grid;
  gap: 22px;
  align-content: center;
  padding-left: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--red-bright);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

.hero-title,
.page-title,
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-title {
  max-width: 12ch;
  font-size: 6.7rem;
  line-height: .86;
}

.hero-lead {
  max-width: 48rem;
  margin: 0;
  color: var(--soft);
  font-size: 1.28rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(245, 240, 234, .045);
  color: var(--paper);
  font-weight: 950;
  text-align: center;
}

.button.primary {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #5a0710);
  color: #fff;
}

.button.light {
  background: var(--paper);
  color: var(--black);
}

.cinema-hud {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(380px, calc(100vw - 64px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(245, 240, 234, .18);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, .68);
  backdrop-filter: blur(18px);
}

.hud-kicker {
  color: var(--red-bright);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hud-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.hud-text {
  margin: 0;
  color: var(--soft);
}

.chapter-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.chapter-dot {
  height: 5px;
  border-radius: 99px;
  background: rgba(245, 240, 234, .16);
}

.chapter-dot.is-active {
  background: var(--red-bright);
}

.cinema-rail {
  position: absolute;
  left: 34px;
  bottom: 38px;
  width: min(420px, calc(100vw - 68px));
  height: 2px;
  background: rgba(245, 240, 234, .15);
}

.cinema-rail span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--paper));
}

.no-webgl .atelier-canvas-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(158, 11, 27, .32), transparent),
    url("../img/logo-design.png") center / min(520px, 80vw) auto no-repeat,
    #050505;
}

.atelier-scroll-gallery {
  position: relative;
  min-height: 620svh;
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 22%, rgba(166, 12, 29, .2), transparent 34%),
    linear-gradient(140deg, #050505, #160407 54%, #050505);
}

.scroll-gallery-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: calc(var(--header-h) + 12px) 0 0;
  isolation: isolate;
}

.scroll-gallery-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(245, 240, 234, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 240, 234, .028) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .62;
}

.scroll-gallery-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .45), transparent 26%, transparent 72%, rgba(0, 0, 0, .46)),
    linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 34%, rgba(0, 0, 0, .82));
}

.scroll-gallery-frame {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 12px);
  perspective: 1900px;
  transform-style: preserve-3d;
}

.scroll-shot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 1420px);
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #050505;
  box-shadow: 0 46px 150px rgba(0, 0, 0, .7);
  opacity: 0;
  transform: translate3d(-50%, -50%, -420px) scale(.75);
  will-change: transform, opacity, filter;
}

.scroll-shot:first-child {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.scroll-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--shot-zoom, 1.08)) translate3d(var(--shot-pan-x, 0), var(--shot-pan-y, 0), 0);
  filter: contrast(1.06) saturate(.95);
  will-change: transform;
}

.scroll-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12) 22%, transparent 48%, rgba(0, 0, 0, .72)),
    radial-gradient(circle at 70% 14%, rgba(199, 161, 83, .13), transparent 34%);
}

.scroll-gallery-dots {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 5;
  display: flex;
  gap: 8px;
  opacity: .7;
}

.scroll-gallery-dots span {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: rgba(245, 240, 234, .22);
}

.scroll-gallery-dots span.is-active {
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.section,
.page-hero {
  padding: 90px 34px;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(36, 3, 6, .42), rgba(8, 8, 8, .96)),
    var(--black);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .5fr);
  gap: 48px;
  align-items: start;
}

.section-title,
.page-title {
  font-size: 4.45rem;
  line-height: .95;
}

.section-lead,
.page-lead {
  max-width: 66rem;
  color: var(--soft);
  font-size: 1.14rem;
}

.text-block {
  display: grid;
  gap: 18px;
}

.text-block p {
  margin: 0;
  color: var(--soft);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat {
  min-height: 128px;
  padding: 18px;
  background: rgba(17, 17, 17, .92);
}

.stat strong {
  display: block;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.cards,
.package-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cards.two,
.process-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.package-card,
.process-step,
.name-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(245, 240, 234, .055), rgba(90, 7, 16, .11)),
    rgba(17, 17, 17, .78);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .24);
}

.service-card,
.package-card,
.process-step,
.name-card {
  padding: 22px;
}

.service-card span,
.package-card span,
.process-step span {
  color: var(--red-bright);
  font-weight: 950;
  text-transform: uppercase;
}

.service-card h3,
.package-card h3,
.process-step h3,
.name-card h3,
.contact-card h3 {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.service-card p,
.package-card p,
.process-step p,
.name-card p,
.contact-card p {
  margin: 0;
  color: var(--soft);
}

.service-card ul,
.package-card ul,
.legal-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--soft);
}

.package-card {
  display: grid;
  align-content: start;
  min-height: 310px;
}

.package-card .for {
  color: var(--gold);
}

.editorial-band {
  margin: 70px 0;
  padding: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(158, 11, 27, .28), transparent 72%),
    rgba(245, 240, 234, .035);
}

.editorial-band h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: .9;
}

.editorial-band p {
  max-width: 50rem;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 1.1rem;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.name-card {
  min-height: 150px;
  background:
    linear-gradient(145deg, rgba(8, 8, 8, .9), rgba(36, 3, 6, .64));
}

.name-card h3 {
  font-size: 1.35rem;
}

.audience-grid,
.standards-grid,
.case-grid,
.wizard-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

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

.standards-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.audience-card,
.standard-card,
.case-card,
.wizard-card,
.brochure-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(245, 240, 234, .058), rgba(90, 7, 16, .16)),
    rgba(10, 9, 9, .86);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .28);
}

.audience-card,
.standard-card,
.case-card,
.wizard-card {
  min-height: 250px;
  padding: 24px;
}

.audience-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.audience-card:hover,
.wizard-card:hover,
.wizard-card.is-selected {
  transform: translateY(-4px);
  border-color: rgba(200, 18, 40, .58);
  background:
    linear-gradient(145deg, rgba(158, 11, 27, .24), rgba(183, 138, 59, .08)),
    rgba(10, 9, 9, .92);
}

.audience-card span,
.standard-card span,
.case-card span,
.wizard-card span {
  color: var(--red-bright);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.audience-card h3,
.standard-card h3,
.case-card h3,
.wizard-card h3,
.brochure-panel h3 {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.audience-card p,
.standard-card p,
.case-card p,
.wizard-card p,
.brochure-panel p {
  margin: 0;
  color: var(--soft);
}

.case-card {
  min-height: 390px;
}

.case-card.visual-case {
  overflow: hidden;
}

.case-media {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 4 / 3;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: contrast(1.06) saturate(.9) brightness(.9);
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}

.visual-case:hover .case-media {
  transform: scale(1.045);
  filter: contrast(1.09) saturate(.98) brightness(.98);
}

.case-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.case-card dl div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 240, 234, .12);
}

.case-card dt {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0;
  color: var(--soft);
}

.wizard-card {
  width: 100%;
  color: var(--paper);
  text-align: left;
  appearance: none;
}

.brochure-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  background:
    linear-gradient(105deg, rgba(158, 11, 27, .24), rgba(183, 138, 59, .08), rgba(245, 240, 234, .035)),
    rgba(10, 9, 9, .9);
}

.reference-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.reference-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shade);
}

.reference-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: contrast(1.07) saturate(.88) brightness(.72);
  transition: transform .35s ease, filter .35s ease;
}

.reference-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72) 56%, rgba(7, 7, 7, .96)),
    radial-gradient(circle at 82% 12%, rgba(183, 138, 59, .18), transparent 34%);
  pointer-events: none;
}

.reference-visual-card:hover img {
  transform: scale(1.08);
  filter: contrast(1.1) saturate(.96) brightness(.82);
}

.reference-visual-card > div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.reference-visual-card span {
  color: var(--red-bright);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reference-visual-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.02;
}

.reference-visual-card p {
  margin: 0;
  color: var(--soft);
}

.reference-visual-card a {
  width: fit-content;
  margin-top: 8px;
  color: var(--paper);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 240, 234, .42);
}

.reference-visual-card.is-pending {
  border-style: dashed;
}

.visual-showcase {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.visual-showcase.featured {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: stretch;
}

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

.visual-showcase.service-gallery {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
}

.visual-mini-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.visual-mini-stack .photo-panel:first-child {
  grid-column: 1 / -1;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shade);
}

.photo-panel.tall {
  min-height: 620px;
}

.photo-panel.compact {
  min-height: 330px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.015);
  filter: contrast(1.05) saturate(.96);
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .78)),
    radial-gradient(circle at 70% 10%, rgba(158, 11, 27, .18), transparent 42%);
}

.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(245, 240, 234, .14);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, .64);
  backdrop-filter: blur(14px);
}

.photo-caption span {
  color: var(--red-bright);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.photo-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1;
}

.photo-caption p {
  margin: 0;
  color: var(--soft);
}

.motion-reel {
  position: relative;
  overflow: hidden;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(188, 15, 34, .22), transparent 38%),
    linear-gradient(140deg, rgba(8, 8, 8, .98), rgba(42, 5, 10, .82));
  box-shadow: var(--shade);
}

.motion-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 246, 238, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 246, 238, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .55;
}

.reel-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: 34px 34px 24px;
}

.reel-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 4.4rem);
  line-height: .96;
}

.reel-copy p:last-child {
  align-self: end;
  max-width: 620px;
  margin: 0;
  color: var(--soft);
  font-size: 1.06rem;
  line-height: 1.65;
}

.reel-viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 8px 0 30px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.reel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: atelierReel 58s linear infinite;
}

.motion-reel:hover .reel-track {
  animation-play-state: paused;
}

.reel-card {
  position: relative;
  flex: 0 0 clamp(270px, 36vw, 520px);
  aspect-ratio: 16 / 10;
  margin-right: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 240, 234, .14);
  border-radius: calc(var(--radius) - 2px);
  background: #050505;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .42);
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  filter: contrast(1.06) saturate(.96);
  animation: reelImageDrift 12s ease-in-out infinite alternate;
}

.reel-card:nth-child(2n) img {
  animation-duration: 15s;
  animation-direction: alternate-reverse;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .03) 36%, rgba(0, 0, 0, .76)),
    radial-gradient(circle at 72% 16%, rgba(199, 161, 83, .18), transparent 38%);
}

.reel-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(245, 240, 234, .14);
  border-radius: 12px;
  background: rgba(7, 7, 7, .62);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.reel-card figcaption span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.reel-card figcaption b {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@keyframes atelierReel {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes reelImageDrift {
  from {
    transform: scale(1.045) translate3d(-1.2%, 0, 0);
  }
  to {
    transform: scale(1.095) translate3d(1.2%, -1.2%, 0);
  }
}

.page-hero {
  padding-top: 160px;
  min-height: 58svh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(120deg, rgba(8, 8, 8, .92), rgba(36, 3, 6, .66), rgba(8, 8, 8, .9)),
    var(--black);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(360px, .48fr);
  gap: 30px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-weight: 850;
}

input, select, textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 234, .06);
  color: var(--paper);
  padding: 12px 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

select option {
  color: var(--black);
}

.contact-card {
  padding: 24px;
}

.contact-card a {
  display: block;
  color: var(--paper);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-checklist {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 240, 234, .045);
}

.contact-checklist strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
}

.contact-checklist ul {
  margin: 0;
  padding-left: 18px;
  color: var(--soft);
}

.legal-card {
  padding: 30px;
  color: var(--soft);
}

.legal-card h2 {
  color: var(--paper);
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-card p {
  margin: 0 0 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 130;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, .92);
  box-shadow: var(--shade);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-panel[hidden] {
  display: none;
}

.cookie-banner p { margin: 4px 0 0; color: var(--soft); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .72);
}

.cookie-card {
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shade);
}

.cookie-card h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.cookie-card label {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-card input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer img {
  width: 134px;
  padding: 6px;
  border-radius: var(--radius);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--soft);
  font-weight: 900;
}

.muted { color: var(--muted); }
.desktop-only { display: initial; }

@media (max-width: 1100px) {
  :root { --header-h: 84px; }
  .site-header {
    padding: 14px 18px;
    grid-template-columns: auto 1fr auto;
  }
  .brand {
    grid-template-columns: 86px;
  }
  .brand span,
  .brand small,
  .header-status,
  .sound-toggle {
    display: none;
  }
  .overlay-nav a {
    font-size: 3.1rem;
  }
  .menu-overlay {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .overlay-panel {
    align-self: start;
  }
  .hero-title {
    font-size: 5rem;
  }
  .scroll-gallery-sticky {
    grid-template-columns: 1fr;
    align-content: center;
  }
  .scroll-gallery-copy {
    align-self: start;
    max-width: 760px;
    padding-bottom: 0;
  }
  .scroll-gallery-frame {
    min-height: 58svh;
  }
  .section-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .cards,
  .package-grid,
  .process-grid,
  .work-list,
  .audience-grid,
  .standards-grid,
  .case-grid,
  .wizard-grid,
  .reference-visual-grid,
  .visual-showcase.grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brochure-panel {
    grid-template-columns: 1fr;
  }
  .visual-showcase.featured,
  .visual-showcase.service-gallery {
    grid-template-columns: 1fr;
  }
  .reel-copy {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
  }
  .brand img {
    width: 82px;
    height: 48px;
  }
  .language-switch button {
    min-width: 40px;
  }
  .menu-toggle {
    width: 50px;
  }
  .menu-overlay {
    padding: 112px 20px 26px;
  }
  .overlay-nav a {
    grid-template-columns: 42px 1fr;
    font-size: 2.16rem;
  }
  .overlay-panel {
    padding: 18px;
  }
  .cinema-sticky {
    padding: 104px 18px 24px;
    align-items: end;
  }
  .hero-copy {
    padding-left: 0;
    gap: 16px;
  }
  .hero-title {
    font-size: 3.1rem;
  }
  .atelier-scroll-gallery {
    min-height: 520svh;
  }
  .scroll-gallery-sticky {
    padding: 104px 0 0;
  }
  .scroll-gallery-frame {
    min-height: calc(100svh - 104px);
  }
  .scroll-shot {
    width: 94vw;
  }
  .scroll-gallery-dots {
    right: 18px;
    bottom: 22px;
  }
  .hero-lead,
  .section-lead,
  .page-lead {
    font-size: 1rem;
  }
  .cinema-hud {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
  }
  .cinema-rail {
    left: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
  }
  .section,
  .page-hero {
    padding: 66px 18px;
  }
  .page-hero {
    padding-top: 128px;
    min-height: 46svh;
  }
  .section-title,
  .page-title {
    font-size: 2.7rem;
  }
  .editorial-band {
    padding: 30px 18px;
    margin: 44px 0;
  }
  .editorial-band h2 {
    font-size: 3rem;
  }
  .cards,
  .cards.two,
  .package-grid,
  .process-grid,
  .process-grid.two,
  .work-list,
  .audience-grid,
  .standards-grid,
  .case-grid,
  .wizard-grid,
  .reference-visual-grid,
  .visual-showcase.grid,
  .visual-mini-stack,
  .stat-strip,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .reference-visual-card {
    min-height: 360px;
  }
  .photo-panel,
  .photo-panel.tall,
  .photo-panel.compact {
    min-height: 330px;
  }
  .motion-reel {
    margin-top: 38px;
  }
  .reel-copy {
    padding: 24px 18px 18px;
  }
  .reel-copy h3 {
    font-size: 2.25rem;
  }
  .reel-card {
    flex-basis: 78vw;
    margin-right: 12px;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .button {
    flex: 1 1 110px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-cinema {
    min-height: auto;
  }
  .cinema-sticky {
    position: relative;
    min-height: 100svh;
  }
  .atelier-scroll-gallery {
    min-height: auto;
  }
  .scroll-gallery-sticky {
    position: relative;
    min-height: auto;
  }
  .scroll-gallery-frame {
    display: grid;
    gap: 14px;
    min-height: auto;
  }
  .scroll-shot {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
  .scroll-shot img {
    transform: none !important;
  }
  .reel-track {
    transform: none !important;
  }
}
