* {
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --panel: #050505;
  --text: #fff;
  --muted: #a6a6a6;
  --lime: #8eff00;
  --lime-dark: #4c8d00;
  --border: rgba(142, 255, 0, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(142, 255, 0, 0.10), transparent 35%),
    linear-gradient(180deg, #000 0%, #050505 100%);
}

.hero {
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.contact,
.camp {
  background: #000;
  padding: clamp(56px, 7vw, 96px) 20px;
}

.contact__inner,
.camp__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.accent {
  width: 110px;
  height: 5px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  border-radius: 999px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 42px auto 0;
  max-width: 860px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-items: center;
  text-align: left;
  padding: 26px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    #050505;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 255, 0, 0.55);
  background:
    linear-gradient(145deg, rgba(142,255,0,0.08), rgba(255,255,255,0.02)),
    #050505;
}

.contact-card__icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--lime);
  border: 2px solid var(--lime);
  border-radius: 999px;
  font-size: 27px;
}

.contact-card__label {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card strong {
  font-size: clamp(20px, 2.3vw, 30px);
  word-break: break-word;
}

.camp {
  padding-top: 36px;
}

.camp__lead {
  margin: 16px 0 24px;
  color: #d6d6d6;
  font-size: clamp(18px, 2.4vw, 24px);
}

.camp__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding: 15px 24px;
  color: #071000;
  background: var(--lime);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(142,255,0,0.18);
}

.poster {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
}

.poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 760px) {
  .contact__cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-card__icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .contact,
  .camp {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .contact-card__icon {
    grid-row: auto;
  }
}
