:root {
  --bg: #0b0b0d;
  --bg-soft: #111216;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --text: #f3f1ec;
  --muted: #b8b2a8;
  --line: rgba(255,255,255,0.12);
  --accent: #d7c3a0;
  --max: 1240px;
  --radius: 0px;
  --shadow: 0 24px 60px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #09090b 0%, #0f1014 100%);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(8,8,10,0.68);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.brand { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 0.96rem; }
.nav a:hover, .nav a.active { color: var(--text); }
.hero {
  position: relative; min-height: 76vh; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute; inset: 0;
  background: #0c0d11 url('assets/img/hero-still-placeholder.jpg') center center / cover no-repeat;
}
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,8,0.26) 0%, rgba(5,5,8,0.34) 36%, rgba(5,5,8,0.78) 100%);
}
.hero-content {
  position: relative; z-index: 1; min-height: 76vh;
  display: flex; align-items: flex-end; padding: 72px 0 56px;
}
.hero-copy { max-width: 720px; }
.kicker {
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; margin-bottom: 12px;
}
h1, h2, h3 { margin: 0 0 14px; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.35rem); }
h3 { font-size: 1.15rem; }
.lead {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: #f2eee6;
  max-width: 62ch;
}
.subtle { color: var(--muted); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.04);
  color: var(--text); font-weight: 600;
}
.button.primary { background: var(--text); color: #0a0a0c; border-color: transparent; }
.button:hover { transform: translateY(-1px); }
.section { padding: 76px 0; }
.section-tight { padding: 52px 0; }
.section-header { margin-bottom: 28px; max-width: 760px; }
.grid-2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card, .stat, .logo-card, .placeholder, .form-shell {
  background: var(--panel);
  border-radius: var(--radius);
}
.card, .form-shell { padding: 24px; }
.stat { padding: 22px; min-height: 126px; }
.stat-label { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.75rem; margin-bottom: 10px; }
.stat-value { font-size: 1.08rem; font-weight: 700; }
.logo-card {
  min-height: 160px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.logo-box, .image-box, .poster-box, .video-box {
  border: 1px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
  border-radius: calc(var(--radius) - 6px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--muted);
}
.logo-box { min-height: 82px; padding: 16px; }
.image-box { min-height: 360px; padding: 18px; }
.poster-box { min-height: 420px; padding: 18px; }
.video-box { min-height: 420px; padding: 18px; }
.band {
  padding: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}
.page-hero {
  padding: 92px 0 34px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at top, rgba(215,195,160,0.12), transparent 36%);
}
form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 600; font-size: 0.95rem; }
input, textarea, select {
  width: 100%; min-height: 48px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04); color: var(--text);
  padding: 12px 14px; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.check-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px;
}
.check-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
}
.check-item input { width: auto; min-height: unset; }
.site-footer { padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); }
.small { font-size: 0.92rem; }
.list { margin: 0; padding-left: 18px; color: var(--muted); }
.callout { border-left: 3px solid var(--accent); padding-left: 14px; color: #ede5d7; }
/* Crew grid */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  gap: 2px 48px;
}
.crew-card {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.crew-link {
  display: inline-block;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.crew-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.crew-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.crew-name { font-weight: 700; font-size: 1.05rem; }

/* ── Funding progress ── */
.fp-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 8px;
}
.fp-tally { font-size: 0.88rem; color: var(--muted); }
.fp-raised { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.fp-goal-total { color: var(--muted); }

/* Track */
.fp-track-wrap { margin-bottom: 48px; }
.fp-track {
  position: relative;
  width: 100%; height: 2px;
  background: var(--line);
}
.fp-fill {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Milestone markers on track */
.fp-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fp-marker-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  transition: border-color 0.3s, background 0.3s;
}
.fp-marker-dot--reached {
  border-color: var(--accent);
  background: var(--accent);
}
.fp-marker-tick {
  position: absolute;
  top: 14px;
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Current position indicator */
.fp-now {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 0%;
  opacity: 0;
  transition: left 1.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.fp-now-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(215,195,160,0.2);
}
.fp-now-label {
  position: absolute;
  bottom: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* Goal cards — all identical */
.fp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 32px;
}
.fp-card {
  background: var(--bg-soft);
  padding: 28px 24px;
  transition: opacity 0.3s, background 0.3s;
}
.fp-card--locked {
  opacity: 0.35;
}
.fp-card--locked:hover {
  opacity: 1;
  background: var(--panel);
}
.fp-card--reached {
  opacity: 1;
}
.fp-card:hover { background: var(--panel); }

.fp-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
}
.fp-stage-name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.fp-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 22px;
  padding-left: 16px;
  line-height: 1.7;
}
.fp-desc li { margin-bottom: 4px; }

/* Contact CTA tiles */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta-tile {
  display: block;
  padding: 28px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.cta-tile:hover {
  background: var(--panel-strong);
}
.cta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.cta-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  word-break: break-word;
}
.cta-tile p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* Page hero — text only */
.page-hero-content { max-width: 760px; }

/* Footer with social */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link {
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.social-link:hover { color: var(--text); }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4, .crew-grid, .cta-grid, .fp-cards { grid-template-columns: 1fr; }
  .fp-marker-tick { display: none; }
  .hero, .hero-content { min-height: 68vh; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,8,10,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
  .site-header { position: sticky; }
}

/* Hero metadata line */
.hero-meta {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 16px 0 0;
}

/* Vision full-width */
.vision-block {
  max-width: 760px;
}
.vision-body {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* Logo strip */
.logo-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-strip a {
  display: inline-flex;
  align-items: center;
}
.strip-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s, filter 0.25s;
}
.logo-strip a:hover .strip-logo {
  opacity: 1;
  filter: none;
}

.feature-image, .poster-image, .logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-image {
  object-fit: contain;
  background: rgba(255,255,255,0.02);
  padding: 10px;
  min-height: 82px;
}
