:root {
  --ink: #12110f;
  --soft-ink: #23201c;
  --muted: #a49c90;
  --paper: #151412;
  --panel: #1f1d19;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #b92d27;
  --accent-soft: #f2c8b8;
  --gold: #c59a54;
  --cool: #6ea0a9;
  --max: 1440px;
  --gutter: clamp(20px, 4.6vw, 88px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px var(--gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(12, 12, 11, 0.68);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(18, 17, 15, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--white);
}

.brand img {
  width: clamp(34px, 3.4vw, 42px);
  height: clamp(34px, 3.4vw, 42px);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.brand span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher a {
  min-width: 38px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.language-switcher a.is-active {
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 118px var(--gutter) 38px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.05);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  padding-bottom: 112px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 720;
}

.hero-copy {
  width: min(650px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid currentColor;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  border-color: #d0a15d;
  background: linear-gradient(135deg, #b92d27, #d0a15d);
  color: var(--white);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: absolute;
  right: var(--gutter);
  bottom: 104px;
  z-index: 1;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 17, 15, 0.62);
  backdrop-filter: blur(10px);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 720;
}

.hero-credentials {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 32px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 17, 15, 0.46);
  backdrop-filter: blur(10px);
}

.hero-credentials div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-credentials div:last-child {
  border-right: 0;
}

.hero-credentials span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-credentials strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 720;
}

.section {
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 8.5vw, 108px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.intro-copy p {
  max-width: 840px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
}

.group {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 14px;
  padding-top: clamp(70px, 8.5vw, 108px);
}

.group::before,
.services::before,
.standards::before,
.uzbekistan::before,
.process::before,
.search-presence::before,
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.group::before,
.standards::before,
.process::before,
.faq::before {
  background: rgba(255, 255, 255, 0.012);
}

.services::before,
.uzbekistan::before,
.search-presence::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0), rgba(197, 154, 84, 0.018));
}

.group-card,
.group-grid article {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.group-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
}

.group-logo {
  position: absolute;
  top: clamp(24px, 4vw, 40px);
  right: clamp(24px, 4vw, 40px);
  width: min(210px, 34%);
  opacity: 0.12;
  filter: grayscale(1);
}

.group-kicker,
.group-grid span {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.group-card h2 {
  max-width: 780px;
  margin-bottom: 24px;
}

.group-card p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
}

.group-grid {
  display: grid;
  gap: 18px;
}

.group-grid article {
  padding: clamp(26px, 4vw, 38px);
}

.group-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.cinematic-strip {
  position: relative;
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.7fr;
  gap: 14px;
  padding: 0 0 clamp(66px, 8vw, 96px);
}

.cinematic-strip::before {
  content: "локации / площадка / производство";
  position: absolute;
  left: 0;
  top: -32px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

html:lang(en) .cinematic-strip::before {
  content: "production stills / location work";
}

.cinematic-strip figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.cinematic-strip figure:nth-child(2) {
  margin-top: 58px;
}

.cinematic-strip figure:nth-child(3) {
  margin-top: 116px;
}

.cinematic-strip img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 420ms ease;
}

.cinematic-strip figure:hover img {
  transform: scale(1.025);
}

.cinematic-strip figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.65);
}

.cinematic-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0) 48%);
  pointer-events: none;
}

.section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 28px;
}

.services,
.uzbekistan {
  position: relative;
  isolation: isolate;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 120px 280px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  padding: clamp(26px, 3vw, 38px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-grid article:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.service-grid p,
.timeline p,
.location-list p,
.location-list li {
  color: var(--muted);
}

.service-grid h3 {
  margin-bottom: 0;
}

.service-grid p {
  max-width: 540px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.52;
}

.card-number {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 750;
}

.standards {
  position: relative;
  isolation: isolate;
  padding-top: 0;
}

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

.standards-grid div {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.standards-grid span {
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 750;
}

.standards-grid p {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.35;
}

.image-band {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.image-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.05)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08));
}

.image-band-copy {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0 64px;
}

.image-band-copy p {
  width: min(760px, 100%);
  margin-bottom: 0;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
  font-weight: 720;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

.location-layout img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.location-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.location-list p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.55;
}

.location-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.process {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line);
}

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

.timeline div {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.timeline span {
  display: block;
  margin-bottom: 72px;
  color: var(--accent-soft);
  font-weight: 750;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.search-presence {
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--line);
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.search-layout p {
  max-width: 780px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.58;
}

.keyword-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(185, 45, 39, 0.16), rgba(110, 160, 169, 0.1)),
    rgba(255, 255, 255, 0.045);
}

.keyword-panel span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 720;
}

.faq {
  position: relative;
  isolation: isolate;
  padding-top: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 720;
  line-height: 1.28;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 820px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.contact {
  position: relative;
  padding: clamp(82px, 10vw, 120px) 0;
  color: var(--white);
  background: #0e0d0c;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(185, 45, 39, 0.18), rgba(36, 111, 125, 0.11), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--gutter) - var(--gutter));
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.contact-card a {
  font-size: 18px;
  font-weight: 720;
}

.contact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.62);
  background: #0b0b0b;
  font-size: 13px;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 70px;
    background: rgba(17, 17, 17, 0.95);
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .language-switcher {
    position: relative;
    z-index: 22;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 21;
    width: 100%;
    height: 100svh;
    min-height: 100vh;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    padding: 86px 24px 36px;
    background: rgba(17, 17, 17, 0.98);
    font-size: 24px;
    font-weight: 720;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
    pointer-events: none;
  }

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

  .hero {
    min-height: 94svh;
    padding-top: 118px;
    padding-bottom: 28px;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 30px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-credentials {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-credentials div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-credentials div:last-child {
    border-bottom: 0;
  }

  .intro,
  .section-head {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .group,
  .cinematic-strip,
  .timeline,
  .location-layout,
  .search-layout,
  .contact-inner,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .cinematic-strip {
    width: min(var(--max), calc(100% - 40px));
    padding-bottom: clamp(72px, 10vw, 100px);
  }

  .cinematic-strip figure,
  .cinematic-strip figure:nth-child(2),
  .cinematic-strip figure:nth-child(3) {
    min-height: 320px;
    margin-top: 0;
  }

  .service-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .card-number,
  .timeline span {
    margin-bottom: 34px;
  }

  .group-card {
    min-height: 0;
  }

  .contact-card {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
    padding: 16px 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    max-width: 105px;
    font-size: 10px;
  }

  .language-switcher a {
    min-width: 34px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(38px, 10.6vw, 50px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.12;
  }

  h3 {
    font-size: 19px;
  }

  .eyebrow,
  .section-label {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel strong {
    font-size: 17px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .group-card p,
  .service-grid p,
  .location-list p,
  .search-layout p,
  .faq-list p {
    font-size: 16px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .image-band {
    min-height: 460px;
  }

  .section {
    width: min(var(--max), calc(100% - 32px));
  }

  .contact-inner,
  .image-band-copy,
  .cinematic-strip {
    width: calc(100% - 32px);
  }
}
