/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0D0D0D;
  color: #E8E0D8;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --plum: #5B2C6F;
  --plum-deep: #3D1F4D;
  --plum-light: #7D3C99;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dark: #D97706;
  --neutral-900: #0D0D0D;
  --neutral-800: #1A1A1A;
  --neutral-700: #2A2A2A;
  --neutral-600: #3A3A3A;
  --neutral-500: #6B6B6B;
  --neutral-400: #9A9A9A;
  --neutral-300: #B8B0A8;
  --neutral-200: #D4CFC8;
  --neutral-100: #E8E0D8;
  --white: #FDF8F0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; line-height: 1.1; }
.section-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-400);
  max-width: 560px;
}
.center { text-align: center; }
.accent-gradient {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--amber); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--neutral-900);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--neutral-900);
  font-weight: 400;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-300);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(91, 44, 111, 0.7) 50%,
    rgba(13, 13, 13, 0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline .accent-gradient {
  font-size: clamp(2.8rem, 7vw, 5rem);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--neutral-300);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--neutral-500);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--neutral-800);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--neutral-800);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(91, 44, 111, 0.4);
  z-index: 2;
}
.about-accent-box .accent-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
}
.about-accent-box .accent-label {
  font-size: 0.85rem;
  color: var(--neutral-300);
  margin-top: 4px;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  color: var(--neutral-400);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--neutral-300);
  font-size: 0.95rem;
}
.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: var(--neutral-900);
}
.section-header { margin-bottom: 60px; }
.section-header.center { display: flex; flex-direction: column; align-items: center; }
.menu-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-400);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.menu-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.menu-tab.active {
  background: var(--amber);
  color: var(--neutral-900);
  border-color: var(--amber);
  font-weight: 600;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.menu-item {
  background: var(--neutral-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.menu-item-img {
  height: 200px;
  overflow: hidden;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-body { padding: 20px; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.menu-item-desc {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.menu-item-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(91, 44, 111, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--plum-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.menu-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius);
  color: var(--neutral-400);
  font-size: 0.9rem;
}
.menu-note svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--neutral-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.exp-card:hover {
  border-color: rgba(91, 44, 111, 0.4);
  box-shadow: 0 16px 48px rgba(91, 44, 111, 0.15);
}
.exp-card-img {
  height: 240px;
  overflow: hidden;
}
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-body {
  padding: 28px;
  position: relative;
}
.exp-card-num {
  position: absolute;
  top: -20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245, 158, 11, 0.1);
  line-height: 1;
}
.exp-card-body h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.exp-card-body p {
  color: var(--neutral-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== EVENTS ===== */
.events {
  padding: 120px 0;
  background: var(--neutral-900);
}
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.events-content p {
  color: var(--neutral-400);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.events-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.events-list-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.events-list-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}
.events-list span {
  color: var(--neutral-300);
  font-size: 0.95rem;
  padding-top: 12px;
  line-height: 1.6;
}
.events-visual { position: relative; height: 600px; }
.events-img-stack { position: relative; height: 100%; }
.events-img-primary {
  width: 80%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.events-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 4px solid var(--neutral-900);
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--neutral-800) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  color: var(--neutral-300);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.cta-sub a { color: var(--amber); }
.cta-sub a:hover { text-decoration: underline; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0 0;
  background: var(--neutral-900);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.contact-desc {
  color: var(--neutral-400);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--neutral-800);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-item span, .contact-item a {
  color: var(--neutral-400);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-item a:hover { color: var(--amber); }
.contact-form-wrap {
  background: var(--neutral-800);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-form h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-sub {
  color: var(--neutral-500);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--neutral-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--neutral-600); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-group select option { background: var(--neutral-800); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  color: #22C55E;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.map-wrap {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.map-wrap iframe {
  width: 100%;
  height: 350px;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter var(--transition);
}
.map-wrap:hover iframe { filter: grayscale(0.3) brightness(0.8) contrast(1.05); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--neutral-800);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: var(--neutral-500);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-brand a:hover { color: var(--amber); }
.footer-links strong, .footer-hours strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer-links ul, .footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--neutral-500);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber); }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--neutral-500);
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: var(--neutral-600);
  font-size: 0.82rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--plum);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(91, 44, 111, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--amber);
  color: var(--neutral-900);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .events-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images { height: 400px; }
  .events-visual { height: 400px; }
  .experience-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 12px 16px; width: 100%; }
  .main-nav .btn-amber { text-align: center; margin-top: 8px; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 20px; }
  .stat-divider { height: 28px; }
  .about-images { height: 350px; }
  .about-accent-box { right: 10px; }
  .menu-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .events-visual { height: 300px; }
  .events-img-primary { width: 100%; height: 100%; }
  .events-img-secondary { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-headline .accent-gradient { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
