/* We Design America — fixed cinematic video, sections scroll over it (Gensler-style) */
:root {
  --black: #000000;
  --ink: #111111;
  --white: #ffffff;
  --off: #f4f4f2;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #c41e3a;
  --accent-soft: #ef4444;
  --glass: rgba(0, 0, 0, 0.42);
  --glass-strong: rgba(0, 0, 0, 0.68);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Playfair Display", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--white);
  /* body is transparent so fixed video shows through */
  background: transparent;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Fallback if video fails — only behind the fixed stage */
html { background: var(--black); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.88; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* =========================================================
   FIXED MULTI-SCENE STAGE (Gensler-style)
   Several videos stacked; only the active scene is visible.
   Solid sections (trusted / careers) cover the stage fully.
   ========================================================= */
.cinema-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  background: var(--black);
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.cinema-stage.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.cinema-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  will-change: opacity;
}
.cinema-layer.is-active {
  opacity: 1;
  z-index: 1;
}
.cinema-poster,
.cinema-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
}
.cinema-video {
  opacity: 0;
  transition: opacity 1s ease;
}
.cinema-layer.is-playing .cinema-video { opacity: 1; }
.cinema-layer.is-playing .cinema-poster {
  opacity: 0;
  transition: opacity 1s ease;
}
.cinema-scrim {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.24) 28%,
      rgba(0,0,0,.3) 58%,
      rgba(0,0,0,.62) 100%),
    linear-gradient(105deg,
      rgba(0,0,0,.5) 0%,
      rgba(0,0,0,.12) 45%,
      transparent 72%);
  transition: opacity 0.7s ease;
}
.cinema-stage.is-hidden .cinema-scrim { opacity: 0; }

/* Everything scrolls ABOVE the fixed video */
.site-header,
main,
.site-footer,
.chat-widget {
  position: relative;
  z-index: 2;
}

/* main is a transparent stack of panels */
main {
  background: transparent;
}

/* =========================================================
   HEADER — floats over video
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.logo:hover { opacity: 1; }
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-we { font-size: 1rem; font-weight: 600; letter-spacing: .01em; }
.logo-sub {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 500;
}
.nav a:hover { color: #fff; opacity: 1; }
.nav-phone { color: #fff !important; font-weight: 600 !important; white-space: nowrap; }
.nav-cta {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink) !important;
  font-weight: 600 !important;
  font-size: .78rem !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-cta:hover { opacity: 0.92; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0;
  border: 0;
  padding: .4rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.45rem;
  border-radius: 2px;
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn-solid {
  background: var(--white);
  color: var(--ink);
}
.btn-solid:hover { background: var(--off); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: .9rem 1.6rem;
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn-block { width: 100%; }

/* =========================================================
   PANELS — transparent by default so video shows through
   Solid panels (.panel--solid) cover the video as you scroll
   ========================================================= */
.panel {
  position: relative;
  padding: 5.5rem 0;
  background: transparent;
}

/* Full-viewport story frames (Gensler hero rhythm) */
.panel--frame {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Solid black bands that fully cover the cinema */
.panel--solid {
  background: #000;
  /* bleed solid color edge-to-edge even if parent has gaps */
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}

/* Solid light bands (Miller Zell–style trust / logo wall) */
.panel--solid-light {
  background: #ffffff;
  color: #111;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

/* =========================================================
   TRUSTED — “Trusted by the best and brightest” logo wall
   ========================================================= */
.trusted {
  padding: 5.5rem 0 5.75rem;
}
.trusted-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) 1.25fr;
  gap: 3rem 4rem;
  align-items: center;
}
.trusted-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
}
.trusted-mark {
  background: linear-gradient(180deg, transparent 62%, rgba(147, 197, 253, 0.55) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.trusted-lead {
  margin: 0;
  max-width: 22rem;
  color: #555;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.65;
}
.trusted-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem 1.25rem;
  align-items: center;
}
.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.75rem 0.65rem;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.trusted-logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}
/* Wordmark placeholders until real logo files are added */
.tl-word {
  display: block;
  font-family: var(--font);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: #1a1a1a;
}
.tl-script {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.trusted-logo[data-tone="navy"] .tl-word { color: #0a2a5c; }
.trusted-logo[data-tone="red"] .tl-word { color: #c41e3a; }
.trusted-logo[data-tone="blue"] .tl-word { color: #1d4ed8; }
.trusted-logo[data-tone="green"] .tl-word { color: #15803d; }
.trusted-logo[data-tone="ink"] .tl-word { color: #111; letter-spacing: 0.12em; }
.trusted-logo[data-tone="slate"] .tl-word { color: #475569; }
.trusted-logo[data-tone="teal"] .tl-word { color: #0f766e; }
.trusted-logo[data-tone="gold"] .tl-word { color: #a16207; letter-spacing: 0.16em; }
.trusted-logo[data-tone="char"] .tl-word { color: #374151; }

@media (max-width: 900px) {
  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .trusted-lead { max-width: none; }
}
@media (max-width: 720px) {
  .trusted-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.85rem;
  }
}
@media (max-width: 520px) {
  .trusted-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 0.75rem;
  }
}

.panel-head {
  max-width: 560px;
  margin-bottom: 2.75rem;
}
.panel-head h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.panel-lead {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.08rem;
}
.eyebrow {
  margin: 0 0 .85rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.glass-block {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* =========================================================
   HERO — transparent, video fully visible behind type
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background: transparent;
}
.hero-content { max-width: 38rem; }
.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 10vw, 5.8rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 48px rgba(0,0,0,.5);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #fff;
}
.hero-tagline {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
  max-width: 28rem;
}
.hero-lead {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.9);
  font-weight: 300;
  font-size: 1.15rem;
  max-width: 34rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-lead--sub {
  margin: 0 0 1.85rem;
  font-size: 1.02rem;
  color: rgba(255,255,255,.78);
  max-width: 32rem;
}
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-content { max-width: 40rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-trust span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
  margin-right: .5rem;
  vertical-align: middle;
}

.cinema-toggle {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 700;
  pointer-events: auto;
}
.cinema-toggle:hover { border-color: #fff; }

/* =========================================================
   BRANDS — glass cards float over still-playing video
   ========================================================= */
.brands {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: transparent;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.brand-card {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 220px;
  padding: 1.65rem 1.55rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: inherit;
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.brand-card:hover {
  transform: translateY(-3px);
  background: var(--glass-strong);
  border-color: rgba(255,255,255,.28);
  opacity: 1;
}
.brand-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.brand-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
}
.brand-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: .95rem;
  flex: 1;
}
.brand-go {
  margin-top: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.brand-go::after { content: " →"; }
.brand-card--soon {
  cursor: default;
  border-style: dashed;
  background: rgba(0, 0, 0, 0.35);
}
.brand-card--soon:hover {
  transform: none;
  border-color: rgba(255,255,255,.22);
  background: rgba(0, 0, 0, 0.42);
  opacity: 1;
}
.brand-card--soon .brand-tag { color: rgba(255,255,255,.7); }
.brand-go--soon::after { content: ""; }
.brand-go--soon { color: rgba(255,255,255,.7); letter-spacing: .14em; }

/* =========================================================
   ABOUT — glass over video
   ========================================================= */
.about {
  background: transparent;
  padding: 4rem 0 6rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  align-items: stretch;
}
.about-copy { padding: 2.25rem 2rem; }
.about-copy p {
  color: var(--muted);
  font-weight: 300;
}
.about-copy p strong { color: #fff; font-weight: 600; }
.about-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-contact a:hover { opacity: 0.88; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.75rem;
}
.stat-box {
  padding: 1rem .85rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.stat-box .n {
  font-family: var(--display);
  font-size: 1.85rem;
  color: #fff;
  line-height: 1;
}
.stat-box .l {
  margin-top: .4rem;
  font-size: .78rem;
  color: var(--muted);
}
.quote-panel {
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  min-height: 280px;
  margin: 0;
}
.quote-panel p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}

/* =========================================================
   HOW — glass steps over video
   ========================================================= */
.how {
  background: transparent;
  padding: 4rem 0 6rem;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 2.5rem;
}
.process-highlight {
  padding: 1.75rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.process-highlight .eyebrow {
  margin: 0 0 0.15rem;
  color: rgba(255,255,255,.7);
}
.process-highlight h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}
.process-highlight > p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.65;
}
.process-highlight > p strong { color: #fff; font-weight: 600; }
.process-list {
  list-style: none;
  margin: 0.35rem 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.process-list li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,.72);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
}
.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.process-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.process-highlight-actions .btn {
  padding: 0.75rem 1.15rem;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .process-highlights { grid-template-columns: 1fr; }
}
.steps li { padding: 1.45rem 1.2rem; }
.steps .num {
  display: block;
  margin-bottom: .85rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
}
.steps h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
}

/* =========================================================
   CAREERS — modal only (not on landing scroll)
   Opens when user clicks Careers in nav or footer
   ========================================================= */
.careers-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.careers-modal[hidden] { display: none !important; }
.careers-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.careers-modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 2.5rem 2.25rem 2.75rem;
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  color: #fff;
}
.careers-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.careers-modal-close:hover { color: #fff; }
.careers-inner {
  max-width: 36rem;
  text-align: left;
}
.careers-inner h2,
.careers-modal-panel h2 {
  margin: 0 0 1.15rem;
  padding-right: 2rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.careers-inner > p {
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}
.openings {
  margin-top: 2.25rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.openings-label {
  margin: 0 0 1.25rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.openings-empty {
  padding: 0.35rem 0 0.25rem;
  max-width: 34rem;
}
.openings-empty-title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}
.openings-empty-body {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.58);
}
body.careers-open {
  overflow: hidden;
}

/* =========================================================
   CONTACT — glass over video again after solid careers
   ========================================================= */
.contact {
  background: transparent;
  padding: 5.5rem 0 6rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  align-items: start;
}
.contact-copy,
.contact-panel { padding: 2rem 1.75rem; }
.contact-copy p {
  color: var(--muted);
  font-weight: 300;
}
.contact-panel {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-panel .hint {
  margin: .35rem 0 0;
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 300;
}
.contact-panel .hint a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   FOOTER — solid so scroll ends cleanly
   ========================================================= */
.site-footer {
  padding: 2.75rem 0 2.25rem;
  background: #000;
  border-top: 1px solid var(--line);
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}
.footer-inner { display: grid; gap: 1.25rem; }
.footer-brand p {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.25rem;
}
.footer-nav a {
  color: var(--muted);
  font-size: .88rem;
}
.footer-copy {
  margin: 0;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-sisters a { color: rgba(255,255,255,.55); }

/* =========================================================
   CHAT
   ========================================================= */
.chat-widget {
  position: fixed;
  right: 1.15rem;
  bottom: 5rem;
  z-index: 200;
  font-family: var(--font);
}
.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.22);
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 3.4rem;
  width: min(340px, calc(100vw - 2rem));
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .65rem;
}
.chat-head strong { font-size: .95rem; }
.chat-close {
  background: 0;
  border: 0;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.chat-intro {
  margin: 0 0 .85rem;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 300;
}
.chat-label {
  display: grid;
  gap: .3rem;
  margin-bottom: .65rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.chat-label input,
.chat-label textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0a0a0a;
  color: var(--white);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  padding: .7rem .8rem;
}
.chat-note {
  min-height: 1.2em;
  margin: .55rem 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .brand-grid,
  .steps,
  .stat-row { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1.2rem 1.2rem;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta {
    margin-top: .7rem;
    text-align: center;
    border: 0 !important;
  }
  .brand-grid,
  .steps,
  .stat-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .careers-modal-panel { padding: 2rem 1.35rem 2.25rem; }
  .chat-widget { bottom: 5.25rem; right: 1rem; }
  .cinema-toggle { bottom: 1.15rem; right: 1rem; }
}

/* Reduce motion: keep poster, hide video motion preference */
@media (prefers-reduced-motion: reduce) {
  .cinema-video { display: none !important; }
  .cinema-poster { opacity: 1 !important; transform: none; }
}
