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

:root {
  --primary:      #ffffff;
  --primary-dim:  rgba(255,255,255,0.08);
  --bg:           #050505;
  --bg-card:      #0d0d0d;
  --bg-card2:     #111111;
  --text:         #f0f0f0;
  --text-muted:   #888888;
  --border:       rgba(255,255,255,0.1);
  --border-hover: rgba(255,255,255,0.35);
  --glow:         rgba(255,255,255,0.05);
  --font-display: 'Bebas Neue', 'Anton', system-ui, sans-serif;
  --font:         'Barlow', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #fff; border-radius: 3px; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img.logo-img {
  height: 44px;
  width: auto;
  filter: invert(1);
  display: block;
}

/* Fallback when no logo image yet */
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}

.nav-logo .logo-text span {
  display: block;
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  line-height: 1;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--glow);
}

.nav-cta {
  background: #fff !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
}

.nav-cta:hover {
  background: #ddd !important;
  color: #000 !important;
}

/* ===== DROPDOWN ===== */
.has-dropdown { position: relative; }

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem !important;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
}

/* Subtle scan-line texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #ddd;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat .number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-svg-wrap svg {
  width: 100%;
  height: auto;
}

/* Large speaker decorative motif */
.speaker-motif {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.04;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card:nth-child(2) { animation-delay: -1.3s; }
.floating-card:nth-child(3) { animation-delay: -2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.floating-card .icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.section-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
#leistungen {
  padding: 7rem 2rem;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: 2.25rem;
  transition: all 0.25s;
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: #fff;
  transition: height 0.3s;
}

.service-card:hover {
  background: #111;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: grayscale(1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #fff;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
#warum-wir {
  padding: 7rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-visual { position: relative; }

.why-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  overflow: hidden;
  position: relative;
}

.why-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img-placeholder svg { opacity: 0.2; margin-bottom: 1rem; }

.why-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #fff;
  color: #000;
  font-weight: 900;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.why-badge .big {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 2px;
}

.why-badge .small {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.why-list { display: flex; flex-direction: column; gap: 1.75rem; }

.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.why-item-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  filter: grayscale(1);
}

.why-item-text h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #fff;
}

.why-item-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== GALLERY ===== */
#galerie {
  padding: 7rem 2rem;
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
}

.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-filter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 1.25rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: 4px;
  overflow: hidden;
}

.preview-item {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.4s, filter 0.3s;
}

.preview-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.preview-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-item:hover .overlay { opacity: 1; }

.preview-item .overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.preview-more .overlay-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: background 0.3s;
}

.preview-more:hover .overlay-more { background: rgba(0,0,0,0.8); }

.more-count {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
}

.more-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 640px) {
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 2px;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lightbox-counter {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-nav:hover { background: #fff; color: #000; }
.lightbox-nav.prev { left: -4rem; }
.lightbox-nav.next { right: -4rem; }

.lightbox-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lightbox-thumb {
  width: 52px;
  height: 40px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  opacity: 0.5;
}

.lightbox-thumb.active,
.lightbox-thumb:hover { border-color: #fff; opacity: 1; }

.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CONTACT ===== */
#kontakt {
  padding: 7rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  filter: grayscale(1);
}

.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 0.3rem;
  font-family: var(--font);
}

.contact-item-text a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-item-text a:hover { color: #fff; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: #fff;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #fff;
}

.form-group select option { background: var(--bg); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.875rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
}

.submit-btn:hover {
  background: #ddd;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand .logo-text span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--text-muted);
  margin-top: -4px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(5,5,5,0.99);
    padding: 1rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .number { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .lightbox-nav.prev { left: 0; }
  .lightbox-nav.next { right: 0; }
  .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    transition: max-height 0.3s, opacity 0.3s;
  }
  .has-dropdown.open .dropdown-menu {
    opacity: 1;
    max-height: 200px;
    pointer-events: all;
  }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
