:root {
  --black: #050505;
  --soft-black: #101014;
  --pink: #ff1493;
  --hot-pink: #ff2fb3;
  --purple-pink: #b400ff;
  --white: #fff7fb;
  --muted: #cfc6cc;
  --border: rgba(255, 20, 147, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top right, rgba(255, 20, 147, 0.18), transparent 30%), var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 7%;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 20, 147, 0.65);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.nav a:hover {
  color: var(--hot-pink);
}

.menu-button {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 8px;
  padding: 6px 10px;
}

.section {
  padding: 90px 7%;
}

.hero {
  min-height: 86vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full-width {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.epm-title {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.message {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  border: 1px solid var(--pink);
  font-weight: 800;
  cursor: pointer;
}

.primary {
  background: linear-gradient(135deg, var(--pink), var(--purple-pink));
  color: white;
  box-shadow: 0 0 22px rgba(255, 20, 147, 0.4);
}

.secondary {
  color: var(--white);
  background: transparent;
}

.eyebrow {
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

strong {
  color: var(--hot-pink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.07), transparent);
}

.image-frame {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(16, 16, 20, 0.72);
  box-shadow: 0 0 35px rgba(255, 20, 147, 0.12);
}

.image-frame img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.section-intro {
  max-width: 760px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.card {
  border-radius: 20px;
  padding: 26px;
  min-height: 190px;
  border: 1px solid var(--border);
  background: rgba(16, 16, 20, 0.72);
  box-shadow: 0 0 35px rgba(255, 20, 147, 0.12);
}

.card h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
  box-shadow: 0 0 35px rgba(255, 20, 147, 0.22);
}

.accent-section {
  background: rgba(255, 20, 147, 0.05);
}

.avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple-pink));
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(16, 16, 20, 0.72);
  box-shadow: 0 0 35px rgba(255, 20, 147, 0.12);
}

label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #09090d;
  color: var(--white);
  padding: 14px;
  border-radius: 12px;
  font: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--pink);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

footer {
  padding: 30px 7%;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 7%;
    right: 7%;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #09090d;
  }

  .nav.show {
    display: flex;
  }

  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 6%;
  }

  .epm-title {
    font-size: 2.5rem;
  }
}
