/* ============================================================
   THRUST CINEMA — Shared Stylesheet
   Used by index.html, about.html, contact.html
   ============================================================ */

:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --bg-panel: #111111;
  --fg: #f5f5f5;
  --fg-dim: #999999;
  --fg-faint: #555555;
  --accent: #ff2d2d;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --display: 'Anton', 'Archivo Narrow', sans-serif;
  --body: 'Archivo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent); color: var(--fg); }

/* Grain overlay - applied to body via ::before */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(5,5,5,0.6);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
nav.shrink { padding: 12px 40px; }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--fg);
  height: 38px;
  transition: height 0.3s ease;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
nav.shrink .nav-logo { height: 30px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

@media (max-width: 720px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10px; }
  .nav-logo { height: 30px; }
  nav.shrink .nav-logo { height: 26px; }
}

/* === HERO (used on all pages) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 20px 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,45,45,0.18), transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.04), transparent 50%),
    var(--bg);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Sub-pages use a shorter hero */
.hero.compact {
  min-height: 70vh;
  padding: 160px 20px 80px;
}

/* WebGL canvas */
.webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0 20px;
  max-width: 1400px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.hero-eyebrow span {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 14px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(48px, 10vw, 160px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 400;
}
h1 .line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
}
h1 .line + .line { margin-top: 0.08em; }
h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
h1 .line:nth-child(1) span { animation-delay: 0.4s; }
h1 .line:nth-child(2) span { animation-delay: 0.55s; color: var(--accent); font-style: italic; }
h1 .line:nth-child(3) span { animation-delay: 0.7s; }

.hero-sub {
  margin-top: 48px;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--fg-dim);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-cta {
  margin-top: 48px;
  display: inline-flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
  flex-wrap: wrap;
  justify-content: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  background: transparent;
  cursor: pointer;
  font-family: var(--body);
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-primary:hover { background: var(--accent); color: var(--fg); border-color: var(--accent); }
.btn-ghost:hover { border-color: var(--fg); background: rgba(255,255,255,0.05); }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--fg-faint);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.5s 1.8s forwards;
  z-index: 2;
  pointer-events: none;
}
.scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--fg-faint));
  margin: 0 auto 12px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@media (max-width: 720px) {
  .scroll-indicator { display: none; }
}

/* === MARQUEE === */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 14px;
}

/* === SECTIONS === */
section { padding: 140px 40px; position: relative; }
@media (max-width: 720px) { section { padding: 90px 20px; } }

.section-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 900px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; }
}
.section-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.3em;
}
.section-num::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 16px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 100px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: 16px;
}
.section-title em { color: var(--accent); font-style: italic; }
.section-desc {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* === FILMS / VIDEO GRID === */
.films {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .films { grid-template-columns: 1fr; } }
.film {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.film:hover { border-color: var(--line-strong); }
.film:hover .film-thumb-img { transform: scale(1.04); }
.film:hover .film-play { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }
.film-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.film-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.film-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,45,45,0.1), transparent 60%);
  z-index: 1;
}
.film-placeholder {
  font-family: var(--display);
  font-size: 80px;
  color: var(--fg-faint);
  opacity: 0.4;
  z-index: 1;
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  opacity: 1;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  pointer-events: none;
  z-index: 2;
}
.film-meta {
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.film-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
}
.film-title {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.05;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.film-play {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  z-index: 3;
  pointer-events: none;
}
.film-play::before {
  content: '';
  width: 0; height: 0;
  border-left: 12px solid var(--fg);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

/* Shorts grid (vertical 9:16) */
.shorts-section {
  max-width: 1400px;
  margin: 80px auto 0;
}
.shorts-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.shorts-header h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.shorts-header h3 em { color: var(--accent); font-style: italic; }
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .shorts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.short {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.short:hover { border-color: var(--accent); }
.short:hover .film-thumb-img { transform: scale(1.05); }
.short .film-overlay { padding: 16px; }
.short .film-title { font-size: 16px; -webkit-line-clamp: 3; }
.short .film-tag { font-size: 9px; letter-spacing: 0.25em; }
.short .film-play { top: 12px; right: 12px; width: 36px; height: 36px; }
.short .film-play::before { border-left-width: 8px; border-top-width: 5px; border-bottom-width: 5px; }

/* Loading skeleton */
.films-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--fg-faint);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.films-loading::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 12px;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* YouTube channel banner card */
.yt-banner {
  max-width: 1400px;
  margin: 80px auto 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.yt-banner-text h3 {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.yt-banner-text p { color: var(--fg-dim); font-size: 14px; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--fg);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  transition: all 0.3s;
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.lightbox-content {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.lightbox-content.short-mode {
  aspect-ratio: 9/16;
  max-width: 420px;
  max-height: 90vh;
}
.lightbox-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* === MANIFESTO / QUOTE === */
.manifesto {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.manifesto-quote {
  font-family: var(--display);
  font-size: clamp(32px, 5.5vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.manifesto-quote em { color: var(--accent); font-style: italic; }
.manifesto-attr {
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--fg-faint);
  text-transform: uppercase;
}

/* === SUBJECTS === */
.subjects {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .subjects { grid-template-columns: 1fr; } }
.subject {
  background: var(--bg);
  padding: 60px 40px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.subject:hover { background: var(--bg-soft); }
.subject:hover .subject-icon { transform: translate(8px, -8px); }
.subject-num {
  font-family: var(--display);
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.3em;
}
.subject-icon {
  margin: 24px 0 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 72px;
  display: flex;
  align-items: center;
}
.subject-icon svg { width: 64px; height: 64px; stroke: var(--fg); fill: none; stroke-width: 1.5; }
.subject-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  /* SVG icons are dark by default; invert + brightness flips them to pure white */
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
/* On hover, paint them red (the accent color) using a CSS filter chain */
.subject:hover .subject-icon img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(7474%) hue-rotate(345deg) brightness(102%) contrast(108%);
}
.subject-title {
  font-family: var(--display);
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.subject-desc {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

/* === ABOUT PAGE BLOCKS === */
.about-intro {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
}
.about-intro h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}
.about-intro h2 em { color: var(--accent); font-style: italic; }
.about-intro-body p {
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-intro-body p strong { color: var(--fg); font-weight: 600; }

/* Process timeline */
.process {
  max-width: 1400px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: var(--bg);
  padding: 50px 36px;
  position: relative;
}
.process-step:hover { background: var(--bg-soft); }
.process-num {
  font-family: var(--display);
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.process-step p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* Stats row */
.stats {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: 24px; } }
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  color: var(--fg);
}
.stat-num em { color: var(--accent); font-style: italic; }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--fg-faint);
  text-transform: uppercase;
  margin-top: 12px;
}

/* === CONTACT PAGE === */
.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 60px; } }

.contact-info h3 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.contact-info h3 em { color: var(--accent); font-style: italic; }
.contact-info > p {
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--fg);
  transition: padding 0.3s;
}
.contact-channel:last-child { border-bottom: 1px solid var(--line); }
.contact-channel:hover { padding-left: 16px; }
.contact-channel:hover .contact-arrow { transform: translateX(8px); color: var(--accent); }
.contact-channel-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--fg-faint);
  text-transform: uppercase;
  width: 100px;
  flex-shrink: 0;
}
.contact-channel-value {
  font-family: var(--display);
  font-size: 24px;
  flex: 1;
}
.contact-arrow {
  transition: all 0.3s;
  font-size: 20px;
}

/* Contact form */
.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 48px;
}
@media (max-width: 720px) { .contact-form { padding: 32px 24px; } }
.contact-form h4 {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.form-field {
  margin-bottom: 28px;
}
.form-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--bg-soft); color: var(--fg); }
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--body);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--accent); }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.form-submit:hover { background: var(--accent); color: var(--fg); }
.form-status {
  margin-top: 20px;
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
  text-align: center;
}

/* === NEWSLETTER === */
.newsletter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
}
.newsletter-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  text-transform: uppercase;
}
.newsletter-title em { color: var(--accent); font-style: italic; }
.newsletter-form { display: flex; flex-direction: column; gap: 16px; }
.newsletter-form p {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.input-row {
  display: flex;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s;
}
.input-row:focus-within { border-color: var(--accent); }
.input-row input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  padding: 16px 0;
  outline: none;
}
.input-row input::placeholder { color: var(--fg-faint); }
.input-row button {
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  padding: 0 16px;
  transition: color 0.3s;
}
.input-row button:hover { color: var(--accent); }
.form-note { font-size: 11px; color: var(--fg-faint); letter-spacing: 0.1em; }

/* === FOOTER === */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 40px 40px;
  background: var(--bg);
}
@media (max-width: 720px) { footer { padding: 60px 20px 30px; } }
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-brand-mark {
  display: flex;
  align-items: center;
  height: 64px;
  margin-bottom: 24px;
}
.footer-brand-mark img {
  height: 100%;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: var(--fg-dim);
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === ANIMATIONS === */
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.3; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
