/* ═══════════════════════════════════════════════════════
   BRANDON BOX — WEBSITE STYLES
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #0C0C10;
  --bg-2: #13131A;
  --bg-3: #1C1C26;
  --bg-4: #24242F;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --pink: #D4157C;
  --pink-light: #E84FAD;
  --pink-soft: #F9D0E8;
  --pink-glow: rgba(212,21,124,0.15);

  --text: #F0EDE6;
  --text-muted: #9A9488;
  --text-dim: #6A6460;

  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --max: 1400px;
  --pad-x: clamp(24px, 5vw, 88px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--pink); color: var(--text); }

/* ───── shared atoms ───── */
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--pink);
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.h2 em { color: var(--pink); font-style: italic; }

.h-display {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.h-display em { color: var(--pink); font-style: italic; }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
  white-space: nowrap;
}
.btn span { transition: transform 0.25s ease; display: inline-block; }
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: var(--pink);
  color: var(--text);
  border-color: var(--pink);
}
.btn-primary:hover { background: var(--pink-light); border-color: var(--pink-light); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

.btn-large { padding: 22px 40px; font-size: 16px; }
.btn-block { display: flex; justify-content: center; width: 100%; margin-top: 24px; }

.dot-sep { color: var(--text-dim); margin: 0 4px; }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad-x);
  background: rgba(12,12,16,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,12,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 14px var(--pad-x);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--pink); opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--pink); border-color: var(--pink); }
.nav-cta span { transition: transform 0.2s; }
.nav-cta:hover span { transform: translateX(3px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px var(--pad-x) 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,16,0.55) 0%, rgba(12,12,16,0.35) 30%, rgba(12,12,16,0.7) 65%, rgba(12,12,16,0.98) 100%),
    linear-gradient(90deg, rgba(12,12,16,0.65) 0%, rgba(12,12,16,0.05) 60%);
}
.hero-meta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--pink);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  color: rgba(240,237,230,0.82);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  max-width: 880px;
}
.hstat {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.hstat:last-child { border-right: none; }
.hstat-val {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hstat-val sup { font-size: 0.5em; vertical-align: top; margin-top: 0.1em; color: var(--pink); }
.hstat-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hstat { border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .hstat:last-child { border-bottom: none; }
  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════ */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 32s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-muted);
}
.marquee-track span:nth-child(even) { color: var(--pink); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about {
  padding: 140px var(--pad-x);
  background: var(--bg);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.about-right .lead {
  margin-bottom: 56px;
}
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fact {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.fact:last-child { border-bottom: 1px solid var(--line); }
.fact-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--pink);
  line-height: 1;
}
.fact-body h4 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.fact-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
}

/* ═══════════════════════════════════════════════════════
   TAX CREDIT TEASER
   ═══════════════════════════════════════════════════════ */
.tc-teaser {
  position: relative;
  padding: 160px var(--pad-x);
  background: var(--bg-2);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.tc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(212,21,124,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tc-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(400px, 60vw, 900px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,21,124,0.18);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.tc-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.tc-pct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tc-pct-num {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.85;
  color: var(--pink-light);
  letter-spacing: -0.04em;
}
.tc-pct-num sup { font-size: 0.45em; vertical-align: top; margin-top: 0.18em; }
.tc-pct-label {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  color: var(--text);
  text-align: left;
  line-height: 1.2;
  max-width: 240px;
}
.tc-body {
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}

.tc-mini-calc {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px;
  text-align: left;
}
.tc-mini-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.tc-mini-row input[type="range"] {
  width: 100%;
  height: 4px;
  background: var(--bg-4);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 32px;
  cursor: pointer;
}
.tc-mini-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--text);
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--pink-glow);
  transition: transform 0.15s;
}
.tc-mini-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.tc-mini-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--text);
  cursor: pointer;
}
.tc-mini-output {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.tc-mini-cell {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 2px;
  text-align: center;
}
.tc-mini-cell-gold {
  background: rgba(212,21,124,0.1);
  border-color: rgba(212,21,124,0.4);
}
.tc-mini-cell-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.tc-mini-cell-val {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  line-height: 1;
}
.tc-mini-cell-gold .tc-mini-cell-val { color: var(--pink); }
.tc-mini-arrow { font-size: 24px; color: var(--pink); }

@media (max-width: 600px) {
  .tc-mini-output { grid-template-columns: 1fr; }
  .tc-mini-arrow { transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTIONS
   ═══════════════════════════════════════════════════════ */
.productions {
  padding: 140px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.prod-head {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.prod-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.prod-card {
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.prod-card:hover { transform: translateY(-6px); }
.prod-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: var(--bg-3);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  font-weight: 500;
}
.prod-info h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.prod-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 480px;
}
.prod-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.prod-tags span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 880px) {
  .prod-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════════════════ */
.locations {
  padding: 140px var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.loc-head {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.loc-head .h2 { margin-bottom: 32px; }

.loc-grid {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.loc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}
.loc-hero { grid-column: span 2; grid-row: span 2; }
img.loc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  display: block;
}
.loc-card:hover img.loc-img { transform: scale(1.06); }
.loc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,16,0.05) 0%, rgba(12,12,16,0.35) 45%, rgba(12,12,16,0.92) 100%);
  pointer-events: none;
}
.loc-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 24px;
  z-index: 1;
}
.loc-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 8px;
}
.loc-meta h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 6px;
  font-weight: 400;
}
.loc-hero .loc-meta { padding: 36px 36px; }
.loc-hero .loc-meta h3 { font-size: 44px; }
.loc-meta p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .loc-hero { grid-column: span 2; grid-row: span 2; }
  .loc-hero .loc-meta h3 { font-size: 32px; }
}

.loc-map {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
}
.loc-map img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.loc-map-cap {
  padding: 56px;
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loc-map-cap p {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .loc-map { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  padding: 140px var(--pad-x);
  background: var(--bg);
}
.svc-head {
  max-width: var(--max);
  margin: 0 auto 80px;
}
.svc-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.svc {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
  position: relative;
}
.svc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc:hover { background: var(--bg-2); }
.svc:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--pink);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.svc h3 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.svc p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 880px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   INFRASTRUCTURE STRIP
   ═══════════════════════════════════════════════════════ */
.infra {
  padding: 56px var(--pad-x);
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.infra-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.infra-inner .kicker { margin-bottom: 0; flex-shrink: 0; }
.infra-titles {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--text);
  font-style: italic;
}
.infra-titles .dot-sep {
  color: var(--pink);
  font-size: 18px;
}
.infra-titles span em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.5em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: 200px var(--pad-x);
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,21,124,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.contact-inner .kicker {
  padding-left: 0;
  margin-bottom: 32px;
}
.contact-inner .kicker::before { display: none; }
.contact-inner .h-display {
  margin-bottom: 32px;
}
.contact-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.contact-divider {
  width: 80px;
  height: 1px;
  background: var(--pink);
  margin: 80px auto 32px;
}
.contact-foot {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  padding: 80px var(--pad-x) 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer-brand img { height: 48px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--pink); }
.footer-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTIONS PAGE
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 200px var(--pad-x) 100px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.page-hero h1 em { color: var(--pink); font-style: italic; }
.page-hero .lead { max-width: 720px; }

.prod-list {
  padding: 100px var(--pad-x) 140px;
  background: var(--bg);
}
.prod-list-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.prod-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.prod-item:last-child { border-bottom: 1px solid var(--line); }
.prod-item-img {
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
  overflow: hidden;
}
.prod-item-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-item-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.prod-item-info h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.prod-item-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}
.prod-item-info p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 540px;
}
.prod-platforms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.prod-platform {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(212,21,124,0.1);
  border: 1px solid rgba(212,21,124,0.3);
  color: var(--pink-soft);
  font-weight: 500;
}
.prod-credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.prod-credit {
  font-size: 13px;
}
.prod-credit-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 4px;
}
.prod-credit-val {
  color: var(--text);
  font-weight: 400;
}
.prod-item.flip { grid-template-columns: 1.2fr 1fr; }
.prod-item.flip .prod-item-img { order: 2; }

@media (max-width: 880px) {
  .prod-item, .prod-item.flip { grid-template-columns: 1fr; gap: 40px; }
  .prod-item.flip .prod-item-img { order: 0; }
}

/* ═══════════════════════════════════════════════════════
   TAX CREDIT PAGE
   ═══════════════════════════════════════════════════════ */
.tc-page-hero {
  padding: 180px var(--pad-x) 120px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.tc-page-hero .tc-watermark { z-index: 0; }
.tc-page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.tc-page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--pink-light);
  margin-bottom: 32px;
}
.tc-page-hero h1 sup { font-size: 0.45em; vertical-align: top; margin-top: 0.18em; }
.tc-page-hero .h2 { margin-bottom: 32px; }
.tc-page-hero .lead { max-width: 720px; }

/* Calculator */
.calc {
  padding: 140px var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.calc-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.calc-head { margin-bottom: 64px; max-width: 720px; }
.calc-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 56px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.calc-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.calc-field-val {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.calc-field-val em {
  color: var(--pink);
  font-style: normal;
}
.calc-slider {
  width: 100%;
  height: 4px;
  background: var(--bg-4);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--text);
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--pink-glow);
}
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--text);
  cursor: pointer;
}
.calc-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calc-results {
  background: rgba(212,21,124,0.05);
  border: 1px solid rgba(212,21,124,0.25);
  padding: 40px;
  border-radius: 2px;
}
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,21,124,0.15);
}
.calc-result:last-child { border-bottom: none; }
.calc-result-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.calc-result-val {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--text);
}
.calc-result-big {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--pink);
}
.calc-result-big .calc-result-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.calc-result-big .calc-result-val {
  font-size: 56px;
  color: var(--pink);
}

.calc-disclaimer {
  margin-top: 32px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--pink);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}
.calc-disclaimer strong { color: var(--text); font-weight: 500; }

@media (max-width: 880px) {
  .calc-card { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
}

/* Process timeline */
.process {
  padding: 140px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.process-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.process-head { margin-bottom: 80px; max-width: 720px; }
.process-steps {
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  font-family: var(--serif);
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px var(--pink);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.process-content h3 {
  font-family: var(--serif);
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.process-content p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 16px;
}
.process-meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
}

@media (max-width: 720px) {
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .process-num { font-size: 56px; }
}

/* FAQ */
.faq {
  padding: 140px var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-head { margin-bottom: 64px; }
/* Native <details>/<summary> accordion — robust, no JS */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { list-style: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  color: var(--text);
  user-select: none;
  cursor: pointer;
  padding: 28px 0;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--pink);
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 800px;
}
