:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: #111111;
  --panel-soft: #171717;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #e50914;
  --accent-dark: #b20710;
  --accent-glow: rgba(229, 9, 20, 0.24);
  --max: 1180px;
  --max-wide: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 32%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, #020202 0%, var(--bg) 32%, #030303 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-height: 98px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  justify-self: center;
}

.brand img {
  max-height: 84px;
  height: 72px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  color: var(--text);
  font-size: 1.05rem;
}

.brand-accent { color: var(--accent); }

.menu-toggle,
.menu-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-close:hover,
.menu-close:focus-visible {
  border-color: rgba(229, 9, 20, 0.54);
  outline: none;
}

.nav-spacer {
  width: 3.25rem;
  height: 3.25rem;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: min(22rem, calc(100vw - 2rem));
  height: 100vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(5, 5, 5, 0.98) 100%),
    radial-gradient(circle at top left, rgba(229, 9, 20, 0.16), transparent 36%);
  border-right: 1px solid var(--line);
  box-shadow: 24px 0 70px rgba(0, 0, 0, 0.45);
  transform: translateX(-105%);
  transition: transform 0.22s ease;
}

.side-nav-head {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.menu-close {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  position: relative;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.side-nav a {
  display: flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #e8e8e8;
  font-weight: 800;
}

.side-nav a:hover,
.side-nav a:focus-visible,
.side-nav a.active {
  color: #fff;
  background: rgba(229, 9, 20, 0.12);
  border-color: rgba(229, 9, 20, 0.24);
  outline: none;
}

.site-menu-open {
  overflow: hidden;
}

.site-menu-open .side-nav {
  transform: translateX(0);
}

.site-menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hero,
.section {
  padding: 5rem 0;
}

.hero {
  position: relative;
  padding-top: 6.2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(229, 9, 20, 0.18), transparent 18%),
    radial-gradient(circle at 24% 8%, rgba(255, 255, 255, 0.04), transparent 18%);
  pointer-events: none;
}

.hero-grid,
.two-col,
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.two-col {
  grid-template-columns: 1.18fr 0.92fr;
  align-items: center;
}

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

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

.panel,
.card,
.portfolio-card {
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.96) 0%, rgba(10, 10, 10, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.45rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.panel {
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.96) 0%, rgba(9, 9, 9, 0.96) 100%),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.08), transparent 44%);
}

.stack > *:last-child { margin-bottom: 0; }
.accent-divider { position: relative; }
.accent-divider::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  bottom: 1.3rem;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0), rgba(229, 9, 20, 0.9), rgba(229, 9, 20, 0));
}

.kicker,
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.9rem, 5.2vw, 5rem); }
h2 { font-size: clamp(2rem, 3.1vw, 3rem); }
h3 { font-size: 1.2rem; }

p {
  margin: 0 0 1rem;
  color: #dddddd;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 44rem;
}

.muted { color: var(--muted); }

.section-intro {
  max-width: 48rem;
  margin-bottom: 1.6rem;
}

.section-intro p,
.hero-copy p,
.panel p,
.card p {
  max-width: 62ch;
}

.hero-home .hero-copy h1 {
  max-width: 13ch;
}

.compact-grid {
  gap: 0.85rem;
}

.compact-grid .card {
  padding: 1rem;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.cta-row,
.footer-links,
.trust-row,
.portfolio-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.cta-row,
.trust-row,
.portfolio-actions {
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ff2431 0%, var(--accent) 100%);
  color: #fff;
  border-color: rgba(255, 64, 78, 0.75);
  box-shadow: 0 18px 36px rgba(229, 9, 20, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff3743 0%, var(--accent-dark) 100%);
  border-color: rgba(255, 94, 107, 0.8);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(229, 9, 20, 0.5);
  color: var(--text);
}

.btn-small {
  min-height: 40px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  font-size: 0.92rem;
}

.band {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.84) 0%, rgba(8, 8, 8, 0.84) 100%),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.1), transparent 42%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars,
.portfolio-grid,
.proof-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.pillars,
.portfolio-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.list,
.steps,
.subtle-list {
  padding-left: 1.2rem;
  margin: 0;
  color: #d8d8d8;
}

.list li,
.steps li,
.subtle-list li {
  margin: 0.48rem 0;
}

.system-line {
  margin: 1rem 0 1.5rem;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.media-stage {
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.22) 0%, rgba(11, 11, 11, 0.95) 60%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 30%),
    #090909;
  padding: 1.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 70px rgba(0, 0, 0, 0.38);
}

.media-stage::before {
  content: "";
  position: absolute;
  inset: auto -8% -14% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.22), transparent 66%);
  filter: blur(10px);
}

.media-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, transparent 34%, rgba(0, 0, 0, 0.56) 100%);
  pointer-events: none;
}

.media-stage > * {
  position: relative;
  z-index: 1;
}

.hero-stage-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  margin-top: 1.35rem;
  align-items: stretch;
}

.hero-brand-card,
.hero-proof-item,
.process-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.hero-brand-card {
  border-radius: 22px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 44%);
}

.hero-brand-logo {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}

.hero-brand-card p,
.hero-stage-footer {
  margin: 0;
  color: #f0f0f0;
}

.hero-proof-list {
  display: grid;
  gap: 0.8rem;
}

.hero-proof-list.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-proof-item {
  border-radius: 18px;
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-proof-title,
.process-step {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.45rem;
}

.hero-proof-copy {
  color: #f1f1f1;
  font-size: 0.95rem;
}

.hero-stage-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.96rem;
}

.logo-panel { text-align: center; }
.logo-panel img { max-width: 250px; width: 100%; height: auto; margin: 0 auto 1rem; }
.logo-slot {
  width: 100%;
  max-width: 240px;
  height: 90px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #383838;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.01);
}

.portfolio-card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.25);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.portfolio-thumb {
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(35, 35, 35, 0.16) 0%, rgba(7, 7, 7, 0.94) 100%),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.42), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.portfolio-thumb::before {
  content: "";
  position: absolute;
  inset: auto auto -28% -6%;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.16), transparent 68%);
}

.portfolio-thumb-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.portfolio-body {
  padding: 1.2rem;
}

.portfolio-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.portfolio-link-wrap { display: block; color: inherit; }

.portfolio-thumb-image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
}

.portfolio-thumb-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.portfolio-thumb-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.play-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.portfolio-placeholder {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.portfolio-thumb-art {
  align-items: stretch;
}

.portfolio-art-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 2;
  display: grid;
  gap: 0.3rem;
}

.portfolio-art-copy strong {
  font-size: 1.08rem;
  color: #fff;
}

.portfolio-art-copy span {
  color: #dfdfdf;
  font-size: 0.93rem;
  max-width: 28ch;
}

.portfolio-media {
  position: relative;
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.portfolio-media-wrap {
  background: #050505;
}

.portfolio-card .portfolio-media {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card .portfolio-media video,
.portfolio-card .portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.branded-video-host {
  position: relative;
  isolation: isolate;
  cursor: pointer;
}

.branded-video-host video {
  cursor: pointer;
}

.branded-video-toggle {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 5;
  width: clamp(4rem, 7vw, 5.75rem);
  height: clamp(4rem, 7vw, 5.75rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 58%),
    rgba(0, 0, 0, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48), 0 0 34px rgba(229, 9, 20, 0.18);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.branded-video-toggle:hover,
.branded-video-toggle:focus-visible {
  border-color: rgba(229, 9, 20, 0.8);
  background:
    radial-gradient(circle at 50% 42%, rgba(229, 9, 20, 0.3), transparent 62%),
    rgba(0, 0, 0, 0.82);
  outline: none;
}

.branded-video-host:hover .branded-video-toggle,
.branded-video-toggle:focus-visible,
.branded-video-host.is-paused .branded-video-toggle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.branded-video-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 0.88rem solid transparent;
  border-bottom: 0.88rem solid transparent;
  border-left: 1.35rem solid currentColor;
}

.branded-video-host.is-playing .branded-video-icon {
  width: 1.25rem;
  height: 1.7rem;
  border: 0;
  transform: translate(-50%, -50%);
}

.branded-video-host.is-playing .branded-video-icon::before,
.branded-video-host.is-playing .branded-video-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: currentColor;
}

.branded-video-host.is-playing .branded-video-icon::before {
  left: 0;
}

.branded-video-host.is-playing .branded-video-icon::after {
  right: 0;
}

@media (hover: none) {
  .branded-video-host.is-playing .branded-video-toggle {
    opacity: 0;
  }

  .branded-video-host.is-paused .branded-video-toggle,
  .branded-video-toggle:focus-visible {
    opacity: 1;
  }
}

.portfolio-video,
.portfolio-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.portfolio-card-detailed .portfolio-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.portfolio-card-detailed .portfolio-media {
  aspect-ratio: auto;
  min-height: 24rem;
}

.portfolio-card-detailed .portfolio-media video,
.portfolio-card-detailed .portfolio-media img {
  height: auto;
  max-height: 70vh;
}

.portfolio-card.is-portrait .portfolio-media {
  aspect-ratio: 9 / 16;
  max-height: 70vh;
}

.portfolio-card.is-landscape .portfolio-media {
  aspect-ratio: 16 / 9;
}

.quote-card {
  position: relative;
  min-height: 100%;
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.quote-byline {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 1rem;
}

.faq-card h3,
.quote-card p:last-of-type {
  margin-bottom: 0.6rem;
}

.process-card {
  min-height: 100%;
  padding: 1.25rem;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.18);
  margin-bottom: 1rem;
}

.code-note {
  margin-top: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: #0c0c0c;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  border-left: 3px solid var(--accent);
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-frame {
  width: 100%;
  min-height: 780px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090909;
}

.cta-panel {
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.96) 0%, rgba(10, 10, 10, 0.96) 100%),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 42%);
}

.system-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: end;
}

.system-strip h2 {
  margin-bottom: 0;
}

.system-strip p {
  margin-bottom: 0;
  color: #eeeeee;
}

.system-map {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.system-node {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 76px;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.system-node.is-active {
  border-color: rgba(229, 9, 20, 0.42);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.18), rgba(255, 255, 255, 0.035));
}

.system-node span,
.module-label {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.system-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 8px;
  border: 1px solid rgba(229, 9, 20, 0.24);
  background: rgba(229, 9, 20, 0.12);
}

.system-node strong {
  color: #fff;
  line-height: 1.15;
}

.system-node p {
  margin: 0;
  color: #d6d6d6;
  font-size: 0.92rem;
  line-height: 1.45;
}

.fix-grid,
.media-plan-grid,
.intake-grid {
  display: grid;
  gap: 1rem;
}

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

.module-card {
  min-height: 100%;
  border-radius: 10px;
}

.module-card h3 {
  margin-top: 0.45rem;
}

.intelligence-grid .process-card {
  border-radius: 10px;
}

.media-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.media-slot {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.96) 0%, rgba(8, 8, 8, 0.96) 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.media-slot-landscape {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.1rem;
  align-items: center;
}

.media-slot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  min-height: 160px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.16), rgba(255, 255, 255, 0.035)),
    #070707;
  overflow: hidden;
}

.media-slot-frame img {
  width: min(70%, 320px);
  height: auto;
  object-fit: contain;
}

.media-frame-video {
  background: #000;
}

.media-frame-video video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.media-frame-portrait {
  aspect-ratio: 9 / 16;
  min-height: 420px;
}

.media-frame-landscape {
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.media-slot-frame-text {
  padding: 1rem;
  color: #f5f5f5;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.media-slot h3 {
  margin-top: 0.45rem;
}

.intake-shell .section-intro {
  max-width: 54rem;
}

.intake-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.intake-form,
.assistant-panel {
  border-radius: 10px;
}

.intake-form {
  display: grid;
  gap: 0.9rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.intake-form label {
  display: grid;
  gap: 0.45rem;
  color: #f4f4f4;
  font-weight: 800;
  font-size: 0.9rem;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 0.78rem 0.85rem;
  font: inherit;
}

.intake-form textarea {
  min-height: 118px;
  resize: vertical;
}

.intake-form select {
  appearance: none;
}

.intake-form option {
  color: #111;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 2px solid rgba(229, 9, 20, 0.42);
  outline-offset: 2px;
  border-color: rgba(229, 9, 20, 0.58);
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  color: #f2f2f2;
  font-size: 0.92rem;
}

.assistant-panel {
  min-height: 100%;
}

.chat-preview {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.message {
  border-radius: 10px;
  padding: 0.9rem;
  line-height: 1.48;
}

.message-system {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #eeeeee;
}

.message-response {
  background: rgba(229, 9, 20, 0.11);
  border: 1px solid rgba(229, 9, 20, 0.22);
  color: #fff;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.assistant-actions button {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.assistant-actions button:hover,
.assistant-actions button:focus-visible {
  border-color: rgba(229, 9, 20, 0.5);
}

.proof-mosaic,
.proof-row {
  display: grid;
  gap: 0.8rem;
}

.proof-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.proof-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080808;
}

.media-tile img,
.media-tile video,
.media-slot-frame.media-frame-photo img,
.media-slot-frame.media-frame-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile video {
  display: block;
}

.media-tile.tall {
  min-height: 370px;
}

.media-tile.wide {
  grid-column: span 2;
}

.media-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
}

.media-slot-frame.media-frame-photo {
  align-items: stretch;
  justify-content: stretch;
}

.proof-panel {
  margin-top: 1.35rem;
}

.footer {
  padding: 2.6rem 0 4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #040404;
}

.small { font-size: 0.92rem; }
.footer-links { margin-top: 0.75rem; }
.footer-links a { color: #dedede; }
.footer .brand img {
  height: 46px;
  max-height: 52px;
}
.inline-accent { color: var(--accent); }
.is-hidden { display: none !important; }

.cinematic-home { background: #050505; }
.cinematic-home .container,
.cinematic-page .container { width: min(var(--max-wide), calc(100% - 4rem)); }
.cinematic-header {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.cinematic-nav {
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  min-height: 98px;
}
.cinematic-header .brand { justify-self: center; }
.cinematic-header .brand img { height: 81px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}
.nav-cta:hover {
  background: #ff2a36;
  box-shadow: 0 0 34px rgba(229, 9, 20, 0.32);
}
.cinematic-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-backdrop img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.95);
  transform: scale(1.04);
}
.cinematic-hero::after,
.final-cinematic-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.25) 48%, #050505 100%),
    radial-gradient(circle at 50% 42%, rgba(229, 9, 20, 0.22), transparent 32%);
}
.hero-center {
  text-align: center;
  padding-top: 7rem;
}
.hero-center .kicker {
  margin-bottom: 2rem;
  letter-spacing: 0.48em;
}
.hero-center h1 {
  margin: 0 auto 2rem;
  max-width: 16ch;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-cinematic-cta h2 {
  margin: 0 auto 2rem;
  max-width: 11ch;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-center h1 span,
.final-cinematic-cta h2 span {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(229, 9, 20, 0.5);
}
.hero-center .lead {
  max-width: 48rem;
  margin: 0 auto;
  color: #dedede;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}
.hero-actions {
  justify-content: center;
  margin-top: 2.6rem;
}
.cinematic-home .btn,
.cinematic-page .btn {
  border-radius: 2px;
  min-height: 56px;
  padding: 1rem 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}
.cinematic-home .btn-primary,
.cinematic-page .btn-primary {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.02);
}
.cinematic-home .btn-secondary,
.cinematic-page .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn-light {
  background: #fff;
  color: #050505;
  border-color: #fff;
}
.btn-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.services-section {
  padding: 9rem 0;
  background: #050505;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}
.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  text-transform: uppercase;
}
.split-heading p {
  margin: 0;
  color: #bdbdbd;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.service-card {
  min-height: 420px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
  border-color: rgba(229, 9, 20, 0.34);
}
.service-icon {
  color: var(--accent);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3rem;
}
.service-card h3 {
  font-size: 1.9rem;
  text-transform: uppercase;
}
.service-card p {
  color: #bdbdbd;
  flex-grow: 1;
}
.service-card span {
  color: #747474;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.showcase-stack { background: #050505; }
.industry-panel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.industry-panel > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.95);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-zoom-container:hover > img { transform: scale(1.05); }
.industry-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38), transparent);
}
.industry-right .industry-shade {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.36), transparent);
}
.industry-copy { max-width: 1440px; }
.industry-right .industry-copy { text-align: right; }
.industry-copy h2 {
  max-width: 840px;
  margin: 0 0 1.25rem;
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.industry-right .industry-copy h2,
.industry-right .industry-copy p { margin-left: auto; }
.industry-copy p {
  max-width: 31rem;
  margin-bottom: 2rem;
  color: #dfdfdf;
  font-size: 1.12rem;
}
.metrics-section {
  padding: 10rem 0;
  background: #0b0b0b;
}
.metrics-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 6rem;
  align-items: center;
}
.metrics-copy h2 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5vw, 6rem);
  text-transform: uppercase;
}
.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.metric-list div {
  border-left: 1px solid rgba(229, 9, 20, 0.42);
  padding-left: 1.25rem;
}
.metric-list strong {
  display: block;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}
.metric-list span {
  display: block;
  margin-top: 0.5rem;
  color: #a8a8a8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.proof-visual { position: relative; }
.proof-visual video {
  width: 100%;
  display: block;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}
.quote-float {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  width: min(320px, calc(100% - 2rem));
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}
.quote-float p {
  color: #fff;
  font-style: italic;
}

.contact-media-section {
  padding-top: 4rem;
}

.contact-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
}

.contact-media-card {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #050505;
}

.contact-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.contact-media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: contrast(1.05);
  transform: scale(1.01);
}

.contact-media-card > div {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
}

.contact-media-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-media-card h3 {
  max-width: 18rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.contact-media-card-wide h3 {
  max-width: 24rem;
}

.sales-assistant {
  position: fixed;
  right: clamp(1rem, 2.2vw, 1.75rem);
  bottom: clamp(1rem, 2.2vw, 1.75rem);
  z-index: 80;
  font-family: inherit;
}

.sales-assistant-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.7rem;
  height: 4.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.sales-assistant-launch:hover,
.sales-assistant-launch:focus-visible,
.sales-assistant.is-open .sales-assistant-launch {
  filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.72)) drop-shadow(0 16px 34px rgba(0, 0, 0, 0.64));
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

.sales-assistant-avatar {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

.sales-assistant-avatar-small {
  width: 4.1rem;
  height: 4.1rem;
}

.sales-assistant-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  width: min(390px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(22px);
}

.sales-assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.sales-assistant-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.sales-assistant-title span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sales-assistant-title strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.sales-assistant-head button {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  cursor: pointer;
}

.sales-assistant-head button::before,
.sales-assistant-head button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  background: #fff;
}

.sales-assistant-head button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sales-assistant-head button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sales-assistant-log {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: min(58vh, 430px);
  padding: 1rem;
  overflow-y: auto;
}

.sales-assistant-message {
  max-width: 92%;
}

.sales-assistant-message p {
  margin: 0;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #e9e9e9;
  font-size: 0.92rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.055);
}

.sales-assistant-message.is-visitor {
  align-self: flex-end;
}

.sales-assistant-message.is-visitor p {
  border-color: rgba(229, 9, 20, 0.34);
  background: rgba(229, 9, 20, 0.2);
  color: #fff;
}

.sales-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.sales-assistant-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.sales-assistant-action.is-primary {
  border-color: rgba(229, 9, 20, 0.75);
  background: var(--accent);
}

.sales-assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  padding: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sales-assistant-form input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 0.8rem;
  font: inherit;
}

.sales-assistant-form input:focus {
  border-color: rgba(229, 9, 20, 0.7);
  outline: none;
}

.sales-assistant-form button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 520px) {
  .sales-assistant {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .sales-assistant-launch {
    margin-left: auto;
  }

  .sales-assistant-panel {
    right: 0;
    width: 100%;
  }

  .sales-assistant-form {
    grid-template-columns: 1fr;
  }

  .sales-assistant-form button {
    min-height: 2.6rem;
  }
}
.quote-float span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.process-section {
  padding: 10rem 0;
  background: #050505;
}
.section-intro.center {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-intro.center h2 {
  font-size: clamp(2.8rem, 5vw, 6rem);
  text-transform: uppercase;
}
.process-rows { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.process-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}
.process-row:hover { background: rgba(255, 255, 255, 0.025); }
.process-row > strong {
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.8;
  transition: color 0.2s ease;
}
.process-row:hover > strong { color: rgba(229, 9, 20, 0.28); }
.process-row h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
}
.process-row p {
  max-width: 760px;
  color: #bcbcbc;
  font-size: 1.08rem;
}
.final-cinematic-cta {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-cinematic-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.36);
}
.final-cinematic-cta h2 { max-width: 12ch; }
.final-cinematic-cta p {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  color: #dfdfdf;
  font-size: 1.2rem;
}
.cinematic-footer { background: #030303; }
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-page {
  background: #050505;
}

.cinematic-page .hero,
.cinematic-page .section {
  padding: 7rem 0;
}

.cinematic-page .cinematic-subhero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  isolation: isolate;
}

.cinematic-subhero::before {
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.44) saturate(0.92);
}

.cinematic-subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 50%, #050505 100%),
    radial-gradient(circle at 24% 45%, rgba(229, 9, 20, 0.22), transparent 34%);
}

.cinematic-page[data-page="growth-systems"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/projects/3rt-xxii/aftermovie/posters/3rt-xxii-aftermovie.jpg");
}

.cinematic-page[data-page="visibility-audit"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/legacy-web-pics/optimized/legacy-service-food-01.jpg");
}

.cinematic-page[data-page="audit-start"] .cinematic-subhero::before,
.cinematic-page[data-page="audit-thank-you"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/legacy-web-pics/optimized/legacy-service-food-01.jpg");
}

.cinematic-page[data-page="martial-arts-gyms"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/legacy-web-pics/optimized/legacy-gym-training-01.jpg");
}

.cinematic-page[data-page="how-we-help"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/legacy-web-pics/optimized/legacy-youth-class-01.jpg");
}

.cinematic-page[data-page="selected-work"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/projects/the-storm/trailer/posters/the-storm-trailer-bw.jpg");
}

.cinematic-page[data-page="contact"] .cinematic-subhero::before {
  background-image: url("/assets/media/stgm/projects/baruc/sept-8-session/optimized/baruc-combat-shorts-legacy-tee-01.jpg");
}

.wedding-films-page {
  background: #030303;
}

.wedding-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #030303;
}

.wedding-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.42) 48%, #030303 100%),
    radial-gradient(circle at 50% 42%, rgba(229, 9, 20, 0.24), transparent 34%);
}

.wedding-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  opacity: 0.76;
  transform: scale(1.04);
}

.film-frame {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, #191919, #070707 42%, #24050a);
  filter: saturate(0.9) brightness(0.72);
}

.frame-one,
.frame-two,
.frame-three {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    url("media/wedding-films/placeholders/hero-placeholder.svg") center / cover;
}

.wedding-hero-content {
  padding-top: 8rem;
  text-align: center;
}

.wedding-hero h1 {
  max-width: 10ch;
  margin: 0 auto 1.5rem;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wedding-hero .lead {
  max-width: 54rem;
  margin: 0 auto;
  color: #f1f1f1;
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
}

.wedding-feature-panel {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.wedding-media-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 70% 34%, rgba(229, 9, 20, 0.26), transparent 34%),
    #101010;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wedding-feature-copy h2 {
  max-width: 760px;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.wedding-feature-copy p {
  max-width: 34rem;
  color: #e2e2e2;
  font-size: 1.08rem;
}

.collections-section {
  background: #050505;
}

.wedding-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.collection-card {
  min-height: 100%;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.34);
  background: #151515;
}

.collection-card.is-featured {
  border-color: rgba(229, 9, 20, 0.42);
}

.collection-media {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.26), transparent 38%),
    #171717;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-body {
  padding: 1.55rem;
}

.collection-body span {
  display: block;
  color: var(--accent);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.15rem;
}

.collection-body h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.collection-body ul {
  padding-left: 1.1rem;
  margin: 1.15rem 0 0;
  color: #dfdfdf;
}

.collection-body li {
  margin: 0.48rem 0;
}

.wedding-quote {
  min-height: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  background: #111;
  border-left: 3px solid var(--accent);
}

.wedding-quote .quote-mark {
  color: var(--accent);
  font-size: 5rem;
  line-height: 0.8;
}

.wedding-quote p {
  max-width: 52rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  line-height: 1.25;
}

.wedding-quote span {
  color: #bdbdbd;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-film-maker {
  padding: clamp(2rem, 5vw, 4rem);
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wedding-form-section {
  background: #0a0a0a;
}

.wedding-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.wedding-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wedding-form label {
  display: grid;
  gap: 0.45rem;
  color: #f5f5f5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wedding-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: #050505;
  color: #fff;
  padding: 0.85rem 0.9rem;
  font: inherit;
}

.wedding-form input:focus {
  outline: 2px solid rgba(229, 9, 20, 0.44);
  outline-offset: 2px;
}

.form-status {
  margin: 0;
  color: #a8a8a8;
  font-size: 0.92rem;
}

.wedding-films-page {
  --wedding-bg: #fbf9f6;
  --wedding-surface: #f1ece7;
  --wedding-card: #f7f2ec;
  --wedding-text: #1c1c1b;
  --wedding-muted: #6f6a63;
  --wedding-line: rgba(96, 88, 78, 0.2);
  --wedding-sage: #637052;
  --wedding-copper: #914f34;
  --wedding-charcoal: #242423;
  margin: 0;
  background: var(--wedding-bg);
  color: var(--wedding-text);
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
}

.wedding-watch-open {
  overflow: hidden;
}

.wedding-films-page p {
  color: var(--wedding-muted);
}

.wedding-shell {
  width: min(1440px, calc(100% - 10rem));
  margin: 0 auto;
}

.wedding-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 249, 246, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.wedding-header:hover {
  background: rgba(251, 249, 246, 0.72);
  border-color: rgba(98, 94, 88, 0.18);
}

.wedding-nav {
  width: min(1440px, calc(100% - 10rem));
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.wedding-menu-toggle {
  border: 0;
  background: transparent;
  color: var(--wedding-text);
}

.wedding-menu-toggle span {
  background: currentColor;
  height: 1px;
}

.wedding-menu-toggle:hover,
.wedding-menu-toggle:focus-visible {
  border-color: transparent;
  color: var(--wedding-copper);
  outline: none;
}

.wedding-films-page .nav-backdrop {
  background: rgba(38, 34, 29, 0.34);
  backdrop-filter: blur(7px);
}

.wedding-films-page .side-nav {
  width: min(28rem, calc(100vw - 1.5rem));
  padding: 2rem;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(251, 249, 246, 0.98), rgba(241, 236, 231, 0.98)),
    radial-gradient(circle at top right, rgba(145, 79, 52, 0.16), transparent 42%);
  border-right: 1px solid rgba(96, 88, 78, 0.18);
  box-shadow: 24px 0 80px rgba(33, 29, 25, 0.18);
}

.wedding-films-page .side-nav-head {
  min-height: auto;
  margin-bottom: 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(96, 88, 78, 0.16);
  color: var(--wedding-copper);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.wedding-films-page .menu-close {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(96, 88, 78, 0.18);
  background: rgba(255, 255, 255, 0.32);
  color: var(--wedding-text);
}

.wedding-films-page .menu-close::before,
.wedding-films-page .menu-close::after {
  height: 1px;
  background: currentColor;
}

.wedding-films-page .menu-close:hover,
.wedding-films-page .menu-close:focus-visible {
  border-color: rgba(145, 79, 52, 0.5);
  color: var(--wedding-copper);
  outline: none;
}

.wedding-films-page .side-nav a {
  min-height: 4.25rem;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(96, 88, 78, 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--wedding-text);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.wedding-films-page .side-nav a::before {
  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--wedding-copper);
  transition: width 0.24s ease, margin-right 0.24s ease;
}

.wedding-films-page .side-nav a:hover,
.wedding-films-page .side-nav a:focus-visible,
.wedding-films-page .side-nav a.active {
  color: var(--wedding-copper);
  background: transparent;
  border-color: rgba(96, 88, 78, 0.12);
  outline: none;
}

.wedding-films-page .side-nav a:hover::before,
.wedding-films-page .side-nav a:focus-visible::before,
.wedding-films-page .side-nav a.active::before {
  width: 2.2rem;
  margin-right: 1rem;
}

.wedding-brand {
  justify-self: center;
  color: var(--wedding-copper);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.wedding-nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(98, 94, 88, 0.26);
  color: var(--wedding-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wedding-nav-cta:hover {
  background: var(--wedding-charcoal);
  border-color: var(--wedding-charcoal);
  color: #fff;
}

.wedding-editorial-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.wedding-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.82);
  transform: scale(1.04);
}

.wedding-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 50% 44%, rgba(98, 112, 82, 0.22), transparent 34%);
}

.wedding-hero-copy {
  max-width: 880px;
  padding-top: 7rem;
  text-align: center;
}

.wedding-kicker {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--wedding-copper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.wedding-hero-copy .wedding-kicker,
.wedding-hero-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.wedding-hero-copy h1,
.wedding-section h2,
.wedding-showreel h2,
.wedding-film-card h3,
.wedding-investment h3,
.wedding-process-list h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.wedding-hero-copy h1 {
  margin: 0 0 1.75rem;
  color: #fff;
  font-size: clamp(4rem, 9vw, 7.6rem);
  font-style: italic;
  line-height: 0.98;
  text-transform: none;
}

.wedding-hero-copy p {
  max-width: 690px;
  margin: 0 auto 3rem;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 200;
  line-height: 1.85;
}

.wedding-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 2rem;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

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

.wedding-button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}

.wedding-button-light:hover {
  background: #fff;
  color: var(--wedding-charcoal);
}

.wedding-button-dark {
  width: fit-content;
  background: transparent;
  color: var(--wedding-charcoal);
  border-color: rgba(36, 36, 35, 0.34);
}

.wedding-button-dark:hover {
  background: var(--wedding-charcoal);
  color: #fff;
}

.wedding-section {
  padding: 10rem 0;
  background: var(--wedding-bg);
}

.wedding-overlap-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.5fr);
  align-items: center;
}

.wedding-photo-block {
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(33, 29, 25, 0.18);
}

.wedding-photo-block img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.95);
}

.wedding-text-card {
  position: relative;
  z-index: 2;
  margin-left: -5rem;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--wedding-card);
  box-shadow: 0 22px 54px rgba(33, 29, 25, 0.12);
}

.wedding-text-card h2,
.wedding-section-heading h2,
.wedding-process-grid h2,
.wedding-about-editorial h2,
.wedding-inquiry h2 {
  color: var(--wedding-text);
  font-size: clamp(2.45rem, 4.3vw, 4.6rem);
  font-style: italic;
  line-height: 1.08;
  text-transform: none;
}

.wedding-large-copy {
  color: var(--wedding-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  font-weight: 200;
  line-height: 1.85;
}

.wedding-text-link {
  display: inline-block;
  margin-top: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(145, 79, 52, 0.38);
  color: var(--wedding-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.wedding-portfolio,
.wedding-collections,
.wedding-proof {
  background: var(--wedding-surface);
}

.wedding-section-heading {
  max-width: 780px;
  margin: 0 auto 6rem;
  text-align: center;
}

.wedding-section-heading p {
  max-width: 690px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.wedding-film-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6rem 3rem;
}

.wedding-film-card {
  grid-column: span 6;
}

.wedding-film-wide {
  grid-column: span 7;
}

.wedding-film-tall {
  grid-column: 9 / span 4;
  margin-top: 8rem;
}

.wedding-film-frame {
  position: relative;
  display: block;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: #ddd7d0;
  box-shadow: 0 18px 44px rgba(33, 29, 25, 0.12);
}

.wedding-film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 23, 21, 0.04), rgba(24, 23, 21, 0.58)),
    radial-gradient(circle at 50% 48%, transparent 34%, rgba(24, 23, 21, 0.32));
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.wedding-film-frame img,
.wedding-film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.92);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.wedding-film-frame video {
  display: block;
}

.wedding-film-tall .wedding-film-frame img,
.wedding-film-tall .wedding-film-frame video {
  aspect-ratio: 3 / 4;
}

.wedding-film-frame:hover img,
.wedding-film-frame:hover video {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(0.98) brightness(0.86);
}

.wedding-film-frame:hover::after {
  opacity: 0.92;
}

.wedding-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.35s ease;
}

.wedding-film-frame:hover .wedding-play {
  opacity: 1;
}

.wedding-film-card > span {
  display: block;
  color: var(--wedding-copper);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.wedding-film-card h3 {
  margin: 0.65rem 0 0.4rem;
  color: var(--wedding-text);
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  font-style: italic;
  text-transform: none;
}

.wedding-film-card p {
  max-width: 34rem;
  margin: 0;
}

.wedding-watch-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

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

.wedding-watch-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 21, 19, 0.72);
  backdrop-filter: blur(10px);
}

.wedding-watch-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(92vh, 820px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--wedding-bg);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 32px 90px rgba(24, 23, 21, 0.34);
}

.wedding-watch-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--wedding-line);
  background: transparent;
  color: var(--wedding-text);
}

.wedding-watch-close::before,
.wedding-watch-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.wedding-watch-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.wedding-watch-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.wedding-watch-copy h2 {
  margin: 0 0 1rem;
  color: var(--wedding-text);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  text-transform: none;
}

.wedding-watch-form {
  display: grid;
  gap: 1rem;
}

.wedding-watch-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--wedding-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.wedding-watch-form input {
  min-height: 54px;
  border: 1px solid rgba(96, 88, 78, 0.22);
  background: #fff;
  color: var(--wedding-text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.wedding-watch-player {
  grid-column: 1 / -1;
  background: #111;
}

.wedding-watch-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #111;
}

.wedding-showreel {
  padding: 10rem 0;
  background: var(--wedding-charcoal);
  text-align: center;
}

.wedding-showreel .wedding-kicker {
  color: #d9b6a5;
}

.wedding-showreel h2 {
  margin-bottom: 4rem;
  color: #fff;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-style: italic;
  line-height: 1;
  text-transform: none;
}

.wedding-showreel-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1080px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.wedding-showreel-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: blur(1px) saturate(0.7);
  transform: scale(1.035);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.wedding-showreel-frame:hover img {
  opacity: 0.72;
  transform: scale(1.07);
}

.wedding-play-button {
  position: relative;
  z-index: 2;
  width: clamp(4.5rem, 8vw, 6rem);
  height: clamp(4.5rem, 8vw, 6rem);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.wedding-play-button::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.1rem solid #fff;
}

.wedding-video-line {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 2.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.wedding-video-line b {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.wedding-video-line b::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 26%;
  background: var(--wedding-copper);
}

.wedding-investment-grid,
.wedding-proof-grid,
.wedding-inquiry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.wedding-proof-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: stretch;
}

.wedding-investment {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--wedding-line);
}

.wedding-investment span,
.wedding-process-list span {
  color: var(--wedding-copper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.wedding-investment h3 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  text-transform: none;
}

.wedding-investment ul {
  margin: 1.25rem 0 0;
  padding-left: 1.05rem;
  color: var(--wedding-muted);
}

.wedding-investment li {
  margin: 0.5rem 0;
}

.wedding-process {
  background: var(--wedding-bg);
}

.wedding-process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.wedding-process-grid > div:first-child {
  position: sticky;
  top: 8rem;
}

.wedding-process-grid > div:first-child p {
  max-width: 33rem;
}

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

.wedding-process-list article {
  display: grid;
  grid-template-columns: 3.5rem minmax(12rem, 0.38fr) minmax(0, 0.62fr);
  column-gap: clamp(1.5rem, 3.4vw, 3.4rem);
  row-gap: 0.9rem;
  align-items: baseline;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--wedding-line);
}

.wedding-process-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.1;
  text-transform: none;
}

.wedding-process-list p {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.8;
}

.wedding-quote-editorial,
.wedding-testimonial-card,
.wedding-about-editorial {
  background: var(--wedding-bg);
  border: 1px solid var(--wedding-line);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.wedding-about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 1.2rem 0 1.5rem;
  filter: saturate(0.9) contrast(0.96);
}

.wedding-quote-editorial {
  position: relative;
  grid-column: auto;
  min-height: clamp(31rem, 45vw, 42rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 4vw, 4.5rem);
  background: var(--wedding-charcoal);
}

.wedding-quote-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 18, 16, 0.86), rgba(19, 18, 16, 0.46) 56%, rgba(19, 18, 16, 0.2)),
    linear-gradient(180deg, rgba(19, 18, 16, 0.12), rgba(19, 18, 16, 0.7));
}

.wedding-quote-editorial img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(0.94);
}

.wedding-quote-editorial p {
  max-width: 14ch;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 3.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
}

.wedding-quote-editorial span {
  display: block;
  color: #f1d0c0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.wedding-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.15rem;
  padding: clamp(2rem, 3.4vw, 3.6rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    var(--wedding-bg);
}

.wedding-testimonial-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.35rem;
  filter: saturate(0.9) contrast(0.96);
}

.wedding-testimonial-card p {
  margin: 0;
  color: var(--wedding-text);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  font-style: italic;
  line-height: 1.62;
}

.wedding-testimonial-card p + p {
  margin-top: 0.35rem;
}

.wedding-about-editorial {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.wedding-about-editorial .wedding-kicker,
.wedding-about-editorial h2,
.wedding-about-editorial p {
  grid-column: 2;
}

.wedding-about-editorial .wedding-about-portrait {
  grid-column: 1;
  grid-row: 1 / span 4;
  margin: 0;
}

.wedding-inquiry {
  background: var(--wedding-card);
}

.wedding-bts-strip {
  padding: 1rem 0 10rem;
  background: var(--wedding-surface);
}

.wedding-bts-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 1rem;
  align-items: end;
}

.wedding-bts-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ddd7d0;
  box-shadow: 0 18px 44px rgba(33, 29, 25, 0.1);
}

.wedding-bts-grid figure:nth-child(2) {
  margin-bottom: 4rem;
}

.wedding-bts-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.wedding-inquiry-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 0.62fr);
  gap: 5rem;
  align-items: start;
}

.wedding-editorial-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--wedding-bg);
  border: 1px solid var(--wedding-line);
}

.wedding-editorial-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--wedding-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.wedding-editorial-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(96, 88, 78, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  color: var(--wedding-text);
  padding: 0.95rem 1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.16rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wedding-editorial-form input[type="date"] {
  color-scheme: light;
  cursor: pointer;
}

.wedding-editorial-form input[type="date"]::-webkit-calendar-picker-indicator {
  width: 1.2rem;
  height: 1.2rem;
  padding: 0.35rem;
  border-radius: 999px;
  background-color: rgba(145, 79, 52, 0.12);
  cursor: pointer;
  opacity: 0.75;
}

.wedding-editorial-form input::placeholder {
  color: rgba(111, 106, 99, 0.62);
}

.wedding-editorial-form input:focus {
  background: #fff;
  border-color: rgba(145, 79, 52, 0.42);
  outline: 2px solid rgba(145, 79, 52, 0.2);
  outline-offset: 2px;
}

.wedding-editorial-form input:invalid:not(:placeholder-shown) {
  border-color: rgba(145, 79, 52, 0.72);
  box-shadow: inset 0 -2px 0 rgba(145, 79, 52, 0.24);
}

.wedding-editorial-form .form-status {
  min-height: 0;
  display: grid;
  place-items: center;
  color: var(--wedding-muted);
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}

.wedding-editorial-form .form-status:empty {
  display: none;
}

.wedding-editorial-form .form-status[data-state="success"] {
  min-height: 3rem;
  padding: 1rem;
  background: rgba(145, 79, 52, 0.08);
  border: 1px solid rgba(145, 79, 52, 0.16);
  color: var(--wedding-text);
}

.wedding-editorial-form .form-status a {
  color: var(--wedding-copper);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.wedding-footer {
  padding: 5rem 0;
  background: var(--wedding-bg);
  border-top: 1px solid var(--wedding-line);
}

.wedding-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  align-items: flex-start;
}

.wedding-footer .wedding-brand {
  justify-self: start;
}

.wedding-footer p {
  max-width: 34rem;
  margin-top: 1.25rem;
}

.wedding-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 1rem 4rem;
}

.wedding-footer-links a {
  color: var(--wedding-muted);
}

.cinematic-page .hero-copy .kicker {
  letter-spacing: 0.36em;
}

.cinematic-page .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.8rem, 7vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cinematic-page .hero-copy .lead {
  max-width: 46rem;
  color: #e2e2e2;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.cinematic-page[data-page="visibility-audit"] .hero-copy h1 {
  max-width: 18ch;
  font-size: clamp(3.2rem, 4.9vw, 5.6rem);
}

.cinematic-page .hero-copy h1 span {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(229, 9, 20, 0.5);
}

.cinematic-page .hero-copy .hero-note {
  max-width: 42rem;
  margin: 1.15rem 0 0;
  color: #e6e6e6;
  font-size: 1rem;
  line-height: 1.65;
}

.cinematic-page .hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.6fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.cinematic-page .media-stage,
.cinematic-page .panel,
.cinematic-page .card,
.cinematic-page .portfolio-card {
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.9) 0%, rgba(5, 5, 5, 0.94) 100%),
    radial-gradient(circle at top right, rgba(229, 9, 20, 0.12), transparent 38%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.cinematic-page .media-stage {
  min-height: auto;
  padding: 2rem;
  backdrop-filter: blur(14px);
}

.cinematic-page .hero-visual-stage {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.cinematic-page .hero-proof-item,
.cinematic-page .process-card,
.cinematic-page .module-card,
.cinematic-page .media-slot,
.cinematic-page .message {
  border-radius: 2px;
}

.cinematic-page .hero-proof-title,
.cinematic-page .process-step,
.cinematic-page .module-label,
.cinematic-page .portfolio-thumb-label {
  letter-spacing: 0.18em;
}

.cinematic-page .band {
  background: #090909;
  border-color: rgba(255, 255, 255, 0.08);
}

.cinematic-page .section-intro h2,
.cinematic-page .panel h2,
.cinematic-page .card h2,
.cinematic-page .cta-panel h2 {
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  text-transform: uppercase;
}

.cinematic-page h3 {
  text-transform: uppercase;
}

.cinematic-page .grid-2,
.cinematic-page .process-grid,
.cinematic-page .portfolio-grid,
.cinematic-page .proof-row {
  gap: 1rem;
}

.cinematic-page .process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cinematic-page .process-card {
  min-height: 260px;
  padding: 1.7rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cinematic-page .process-card:hover,
.cinematic-page .card:hover,
.cinematic-page .portfolio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.32);
}

.cinematic-page .media-tile {
  border-radius: 2px;
  min-height: 260px;
  filter: saturate(0.92);
}

.cinematic-page .proof-mosaic {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.cinematic-page .proof-mosaic .media-tile {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.cinematic-page .media-caption {
  overflow-wrap: anywhere;
}

.cinematic-page .media-caption,
.cinematic-page .play-badge {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cinematic-page .cta-panel {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.cinematic-page .footer {
  background: #030303;
}

@media (max-width: 1240px) {
  .cinematic-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .cinematic-page .hero-copy h1 {
    max-width: 18ch;
    font-size: clamp(3.4rem, 6.6vw, 5.9rem);
  }

  .cinematic-page .hero-visual-stage {
    max-width: 100%;
    justify-self: stretch;
  }

  .cinematic-page .proof-mosaic {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .grid-2,
  .pillars,
  .portfolio-grid,
  .proof-grid,
  .portfolio-grid-detailed,
  .process-grid,
  .hero-stage-grid,
  .hero-proof-list.two-up,
  .system-strip,
  .fix-grid,
  .media-plan-grid,
  .media-slot-landscape,
  .intake-grid,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .media-slot-landscape {
    grid-column: auto;
  }

  .service-grid,
  .split-heading,
  .metrics-grid,
  .cinematic-page .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
  }

  .industry-right .industry-copy {
    text-align: left;
  }

  .industry-right .industry-copy h2,
  .industry-right .industry-copy p {
    margin-left: 0;
  }

  .wedding-shell,
  .wedding-nav {
    width: min(100% - 3rem, 1440px);
  }

  .wedding-overlap-grid,
  .wedding-process-grid,
  .wedding-inquiry-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .wedding-process-grid > div:first-child {
    position: static;
  }

  .wedding-text-card {
    margin-left: 0;
    margin-top: -4rem;
    width: min(92%, 760px);
    justify-self: center;
  }

  .wedding-film-grid,
  .wedding-investment-grid,
  .wedding-proof-grid {
    grid-template-columns: 1fr;
  }

  .wedding-film-card,
  .wedding-film-wide,
  .wedding-film-tall,
  .wedding-quote-editorial,
  .wedding-about-editorial,
  .wedding-about-editorial .wedding-kicker,
  .wedding-about-editorial h2,
  .wedding-about-editorial p,
  .wedding-about-editorial .wedding-about-portrait {
    grid-column: auto;
  }

  .wedding-about-editorial {
    display: block;
  }

  .wedding-about-editorial .wedding-about-portrait {
    margin: 1.2rem 0 1.5rem;
  }

  .wedding-film-tall {
    margin-top: 0;
  }

  .wedding-investment-grid {
    gap: 1rem;
  }

  .wedding-bts-grid {
    grid-template-columns: 1fr;
  }

  .wedding-bts-grid figure:nth-child(2) {
    margin-bottom: 0;
  }

}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    height: 54px;
    max-height: 62px;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .media-stage {
    min-height: 320px;
    padding: 1.3rem;
  }

  .media-frame-portrait {
    min-height: 380px;
  }

  h1 { font-size: clamp(2.35rem, 10vw, 3.5rem); }

  .cinematic-home .container {
    width: min(var(--max-wide), calc(100% - 1.5rem));
  }

  .cinematic-page .container {
    width: min(var(--max-wide), calc(100% - 1.5rem));
  }

  .cinematic-nav {
    min-height: 84px;
  }

  .cinematic-header .brand img {
    height: 62px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0.6rem 0.75rem;
    letter-spacing: 0.14em;
  }

  .hero-center h1,
  .final-cinematic-cta h2 {
    font-size: clamp(3.3rem, 16vw, 6rem);
  }

  .hero-center h1 {
    max-width: 15ch;
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .services-section,
  .metrics-section,
  .process-section {
    padding: 5.5rem 0;
  }

  .industry-panel {
    min-height: 72vh;
  }

  .industry-copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .quote-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .contact-media-grid {
    grid-template-columns: 1fr;
  }

  .contact-media-card {
    min-height: 28rem;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 3rem 0;
  }

  .cinematic-page .hero,
  .cinematic-page .section {
    padding: 4.75rem 0;
  }

  .cinematic-page .cinematic-subhero {
    min-height: auto;
    padding-top: 7rem;
  }

  .cinematic-page .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 5.25rem);
  }

  .cinematic-page .media-stage {
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .panel,
  .card,
  .portfolio-card,
  .process-card {
    border-radius: 20px;
  }

  .portfolio-thumb {
    height: 210px;
  }

  .hero-proof-item,
  .hero-brand-card {
    border-radius: 16px;
  }

  .system-node {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    align-items: start;
  }

  .system-node p {
    grid-column: 2;
  }

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

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

  .proof-mosaic,
  .cinematic-page .proof-mosaic {
    grid-template-columns: 1fr;
  }

  .media-tile.wide {
    grid-column: auto;
  }

  .media-tile,
  .media-tile.tall {
    min-height: 260px;
  }

  .media-frame-portrait {
    min-height: 340px;
  }

  .media-frame-landscape {
    min-height: 190px;
  }

  .cinematic-home .btn,
  .cinematic-page .btn,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-center {
    padding-top: 5.5rem;
  }

  .hero-center .kicker {
    margin-bottom: 1.4rem;
    letter-spacing: 0.34em;
  }

  .hero-center h1 {
    max-width: 13ch;
    font-size: clamp(2.4rem, 12vw, 3.45rem);
    line-height: 0.98;
  }

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

  .service-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .service-icon {
    margin-bottom: 1.75rem;
  }

  .split-heading {
    margin-bottom: 2.5rem;
  }

  .wedding-shell,
  .wedding-nav {
    width: min(100% - 1.5rem, 1440px);
  }

  .wedding-nav {
    min-height: 78px;
    grid-template-columns: 2.75rem minmax(0, 1fr) 4.75rem;
    gap: 0.55rem;
  }

  .wedding-brand {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .wedding-nav-cta {
    width: 4.75rem;
    min-height: 40px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    position: relative;
  }

  .wedding-nav-cta:hover,
  .wedding-nav-cta:focus-visible {
    color: transparent;
  }

  .wedding-nav-cta::after {
    content: "Ask";
    position: absolute;
    color: var(--wedding-text);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .wedding-nav-cta:hover::after,
  .wedding-nav-cta:focus-visible::after {
    color: #fff;
  }

  .wedding-hero-copy {
    padding-top: 5rem;
  }

  .wedding-hero-copy h1 {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }

  .wedding-section,
  .wedding-showreel {
    padding: 5.5rem 0;
  }

  .wedding-text-card {
    width: 100%;
    margin-top: 0;
    padding: 1.5rem;
  }

  .wedding-photo-block img {
    aspect-ratio: 4 / 4.7;
  }

  .wedding-section-heading {
    margin-bottom: 3.5rem;
  }

  .wedding-film-grid {
    gap: 4rem;
  }

  .wedding-video-line {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .wedding-bts-strip {
    padding-bottom: 5.5rem;
  }

  .wedding-bts-grid img {
    min-height: 300px;
  }

  .wedding-process-list article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .wedding-watch-dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
    padding: 1.5rem;
  }

  .wedding-footer-grid {
    flex-direction: column;
  }

  .wedding-footer-links {
    grid-template-columns: 1fr;
  }

}
