:root {
  --poster-navy: #0a0e18;
  --poster-navy-mid: #121a2a;
  --poster-navy-lit: #1a2438;
  --poster-cream: #f2ebe3;
  --poster-cream-dim: #d4c9bc;
  --poster-gold: #e3b14a;
  --poster-gold-deep: #b8892a;
  --poster-hot: #e85d6f;
  --poster-violet: #6b4c8a;
  --poster-orange: #e8733a;
  --chrome-hi: #fffaf4;
  --chrome-mid: #b8c0ce;
  --chrome-lo: #4a5568;
  --shadow-deep: rgba(0, 0, 0, 0.55);
  --shadow-soft: rgba(0, 0, 0, 0.25);
  --border: rgba(242, 235, 227, 0.12);
  --border-strong: rgba(242, 235, 227, 0.22);
  --radius: 10px;
  --max: 1120px;
  --font-poster: "Playfair Display", Georgia, serif;
  --font-credits: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --dur-fast: 0.28s;
  --dur-med: 0.55s;
  --dur-slow: 0.85s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body.theme-poster {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--poster-cream);
  background: var(--poster-navy);
  background-image:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(232, 115, 58, 0.18), transparent 52%),
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(107, 76, 138, 0.2), transparent 45%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(30, 45, 75, 0.9), transparent 50%),
    linear-gradient(180deg, #05070d 0%, var(--poster-navy) 28%, var(--poster-navy-mid) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.film-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8999;
  background: radial-gradient(ellipse 72% 62% at 50% 42%, transparent 0%, rgba(5, 7, 13, 0.2) 55%, rgba(2, 3, 8, 0.75) 100%);
}

.theme-poster .site-header,
.theme-poster main,
.theme-poster .site-footer {
  position: relative;
  z-index: 9100;
}

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

a {
  color: inherit;
}

.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 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--poster-cream);
  color: var(--poster-navy);
  z-index: 10000;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9200;
  border-bottom: 1px solid transparent;
  background: rgba(10, 14, 24, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 -1px 0 rgba(255, 250, 244, 0.06);
  transition:
    background 0.45s var(--ease-smooth),
    border-color 0.45s var(--ease-smooth),
    box-shadow 0.45s var(--ease-smooth);
}

.site-header.site-header--scrolled,
.site-header.site-header--menu-open {
  background: linear-gradient(to bottom, rgba(10, 14, 24, 0.96), rgba(18, 26, 42, 0.92));
  border-bottom-color: var(--border);
  box-shadow:
    inset 0 -1px 0 rgba(255, 250, 244, 0.08),
    0 12px 40px var(--shadow-deep);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.45s var(--ease-out-expo);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 4px 16px rgba(227, 177, 74, 0.42));
}

.brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 8px var(--shadow-soft));
  transition: filter 0.45s var(--ease-smooth);
}

.nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
  font-family: var(--font-credits);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}

.nav a {
  text-decoration: none;
  color: var(--poster-cream-dim);
  position: relative;
  transition:
    color var(--dur-fast) var(--ease-smooth),
    text-shadow var(--dur-fast) var(--ease-smooth);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--poster-gold), rgba(227, 177, 74, 0.15));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav a.nav-cta::after {
  display: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--poster-cream);
  text-shadow: 0 0 24px rgba(227, 177, 74, 0.35);
}

.nav-cta {
  padding: 0.4rem 1rem 0.35rem;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  color: var(--poster-cream) !important;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.08), rgba(0, 0, 0, 0.15));
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.12),
    0 4px 16px var(--shadow-soft);
  transition:
    border-color var(--dur-fast) var(--ease-smooth),
    box-shadow 0.4s var(--ease-out-expo),
    transform 0.4s var(--ease-out-expo);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--poster-gold);
  color: var(--poster-cream) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.18),
    0 0 24px rgba(227, 177, 74, 0.2);
  transform: translateY(-1px);
}

.menu-toggle {
  font-family: var(--font-credits);
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.2);
  color: var(--poster-cream);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.08);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--poster-gold);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1.25rem 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--poster-cream-dim);
  padding: 0.35rem 0;
  font-family: var(--font-credits);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  transition: color var(--dur-fast) var(--ease-smooth), transform 0.4s var(--ease-out-expo);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--poster-cream);
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

.hero-poster {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: end;
  overflow: hidden;
  width: 100%;
}

.hero-sun {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: min(130vw, 820px);
  height: min(130vw, 820px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 38%,
    #fff6e8 0%,
    #ffd49a 12%,
    var(--poster-orange) 28%,
    #c94d6a 52%,
    rgba(107, 76, 138, 0.35) 68%,
    transparent 72%
  );
  opacity: 0.42;
  filter: blur(2px);
  box-shadow: 0 0 100px rgba(232, 115, 58, 0.35);
  pointer-events: none;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: contrast(1.04) saturate(0.95);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 65% at 50% 85%, rgba(10, 14, 24, 0.55) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(5, 7, 13, 0.35) 0%, transparent 38%, rgba(10, 14, 24, 0.25) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  width: 100%;
  z-index: 3;
}

.hero-content::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: -25%;
  bottom: -20%;
  width: min(110vw, 680px);
  height: min(55vh, 420px);
  background: radial-gradient(ellipse at center, rgba(227, 177, 74, 0.12) 0%, transparent 62%);
  z-index: 0;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--font-credits);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  color: var(--poster-gold);
  margin: 0 0 0.65rem;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 0 28px rgba(227, 177, 74, 0.25);
}

.hero .eyebrow {
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.78),
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.45),
    0 0 28px rgba(227, 177, 74, 0.22);
}

.hero h1 {
  font-family: var(--font-poster);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--chrome-hi);
  text-shadow:
    0 1px 0 var(--chrome-mid),
    0 2px 0 var(--chrome-lo),
    0 3px 3px rgba(0, 0, 0, 0.92),
    0 5px 14px rgba(0, 0, 0, 0.78),
    0 9px 28px rgba(0, 0, 0, 0.62),
    0 14px 48px rgba(0, 0, 0, 0.48),
    0 0 1px rgba(0, 0, 0, 0.88),
    0 0 22px rgba(0, 0, 0, 0.58),
    0 0 56px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(255, 245, 232, 0.1);
}

.section-kicker {
  font-family: var(--font-credits);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--poster-gold);
  margin: 0 0 0.35rem;
  text-shadow: 0 1px 2px var(--shadow-deep);
}

.section-head h2,
.more h2 {
  font-family: var(--font-credits);
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2.75rem, 6vw, 4rem);
  margin: 0 0 0.65rem;
  color: var(--poster-cream);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 0 32px rgba(227, 177, 74, 0.12);
}

.lede {
  max-width: 32rem;
  color: var(--poster-cream-dim);
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  text-shadow: 0 1px 3px var(--shadow-deep);
}

.hero .lede {
  color: var(--poster-cream);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.95),
    0 1px 2px rgba(0, 0, 0, 0.92),
    0 2px 6px rgba(0, 0, 0, 0.82),
    0 4px 16px rgba(0, 0, 0, 0.68),
    0 6px 28px rgba(0, 0, 0, 0.52);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  font-family: var(--font-credits);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background var(--dur-fast) var(--ease-smooth),
    border-color var(--dur-fast) var(--ease-smooth),
    color var(--dur-fast) var(--ease-smooth),
    transform 0.42s var(--ease-out-expo),
    box-shadow 0.42s var(--ease-out-expo);
  cursor: pointer;
  box-shadow: 0 4px 14px var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(180deg, #f0c96a 0%, var(--poster-gold-deep) 100%);
  color: #1a1208;
  border-color: rgba(255, 250, 244, 0.35);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(227, 177, 74, 0.25);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  border-color: var(--border-strong);
  color: var(--poster-cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.1),
    0 4px 14px var(--shadow-soft);
}

.hero .btn-ghost {
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.8),
    0 2px 10px rgba(0, 0, 0, 0.55);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--poster-cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.15),
    0 0 20px rgba(242, 235, 227, 0.12);
  transform: translateY(-2px);
}

.strip-poster {
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2d6a4f 0%,
    #d4a017 18%,
    #e8733a 36%,
    #c94d6a 54%,
    #6b4c8a 72%,
    #3d6b9e 88%,
    #2d6a4f 100%
  );
  opacity: 0.88;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

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

.section-intro {
  margin: 0;
  color: var(--poster-cream-dim);
  max-width: 40rem;
  font-family: var(--font-body);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.panel-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  padding: 5rem 1.25rem;
  margin-top: 0;
}

.panel {
  position: relative;
  overflow: hidden;
}

.panel-film .panel-bg {
  position: absolute;
  inset: 0;
  background-image: url("IMAGES/BRANDING_IDEAS/PhotoReal_film_rushes_35mm_3.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) contrast(1.05) saturate(0.92);
}

.panel-film .panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      118deg,
      rgba(8, 10, 18, 0.88) 0%,
      rgba(107, 76, 138, 0.22) 42%,
      rgba(232, 93, 111, 0.08) 100%
    ),
    radial-gradient(ellipse 70% 55% at 70% 50%, rgba(227, 177, 74, 0.08), transparent 55%);
}

.panel-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.panel-inner h2 {
  font-family: var(--font-poster);
  font-weight: 800;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin: 0 0 0.75rem;
  color: var(--chrome-hi);
  text-shadow:
    0 1px 0 var(--chrome-mid),
    0 2px 4px var(--shadow-deep);
}

.panel-inner p {
  margin: 0;
  max-width: 36rem;
  color: var(--poster-cream);
  font-size: 1.08rem;
  text-shadow: 0 1px 4px var(--shadow-deep);
}

.services-poster .section-intro {
  max-width: 44rem;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 24px 48px var(--shadow-deep),
    inset 0 1px 0 rgba(255, 250, 244, 0.06);
  background: linear-gradient(180deg, rgba(26, 36, 56, 0.65), rgba(10, 14, 24, 0.85));
}

.service-pillar {
  margin: 0;
  padding: 1.5rem 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(165deg, rgba(255, 250, 244, 0.04) 0%, transparent 45%);
  transition:
    box-shadow 0.45s var(--ease-out-expo),
    filter 0.4s var(--ease-smooth),
    border-color 0.35s ease;
}

.service-pillar:last-child {
  border-bottom: none;
}

@media (hover: hover) {
  .service-pillar:hover {
    filter: brightness(1.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 244, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15),
      0 18px 36px rgba(0, 0, 0, 0.32);
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 960px) {
  .service-columns {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-pillar {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .service-pillar:last-child {
    border-right: none;
  }
}

.service-pillar-accent {
  background: linear-gradient(165deg, rgba(232, 93, 111, 0.1) 0%, rgba(10, 14, 24, 0.5) 55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.06),
    inset 0 0 60px rgba(232, 93, 111, 0.06);
}

.pillar-index {
  display: block;
  font-family: var(--font-credits);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(242, 235, 227, 0.15);
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.service-pillar h3 {
  font-family: var(--font-credits);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: var(--poster-gold);
  text-shadow: 0 1px 2px var(--shadow-deep);
}

.pillar-lead {
  font-family: var(--font-poster);
  font-weight: 600;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--poster-cream);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.service-pillar p {
  margin: 0 0 0.65rem;
  color: var(--poster-cream-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-pillar p:last-of-type {
  margin-bottom: 0;
}

.pillar-meta {
  margin: 0.75rem 0 0.85rem !important;
  color: var(--poster-cream) !important;
  font-size: 0.95rem !important;
  font-style: normal;
}

.pillar-link {
  margin-top: 0.25rem;
}

.more {
  border-top: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.04);
}

.more-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .more-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2.5rem;
    padding-top: 0.25rem;
  }

  .more-grid > div:first-child {
    border-right: 1px solid var(--border);
    padding-right: 2rem;
  }
}

.more h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.plain-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--poster-cream-dim);
}

.plain-list li {
  margin-bottom: 0.55rem;
}

.more-aside {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.05), rgba(0, 0, 0, 0.15));
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, 0.08),
    0 8px 24px var(--shadow-soft);
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s ease;
}

@media (hover: hover) {
  .more-aside:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 235, 227, 0.2);
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 244, 0.12),
      0 16px 40px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(227, 177, 74, 0.12);
  }
}

.more-aside p {
  margin: 0;
  color: var(--poster-cream-dim);
}

.section-contact {
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.04);
}

.form-feedback {
  max-width: 36rem;
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-feedback--success {
  color: #1a1208;
  background: linear-gradient(180deg, #e8d49a, var(--poster-gold-deep));
  border: 1px solid rgba(255, 250, 244, 0.35);
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.form-feedback--error {
  color: var(--poster-cream);
  background: rgba(201, 77, 106, 0.2);
  border: 1px solid rgba(232, 93, 111, 0.45);
}

.contact-form {
  position: relative;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-family: var(--font-credits);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--poster-gold);
  text-shadow: 0 1px 2px var(--shadow-deep);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--poster-cream);
  background: rgba(5, 8, 14, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 250, 244, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(212, 201, 188, 0.45);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--poster-gold);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 250, 244, 0.08),
    0 0 0 1px rgba(227, 177, 74, 0.25);
}

.form-row textarea {
  resize: vertical;
  min-height: 8rem;
}

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

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--poster-cream-dim);
  line-height: 1.45;
}

.inline-legal-link {
  display: inline;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--poster-gold);
  font: inherit;
  font-size: inherit;
  color: var(--poster-gold);
  cursor: pointer;
  text-align: left;
}

.inline-legal-link:hover,
.inline-legal-link:focus-visible {
  color: var(--poster-cream);
  border-bottom-color: var(--poster-cream);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 3rem;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.95), #03050a);
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.05);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-poster {
  text-align: center;
}

.footer-billing {
  font-family: var(--font-credits);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--poster-cream-dim);
  margin: 0 0 0.5rem !important;
  text-shadow: 0 1px 3px var(--shadow-deep);
}

.footer-inner .footer-small {
  font-family: var(--font-body);
  font-size: 0.78rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(212, 201, 188, 0.55);
  margin: 0 !important;
}

.footer-legal {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.65rem;
}

.footer-legal-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--poster-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0.2rem 0.15rem;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--poster-cream);
}

.footer-legal-sep {
  color: rgba(212, 201, 188, 0.35);
  user-select: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(18, 26, 42, 0.96), rgba(5, 7, 13, 0.99));
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.5);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-banner-title {
  font-family: var(--font-credits);
  letter-spacing: 0.14em;
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0 0 0.45rem;
  color: var(--poster-cream);
}

.cookie-banner-desc {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--poster-cream-dim);
  line-height: 1.55;
  max-width: 52rem;
}

.cookie-banner-desc strong {
  color: var(--poster-cream);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cookie-banner-link {
  margin-left: auto;
}

@media (max-width: 640px) {
  .cookie-banner-link {
    margin-left: 0;
    flex-basis: 100%;
    text-align: center;
  }
}

.legal-dialog {
  max-width: min(40rem, 94vw);
  width: 100%;
  margin: auto;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--poster-navy-lit), var(--poster-navy));
  color: var(--poster-cream);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.legal-dialog::backdrop {
  background: rgba(2, 4, 10, 0.72);
  backdrop-filter: blur(4px);
}

.legal-dialog-inner {
  position: relative;
  padding: 1.5rem 1.35rem 1.75rem;
  max-height: min(86vh, 680px);
  overflow-y: auto;
}

.legal-dialog-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--poster-cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.legal-dialog-close:hover,
.legal-dialog-close:focus-visible {
  border-color: var(--poster-gold);
  background: rgba(227, 177, 74, 0.12);
}

.legal-dialog-h2 {
  font-family: var(--font-credits);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin: 0 2.75rem 0.35rem 0;
  color: var(--poster-cream);
}

.legal-meta {
  font-size: 0.78rem;
  color: var(--poster-cream-dim);
  margin: 0 0 1rem;
}

.legal-block h3 {
  font-family: var(--font-credits);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--poster-gold);
  margin: 1.35rem 0 0.5rem;
}

.legal-block h3:first-of-type {
  margin-top: 0.25rem;
}

.legal-block p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--poster-cream-dim);
  line-height: 1.55;
}

.legal-block a {
  color: var(--poster-gold);
}

.legal-block a:hover {
  color: var(--poster-cream);
}

.legal-foot {
  font-size: 0.85rem;
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--poster-cream-dim);
}

/* --- Motion layer (html.has-motion set in <head> when user allows animation) --- */
@keyframes motion-heroEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 1.35rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-heroKen {
  0% {
    transform: scale(1.03) translate3d(-0.5%, 0, 0);
  }
  100% {
    transform: scale(1.09) translate3d(0.75%, 0.35%, 0);
  }
}

@keyframes motion-sun {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.52;
    transform: translateX(-50%) scale(1.045);
  }
}

@keyframes motion-panelBreath {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.055);
  }
}

@keyframes motion-stripGlow {
  0%,
  100% {
    filter: brightness(1) saturate(1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  }
  50% {
    filter: brightness(1.14) saturate(1.1);
    box-shadow: 0 2px 20px rgba(227, 177, 74, 0.28);
  }
}

@keyframes motion-dialogInner {
  from {
    opacity: 0;
    transform: scale(0.94) translate3d(0, 0.75rem, 0);
  }
  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes motion-cookieUp {
  from {
    opacity: 0;
    transform: translate3d(0, 120%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes motion-navLink {
  from {
    opacity: 0;
    transform: translate3d(0, -0.45rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.has-motion .motion-reveal:not(.is-in):not(.motion-reveal--stagger) {
  opacity: 0;
  transform: translate3d(0, 1.35rem, 0);
  transition:
    opacity calc(var(--dur-slow) * 0.92) var(--ease-out-expo),
    transform calc(var(--dur-slow) * 0.92) var(--ease-out-expo);
  will-change: opacity, transform;
}

.has-motion .motion-reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-motion .motion-reveal--stagger > article {
  transition:
    opacity 0.62s var(--ease-out-expo),
    transform 0.62s var(--ease-out-expo);
}

.has-motion .motion-reveal--stagger:not(.is-in) > article {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
}

.has-motion .motion-reveal--stagger.is-in > article {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.has-motion .motion-reveal--stagger.is-in > article:nth-child(1) {
  transition-delay: 0s;
}

.has-motion .motion-reveal--stagger.is-in > article:nth-child(2) {
  transition-delay: 0.1s;
}

.has-motion .motion-reveal--stagger.is-in > article:nth-child(3) {
  transition-delay: 0.2s;
}

.has-motion .motion-reveal--stagger.is-in > article:nth-child(4) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: no-preference) {
  html.has-motion .hero-content > * {
    animation: motion-heroEnter var(--dur-slow) var(--ease-out-expo) both;
  }

  html.has-motion .hero-content > *:nth-child(1) {
    animation-delay: 0.06s;
    animation-duration: 0.82s;
  }

  html.has-motion .hero-content > *:nth-child(2) {
    animation-delay: 0.16s;
  }

  html.has-motion .hero-content > *:nth-child(3) {
    animation-delay: 0.28s;
  }

  html.has-motion .hero-content > *:nth-child(4) {
    animation-delay: 0.38s;
    animation-duration: 0.95s;
  }

  html.has-motion .hero-media img {
    animation: motion-heroKen 32s var(--ease-smooth) infinite alternate;
    will-change: transform;
  }

  html.has-motion .hero-sun {
    animation: motion-sun 10s ease-in-out infinite;
  }

  html.has-motion .panel-film .panel-bg {
    animation: motion-panelBreath 28s var(--ease-smooth) infinite alternate;
    will-change: transform;
    transform-origin: center center;
  }

  html.has-motion .strip-poster {
    animation: motion-stripGlow 14s ease-in-out infinite;
  }

  html.has-motion .cookie-banner:not([hidden]) {
    animation: motion-cookieUp var(--dur-med) var(--ease-out-expo) both;
  }

  html.has-motion .legal-dialog[open] .legal-dialog-inner {
    animation: motion-dialogInner 0.45s var(--ease-out-expo) both;
  }

  html.has-motion .site-header--menu-open .mobile-nav:not([hidden]) a {
    animation: motion-navLink 0.44s var(--ease-out-expo) both;
  }

  html.has-motion .site-header--menu-open .mobile-nav:not([hidden]) a:nth-child(1) {
    animation-delay: 0.04s;
  }

  html.has-motion .site-header--menu-open .mobile-nav:not([hidden]) a:nth-child(2) {
    animation-delay: 0.1s;
  }

  html.has-motion .site-header--menu-open .mobile-nav:not([hidden]) a:nth-child(3) {
    animation-delay: 0.16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .hero-content > *,
  .hero-media img,
  .hero-sun,
  .strip-poster,
  .panel-film .panel-bg,
  .cookie-banner,
  .legal-dialog .legal-dialog-inner,
  .site-header--menu-open .mobile-nav a {
    animation: none !important;
  }

  html.has-motion .motion-reveal:not(.is-in):not(.motion-reveal--stagger),
  html.has-motion .motion-reveal--stagger:not(.is-in) > article {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .brand,
  .brand img,
  .nav a::after,
  .nav-cta,
  .btn,
  .more-aside,
  .service-pillar,
  .mobile-nav a {
    transition: none !important;
  }

  .brand:hover,
  .brand:focus-visible,
  .more-aside:hover {
    transform: none;
  }

  .hero-sun {
    opacity: 0.22;
    transform: translateX(-50%);
  }

  .btn-primary:hover,
  .btn-primary:focus-visible,
  .btn-ghost:hover,
  .btn-ghost:focus-visible {
    transform: none;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    transform: none;
  }

  .film-grain {
    opacity: 0.05;
  }
}
