/* DJ Pristean — pitch mock */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --text: #f5f5f5;
  --muted: #8a8a8a;
  --accent: #d4a14a;
  --accent-hot: #ff3d77;
  --border: #262626;
  --max: 1240px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max); margin: 0 auto;
}
.brand {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 28px; letter-spacing: 0.08em;
  color: var(--text);
}
.brand .dot { color: var(--accent); }
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #0a0a0a;
  padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: transform .15s;
}
.nav-cta:hover { transform: translateY(-1px); }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden;
  font-size: 12px;
}
.lang-toggle span { padding: 6px 11px; color: var(--muted); cursor: pointer; }
.lang-toggle span.on { background: var(--text); color: #0a0a0a; }
.menu-btn { background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; display: inline-flex; align-items: center; }

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,161,74,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,61,119,0.14), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-kicker {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.88; letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .pink { color: var(--accent-hot); }
.hero-sub {
  font-size: clamp(18px, 2.5vw, 26px);
  max-width: 640px; color: #cfcfcf; margin-bottom: 32px;
  font-weight: 300;
}
.hero-sub b { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: transform .15s, background .15s;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { transform: translateY(-1px); background: #e8b35a; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--text); }

/* === TONIGHT STRIP === */
.tonight {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.tonight-inner {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  font-size: 14px;
}
.tonight-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.08em; color: var(--accent);
}
.tonight-item { color: #cfcfcf; }
.tonight-item b { color: var(--text); }
.tonight-item .day {
  display: inline-block; background: var(--surface-2);
  padding: 3px 9px; border-radius: 4px; margin-right: 8px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}

/* === SECTIONS === */
section { padding: 80px 0; }
.section-kicker {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95; margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.section-lede {
  font-size: 18px; max-width: 680px; color: #cfcfcf;
  margin-bottom: 48px; font-weight: 300;
}

/* === PILLARS === */
.pillars { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-3px); }
.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--accent); line-height: 1;
  margin-bottom: 16px;
}
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: 15px; }

/* === QUOTE === */
.quote-block {
  background: linear-gradient(135deg, rgba(212,161,74,0.08), rgba(255,61,119,0.06));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 40px; text-align: center;
  margin: 0 auto; max-width: 900px;
}
.quote-block .mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; color: var(--accent); line-height: 0.5;
  margin-bottom: 12px;
}
.quote-block p {
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.25; font-weight: 300; color: var(--text);
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
.quote-cite { font-size: 13px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; }

/* === VENUES === */
.venues { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .venues { grid-template-columns: repeat(3, 1fr); } }
.venue {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.venue:hover { transform: translateY(-4px); border-color: var(--accent); }
.venue-img {
  height: 180px;
  background-size: cover; background-position: center;
  position: relative;
}
.venue-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85));
}
.venue-img .placeholder-tag {
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.6); color: var(--muted);
  padding: 4px 8px; border-radius: 4px; z-index: 1;
}
.venue-body { padding: 24px; }
.venue-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 6px;
}
.venue h3 { font-size: 22px; margin-bottom: 8px; }
.venue-meta { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.venue-meta b { color: #cfcfcf; }
.venue-link {
  font-size: 13px; color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* === GALLERY === */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  border-radius: 8px; position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background .2s;
}
.gallery-item:hover::after { background: rgba(0,0,0,0); }
.gallery-item .placeholder-tag {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.7); color: var(--muted);
  padding: 3px 7px; border-radius: 4px; z-index: 1;
}

/* === BIG CTA === */
.cta-band {
  background: linear-gradient(135deg, #1c1c1c, #141414);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 24px;
}
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 88px); line-height: 0.95;
  margin-bottom: 16px;
}
.cta-band h2 .gold { color: var(--accent); }
.cta-band p { color: #cfcfcf; font-size: 18px; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* === ABOUT === */
.about-grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 820px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 16px;
  position: relative;
}
.about-img .placeholder-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.7); color: var(--muted);
  padding: 4px 9px; border-radius: 4px;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px); line-height: 1; margin-bottom: 20px;
}
.about-text p { color: #cfcfcf; font-size: 16px; margin-bottom: 16px; }
.about-text p.muted { color: var(--muted); font-style: italic; font-size: 14px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 16px; text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--accent); line-height: 1;
}
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

/* === PRIVATE EVENT TYPES === */
.event-types { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .event-types { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .event-types { grid-template-columns: repeat(4, 1fr); } }
.event-type {
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.event-type:hover { border-color: var(--accent); transform: translateY(-3px); }
.event-type .ico {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--accent); margin-bottom: 8px;
}
.event-type h4 { font-size: 16px; margin-bottom: 6px; }
.event-type p { font-size: 13px; color: var(--muted); }

/* === INCLUDED === */
.included {
  background: var(--surface);
  border-radius: 16px; padding: 48px 40px;
  border: 1px solid var(--border);
}
.included h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; margin-bottom: 24px; letter-spacing: 0.02em;
}
.included ul { list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 720px) { .included ul { grid-template-columns: repeat(2, 1fr); } }
.included li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: #cfcfcf;
}
.included li::before {
  content: '✓'; color: var(--accent); font-weight: bold;
  flex-shrink: 0;
}

/* === PROCESS === */
.process { display: grid; gap: 24px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 720px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step { counter-increment: step; padding: 24px 0; }
.step::before {
  content: '0' counter(step);
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; color: var(--accent); line-height: 1; margin-bottom: 12px;
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* === FORM === */
.form-wrap {
  display: grid; gap: 48px; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1fr 1.2fr; } }
.form-side h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px); line-height: 0.95; margin-bottom: 16px;
}
.form-side p { color: #cfcfcf; margin-bottom: 24px; font-size: 16px; }
.form-side .alt-contact {
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 32px;
}
.form-side .alt-contact b { color: var(--text); }
.form-side .alt-contact p { font-size: 14px; color: var(--muted); margin-bottom: 8px; }

.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.lang-pick { display: flex; gap: 8px; }
.lang-pick label {
  flex: 1; cursor: pointer; padding: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; text-align: center;
  font-size: 13px; color: #cfcfcf; letter-spacing: normal; text-transform: none;
  margin: 0; transition: all .2s;
}
.lang-pick input { display: none; }
.lang-pick input:checked + label, .lang-pick label.on {
  background: var(--accent); color: #0a0a0a; border-color: var(--accent);
}
.submit-btn {
  width: 100%; padding: 16px;
  background: var(--accent); color: #0a0a0a;
  border: none; border-radius: 999px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background .2s;
  letter-spacing: 0.04em;
}
.submit-btn:hover { background: #e8b35a; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; gap: 40px; grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a { color: var(--muted); font-size: 14px; transition: color .15s; }
.footer li a:hover { color: var(--text); }
.footer-base {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--muted);
}
.footer-base a { color: var(--muted); }

/* === MOCK BANNER === */
.mock-banner {
  background: linear-gradient(90deg, var(--accent-hot), var(--accent));
  color: #0a0a0a;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === MOBILE FIXED BOOK BUTTON === */
.mobile-book {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: var(--accent); color: #0a0a0a;
  text-align: center; padding: 14px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 30px rgba(212,161,74,0.4);
}
@media (min-width: 720px) { .mobile-book { display: none; } }

/* utility */
.center { text-align: center; }
.muted { color: var(--muted); }
