/* Reset-ish */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #f5f5f5;
  background: #0c0c0c;
}
h1, h2, h3, h4 { font-family: Oswald, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; letter-spacing: 0.5px; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(6px);
  border-bottom: 1px solid #222;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; fill: none; stroke: #f5f5f5; stroke-width: 6; }
.brand-text h1 { margin: 0; font-size: 24px; }
.tag { margin: 0; font-size: 12px; color: #bdbdbd; }
.nav { display: flex; gap: 18px; font-weight: 600; }
.nav a { opacity: 0.9; }
.nav a:hover { opacity: 1; }

.hero {
  background: radial-gradient(80% 80% at 20% 20%, #2a0000, #000);
  border-bottom: 1px solid #1e1e1e;
}
.hero-wrap {
  max-width: 1100px; margin: 0 auto; padding: 64px 20px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center;
}
.hero-copy h2 { font-size: 64px; margin: 0 0 10px; }
.hero-copy p { color: #d5d5d5; margin-bottom: 20px; }
.btn {
  display: inline-block; padding: 12px 18px; border: 1px solid #f5f5f5;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.btn.primary { background: #f5f5f5; color: #0c0c0c; }
.btn.primary:hover { filter: brightness(0.9); }

.hero-art { justify-self: center; }
.hero-art svg { width: 260px; height: 260px; }
.ring { fill: none; stroke: url(#grad); stroke-width: 8; }
.crane { fill: none; stroke: #f5f5f5; stroke-width: 4; }

.section { padding: 56px 20px; }
.section.alt { background: #0f0f0f; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.grid-3 {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.card {
  border: 1px solid #222; padding: 18px; border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.card h4 { margin-top: 0; }

.mantras { list-style: none; padding: 0; display: grid; gap: 8px; }
.mantras li { border-left: 4px solid #f5f5f5; padding: 8px 12px; background: #121212; }

.posters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.poster {
  border: 1px solid #222; border-radius: 10px; overflow: hidden; background: #101010;
  display: grid; grid-template-rows: auto 40px; text-align: center; font-weight: 700;
}
.poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster span { display: grid; place-items: center; border-top: 1px solid #222; }

.join-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.join-form label { display: grid; gap: 6px; }
.join-form input { padding: 12px; background: #0b0b0b; color: #fff; border: 1px solid #333; border-radius: 6px; }
.form-msg { margin: 6px 0 0; color: #a5ffa5; }

.site-footer { border-top: 1px solid #222; padding: 24px 20px; text-align: center; color: #bdbdbd; }

/* Responsive */
@media (max-width: 860px) {
  .hero-wrap { grid-template-columns: 1fr; text-align: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .join-form { grid-template-columns: 1fr; }
}

/* Accents */
:root {
  --accent: #ffcf33;
}
.brand-mark circle { stroke: var(--accent); }
.brand-mark path { fill: var(--accent); stroke: none; }
#grad stop:first-child { stop-color: var(--accent); }
#grad stop:last-child { stop-color: #ff5f1f; }
