/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #d40000;
  --red-dark: #9a0000;
  --red-bright: #ff1a1a;
  --black: #0a0a0a;
  --off-white: #f2ede3;
  --paper: #e8e1d4;
  --paper-dark: #d4ccbd;
  --yellow: #f5c800;
  --yellow-dark: #c9a200;
  --border: rgba(10,10,10,0.2);
  --font-poster: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --font-body: 'Barlow Condensed', 'Roboto Condensed', sans-serif;
  --font-mono: 'Courier Prime', 'Courier New', monospace;
  --nav-h: 56px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--black);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── UTILITY ──────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}
.section-label.light { color: var(--yellow); }

h2 {
  font-family: var(--font-poster);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-poster);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lead { font-size: 1.15rem; font-weight: 500; line-height: 1.5; margin-bottom: 1.25rem; }
p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-poster);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 3px solid;
}
.btn-primary { background: var(--red); color: var(--off-white); border-color: var(--red); }
.btn-primary:hover { background: var(--black); border-color: var(--black); text-decoration: none; }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--off-white); text-decoration: none; }
.btn-outline-light { background: transparent; color: var(--off-white); border-color: var(--off-white); }
.btn-outline-light:hover { background: var(--off-white); color: var(--black); text-decoration: none; }
.full-width { width: 100%; text-align: center; }

/* ─── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: var(--black);
  border-bottom: 4px solid var(--red);
}
.nav-logo { font-family: var(--font-poster); font-size: 1.5rem; letter-spacing: 0.1em; color: var(--off-white); line-height: 1; }
.nav-logo span { color: var(--red); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper-dark); transition: color 0.15s; }
.nav-links a:hover { color: var(--red); text-decoration: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--off-white); transition: all 0.3s; }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--black);
  color: var(--off-white);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(242,237,227,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-top { flex: 1; display: flex; align-items: stretch; position: relative; z-index: 1; }
.hero-left { flex: 1; padding: 4rem 3rem 3rem; display: flex; flex-direction: column; justify-content: center; border-right: 4px solid var(--red); }
.hero-right { width: 340px; flex-shrink: 0; background: var(--red); display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem 2rem 2rem; position: relative; overflow: hidden; }
.hero-right::before { content: '✊'; position: absolute; top: -20px; right: -20px; font-size: 14rem; opacity: 0.12; line-height: 1; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); border-left: 4px solid var(--red); padding-left: 0.75rem; margin-bottom: 1.5rem; display: block; }
.hero-title { font-family: var(--font-poster); font-size: clamp(5.5rem, 16vw, 11rem); line-height: 0.85; letter-spacing: 0.01em; text-transform: uppercase; color: var(--off-white); margin-bottom: 0.5rem; }
.hero-title .accent { color: var(--red); display: block; }
.hero-subtitle { font-family: var(--font-poster); font-size: clamp(1.1rem, 3vw, 1.8rem); text-transform: uppercase; letter-spacing: 0.1em; color: var(--paper-dark); margin-bottom: 2rem; line-height: 1; }
.hero-sub { font-size: 1rem; font-weight: 400; color: var(--paper-dark); line-height: 1.6; margin-bottom: 2rem; max-width: 480px; border-top: 1px solid rgba(242,237,227,0.15); padding-top: 1.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,237,227,0.6); margin-bottom: 0.75rem; }
.hero-slogan { font-family: var(--font-poster); font-size: 1.5rem; text-transform: uppercase; color: var(--off-white); line-height: 1; margin-bottom: 1.5rem; }
.hero-bottom-bar { background: var(--red); padding: 0.7rem 3rem; display: flex; align-items: center; gap: 1.5rem; overflow: hidden; border-top: 3px solid var(--yellow); position: relative; z-index: 1; flex-wrap: wrap; }
.hero-bottom-bar span { font-family: var(--font-poster); font-size: 0.95rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--off-white); white-space: nowrap; flex-shrink: 0; }
.hero-bottom-bar .sep { color: var(--yellow); font-size: 1.2rem; }

/* ─── MARQUEE ──────────────────────────────────────── */
.marquee-strip { background: var(--yellow); padding: 0.75rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 2rem; width: max-content; animation: marquee 28s linear infinite; font-family: var(--font-poster); font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); align-items: center; }
.marquee-track .sep { color: var(--red); font-size: 1.3rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT ────────────────────────────────────────── */
.about { background: var(--paper); padding: 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.about-text-block { background: var(--off-white); padding: 4rem 3rem; border-right: 6px solid var(--red); position: relative; }
.about-text-block::before { content: 'E'; position: absolute; bottom: -1rem; right: -0.5rem; font-family: var(--font-poster); font-size: 16rem; line-height: 1; color: var(--red); opacity: 0.06; pointer-events: none; }
.about-visual-block { background: var(--black); color: var(--off-white); padding: 4rem 3rem; display: flex; flex-direction: column; gap: 2rem; }
.about-pull-quote { font-family: var(--font-poster); font-size: clamp(1.4rem, 3.5vw, 2.5rem); text-transform: uppercase; line-height: 1.05; color: var(--off-white); border-left: 6px solid var(--red); padding-left: 1.25rem; }
.about-pull-quote em { color: var(--red); font-style: normal; }
.about-definition { font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.6; color: var(--paper-dark); border: 1px solid rgba(242,237,227,0.15); padding: 1.25rem; }
.about-definition strong { color: var(--yellow); display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
.stats-row { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--black); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-poster); font-size: 2.5rem; color: var(--red); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-top: 0.2rem; }

/* ─── EVENTS ───────────────────────────────────────── */
.events { background: var(--red); color: var(--off-white); padding: 5rem 0; position: relative; overflow: hidden; }
.events::before { content: 'NOW'; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%) rotate(90deg); font-family: var(--font-poster); font-size: 14rem; color: var(--red-dark); pointer-events: none; line-height: 1; }
.events h2 { color: var(--off-white); }
.events-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; background: rgba(242,237,227,0.25); border: 1px solid rgba(242,237,227,0.25); margin-top: 2.5rem; }
.event-card { background: var(--red); padding: 1.75rem; display: flex; gap: 1.25rem; transition: background 0.15s; }
.event-card:hover { background: var(--red-dark); }
.event-featured { background: var(--black); }
.event-featured:hover { background: #111; }
.event-date-block { flex-shrink: 0; text-align: center; width: 52px; }
.event-month { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); }
.event-day { display: block; font-family: var(--font-poster); font-size: 2.5rem; line-height: 1; color: var(--off-white); }
.event-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); display: block; margin-bottom: 0.3rem; }
.event-info h3 { font-family: var(--font-poster); color: var(--off-white); font-size: 1.05rem; margin-bottom: 0.4rem; }
.event-info p { font-size: 0.85rem; color: rgba(242,237,227,0.65); margin-bottom: 0.3rem; font-weight: 300; }
.event-location { font-family: var(--font-mono); font-size: 0.68rem !important; color: rgba(242,237,227,0.4) !important; }
.events-note { margin-top: 1.75rem; font-family: var(--font-mono); font-size: 0.78rem; color: rgba(242,237,227,0.55); text-align: center; }
.events-note a { color: var(--yellow); }

/* ─── EDI ──────────────────────────────────────────── */
.edi { background: var(--paper); position: relative; }
.edi-header { text-align: center; margin-bottom: 3rem; }
.edi-header h2 { font-size: clamp(2.5rem, 7vw, 5rem); }
.edi-header h2 span { color: var(--red); }
.edi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 3px solid var(--black); }
.edi-card { padding: 2rem 1.75rem; border-right: 3px solid var(--black); border-bottom: 3px solid var(--black); background: var(--off-white); position: relative; overflow: hidden; transition: background 0.15s; }
.edi-card:hover { background: var(--paper-dark); }
.edi-card:nth-child(3), .edi-card:nth-child(6) { border-right: none; }
.edi-card:nth-child(4), .edi-card:nth-child(5), .edi-card:nth-child(6) { border-bottom: none; }
.edi-icon { font-family: var(--font-poster); font-size: 3rem; color: var(--red); line-height: 1; margin-bottom: 0.75rem; }
.edi-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--black); }
.edi-card p { font-size: 0.88rem; line-height: 1.55; opacity: 0.75; font-weight: 300; }
.edi-footer { text-align: center; margin-top: 2rem; font-family: var(--font-mono); font-size: 0.85rem; opacity: 0.65; }
.edi-footer a { color: var(--red); }

/* ─── GALLERY ──────────────────────────────────────── */
.gallery { background: var(--black); color: var(--off-white); }
.gallery .section-label { color: var(--yellow); }
.gallery h2 { color: var(--off-white); }
.gallery-intro { font-size: 0.95rem; color: rgba(242,237,227,0.55); margin-bottom: 2.5rem; font-family: var(--font-mono); }
.gallery-intro a { color: var(--red); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.gallery-placeholder { aspect-ratio: 4/3; display: flex; align-items: flex-end; padding: 1rem; position: relative; overflow: hidden; border: 1px solid rgba(242,237,227,0.1); }
.gallery-placeholder span { font-family: var(--font-poster); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; z-index: 1; position: relative; color: var(--off-white); }
.gp-1, .gp-4 { background: #1a0000; }
.gp-2, .gp-5 { background: #0d0d0d; }
.gp-3, .gp-6 { background: #1a1500; }
.gallery-placeholder::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(212,0,0,0.15) 1px, transparent 1px); background-size: 20px 20px; }

/* ─── JOIN ─────────────────────────────────────────── */
.join { background: var(--black); color: var(--off-white); position: relative; overflow: hidden; }
.join::before { content: '✊'; position: absolute; right: -3rem; top: 50%; transform: translateY(-50%); font-size: 28rem; opacity: 0.04; pointer-events: none; line-height: 1; }
.join .section-label { color: var(--yellow); }
.join-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.join h2 { color: var(--off-white); font-size: clamp(3rem, 8vw, 6rem); }
.join h2 span { color: var(--red); }
.join .lead { color: rgba(242,237,227,0.8); font-size: 1.1rem; }
.join-list { list-style: none; margin: 1.5rem 0 2rem; border-top: 2px solid rgba(242,237,227,0.1); }
.join-list li { padding: 0.85rem 0; border-bottom: 1px solid rgba(242,237,227,0.1); font-size: 0.95rem; color: rgba(242,237,227,0.75); display: flex; gap: 0.75rem; }
.join-list li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.join-form-area { background: var(--off-white); color: var(--black); padding: 2.5rem; border-left: 6px solid var(--red); }
.join-form-area h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--black); }
.join-form-area > p { font-size: 0.9rem; margin-bottom: 1.5rem; opacity: 0.7; font-weight: 300; }
.signup-form { display: flex; flex-direction: column; gap: 0.75rem; }
.signup-form label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); opacity: 0.6; }
.signup-form input { padding: 0.7rem 1rem; background: var(--paper); border: 2px solid var(--black); color: var(--black); font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: border-color 0.15s; border-radius: 0; width: 100%; }
.signup-form input:focus { border-color: var(--red); }
.form-note { font-size: 0.85rem; color: var(--red); text-align: center; margin: 0; font-family: var(--font-mono); }

/* ─── CONTACT ──────────────────────────────────────── */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 3px solid var(--black); }
.contact-left { padding: 3rem; border-right: 3px solid var(--black); }
.contact-right { padding: 3rem; background: var(--red); color: var(--off-white); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-right::before { content: '@'; position: absolute; font-family: var(--font-poster); font-size: 16rem; right: -2rem; bottom: -3rem; color: var(--red-dark); line-height: 1; pointer-events: none; }
.contact-right h3 { font-size: 2rem; color: var(--off-white); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.contact-right p { font-size: 0.9rem; color: rgba(242,237,227,0.7); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.contact-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; border: 2px solid var(--black); transition: all 0.15s; font-size: 0.95rem; font-family: var(--font-mono); }
.contact-item:hover { background: var(--black); color: var(--off-white); text-decoration: none; }
.contact-icon { width: 32px; height: 32px; background: var(--black); color: var(--off-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-poster); font-size: 0.85rem; flex-shrink: 0; }
.contact-item:hover .contact-icon { background: var(--red); }

/* ─── FOOTER ───────────────────────────────────────── */
.footer { background: var(--black); color: var(--off-white); padding: 2.5rem 0; border-top: 6px solid var(--red); }
.footer-inner { text-align: center; }
.footer-logo { font-family: var(--font-poster); font-size: 3rem; letter-spacing: 0.1em; line-height: 1; }
.footer-logo span { color: var(--red); }
.footer-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin: 0.4rem 0 1rem; }
.footer-copy { font-family: var(--font-mono); font-size: 0.7rem; opacity: 0.35; margin-bottom: 1rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,237,227,0.35); transition: color 0.15s; }
.footer-nav a:hover { color: var(--red); text-decoration: none; }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero-top { flex-direction: column; }
  .hero-left { border-right: none; border-bottom: 4px solid var(--red); padding: 3rem 2rem; }
  .hero-right { width: 100%; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual-block { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .edi-grid { grid-template-columns: 1fr 1fr; }
  .edi-card:nth-child(3) { border-right: none; }
  .edi-card:nth-child(2) { border-right: 3px solid var(--black); }
  .join-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 3px solid var(--black); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--black); flex-direction: column; padding: 1.5rem 2rem; border-bottom: 2px solid var(--red); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .edi-grid { grid-template-columns: 1fr; }
  .edi-card { border-right: none !important; }
  .section { padding: 4rem 0; }
  .hero-left { padding: 2rem 1.5rem; }
  .hero-title { font-size: clamp(4rem, 20vw, 8rem); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-wrap: wrap; gap: 1.25rem; }
}

/* ─── ERRATA LOGO LETTERS ──────────────────────────── */
.r-flip {
  display: inline-block;
  transform: scaleX(-1);
  color: var(--off-white);
}
.r-red {
  color: var(--red);
}

/* ─── JOIN SINGLE COLUMN ───────────────────────────── */
.join-inner-single {
  max-width: 600px;
}
.join-inner-single .join-list li::before {
  content: '→';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
