:root {
  --bg: #080b0e;
  --bg-2: #15110d;
  --surface: #f4efe4;
  --surface-2: #e5dccb;
  --ink: #f4efe4;
  --ink-muted: rgba(244, 239, 228, 0.76);
  --text: #101517;
  --text-muted: #625d52;
  --line: rgba(244, 239, 228, 0.2);
  --line-dark: rgba(16, 21, 23, 0.13);
  --accent: #f2c73d;
  --accent-2: #f4efe4;
  --accent-deep: #7b5205;
  --shadow: rgba(8, 11, 14, 0.18);
  --dot-dark: radial-gradient(circle at 1px 1px, rgba(8, 11, 14, 0.14) 1px, transparent 1.7px) 0 0 / 20px 20px;
  --dot-warm: radial-gradient(circle at 1px 1px, rgba(242, 199, 61, 0.13) 1px, transparent 1.8px) 0 0 / 22px 22px;
  --dot-cream: radial-gradient(circle at 1px 1px, rgba(244, 239, 228, 0.08) 1px, transparent 1.8px) 0 0 / 22px 22px;
  --dark-field: linear-gradient(180deg, #0b0f12 0%, #07090b 100%);
  --dark-field-warm: linear-gradient(135deg, #11100d 0%, #0b0f12 48%, #07090b 100%);
  --yellow-field: linear-gradient(135deg, #f8da65 0%, #f0c22c 100%);
  --max: 1180px;
  --type-display: clamp(40px, 4.8vw, 68px);
  --type-section: clamp(34px, 4.15vw, 58px);
  --type-section-film: clamp(36px, 4.5vw, 62px);
  --type-card: clamp(20px, 1.9vw, 28px);
  --type-lead: clamp(17px, 1.45vw, 20px);
  --line-display: 1.02;
  --line-section: 1.02;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 62px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.visually-hidden {
  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: absolute;
  top: -60px;
  left: 12px;
  z-index: 100;
  padding: 10px 18px;
  color: var(--bg);
  background: var(--accent);
  border-radius: 2px;
  font-weight: 760;
  text-decoration: none;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  height: 54px;
  min-height: 54px;
  padding: 0 clamp(18px, 4vw, 46px);
  color: var(--bg);
  background: rgba(242, 199, 61, 0.82);
  border-bottom: 1px solid rgba(8, 11, 14, 0.12);
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(242, 199, 61, 0.96);
  border-bottom-color: rgba(8, 11, 14, 0.18);
  box-shadow: 0 8px 24px rgba(8, 11, 14, 0.1);
}

.site-scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: rgba(8, 11, 14, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline-color: var(--bg);
  outline-offset: 2px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 290px;
  min-width: 270px;
  padding: 0;
  color: var(--bg);
  background: transparent;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: 58px;
}

.redwood-logo {
  display: inline-flex;
  color: currentColor;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.redwood-logo .skew {
  display: inline-flex;
  align-items: center;
  gap: var(--rw-gap);
  transform: skewX(-7deg);
}

.redwood-logo strong,
.redwood-logo .film-line {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.redwood-logo strong {
  font-size: var(--rw-main);
  line-height: 0.86;
}

.redwood-logo .film-line {
  width: max-content;
  height: calc(var(--rw-main) * 0.88);
  justify-content: center;
  padding: 0 var(--rw-film-pad-x);
  color: var(--bg);
  background: var(--ink);
  font-size: var(--rw-film);
  line-height: 1;
  letter-spacing: -0.014em;
}

.redwood-logo .film-line em {
  color: var(--bg);
  font-style: normal;
  transform: translateY(1px);
}

.redwood-logo-nav {
  --rw-main: 30px;
  --rw-film: 26px;
  --rw-gap: 4px;
  --rw-film-pad-x: 9px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 22px);
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--bg);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.65);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  color: var(--bg);
  opacity: 0.68;
}

.site-nav .nav-cta {
  padding: 0;
  color: inherit;
  background: transparent;
}

.site-nav .nav-cta:hover {
  color: inherit;
  background: transparent;
}

.site-nav .nav-cta::after,
.site-nav .nav-cta:hover::after {
  display: block;
}

.site-nav .nav-featured {
  color: inherit;
}

.site-nav .nav-cta::after {
  opacity: 0.5;
  transform: scaleX(1);
}

.site-nav a:hover::after,
.site-nav .nav-cta:hover::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--bg);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.social-nav a:hover {
  transform: translateY(-1px);
}

.social-nav img {
  display: block;
  width: 18px;
  height: 18px;
  opacity: 1;
}

.social-nav a:hover img {
  opacity: 0.68;
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--bg);
  background: transparent;
  padding: 8px 0 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 90svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 4vw, 46px) 72px;
  color: var(--ink);
  background: var(--bg);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.1) 0%, transparent 38%),
    var(--dark-field);
}

.hero-video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  /* Pełne wypełnienie kadru (cover): film 2560x1080 zawsze przykrywa hero,
     nadmiar jest przycinany zamiast tworzyć czarne pasy góra/dół. */
  width: 100vw;
  height: 42.1875vw;    /* 64:27, gdy o rozmiarze decyduje szerokość */
  min-width: 237.04vh;  /* 64:27, gdy o rozmiarze decyduje wysokość */
  min-height: 100vh;
  border: 0;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-video.is-ready {
  opacity: 1;
}

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

.hero-start-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 1;
  visibility: visible;
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.1) 0%, transparent 38%),
    var(--dark-field);
  pointer-events: none;
  transition:
    opacity 280ms ease,
    visibility 0s linear 280ms;
}

.hero-start-cover.is-clear {
  opacity: 0;
  visibility: hidden;
}

.hero-play-fallback {
  position: absolute;
  z-index: 4;
  top: clamp(78px, 10vh, 104px);
  right: clamp(16px, 4vw, 46px);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(242, 199, 61, 0.74);
  border-radius: 50%;
  background: rgba(8, 11, 14, 0.84);
  box-shadow: 0 8px 24px rgba(8, 11, 14, 0.24);
  cursor: pointer;
  pointer-events: auto;
}

.hero-play-fallback[hidden] {
  display: none;
}

.hero-play-fallback img {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: 2px;
}

.hero-play-fallback:hover {
  background: rgba(8, 11, 14, 0.96);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 24% 70%, rgba(8, 11, 14, 0.46) 0%, rgba(8, 11, 14, 0.28) 30%, rgba(8, 11, 14, 0.07) 54%, transparent 78%),
    linear-gradient(90deg, rgba(8, 11, 14, 0.12) 0%, rgba(8, 11, 14, 0.02) 42%, transparent 72%),
    linear-gradient(0deg, rgba(8, 11, 14, 0.1) 0%, rgba(8, 11, 14, 0.02) 35%, transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  margin: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-title {
  width: min(620px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: var(--type-display);
  font-weight: 820;
  line-height: var(--line-display);
  letter-spacing: 0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.62);
}

.hero-copy {
  width: min(560px, 100%);
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  color: var(--ink);
  font-size: var(--type-lead);
  font-weight: 580;
  line-height: 1.42;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.hero-showreel {
  display: none;
}

.mobile-copy {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 12px 2px 14px;
  font-weight: 760;
  line-height: 1;
  border: 0;
  background: transparent;
  transition:
    transform 160ms ease,
    color 160ms ease;
}

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

.button.primary {
  color: var(--accent);
}

.button.secondary {
  color: var(--ink);
}

.button.primary::after,
.button.secondary::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 5px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 220ms ease;
}

.button.primary::after {
  transform: scaleX(0.48);
}

.button.primary:hover,
.button.primary:focus-visible,
.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--accent);
}

.button.primary:hover::after,
.button.primary:focus-visible::after,
.button.secondary:hover::after,
.button.secondary:focus-visible::after {
  transform: scaleX(1);
}

/* CTA głównego działania: pełny przycisk zamiast linku z podkreśleniem */
.button.primary {
  padding: 15px 30px 16px;
  color: var(--bg);
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.button.primary::after {
  display: none;
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--bg);
  background: #ffd84d;
}

.section {
  padding: clamp(70px, 7.5vw, 104px) clamp(18px, 4vw, 46px);
  background: var(--surface);
}

section[id] {
  scroll-margin-top: 72px;
}

.offer-section {
  color: var(--bg);
  background:
    linear-gradient(180deg, #f4efe4 0%, #e8ddc5 100%);
}

.offer-section .eyebrow,
.offer-section .section-heading p:not(.eyebrow) {
  color: var(--accent-deep);
  opacity: 1;
}

.offer-section .section-heading h2 {
  color: var(--bg);
}

.section-band {
  position: relative;
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.08) 0%, transparent 42%),
    var(--dark-field-warm);
  color: var(--ink);
  overflow: hidden;
}

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

.intro {
  position: relative;
  min-height: clamp(520px, 68svh, 720px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 6.6vw, 88px) clamp(18px, 4vw, 46px);
  background-color: #071015;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(82vw, 1380px);
  background: url("assets/studio-model-lighting.jpg") left center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  pointer-events: none;
}

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 21, 0.02) 0%, rgba(7, 16, 21, 0.06) 45%, rgba(7, 16, 21, 0.36) 66%, #071015 100%);
  pointer-events: none;
}

.intro-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.intro-content {
  width: min(590px, 100%);
  grid-column: 2;
  justify-self: end;
}

.format-ratios {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 228, 0.22);
}

.format-ratios span {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 820;
  line-height: 1.3;
}

.format-ratios span:not(:last-child)::after {
  content: "/";
  margin: 0 clamp(10px, 1.3vw, 16px);
  color: rgba(242, 199, 61, 0.82);
}

.intro-grid,
.section-heading.split,
.cta-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-heading h2,
.process-copy h2,
.cta-grid h2 {
  margin: 0;
  font-size: var(--type-section);
  line-height: var(--line-section);
  letter-spacing: 0;
}

.intro h2 {
  margin: 0;
  font-size: var(--type-section-film);
  line-height: var(--line-section);
  letter-spacing: 0;
}

.intro-content p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.process-copy p,
.cta-grid p:not(.eyebrow) {
  margin: 0;
  color: currentColor;
  opacity: 0.72;
  font-size: var(--type-lead);
}

.intro-content p:not(.eyebrow) {
  margin-top: 24px;
}

.process-image {
  margin-top: 34px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #202526;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.visual-bridge {
  position: relative;
  height: clamp(430px, 54vw, 640px);
  overflow: hidden;
  background: #0b0f12;
  border-top: 1px solid rgba(244, 239, 228, 0.1);
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
}

.visual-bridge img {
  position: absolute;
  inset: 0 0 0 auto;
  display: block;
  width: min(78vw, 1360px);
  height: 100%;
  object-fit: cover;
  object-position: 76% 16%;
  filter: brightness(0.9) saturate(1.05) contrast(1.04);
  transform: scale(1.01);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.68) 24%, #000 38%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.68) 24%, #000 38%, #000 100%);
}

.visual-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #0b0f12 0%, rgba(8, 11, 14, 0.94) 30%, rgba(8, 11, 14, 0.38) 58%, rgba(8, 11, 14, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 11, 14, 0.44) 0%, transparent 46%, rgba(8, 11, 14, 0.04) 100%);
  pointer-events: none;
}

.visual-bridge-content {
  position: absolute;
  z-index: 2;
  left: max(clamp(16px, 4vw, 46px), calc((100% - var(--max)) / 2));
  bottom: clamp(56px, 7vw, 92px);
  width: min(640px, calc(100% - 36px));
  color: var(--ink);
}

.visual-bridge-content h2 {
  width: min(620px, 100%);
  margin: 0;
  font-size: var(--type-section-film);
  line-height: var(--line-section);
  letter-spacing: 0;
}

.equipment-section {
  height: clamp(560px, 58vw, 700px);
}

.equipment-section img {
  left: auto;
  right: 0;
  width: 50%;
  object-position: 56% 50%;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.equipment-section::before {
  background: linear-gradient(
    90deg,
    #0b0f12 0%,
    #0b0f12 49%,
    rgba(11, 15, 18, 0.88) 50%,
    transparent 55%
  );
}

.equipment-section .visual-bridge-content {
  right: calc(50% + clamp(28px, 3vw, 48px));
  width: auto;
}

.equipment-section .visual-bridge-content h2 {
  width: min(620px, 100%);
  font-size: var(--type-section);
  line-height: var(--line-section);
}

.visual-bridge-content p:not(.eyebrow) {
  width: min(560px, 100%);
  margin: clamp(18px, 2vw, 24px) 0 0;
  color: rgba(244, 239, 228, 0.78);
  font-size: var(--type-lead);
}

.visual-bridge-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 228, 0.22);
}

.visual-bridge-points span {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 820;
}

.visual-bridge-points span:not(:last-child)::after {
  content: "/";
  margin: 0 clamp(10px, 1.3vw, 16px);
  color: rgba(242, 199, 61, 0.82);
}

.campaign-section {
  color: var(--bg);
  background:
    linear-gradient(180deg, #f4efe4 0%, #e9dfca 100%);
}

.campaign-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.campaign-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.campaign-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.campaign-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  box-shadow: 10px 10px 0 rgba(8, 11, 14, 0.08);
}

.campaign-flow article {
  min-height: 230px;
  padding: clamp(20px, 3vw, 30px);
  border-right: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
  background: #fff8e8;
}

.campaign-flow span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 850;
}

.campaign-flow h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

.campaign-flow p {
  margin: 0;
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  box-shadow: 0 24px 70px var(--shadow);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  overflow: hidden;
  min-height: 0;
  color: var(--text);
  background: #fff8e8;
  border: 2px solid var(--bg);
  box-shadow: 8px 8px 0 rgba(8, 11, 14, 0.08);
}

.service-card::after {
  content: none;
}

.service-bg {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}

.service-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: none;
  transition: transform 500ms ease;
}

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

.service-number {
  position: relative;
  z-index: 1;
  padding: 18px 18px 0;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 850;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 12px;
  padding: 0 18px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 18px 22px;
  color: var(--text-muted);
}

.production-output-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(520px, 68svh, 720px);
  color: var(--ink);
  padding: clamp(58px, 6.6vw, 88px) clamp(18px, 4vw, 46px);
  background: #0b0f12;
  overflow: hidden;
}

.production-output-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(82vw, 1380px);
  background: url("assets/postproduction-color-grading.jpg") right center / auto 118% no-repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  pointer-events: none;
}

.production-output-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 18, 0.08) 0%, rgba(11, 15, 18, 0.12) 45%, rgba(11, 15, 18, 0.48) 66%, #0b0f12 100%);
  pointer-events: none;
}

.production-output-minimal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.production-output-copy {
  width: min(560px, 100%);
  grid-column: 2;
  justify-self: end;
}

.production-output-minimal .eyebrow {
  color: var(--accent);
}

.production-output-minimal h2 {
  max-width: 980px;
  margin: 0;
  font-size: var(--type-section-film);
  line-height: var(--line-section);
  letter-spacing: 0;
}

.production-output-copy > p:not(.eyebrow) {
  max-width: 820px;
  margin: clamp(22px, 2.4vw, 30px) 0 0;
  color: rgba(244, 239, 228, 0.78);
  font-size: var(--type-lead);
}

.production-output-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 228, 0.22);
}

.production-output-line span {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 820;
  line-height: 1.3;
}

.production-output-line span:not(:last-child)::after {
  content: "/";
  margin: 0 clamp(10px, 1.3vw, 16px);
  color: rgba(242, 199, 61, 0.82);
  font-weight: 850;
}

.service-motion-section {
  color: var(--ink);
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.09) 0%, transparent 38%),
    var(--dark-field);
}

.service-section-heading {
  width: min(780px, 100%);
  margin-bottom: clamp(30px, 4.5vw, 54px);
}

.service-section-heading h2 {
  margin: 0;
  font-size: var(--type-section);
  line-height: var(--line-section);
  letter-spacing: 0;
}

.service-variant-stack {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.service-variant {
  --variant-accent: var(--accent);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  min-width: 0;
}

.service-motion-item {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: clamp(190px, 18vw, 245px);
  overflow: hidden;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(244, 239, 228, 0.17);
  background: rgba(244, 239, 228, 0.045);
  outline: 0;
  cursor: default;
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-motion-item::before,
.service-motion-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-motion-item h3,
.service-motion-heading,
.service-motion-icon,
.service-motion-lead,
.service-motion-item p {
  position: relative;
  z-index: 1;
}

.service-motion-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(12px, 1.3vw, 16px);
  align-items: start;
}

.service-motion-icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition:
    filter 260ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-motion-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--type-card);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-motion-lead {
  display: block;
  max-width: 22ch;
  margin-top: 18px;
  color: var(--accent);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-motion-item p {
  max-width: 34ch;
  margin: clamp(14px, 1.5vw, 18px) 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.42;
  opacity: 0.82;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.service-motion-item:hover,
.service-motion-item:focus,
.service-motion-item:focus-visible {
  border-color: rgba(242, 199, 61, 0.58);
  background: rgba(244, 239, 228, 0.075);
  transform: translateY(-4px);
}

.service-motion-item:hover p,
.service-motion-item:focus p,
.service-motion-item:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.service-motion-item:hover .service-motion-icon,
.service-motion-item:focus .service-motion-icon,
.service-motion-item:focus-visible .service-motion-icon {
  filter: drop-shadow(0 0 12px rgba(242, 199, 61, 0.24));
  transform: translateY(-2px) scale(1.04);
}

.variant-expanding {
  display: flex;
  gap: 8px;
}

.variant-expanding .service-motion-item {
  flex: 1 1 0;
  min-height: 220px;
  border-radius: 0;
  background:
    linear-gradient(140deg, rgba(244, 239, 228, 0.08), rgba(244, 239, 228, 0.02)),
    rgba(8, 11, 14, 0.7);
  transition:
    flex 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    transform 260ms ease;
}

.variant-expanding:has(.service-motion-item:hover) .service-motion-item,
.variant-expanding:has(.service-motion-item:focus) .service-motion-item,
.variant-expanding:has(.service-motion-item:focus-visible) .service-motion-item {
  opacity: 0.62;
}

.variant-expanding .service-motion-item:hover,
.variant-expanding .service-motion-item:focus,
.variant-expanding .service-motion-item:focus-visible {
  flex: 1.72 1 0;
  opacity: 1;
  transform: translateY(0);
}

.variant-expanding .service-motion-item::before {
  left: 20px;
  right: 20px;
  bottom: 22px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 280ms ease;
}

.variant-expanding .service-motion-item:hover::before,
.variant-expanding .service-motion-item:focus::before,
.variant-expanding .service-motion-item:focus-visible::before {
  opacity: 0.8;
  transform: scaleX(1);
}

.variant-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.variant-service-grid .service-motion-item {
  min-height: clamp(190px, 16vw, 224px);
  padding: clamp(17px, 1.8vw, 22px) clamp(17px, 1.8vw, 22px) clamp(42px, 3vw, 48px);
  border-radius: 0;
  background:
    linear-gradient(140deg, rgba(244, 239, 228, 0.08), rgba(244, 239, 228, 0.02)),
    rgba(8, 11, 14, 0.7);
}

.variant-service-grid .service-motion-item::before {
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 280ms ease;
}

.variant-service-grid .service-motion-item:hover::before,
.variant-service-grid .service-motion-item:focus::before,
.variant-service-grid .service-motion-item:focus-visible::before {
  opacity: 0.8;
  transform: scaleX(1);
}

.variant-service-grid .service-motion-item h3 {
  font-size: var(--type-card);
}

.variant-service-grid .service-motion-lead {
  max-width: 23ch;
  margin-top: 15px;
  font-size: clamp(14px, 1.15vw, 16px);
}

.variant-service-grid .service-motion-item p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.38;
}

.section-band .section-inner {
  position: relative;
  z-index: 1;
}

.workflow-section {
  color: var(--ink);
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.09) 0%, transparent 38%),
    var(--dark-field);
  overflow: hidden;
}

.workflow-inner {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.workflow-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  column-gap: clamp(24px, 5vw, 70px);
  row-gap: 12px;
  align-items: end;
}

.workflow-heading .eyebrow {
  grid-column: 1 / -1;
}

.workflow-heading h2 {
  grid-column: 1;
  margin: 0;
  font-size: var(--type-section);
  line-height: var(--line-section);
  letter-spacing: 0;
}

.workflow-heading p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--type-lead);
}

.workflow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding-top: 52px;
  border: 0;
  background: transparent;
  isolation: isolate;
}

.workflow-track {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: calc((100% - 40px) / 12);
  right: calc((100% - 40px) / 12);
  height: 2px;
  background: rgba(244, 239, 228, 0.22);
  overflow: hidden;
}

.workflow-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), rgba(242, 199, 61, 0.18));
  transform: translateX(-100%);
}

.workflow-runner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(242, 199, 61, 0.12);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.workflow-section.is-in-view .workflow-track::before {
  animation: workflowLine 2.8s cubic-bezier(0.65, 0, 0.35, 1) 1 both;
}

.workflow-section.is-in-view .workflow-runner {
  opacity: 1;
  animation: workflowRunner 2.8s cubic-bezier(0.65, 0, 0.35, 1) 1 both;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-rows: 66px auto auto 1fr;
  min-height: 255px;
  padding: clamp(16px, 1.7vw, 21px) clamp(16px, 1.7vw, 21px) clamp(44px, 3.4vw, 50px);
  border-radius: 0;
  border: 1px solid rgba(244, 239, 228, 0.17);
  background:
    linear-gradient(140deg, rgba(244, 239, 228, 0.08), rgba(244, 239, 228, 0.02)),
    rgba(8, 11, 14, 0.7);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.workflow-step::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 3px;
  background: var(--accent);
  opacity: 0.8;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 280ms ease;
}

.workflow-step::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 50%;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(242, 199, 61, 0.12);
  transform: translateX(-50%);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.workflow-visual {
  position: relative;
  width: 86px;
  height: 58px;
  color: var(--accent);
  transition:
    color 260ms ease,
    filter 260ms ease,
    transform 260ms ease;
}

.workflow-visual img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: none;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.workflow-number {
  color: rgba(242, 199, 61, 0.88);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.workflow-step:hover {
  border-color: rgba(242, 199, 61, 0.58);
  background:
    linear-gradient(140deg, rgba(244, 239, 228, 0.1), rgba(244, 239, 228, 0.028)),
    rgba(8, 11, 14, 0.76);
  box-shadow: none;
}

.workflow-step:hover::after {
  transform: scaleX(1);
}

.workflow-step:hover::before {
  background: var(--accent);
  transform: translateX(-50%) scale(1.16);
  box-shadow:
    0 0 0 8px rgba(242, 199, 61, 0.14),
    0 0 18px rgba(242, 199, 61, 0.24);
}

.workflow-step:hover .workflow-visual {
  filter: drop-shadow(0 0 10px rgba(242, 199, 61, 0.16));
  transform: translateY(-2px);
}

.workflow-step:hover .workflow-visual img {
  animation: workflowIconHover 780ms ease both;
}

.workflow-step:hover .workflow-number {
  color: #ffd84a;
  transform: translateX(3px);
}

.workflow-step h3 {
  margin: 10px 0 0;
  font-size: var(--type-card);
  line-height: 1.05;
  letter-spacing: 0;
}

.workflow-step p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.42;
}

@keyframes workflowLine {
  0% {
    transform: translateX(-100%);
  }

  58%,
  100% {
    transform: translateX(0);
  }
}

@keyframes workflowRunner {
  0% {
    left: 0;
  }

  58%,
  100% {
    left: 100%;
  }
}

@keyframes workflowPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes workflowHoverBlink {
  0%,
  100% {
    opacity: 1;
  }

  42% {
    opacity: 0.48;
  }

  64% {
    opacity: 1;
  }
}

@keyframes workflowIconHover {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  42% {
    opacity: 0.72;
    transform: translateY(-2px) scale(1.04);
  }

  68% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
}

.trust-variants-section {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 199, 61, 0.075), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(244, 239, 228, 0.045), transparent 36%),
    var(--dark-field-warm);
  overflow: hidden;
}

.trust-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
}

.trust-variants-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.trust-option {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(330px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  overflow: visible;
  padding: 0;
  color: var(--ink);
}

.trust-copy {
  position: relative;
  z-index: 1;
}

.trust-copy .eyebrow {
  color: var(--accent);
}

.trust-copy h2 {
  width: min(390px, 100%);
  margin: 0;
  font-size: var(--type-section);
  line-height: var(--line-section);
}

.trust-copy p:not(.eyebrow) {
  width: min(370px, 100%);
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: var(--type-lead);
}

.client-logo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(86px, 1fr));
  gap: clamp(16px, 1.7vw, 27px) clamp(18px, 2.05vw, 36px);
  align-items: center;
}

.client-logo-grid article {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  opacity: 1;
  transition: filter 180ms ease, transform 180ms ease;
}

.client-logo-grid article:hover {
  filter: saturate(1.08);
  transform: translateY(-3px) scale(1.025);
}

.client-logo-grid img {
  display: block;
  width: min(132px, 92%);
  height: 42px;
  filter: none;
  opacity: 0.92;
  object-fit: contain;
  transform-origin: center;
  transition: filter 180ms ease, opacity 180ms ease;
}

.logo-millennium img,
.logo-makro img {
  filter: none;
  opacity: 0.92;
}

.logo-size-compact img {
  width: min(52px, 82%);
  height: 52px;
}

.logo-size-mark img {
  width: 46px;
  height: 46px;
}

.logo-size-wide img {
  width: min(142px, 94%);
}

.logo-pko img {
  width: 60px;
  height: 68px;
}

.logo-pzu img {
  width: min(100px, 86%);
  height: 52px;
}

.logo-scania img {
  width: min(164px, 100%);
  height: 58px;
}

.logo-mbank img {
  width: min(52px, 82%);
  height: 52px;
}

.logo-play img {
  width: min(132px, 94%);
  height: 84px;
}

.logo-kia img {
  width: min(172px, 100%);
  height: 56px;
}

.logo-bmw img {
  width: 52px;
  height: 52px;
}

.logo-iveco img {
  width: min(132px, 92%);
  height: 32px;
}

.logo-volvo img {
  width: min(118px, 92%);
  height: 34px;
}

.logo-zywiec img {
  width: min(150px, 96%);
  height: 50px;
}

.logo-lech img {
  width: min(118px, 90%);
  height: 48px;
}

.logo-desperados img {
  width: min(118px, 92%);
  height: 58px;
}

.logo-intercity img {
  width: min(186px, 100%);
  height: 54px;
}

.logo-mpw img {
  width: 66px;
  height: 66px;
}

.logo-tiktok img {
  width: min(116px, 92%);
  height: 38px;
}

.logo-volvo img,
.logo-kia img,
.logo-tiktok img,
.logo-skoda img,
.logo-intercity img {
  filter: none;
  opacity: 0.96;
}

.logo-iveco img,
.logo-size-mark img {
  filter: grayscale(1) brightness(0) invert(0.96);
  opacity: 0.96;
}

.logo-zywiec img {
  opacity: 1;
  filter: none;
}

.logo-millennium img {
  width: min(52px, 82%);
  height: 52px;
}

.logo-skoda img {
  width: min(142px, 94%);
  height: 42px;
}

.logo-lubella img {
  width: min(142px, 94%);
  height: 42px;
}

.logo-pge img {
  width: min(156px, 98%);
  height: 48px;
}

.logo-google img {
  width: min(146px, 96%);
  height: 42px;
}

.logo-euro img,
.logo-microsoft img {
  width: min(136px, 92%);
  height: 40px;
}

.logo-makro img {
  width: min(112px, 80%);
  height: 32px;
}

.client-logo-grid article:hover img {
  filter: saturate(1.14) contrast(1.06);
  opacity: 1;
}

.client-logo-grid .logo-iveco:hover img,
.client-logo-grid .logo-size-mark:hover img {
  filter: grayscale(1) brightness(0) invert(1);
}

.portfolio-section {
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.08) 0%, transparent 36%),
    linear-gradient(180deg, #080b0e 0%, #050607 100%);
}

.portfolio-minimal-heading {
  display: block;
  width: min(820px, 100%);
  margin-bottom: clamp(22px, 4vw, 42px);
  color: var(--ink);
}

.portfolio-minimal-heading h2 {
  width: min(760px, 100%);
  margin: 0;
  font-size: var(--type-section);
  line-height: var(--line-section);
  text-align: left;
}

.portfolio-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
}

.portfolio-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
  background: #030405;
  border: 1px solid rgba(244, 239, 228, 0.18);
}

.portfolio-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #ffffff;
  background: #030405;
  cursor: pointer;
  text-align: left;
}

.portfolio-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.08) 0 22%, transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.36));
  opacity: 0.72;
  transition: opacity 300ms ease;
}

.portfolio-thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(28px, 3.2vw, 42px);
  height: clamp(28px, 3.2vw, 42px);
  background: url("assets/icons/play-fill.svg") center / contain no-repeat;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  transition: opacity 240ms ease, transform 300ms ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.portfolio-thumb:hover img,
.portfolio-thumb:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.portfolio-thumb:hover::before,
.portfolio-thumb:focus-visible::before,
.portfolio-thumb:active::before {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-thumb:hover::after,
.portfolio-thumb:focus-visible::after {
  opacity: 0.5;
}

.portfolio-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 26px 16px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.portfolio-thumb:hover .portfolio-caption,
.portfolio-thumb:focus-visible .portfolio-caption {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.portfolio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease;
}

.portfolio-modal.is-open .portfolio-modal-backdrop {
  opacity: 1;
}

.portfolio-modal-frame {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  background: #020303;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-modal.is-square .portfolio-modal-frame {
  width: min(720px, 82svh, 100%);
  aspect-ratio: 1;
}

.portfolio-modal.is-open .portfolio-modal-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio-modal-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #020303;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.portfolio-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  transition: opacity 220ms ease;
}

.portfolio-modal.is-loading .portfolio-modal-frame::after {
  opacity: 1;
}

.portfolio-modal.is-loading .portfolio-modal-frame iframe {
  opacity: 0;
}

.portfolio-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.portfolio-modal-close:hover,
.portfolio-modal-close:focus-visible {
  transform: scale(1.04);
}

body.is-portfolio-open {
  overflow: hidden;
}

.process-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.delivery-section {
  color: var(--ink);
  background: var(--bg);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.delivery-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.delivery-copy p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: clamp(17px, 1.5vw, 20px);
}

.delivery-panel {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.delivery-panel article {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(8, 11, 14, 0.78);
  backdrop-filter: blur(12px);
}

.delivery-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.delivery-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
}

.delivery-panel p {
  margin: 0;
  color: var(--ink-muted);
}

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

.audience-list article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--bg-2);
}

.audience-list h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.08;
}

.audience-list p {
  margin: 0;
  color: var(--ink-muted);
}

.steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(244, 239, 228, 0.22);
  border: 1px solid rgba(244, 239, 228, 0.22);
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  color: var(--ink);
  background: rgba(244, 239, 228, 0.06);
}

.steps span {
  color: var(--accent);
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.steps p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--ink-muted);
}

.process-section {
  color: var(--ink);
  background:
    var(--dot-cream),
    linear-gradient(135deg, transparent 0%, rgba(242, 199, 61, 0.08) 52%, transparent 100%),
    var(--dark-field);
}

.process-section .process-image {
  border-color: rgba(242, 199, 61, 0.34);
}

.cta-section {
  position: relative;
  color: var(--ink);
  background:
    var(--dot-cream),
    linear-gradient(135deg, rgba(242, 199, 61, 0.13) 0%, transparent 38%),
    linear-gradient(180deg, rgba(244, 239, 228, 0.03) 0%, transparent 48%),
    var(--dark-field);
  overflow: hidden;
}

.cta-section .cta-grid {
  position: relative;
  z-index: 1;
}

.cta-section .cta-grid > * {
  position: relative;
  z-index: 1;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-intro .eyebrow {
  margin-bottom: 14px;
}

.contact-intro p:not(.eyebrow) {
  margin-top: clamp(18px, 2vw, 24px);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 228, 0.22);
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  color: var(--ink);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 820;
  letter-spacing: 0;
}

.contact-points span:not(:last-child)::after {
  content: "/";
  margin: 0 clamp(10px, 1.3vw, 16px);
  color: rgba(242, 199, 61, 0.82);
}

.contact-panel {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  align-self: start;
}

.contact-details {
  width: min(430px, 100%);
  margin-top: clamp(26px, 3.4vw, 42px);
}

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

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.form-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(244, 239, 228, 0.24);
  border-radius: 2px;
  outline: 0;
  color: var(--ink);
  background: rgba(244, 239, 228, 0.055);
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 47px;
  padding: 11px 12px;
}

.form-field textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
}

.contact-panel .form-field textarea {
  min-height: 210px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 239, 228, 0.44);
}

.form-field select option {
  color: #101517;
  background: #f4efe4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(242, 199, 61, 0.88);
  background: rgba(244, 239, 228, 0.085);
  box-shadow: 0 0 0 3px rgba(242, 199, 61, 0.12);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.contact-submit {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-form-status {
  flex: 1 1 240px;
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px !important;
  line-height: 1.4;
  opacity: 1 !important;
}

.contact-form-status.is-success {
  color: #d9efaf;
}

.contact-form-status.is-error {
  color: #ffb8a8;
}

.contact-direct {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 228, 0.18);
}

.contact-details .contact-direct {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.contact-direct > p {
  margin: 0 0 8px !important;
  color: var(--ink-muted) !important;
  font-size: 13px !important;
  font-weight: 680;
  opacity: 1 !important;
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.contact-direct-links a {
  color: var(--ink);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 780;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.contact-direct-links a:hover,
.contact-direct-links a:focus-visible {
  color: var(--accent);
}

.contact-main-link {
  position: relative;
  display: block;
  padding: 0 0 clamp(16px, 2vw, 22px);
  color: var(--ink);
  border-bottom: 1px solid rgba(244, 239, 228, 0.22);
  font-size: clamp(25px, 3.2vw, 42px);
  font-weight: 850;
  line-height: 1.02;
  overflow-wrap: anywhere;
  transition:
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-main-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(180px, 44%);
  height: 2px;
  background: var(--accent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.contact-main-link:hover,
.contact-main-link:focus-visible {
  color: var(--accent);
  border-color: rgba(242, 199, 61, 0.4);
  transform: translateX(4px);
}

.contact-main-link:hover::after,
.contact-main-link:focus-visible::after {
  transform: scaleX(1);
}

.contact-panel p {
  color: var(--ink-muted);
  opacity: 1;
}

.contact-intro .contact-social-note {
  margin: clamp(16px, 2vw, 22px) 0 -2px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 680;
  opacity: 1;
}

.contact-social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
}

.contact-social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 0;
  line-height: 0;
  opacity: 0.72;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.contact-social-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-social-nav img {
  display: block;
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 26px clamp(18px, 4vw, 46px);
  color: var(--ink-muted);
  background: #060708;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-legal,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-meta {
  text-align: right;
  align-items: flex-end;
}

.footer-brand {
  color: var(--ink);
  font-weight: 760;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.motion-reveal {
  opacity: 0;
  translate: 0 16px;
}

.motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 420ms ease var(--reveal-delay, 0ms),
    translate 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

@media (min-width: 981px) {
  .intro::before,
  .production-output-section::before {
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
    transform-origin: center;
    will-change: transform;
  }

  .visual-bridge img {
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.045);
    will-change: transform;
  }
}

@media (max-width: 720px) {
  .footer-meta {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .intro-showcase,
  .intro-grid,
  .production-output-minimal,
  .section-heading.split,
  .cta-grid,
  .process-grid,
  .delivery-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-variant {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .variant-expanding {
    display: grid;
  }

  .variant-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-option {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 24px;
  }

  .workflow-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-heading .eyebrow,
  .workflow-heading h2,
  .workflow-heading p:not(.eyebrow) {
    grid-column: 1;
  }

  .workflow-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-track {
    display: none;
  }

  .workflow-step::before {
    top: 18px;
    left: auto;
    right: 18px;
    transform: none;
  }

  .workflow-step:hover::before {
    transform: scale(1.14);
  }

  .production-output-copy {
    grid-column: auto;
    justify-self: start;
  }

  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-content {
    width: min(720px, 100%);
    justify-self: start;
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --type-display: clamp(32px, 8.4vw, 40px);
    --type-section: clamp(30px, 7.8vw, 40px);
    --type-section-film: clamp(32px, 8.2vw, 42px);
    --type-card: clamp(16px, 4.5vw, 18px);
    --type-lead: 16px;
  }

  section[id] {
    scroll-margin-top: 55px;
  }

  .format-ratios,
  .visual-bridge-points,
  .production-output-line,
  .contact-points {
    display: grid;
    gap: 8px;
  }

  .contact-form-footer {
    align-items: stretch;
  }

  .trust-particles {
    opacity: 0.62;
  }

  .contact-submit {
    width: 100%;
  }

  .format-ratios span:not(:last-child)::after,
  .visual-bridge-points span:not(:last-child)::after,
  .production-output-line span:not(:last-child)::after,
  .contact-points span:not(:last-child)::after {
    content: none;
  }

  .site-header {
    align-items: center;
    gap: 8px;
    height: 47px;
    min-height: 47px;
    padding: 0 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .brand {
    width: 152px;
    min-width: 152px;
  }

  .brand-logo-img {
    height: 50px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-left: 6px;
  }

  .social-nav {
    gap: 2px;
  }

  .social-nav a {
    width: 26px;
    height: 32px;
  }

  .social-nav img {
    width: 15px;
    height: 15px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    color: var(--bg);
    background: var(--accent);
    border-bottom: 0;
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav .nav-cta {
    justify-content: flex-start;
    margin-top: 0;
    padding: 12px 0;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .trust-option {
    padding: 0;
    gap: 28px;
  }

  .client-logo-grid article {
    min-height: 58px;
  }

  .client-logo-grid img {
    width: min(90px, 92%);
    height: 36px;
  }

  .logo-size-compact img {
    width: min(42px, 82%);
    height: 42px;
  }

  .logo-size-mark img {
    width: 40px;
    height: 40px;
  }

  .logo-pko img {
    width: 44px;
    height: 52px;
  }

  .logo-pzu img {
    width: min(78px, 84%);
    height: 39px;
  }

  .logo-play img {
    width: min(96px, 88%);
    height: 66px;
  }

  .logo-scania img {
    width: min(108px, 98%);
    height: 44px;
  }

  .logo-mbank img {
    width: min(42px, 82%);
    height: 42px;
  }

  .logo-kia img {
    width: min(118px, 100%);
    height: 40px;
  }

  .logo-bmw img {
    width: 42px;
    height: 42px;
  }

  .logo-volvo img {
    width: 42px;
    height: 42px;
  }

  .logo-zywiec img {
    width: min(108px, 96%);
    height: 36px;
  }

  .logo-lech img {
    width: min(88px, 88%);
    height: 36px;
  }

  .logo-desperados img {
    width: min(88px, 92%);
    height: 42px;
  }

  .logo-intercity img {
    width: min(124px, 100%);
    height: 42px;
  }

  .logo-mpw img {
    width: 50px;
    height: 50px;
  }

  .logo-tiktok img {
    width: min(78px, 84%);
    height: 28px;
  }

  .logo-millennium img {
    width: min(42px, 82%);
    height: 42px;
  }

  .logo-skoda img,
  .logo-lubella img {
    width: min(90px, 90%);
    height: 34px;
  }

  .logo-pge img {
    width: min(98px, 94%);
    height: 36px;
  }

  .logo-google img,
  .logo-euro img,
  .logo-microsoft img {
    width: min(100px, 90%);
    height: 34px;
  }

  .logo-makro img {
    width: min(82px, 78%);
    height: 28px;
  }

  .hero {
    min-height: 0;
    display: block;
    align-items: start;
    padding: 46px 0 0;
  }

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

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

  .hero-showreel {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #080b0e;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
  }

  .hero-showreel-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hero-showreel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.04) 0 18%, transparent 42%);
    pointer-events: none;
  }

  .hero-showreel::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    background: url("assets/icons/play-fill.svg") center / contain no-repeat;
    opacity: 0.96;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.48));
    pointer-events: none;
  }

  .hero-showreel:hover .hero-showreel-poster,
  .hero-showreel:focus-visible .hero-showreel-poster {
    transform: scale(1.025);
  }

  .hero-showreel:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
  }

  .hero-content {
    width: 100%;
    padding: 24px 16px 30px;
    background:
      var(--dot-cream),
      linear-gradient(135deg, rgba(242, 199, 61, 0.09) 0%, transparent 38%),
      var(--dark-field);
    text-align: center;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-title {
    color: var(--ink);
    font-size: var(--type-display);
    text-shadow: none;
  }

  .hero-copy {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0;
    margin-top: 18px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-actions .button.primary {
    color: var(--bg);
    background: var(--accent);
    box-shadow: 0 10px 24px rgba(8, 11, 14, 0.2);
  }

  .hero-actions .button.primary:hover,
  .hero-actions .button.primary:focus-visible {
    color: var(--bg);
    background: #ffd84d;
  }

  .intro {
    min-height: auto;
    padding-top: clamp(210px, 58vw, 260px);
    padding-bottom: 52px;
    background-color: #071015;
  }

  .intro::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 58%;
    background: url("assets/studio-model-lighting.jpg") 42% top / cover no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.42) 60%, transparent 82%);
    mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.42) 60%, transparent 82%);
  }

  .intro::after {
    background: linear-gradient(180deg, rgba(7, 16, 21, 0.08) 0%, rgba(7, 16, 21, 0.4) 48%, #071015 92%);
  }

  .intro-content,
  .production-output-copy {
    grid-column: 1;
    justify-self: stretch;
  }

  .equipment-section {
    height: clamp(760px, 100svh, 840px);
  }

  .equipment-section img {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 38%;
    object-position: 56% 50%;
  }

  .equipment-section::before {
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 34%,
      rgba(11, 15, 18, 0.84) 38%,
      #0b0f12 43%,
      #0b0f12 100%
    );
  }

  .equipment-section .visual-bridge-content {
    right: 16px;
    bottom: 64px;
  }

  .equipment-section .visual-bridge-content h2 {
    font-size: var(--type-section);
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    align-self: center;
  }

  .hero-actions .button.secondary {
    width: auto;
    align-self: center;
  }

  .section {
    padding: 52px 16px;
  }

  .service-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .service-variant {
    grid-template-columns: 1fr;
  }

  .variant-expanding {
    display: grid;
  }

  .variant-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-motion-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .service-section-heading {
    margin-bottom: 26px;
  }

  .service-section-heading h2 {
    font-size: var(--type-section);
  }

  .service-motion-item,
  .variant-expanding .service-motion-item,
  .variant-service-grid .service-motion-item {
    min-height: 0;
    padding: 14px 12px 28px;
  }

  .variant-service-grid .service-motion-item p {
    display: block;
    margin-top: 12px;
    font-size: clamp(11.5px, 3vw, 13px);
    line-height: 1.34;
    opacity: 0.86;
  }

  .variant-service-grid .service-motion-item h3 {
    font-size: var(--type-card);
    line-height: 1.08;
  }

  .service-motion-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
  }

  .service-motion-icon {
    width: 38px;
    height: 38px;
  }

  .variant-service-grid .service-motion-lead {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.28;
  }

  .variant-service-grid .service-motion-item::before {
    left: 12px;
    right: auto;
    bottom: 12px;
    width: 28px;
  }

  .portfolio-minimal-heading {
    display: block;
  }

  .portfolio-minimal-heading h2 {
    margin-top: 0;
    text-align: left;
  }

  .portfolio-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .portfolio-modal {
    padding: 12px;
  }

  .portfolio-modal-frame {
    width: 100%;
  }

  .portfolio-modal-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .portfolio-caption {
    padding: 30px 12px 11px;
    font-size: 12px;
    opacity: 1;
    transform: none;
  }

  .portfolio-thumb::before {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.92);
  }

  .portfolio-thumb::after {
    opacity: 0.58;
  }

  .production-output-section,
  .workflow-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .workflow-heading h2 {
    font-size: var(--type-section);
  }

  .workflow-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .workflow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 0;
    border: 0;
    background: transparent;
  }

  .workflow-step {
    grid-template-rows: 42px auto auto 1fr;
    min-height: 0;
    margin-left: 0;
    padding: 14px 14px 40px;
  }

  .workflow-step::before {
    top: 14px;
    left: auto;
    right: 14px;
    width: 8px;
    height: 8px;
    transform: none;
    box-shadow: 0 0 0 5px rgba(242, 199, 61, 0.1);
  }

  .workflow-step:hover::before {
    transform: scale(1.14);
  }

  .workflow-visual {
    width: 58px;
    height: 38px;
  }

  .workflow-step h3 {
    margin-top: 7px;
    font-size: var(--type-card);
    line-height: 1.08;
  }

  .workflow-step p {
    max-width: 34em;
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.38;
  }

  .contact-panel .form-field textarea {
    min-height: 160px;
  }

  .workflow-step::after {
    left: 14px;
    right: auto;
    bottom: 15px;
    width: 34px;
  }

  .workflow-visual img {
    width: 36px;
    height: 36px;
  }

  .production-output-section {
    min-height: auto;
    padding-top: clamp(210px, 58vw, 260px);
    padding-bottom: 52px;
    background-color: #0b0f12;
  }

  .production-output-section::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 58%;
    background: url("assets/postproduction-color-grading.jpg") 58% top / cover no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.42) 60%, transparent 82%);
    mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.42) 60%, transparent 82%);
  }

  .production-output-section::after {
    background: linear-gradient(180deg, rgba(11, 15, 18, 0.08) 0%, rgba(11, 15, 18, 0.4) 48%, #0b0f12 92%);
  }

  .audience-list article {
    min-height: auto;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .steps p {
    grid-column: auto;
    margin-top: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }
}

/* Poszanowanie preferencji ograniczonego ruchu (WCAG 2.3.3 / 2.2.2) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
