:root {
  --lime: #C8F02B;
  --lime-dim: #9cbf1a;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --gray: #888;
  --light: #f0f0f0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(200, 240, 43, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hovered { transform: translate(-50%, -50%) scale(2.5); opacity: 0.5; }
.cursor-ring.hovered { width: 60px; height: 60px; border-color: var(--lime); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--light);
}
.logo span { color: var(--lime); }
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul li a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
nav ul li a:hover { color: var(--lime); }

/* HERO */
#hero {
  height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(200,240,43,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,240,43,0.04) 0%, transparent 65%),
    var(--dark);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,240,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,43,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}
.hero-label {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--light);
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title .accent { color: var(--lime); -webkit-text-stroke: 0; }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(200,240,43,0.4);
  color: transparent;
}
.hero-sub {
  position: relative;
  margin-top: 32px;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero-cta-row {
  position: relative;
  display: flex; gap: 20px; align-items: center;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.btn-lime {
  padding: 16px 40px;
  background: var(--lime);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 0.25s, transform 0.2s;
}
.btn-lime:hover { background: var(--lime-dim); transform: translateY(-2px); }
.btn-ghost {
  padding: 16px 40px;
  border: 1px solid rgba(200,240,43,0.3);
  color: var(--lime);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--lime); background: rgba(200,240,43,0.05); }

.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ABOUT */
#about {
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #aaa;
  margin-top: 28px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.stat-box {
  background: var(--dark3);
  padding: 32px 28px;
  border: 1px solid rgba(200,240,43,0.06);
  transition: border-color 0.3s, background 0.3s;
}
.stat-box:hover { border-color: rgba(200,240,43,0.25); background: rgba(200,240,43,0.03); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.about-visual {
  position: relative;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--dark3);
  border: 1px solid rgba(200,240,43,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--gray);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,240,43,0.05) 0%, transparent 60%);
}
.about-img-placeholder .img-icon { font-size: 2.5rem; opacity: 0.3; }
.about-img-placeholder span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.4; }
.lime-border-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--lime);
  opacity: 0.25;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 16px 28px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: 480px;
  text-align: center;
}
.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast--success {
  background: rgba(10, 10, 10, 0.95);
  border-color: rgba(200, 240, 43, 0.5);
  color: var(--lime);
}
.toast--error {
  background: rgba(10, 10, 10, 0.95);
  border-color: rgba(220, 60, 60, 0.5);
  color: #ff6b6b;
}

/* SERVICES */
#services {
  padding: 140px 60px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: 'EVENTS';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25vw;
  color: rgba(200,240,43,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark3);
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { border-color: rgba(200,240,43,0.12); }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(200,240,43,0.12);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(200,240,43,0.3); }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--light);
}
.service-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
}
.service-icon {
  position: absolute; top: 36px; right: 36px;
  font-size: 1.8rem;
  opacity: 0.25;
}

/* GALLERY */
#gallery {
  padding: 140px 60px;
}
.gallery-header { margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  aspect-ratio: 4/3;
  border: 1px solid rgba(200,240,43,0.06);
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: auto; }
.gallery-item .img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: rgba(200,240,43,0.2);
  font-size: 2rem;
  transition: transform 0.5s ease, background 0.3s;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}
.gallery-item .img-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,240,43,0.04), transparent 50%);
}
.gallery-item:hover .img-inner { transform: scale(1.04); background: rgba(200,240,43,0.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(0,0,0,0.6);
  padding: 6px 14px;
  border: 1px solid rgba(200,240,43,0.3);
}
.gallery-placeholder-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,240,43,0.2);
  margin-top: 8px;
}

/* CONTACT */
#contact {
  padding: 140px 60px;
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title { margin-bottom: 20px; }
.contact-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 48px;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 24px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px;
  border: 1px solid rgba(200,240,43,0.08);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(200,240,43,0.25); }
.contact-item-icon {
  font-size: 1.4rem;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 1rem;
  color: var(--light);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field {
  display: flex; flex-direction: column; gap: 8px;
}
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-field input, .form-field textarea, .form-field select {
  background: var(--dark3);
  border: 1px solid rgba(200,240,43,0.1);
  color: var(--light);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: rgba(200,240,43,0.4);
}
.form-field select option { background: var(--dark3); }
.form-field.full { grid-column: span 2; }
.btn-submit {
  padding: 18px 48px;
  background: var(--lime);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--lime-dim); transform: translateY(-2px); }

/* FOOTER */
footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(200,240,43,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--lime); }
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* DIVIDER LINE */
.divider {
  width: 60px; height: 2px;
  background: var(--lime);
  margin: 24px 0;
}

@media (max-width: 900px) {
  nav { padding: 24px 24px; }
  nav ul { display: none; }
  #hero { padding: 0 24px 60px; }
  #about, #contact { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .about-visual { display: none; }
  #services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  #gallery { padding: 80px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 24px; }
}
