:root {
  --bg: #0a0a0f;
  --bg-2: #12121a;
  --text: #e6e6f0;
  --muted: #b6b6c9;
  --brand: #ff2a6d;
  --brand-2: #00e5ff;
  --card: #181824;
  --border: #26263a;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  background: var(--bg);
}
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(10,10,15,0.6);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-wordmark {
  height: 56px;
  display: inline-block;
  object-fit: contain;
}
.brand-logo.has-wordmark .logo {
  display: none;
}
.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08), 0 6px 16px rgba(0,0,0,0.35);
}
.logo {
  font-family: "Audiowide", monospace;
  font-size: 22px;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}
.nav a:hover {
  background: rgba(255,255,255,0.06);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(10,10,15,0.35), rgba(10,10,15,0.65)),
    url("https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=1920&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.hero-overlay {
  padding: 24px;
}
.hero-logo {
  width: clamp(72px, 14vw, 140px);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06), 0 12px 28px rgba(0,0,0,0.45);
  margin: 6px auto 14px;
  display: inline-block;
}
.profile-img {
  width: clamp(120px, 22vw, 240px);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06), 0 14px 32px rgba(0,0,0,0.5);
  margin: 8px auto 16px;
  display: block;
}
.hero h1 {
  font-size: clamp(28px, 6vw, 64px);
  margin: 8px 0 10px;
}
.hero p {
  font-size: clamp(16px, 2.8vw, 22px);
  color: var(--muted);
}
.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta {
  display: inline-block;
  color: #0b0b0f;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.map-section {
  padding: 34px 0 10px;
}
.map-section h2 {
  font-size: 26px;
  margin: 0;
}
.map-subtitle {
  color: var(--muted);
  margin-top: 6px;
}
#map {
  width: 100%;
  height: 56vh;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.leaflet-container {
  touch-action: pan-x pan-y;
}
.map-legend {
  display: flex;
  gap: 10px;
  padding: 14px 0 24px;
}
.chip {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}
.chip:hover { background: rgba(255,255,255,0.10); }

.about {
  padding: 50px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 24px 0;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card .read-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: none;
}
.card .read-more:hover {
  color: var(--text);
}

.partner-logo {
  width: 140px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  display: block;
  margin: 4px 0 10px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(10,10,15,0.7);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
  gap: 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.site-footer .logo-wordmark {
  height: 42px;
  object-fit: contain;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0;
}
.footer-links a:hover { color: var(--text); }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(10,10,15,0.92);
  border-top: 1px solid var(--border);
  padding: 14px 18px;
}
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-text {
  color: var(--muted);
  flex: 1;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary {
  color: #0b0b0f;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.btn-muted {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
}

@media (max-width: 680px) {
  .hero { background-attachment: scroll; }
  #map { height: 50vh; }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    padding: 8px 0;
    gap: 6px;
  }
  .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 2px;
    justify-content: center;
    text-align: center;
  }
  .nav a {
    margin-left: 0;
    padding: 8px 10px;
    font-size: 18px;
  }
  .logo-wordmark {
    height: 18px;
  }
}
