/* ============================================================
   CLUB 53 - STYLESHEET v5
   June 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Mono:wght@500&display=swap');

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: 'Zilla Slab', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; border: none !important; outline: none !important; box-shadow: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- CUSTOM CURSOR (desktop only) --- */
@media (pointer: fine) {
  * { cursor: none !important; }
}
@media (pointer: coarse) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none !important; }
}
#cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s ease, height .2s ease, background .2s ease, opacity .2s ease;
  will-change: left, top;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: top .12s ease, left .12s ease, width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
  will-change: left, top;
}
#cursor-dot.hovering { width: 0; height: 0; opacity: 0; }
#cursor-ring.hovering { width: 56px; height: 56px; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: fixed; right: 0; top: 0; width: 1px; height: 0%;
  background: #fff; z-index: 9990; opacity: 0.35;
  transition: opacity .3s ease;
}
.scroll-progress.active { opacity: 1; }

/* --- COLOURS --- */
:root {
  --black:    #0A0A0A;
  --blue:     #0055FF;
  --blue-h:   #003BCC;
  --blue-d:   #001A66;
  --white:    #FFFFFF;
  --off:      rgba(255,255,255,0.65);
  --dim:      rgba(255,255,255,0.35);
  --card-bg:  #0D0D1A;
  --glow:     rgba(0,85,255,0.25);
}

/* --- TYPOGRAPHY --- */
h1 {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 700;
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
}
h2 {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 1.0;
  color: #fff;
}
h3 {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.7);
}
p {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.mono, .label, .eyebrow, .section-eyebrow,
.event-card-date, .event-card-age, .event-card-venue,
.meta-label, .countdown-label, .hero-subline,
.ticket-option-label, .form-group label,
.contact-info-item .label, .footer-col h4,
.footer-legal, .footer-age, .age-strip p,
.photo-strip-label, .faq-answer p {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.faq-answer p { color: rgba(255,255,255,0.6); font-size: 14px; letter-spacing: 0; text-transform: none; line-height: 1.7; }

/* --- LAYOUT --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* --- SCROLL ANIMATIONS --- */
.scroll-hidden {
  opacity: 0;
  transform: translateY(32px);
}
.scroll-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px; padding: 14px 28px;
  border: 1.5px solid transparent;
  white-space: nowrap; position: relative;
  will-change: transform;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary {
  background: #fff; color: #000;
  border-color: #fff;
}
.btn-primary:hover { background: rgba(255,255,255,0.88); }
.btn-ghost {
  background: transparent; color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translate(2px,-2px); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* --- NAV --- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 32px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: 'Zilla Slab', Georgia, serif;
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.6);
  transition: color .2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--blue);
}
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; padding: 8px; z-index: 1100;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all .25s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: #0A0A0A; z-index: 1050;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px; opacity: 0; transition: opacity .25s ease;
}
.nav-mobile-overlay.open { opacity: 1; }
.nav-mobile-overlay a {
  font-family: 'Zilla Slab', Georgia, serif; font-weight: 700;
  font-size: 40px; letter-spacing: -0.02em; color: #fff;
  transition: color .2s ease;
}
.nav-mobile-overlay a:hover { color: var(--blue); }
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* --- AGE GATE --- */
.age-gate-overlay {
  position: fixed; inset: 0; background: #0A0A0A;
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-gate-modal { text-align: center; max-width: 440px; width: 100%; }
.age-gate-logo { margin: 0 auto 48px; height: 100px; width: auto; display: block; }
.age-gate-modal h2 { font-size: clamp(36px, 7vw, 56px); margin-bottom: 12px; font-family: 'Zilla Slab', Georgia, serif; }
.age-gate-modal .gate-sub {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px; display: block;
}
.age-gate-modal .btn-group { justify-content: center; }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #0A0A0A; overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,85,255,0.1) 0%, transparent 70%);
  top: -200px; right: -150px; z-index: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1; width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 120px 24px 120px;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); display: block; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(80px, 13vw, 140px); }
.hero-subline {
  font-family: 'DM Mono', monospace; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block; margin-top: 20px; margin-bottom: 48px;
}
.hero-detail {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); display: block; margin-top: 32px;
}
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
}
.scroll-indicator span {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.scroll-chevron {
  width: 16px; height: 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: chevBounce 1.6s ease-in-out infinite;
}
@keyframes chevBounce {
  0%,100%{transform:rotate(45deg) translateY(0);opacity:.25;}
  50%{transform:rotate(45deg) translateY(4px);opacity:.7;}
}

/* Image reveal on date hover */
.date-reveal-wrap { position: relative; display: inline; }
.date-reveal-img {
  position: fixed; width: 220px; height: 148px;
  background: var(--blue-d); border: 1px solid rgba(0,85,255,0.25);
  border-radius: 2px; pointer-events: none; z-index: 9990;
  opacity: 0; transition: opacity .2s ease;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.date-reveal-img.visible { opacity: 1; }
.date-reveal-img .reveal-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); text-align: center; padding: 12px;
}

/* --- COUNTDOWN --- */
.countdown-wrap { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.countdown-unit { text-align: center; min-width: 64px; }
.countdown-number {
  font-family: 'Zilla Slab', Georgia, serif; font-weight: 700;
  font-size: clamp(48px, 8vw, 80px); letter-spacing: -0.02em;
  color: #fff; line-height: 1; display: block;
  transition: transform .12s ease;
}
.countdown-number.pulse { transform: scale(1.08); }
.countdown-sep {
  font-family: 'Zilla Slab', Georgia, serif; font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  color: rgba(255,255,255,0.12); align-self: flex-start; padding-top: 4px;
}
.countdown-ended {
  font-family: 'Zilla Slab', Georgia, serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff; text-align: center;
  letter-spacing: -0.02em;
}

/* --- SECTION HELPERS --- */
.section-eyebrow { display: inline-block; margin-bottom: 16px; }
.section-header { margin-bottom: 48px; }
.section-header h2 { color: #fff; }
.section-header p { margin-top: 16px; max-width: 560px; }
.section-dark { background: #060612; }
.blue-line { width: 48px; height: 2px; background: var(--blue); margin-bottom: 28px; }
.divider { height: 1px; background: rgba(255,255,255,0.06); }

/* --- TABLER ICONS --- */
.ti { display: inline-block; vertical-align: middle; margin-right: 8px; }

/* --- EVENT CARD --- */
.event-card {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.event-card:hover { border-color: rgba(0,85,255,0.35); box-shadow: 0 0 28px var(--glow); }
.event-card-image {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, #001A66, #0A0A0A);
  display: flex; align-items: center; justify-content: center;
}
.event-card-image img { width: 100%; height: 100%; object-fit: cover; }
.event-card-placeholder img { height: 60px; width: auto; opacity: 0.25; }
.event-card-body { padding: 24px; }
.event-card-name {
  font-family: 'Zilla Slab', Georgia, serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 30px); color: #fff;
  margin: 10px 0; letter-spacing: -0.01em; line-height: 1.1;
}
.event-card-date, .event-card-venue { margin-bottom: 4px; }
.event-card-age { color: var(--blue); margin-bottom: 20px; }
.event-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.event-card-actions .btn { flex: 1; min-width: 120px; padding: 12px 16px; font-size: 12px; }

/* --- TICKET OPTIONS --- */
.ticket-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
@media (max-width: 600px) { .ticket-options { grid-template-columns: 1fr; } }
.ticket-option {
  background: #0A0A0A; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.ticket-option h3 { font-size: clamp(18px, 2.5vw, 24px); color: #fff; font-weight: 700; }
.ticket-option p { font-size: 14px; color: rgba(255,255,255,0.5); flex-grow: 1; }
.ticket-option .btn { margin-top: 6px; width: 100%; justify-content: center; }

/* --- META ITEMS (event details) --- */
.event-meta { display: flex; gap: 32px; flex-wrap: wrap; margin: 20px 0 32px; }
.event-meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-value {
  font-family: 'Zilla Slab', Georgia, serif;
  font-size: 15px; color: #fff; font-weight: 500;
}
.meta-icon { color: rgba(255,255,255,0.45); }

/* --- HORIZONTAL PHOTO STRIP --- */
.photo-strip-section { position: relative; overflow: hidden; }
.photo-strip-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.photo-strip-track { display: flex; gap: 12px; padding: 0 24px; will-change: transform; flex-shrink: 0; }
.photo-strip-item { flex-shrink: 0; width: 300px; height: 380px; position: relative; overflow: hidden; border-radius: 2px; }
.photo-strip-img { width: 100%; height: 100%; background: linear-gradient(135deg,#001A66,#0A0A0A); }
.photo-strip-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); transition: background .3s ease; }
.photo-strip-item:hover .photo-strip-overlay { background: rgba(0,0,0,0.25); }
.photo-strip-label { position: absolute; bottom: 14px; left: 14px; }
@media (max-width: 768px) {
  .photo-strip-section { height: auto; }
  .photo-strip-sticky { position: static; height: auto; overflow: visible; }
  .photo-strip-track { display: grid; grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 8px; transform: none !important; }
  .photo-strip-item { width: 100%; height: 200px; }
}

/* --- EMAIL WAITLIST --- */
.waitlist-section { background: var(--card-bg); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.waitlist-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 80px; display: flex; align-items: center; gap: 16px; }
.waitlist-form-wrap { display: flex; gap: 0; flex: 1; max-width: 480px; }
.waitlist-input {
  flex: 1; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-family: 'Zilla Slab', Georgia, serif; font-size: 15px;
  padding: 10px 0; width: 280px;
  transition: border-color .2s ease; -webkit-appearance: none;
}
.waitlist-input:focus { outline: none; border-bottom-color: #fff; }
.waitlist-input::placeholder { color: rgba(255,255,255,0.25); }
.waitlist-btn {
  background: #fff; color: #000; border: none; border-radius: 0;
  font-family: 'Zilla Slab', Georgia, serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; padding: 10px 20px; margin-left: 12px;
  transition: background .2s ease;
}
.waitlist-btn:hover { background: rgba(255,255,255,0.88); }
.waitlist-success { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); display: none; }
@media (max-width: 600px) { .waitlist-inner { height: auto; padding: 20px 24px; flex-direction: column; align-items: flex-start; } .waitlist-form-wrap { width: 100%; max-width: 100%; } }

/* --- EMBED PLACEHOLDERS --- */
.embed-placeholder { background: var(--card-bg); border: 1px dashed rgba(255,255,255,0.1); border-radius: 4px; padding: 40px 24px; text-align: center; }
.embed-placeholder p { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); line-height: 2; }
.embed-placeholder a { color: var(--blue); }

/* --- VIBE GRID --- */
.vibe-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 36px; }
@media (max-width: 768px) { .vibe-grid { grid-template-columns: 1fr 1fr; } }
.vibe-item { aspect-ratio: 1; position: relative; overflow: hidden; border-radius: 2px; background: linear-gradient(135deg,#001A66,#060612); }
.vibe-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); transition: background .3s ease; }
.vibe-item:hover .vibe-item-overlay { background: rgba(0,0,0,0.2); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; margin-top: 36px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none;
  color: #fff; text-align: left;
  font-family: 'Zilla Slab', Georgia, serif; font-weight: 700;
  font-size: clamp(15px,2vw,19px); letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-question:hover { color: rgba(255,255,255,0.7); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; font-size: 14px; color: rgba(255,255,255,0.5); transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 200px; }

/* --- VENUE MAP --- */
.venue-map-wrap { border-radius: 2px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.venue-map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }
.venue-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
@media (max-width: 600px) { .venue-meta { grid-template-columns: 1fr; } }
.venue-meta-item .label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.venue-meta-item .value { font-size: 14px; color: rgba(255,255,255,0.7); }

/* --- 53 GROUP BRANDS --- */
.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
@media (max-width: 600px) { .brands-grid { grid-template-columns: 1fr; } }
.brand-card {
  background: #111; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 20px 20px 20px;
  transition: border-color .2s ease;
  position: relative;
}
.brand-card:hover { border-color: rgba(255,255,255,0.25); }
.brand-card-arrow { position: absolute; top: 20px; right: 20px; font-size: 14px; color: rgba(255,255,255,0.3); }
.brand-card h3 { font-family: 'Zilla Slab', Georgia, serif; font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px; letter-spacing: -0.01em; }
.brand-card p { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* --- FORMS --- */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group input, .form-group select, .form-group textarea {
  background: #0D0D1A; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px;
  color: #fff; font-family: 'Zilla Slab', Georgia, serif; font-size: 16px;
  padding: 14px 16px; width: 100%; transition: border-color .2s ease;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: rgba(255,255,255,0.3); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-group select option { background: #0D0D1A; color: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0; text-transform: none; margin-top: 14px; line-height: 1.6; }

/* --- GRIDS --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

/* --- PAGE HERO (inner pages) --- */
.page-hero { padding: 120px 0 64px; background: linear-gradient(180deg,#060612 0%,#0A0A0A 100%); position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; position: relative; z-index: 1; font-size: clamp(48px,7vw,96px); }

/* --- EVENT DETAIL HERO --- */
.event-detail-hero { min-height: 55vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; background: linear-gradient(135deg,#001A66 0%,#0A0A0A 65%); }
.event-detail-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(0,85,255,0.15) 0%, transparent 60%); }
.event-detail-hero-content { position: relative; z-index: 1; width: 100%; max-width: 1200px; margin: 0 auto; padding: 72px 24px 56px; }

/* --- FOUNDER --- */
.founder-block { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.founder-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  outline: none;
}
.founder-img-wrap::after { display: none; content: none; }
.founder-img-wrap::before { display: none; content: none; }
.founder-img-wrap img {
  width: 100%; height: auto; display: block;
  border: none !important; outline: none !important;
  box-shadow: none !important;
}
@media (max-width: 900px) { .founder-block { grid-template-columns: 1fr; gap: 32px; } .founder-img-wrap { max-width: 320px; } }
.founder-name { font-family: 'Zilla Slab', Georgia, serif; font-weight: 700; font-size: clamp(28px,4vw,48px); color: #fff; line-height: 1; margin-bottom: 6px; }
.founder-title { margin-bottom: 24px; display: block; }

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info-item { margin-bottom: 24px; }
.contact-info-item .value { font-size: 15px; color: rgba(255,255,255,0.7); font-family: 'Zilla Slab', Georgia, serif; }

/* --- FOOTER --- */
.footer { background: #060612; border-top: 1px solid rgba(255,255,255,0.05); padding: 64px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 60px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-col ul li a { font-family: 'Zilla Slab', Georgia, serif; font-size: 14px; color: rgba(255,255,255,0.45); transition: color .2s ease; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* --- AGE STRIP --- */
.age-strip { background: #060612; border-top: 1px solid rgba(255,255,255,0.05); padding: 12px 24px; text-align: center; }

/* --- WHATSAPP --- */
.wa-float {
  display: none;
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  background: #25D366; color: #fff; border-radius: 50px;
  padding: 12px 20px;
  align-items: center; gap: 8px;
  font-family: 'Zilla Slab', Georgia, serif; font-size: 13px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: background .2s ease, bottom .4s ease;
  opacity: 0; animation: waSlideUp .4s ease 1.5s forwards;
}
.wa-float:hover { background: #128C7E; }
.wa-float .wa-text { }
@keyframes waSlideUp { from { opacity:0; bottom:0; } to { opacity:1; bottom:24px; } }
@media (max-width: 640px) {
  .wa-float { display: flex; padding: 0; width: 52px; height: 52px; justify-content: center; border-radius: 50%; }
  .wa-float .wa-text { display: none; }
}
@media (min-width: 641px) {
  .wa-float { display: flex; }
}

/* --- UTILITIES --- */
.text-blue { color: var(--blue); }
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-md { margin-bottom: 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
