:root {
  --pink: #ff0080;
  --pink-dark: #cc0066;
  --yellow: #ffe600;
  --yellow-dark: #ccb800;
  --bg: #0d0d0d;
  --text: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--pink);
  padding: 2rem 2rem 1.5rem;
  border-bottom: 6px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(0,0,0,0.07) 18px,
    rgba(0,0,0,0.07) 20px
  );
  pointer-events: none;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--yellow);
  text-shadow: 4px 4px 0 #000, 6px 6px 0 rgba(0,0,0,0.3);
  line-height: 1;
}

.site-title {
  color: inherit;
  text-decoration: none;
}

.site-title:focus-visible {
  outline: 3px solid #000;
  outline-offset: 0.25rem;
}

.subtitle {
  margin-top: 0.75rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 60em;
  line-height: 1.6;
}

.header-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.stat {
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  text-decoration: none;
}

.static-map-section {
  background: #050505;
  border-bottom: 6px solid var(--yellow);
  overflow: hidden;
}

.static-map-parallax {
  --map-parallax-travel: 120px;
  height: clamp(360px, 68vh, 760px);
  overflow: hidden;
  position: relative;
}

.static-map-parallax img {
  display: block;
  width: 100%;
  height: calc(100% + var(--map-parallax-travel));
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  will-change: transform;
}

.static-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  padding: 1.5rem;
}

.newsletter-panel {
  width: min(680px, 100%);
  color: #fff;
  text-align: center;
}

.newsletter-panel h2 {
  color: var(--yellow);
  font-weight: 900;
  line-height: 1;
  text-shadow: 4px 4px 0 var(--pink);
  text-transform: uppercase;
}

.newsletter-panel p {
  max-width: 44rem;
  margin: 1rem auto 1.3rem;
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 2px 2px 0 #000;
}

.newsletter-form {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-width: 0;
  background: #1a1a1a;
  border: 2px solid var(--pink);
  color: #fff;
  padding: 0.62rem 0.75rem;
  font-size: 0.95rem;
  outline: none;
  border-radius: 0;
  font-family: inherit;
}

.newsletter-form input:focus {
  border-color: var(--yellow);
}

.newsletter-form button {
  background: var(--pink);
  color: #000;
  border: 0;
  padding: 0.62rem 1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--yellow);
}

.newsletter-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.newsletter-status {
  margin-top: 0.75rem;
  text-align: left;
}

@media (max-width: 560px) {
  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .static-map-parallax img {
    height: 100%;
    transform: none;
    will-change: auto;
  }
}

footer {
  background: #111;
  border-top: 3px solid var(--pink);
  padding: 0.6rem 2rem;
  font-size: 0.75rem;
  color: #555;
  text-align: center;
}

/* Contact form */
.contact-section {
  background: #111;
  border-top: 6px solid var(--yellow);
  padding: 3rem 2rem;
}

.contact-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 3px 3px 0 #000;
  margin-bottom: 0.5rem;
}

.contact-section p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
}

.contact-form label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.3rem;
}

.field-hint {
  color: #aaa;
  display: block;
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 2px solid var(--pink);
  color: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  border-radius: 0;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

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

.contact-form .captcha-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-form .captcha-question {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact-form input[type="number"] {
  width: 80px;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  background: var(--pink);
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  background: var(--yellow);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  display: none;
}

.form-status.success {
  background: #0a3a0a;
  border: 2px solid #4caf50;
  color: #4caf50;
}

.form-status.error {
  background: #3a0a0a;
  border: 2px solid var(--pink);
  color: var(--pink);
}

/* Honeypot — visually hidden, not display:none so bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Info page */
.info-page main {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.info-page .panel {
  background: #1a1a1a;
  border: 2px solid var(--pink);
  box-shadow: 4px 4px 0 var(--pink-dark);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-page .panel h2 {
  color: var(--pink);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.info-page .panel p {
  color: #e9e9e9;
  line-height: 1.65;
  margin-bottom: 0.8rem;
  max-width: 80ch;
}

.info-page .chart p {
  color: #333;
}
.info-page .chart {
  background: #fff;
  padding: 0.5rem;
}

.info-page .chart img {
  display: block;
  width: 100%;
  height: auto;
}
