@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Bebas+Neue&family=Courier+Prime:wght@400;700&display=swap');

:root {
  --projection-white: #f7f5f1;
  --frame-ivory: #f1ebe3;
  --paper-cream: #ebe4d8;
  --fog-grey: #c8c4bc;
  --mist-grey: #9a958c;
  --matte-charcoal: #1c1b1a;
  --deep-aubergine: #2a1f2e;
  --slate-black: #121110;
  --saffron: #e8b84a;
  --scene-red: #c43c2c;
  --lens-teal: #2a7a78;
  --tape-lavender: #a894b8;
  --frame-orange: #d4783a;
  --pale-peach: #e8cfc0;
  --dusty-cyan: #7aa8a6;
  --text-light: #f7f5f1;
  --text-muted-light: #b8b3aa;
  --text-dark: #1c1b1a;
  --text-muted: #6e6a63;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Albert Sans', sans-serif;
  --font-mono: 'Courier Prime', monospace;
}

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

html {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--projection-white);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden !important;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1360px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.bg-pattern {
  background-color: var(--projection-white);
  background-image:
    linear-gradient(rgba(28, 27, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 27, 26, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, transparent 48%, rgba(232, 184, 74, 0.06) 49%, rgba(232, 184, 74, 0.06) 51%, transparent 52%),
    radial-gradient(ellipse at 12% 18%, rgba(42, 122, 120, 0.05), transparent 42%),
    radial-gradient(ellipse at 88% 72%, rgba(168, 148, 184, 0.06), transparent 40%);
  background-size: 48px 48px, 48px 48px, 120px 120px, 100% 100%, 100% 100%;
}

.bg-deep {
  background: var(--matte-charcoal);
  color: var(--text-light);
  background-image:
    linear-gradient(rgba(247, 245, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 245, 241, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

.bg-aubergine {
  background: var(--deep-aubergine);
  color: var(--text-light);
}

.bg-cream {
  background: var(--frame-ivory);
}

.scene-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lens-teal);
  border: 1px solid rgba(42, 122, 120, 0.35);
  padding: 0.35rem 0.7rem;
  background: rgba(247, 245, 241, 0.7);
}

.bg-deep .scene-label,
.bg-aubergine .scene-label {
  color: var(--saffron);
  border-color: rgba(232, 184, 74, 0.4);
  background: rgba(0, 0, 0, 0.25);
}

.scene-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--scene-red);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.h4 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 38rem;
}

.bg-deep .lead,
.bg-aubergine .lead {
  color: var(--text-muted-light);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 27, 26, 0.1);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(28, 27, 26, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--scene-red);
  transition: width 0.35s var(--ease);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-meta {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--mist-grey);
  border: 1px solid var(--fog-grey);
  padding: 0.3rem 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

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

.btn-primary {
  background: var(--scene-red);
  color: var(--projection-white);
  border-color: var(--scene-red);
}

.btn-primary:hover {
  background: #a83224;
  border-color: #a83224;
  box-shadow: 0 10px 24px rgba(196, 60, 44, 0.25);
}

.btn-saffron {
  background: var(--saffron);
  color: var(--matte-charcoal);
  border-color: var(--saffron);
}

.btn-saffron:hover {
  background: #d4a53a;
  box-shadow: 0 10px 24px rgba(232, 184, 74, 0.3);
}

.btn-teal {
  background: var(--lens-teal);
  color: var(--projection-white);
  border-color: var(--lens-teal);
}

.btn-outline {
  background: transparent;
  border-color: var(--matte-charcoal);
  color: var(--matte-charcoal);
}

.btn-outline:hover {
  background: var(--matte-charcoal);
  color: var(--projection-white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(247, 245, 241, 0.55);
  color: var(--projection-white);
}

.btn-outline-light:hover {
  background: var(--projection-white);
  color: var(--matte-charcoal);
}

.btn-ghost {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--lens-teal);
  border-radius: 0;
  padding-inline: 0;
  min-height: auto;
  color: var(--lens-teal);
}

.btn-ghost:hover {
  border-color: var(--scene-red);
  color: var(--scene-red);
  transform: none;
}

.btn-full {
  width: 100%;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(28, 27, 26, 0.2);
  background: var(--projection-white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1002;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--matte-charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(247, 245, 241, 0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 5.5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(28, 27, 26, 0.2);
  background: var(--projection-white);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: 0.03em;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(28, 27, 26, 0.08);
}

.mobile-nav .btn {
  margin-top: 1.5rem;
}

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow-x: clip;
  max-width: 100%;
}

.hero-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

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

.hero-scene-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--scene-red);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-scene-num::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--saffron);
}

.hero h1 {
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

.cue-panel {
  background: var(--frame-ivory);
  border: 1px solid rgba(28, 27, 26, 0.12);
  border-left: 4px solid var(--lens-teal);
  padding: 1.1rem 1.25rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.cue-panel::after {
  content: 'CUE';
  position: absolute;
  top: -0.55rem;
  right: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  background: var(--saffron);
  color: var(--matte-charcoal);
  padding: 0.15rem 0.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border: 1px solid rgba(28, 27, 26, 0.18);
  padding: 0.65rem;
  background: var(--paper-cream);
  box-shadow: 12px 16px 0 rgba(42, 31, 46, 0.08);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--scene-red);
  border-style: solid;
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.floating-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.float-mod {
  background: var(--projection-white);
  border: 1px solid rgba(28, 27, 26, 0.12);
  padding: 0.7rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.float-mod:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(28, 27, 26, 0.08);
}

.float-mod span {
  display: block;
  color: var(--mist-grey);
  margin-bottom: 0.25rem;
  font-size: 0.6rem;
}

.parallax-layer {
  pointer-events: none;
}

@media (min-width: 1025px) and (hover: hover) {
  .parallax-layer {
    will-change: transform;
  }
}

.cue-strip {
  border-block: 1px solid rgba(28, 27, 26, 0.1);
  background: var(--frame-ivory);
  overflow-x: clip;
}

.cue-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.cue-item {
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(28, 27, 26, 0.1);
  min-height: 110px;
}

.cue-item:last-child {
  border-right: none;
}

.cue-item .mono {
  color: var(--scene-red);
  margin-bottom: 0.45rem;
  display: block;
}

.cue-item p {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.outcomes {
  overflow-x: clip;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
}

.outcome-large,
.outcome-small {
  background: var(--projection-white);
  border: 1px solid rgba(28, 27, 26, 0.12);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.outcome-large:hover,
.outcome-small:hover,
.scene-card:hover,
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(28, 27, 26, 0.1);
}

.outcome-large img,
.outcome-small img,
.case-card img,
.scene-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.outcome-large:hover img,
.outcome-small:hover img,
.case-card:hover img,
.scene-card:hover img {
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.05);
}

.outcome-large img {
  aspect-ratio: 16/10;
}

.outcome-small img {
  aspect-ratio: 16/11;
}

.outcome-body,
.case-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--mist-grey);
}

.meta-row .tag {
  color: var(--lens-teal);
}

.outcome-stack {
  display: grid;
  gap: 1.25rem;
}

.director-note {
  overflow-x: clip;
}

.director-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.thesis {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 1rem 0 1.25rem;
  max-width: 14ch;
}

.note-highlight {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  background: rgba(232, 184, 74, 0.15);
  border-left: 3px solid var(--saffron);
  font-size: 1.05rem;
  font-weight: 500;
}

.director-visual {
  position: relative;
}

.director-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(247, 245, 241, 0.15);
}

.service-scenes {
  overflow-x: clip;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-tab {
  text-align: left;
  background: transparent;
  border: 1px solid rgba(28, 27, 26, 0.12);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.service-tab.active,
.service-tab:hover {
  border-color: var(--scene-red);
  background: rgba(196, 60, 44, 0.04);
}

.service-tab .mono {
  color: var(--mist-grey);
  display: block;
  margin-bottom: 0.3rem;
}

.service-tab.active .mono {
  color: var(--scene-red);
}

.service-panel {
  display: none;
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--frame-ivory);
  overflow: hidden;
}

.service-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-panel-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.flow-row {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(28, 27, 26, 0.15);
}

.flow-row:last-of-type {
  border-bottom: none;
}

.flow-row strong {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lens-teal);
}

.proof-board {
  overflow-x: clip;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
  align-items: stretch;
}

.proof-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.proof-box {
  padding: 1.5rem;
  border: 1px solid rgba(247, 245, 241, 0.12);
  min-height: 220px;
}

.proof-box.fragmented {
  background: rgba(196, 60, 44, 0.12);
}

.proof-box.clear {
  background: rgba(42, 122, 120, 0.15);
}

.proof-box h3 {
  margin-bottom: 0.75rem;
}

.proof-box ul {
  display: grid;
  gap: 0.45rem;
}

.proof-box li {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  padding-left: 1rem;
  position: relative;
}

.proof-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--saffron);
}

.proof-markers {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.proof-marker {
  background: rgba(247, 245, 241, 0.05);
  border: 1px solid rgba(247, 245, 241, 0.12);
  padding: 1.1rem 1.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-sequence {
  overflow-x: clip;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border: 1px solid rgba(28, 27, 26, 0.1);
}

.progress-section {
  overflow-x: clip;
}

.progress-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.progress-step {
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--projection-white);
  padding: 1.1rem 0.95rem;
  min-height: 160px;
  position: relative;
}

.progress-step .mono {
  color: var(--scene-red);
  display: block;
  margin-bottom: 0.55rem;
}

.progress-step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.progress-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.line-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.65rem;
}

.line-icon path,
.line-icon rect,
.line-icon line {
  fill: none;
  stroke: var(--lens-teal);
  stroke-width: 1.5;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 1s var(--ease);
}

.line-icon.drawn path,
.line-icon.drawn rect,
.line-icon.drawn line,
.is-visible .line-icon path,
.is-visible .line-icon rect,
.is-visible .line-icon line {
  stroke-dashoffset: 0;
}

.marquee-section {
  overflow: hidden;
  max-width: 100vw;
  padding: 1.5rem 0;
  background: var(--deep-aubergine);
  color: var(--projection-white);
}

.marquee-row {
  overflow: hidden;
  max-width: 100vw;
  white-space: nowrap;
  margin: 0.45rem 0;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee-left 42s linear infinite;
  will-change: transform;
}

.marquee-track.reverse {
  animation-name: marquee-right;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.marquee-track span::after {
  content: ' / ';
  color: var(--saffron);
  margin-left: 2rem;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.desk-cta {
  overflow-x: clip;
}

.desk-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--frame-ivory);
  padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
}

.desk-cta-inner::before {
  content: 'SEQ-REQ';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--scene-red);
  border: 1px solid rgba(196, 60, 44, 0.35);
  padding: 0.25rem 0.5rem;
}

.contact-preview {
  overflow-x: clip;
}

.contact-preview-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-page-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.contact-card {
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--projection-white);
  padding: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
}

.contact-lines dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-grey);
}

.contact-lines dd {
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.map-frame {
  border: 1px solid rgba(28, 27, 26, 0.12);
  overflow: hidden;
  min-height: 280px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--slate-black);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
  overflow-x: clip;
  max-width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(247, 245, 241, 0.1);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--text-muted-light);
  font-size: 0.92rem;
  max-width: 24rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--text-muted-light);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--projection-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--mist-grey);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  overflow-x: clip;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border: 1px solid rgba(28, 27, 26, 0.1);
}

.content-block {
  max-width: 48rem;
}

.content-block p + p {
  margin-top: 1rem;
}

.content-block h2 {
  margin: 2rem 0 1rem;
}

.content-block h3 {
  margin: 1.5rem 0 0.75rem;
}

.team-grid,
.case-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.case-card,
.feature-card,
.scene-card {
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--projection-white);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.feature-card,
.scene-card {
  padding: 1.35rem;
}

.case-card img {
  aspect-ratio: 16/10;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--projection-white);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-q::after {
  content: '+';
  font-family: var(--font-mono);
  color: var(--scene-red);
  font-size: 1.2rem;
}

.faq-item.open .faq-q::after {
  content: '–';
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  padding: 0 1.25rem;
  color: var(--text-muted);
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 1.25rem 1.2rem;
}

.form-panel {
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--frame-ivory);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
}

.form-panel::before {
  content: 'SEQUENCE REQUEST';
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  background: var(--saffron);
  color: var(--matte-charcoal);
  padding: 0.2rem 0.5rem;
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(28, 27, 26, 0.18);
  background: var(--projection-white);
  padding: 0.85rem 1rem;
  color: var(--matte-charcoal);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--lens-teal);
  box-shadow: 0 0 0 3px rgba(42, 122, 120, 0.15);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--scene-red);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.thanks-wrap {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: grid;
  place-items: center;
  padding: 4rem 0;
  overflow-x: clip;
}

.thanks-card {
  width: min(640px, 100%);
  border: 1px solid rgba(28, 27, 26, 0.12);
  background: var(--frame-ivory);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
}

.thanks-card::before {
  content: '';
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(42, 122, 120, 0.25);
  pointer-events: none;
}

.legal-page {
  overflow-x: clip;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border: 1px solid rgba(28, 27, 26, 0.1);
  background: var(--frame-ivory);
  padding: 1.25rem;
}

.legal-nav a {
  display: block;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(28, 27, 26, 0.06);
}

.legal-nav a:hover {
  color: var(--scene-red);
}

.legal-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.75rem;
}

.legal-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2rem 0 0.85rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 1.4rem 0 0.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section-head .lead {
  margin-top: 0.75rem;
}

@media (min-width: 1100px) {
  .header-meta {
    display: inline-block;
  }
}

@media (max-width: 1024px) {
  .hero-board,
  .outcomes-grid,
  .director-grid,
  .service-layout,
  .proof-grid,
  .about-grid,
  .desk-cta-inner,
  .contact-preview-grid,
  .contact-page-grid,
  .page-hero-grid,
  .legal-layout,
  .service-panel.active {
    grid-template-columns: 1fr;
  }

  .cue-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .progress-track {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .team-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .container,
  .container-wide {
    width: min(100% - 1.5rem, 100%);
  }

  .cue-strip-grid,
  .progress-track,
  .proof-contrast,
  .floating-modules,
  .case-grid,
  .team-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cue-item {
    border-right: none;
    border-bottom: 1px solid rgba(28, 27, 26, 0.1);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .desk-cta .btn,
  .page-cta .btn {
    width: 100%;
  }

  .legal-nav {
    position: static;
  }

  .footer-brand img {
    filter: brightness(0) invert(1);
  }
}
