:root {
  --accent: #ffffff;
  --primary: #780000;
  --gradient-main: linear-gradient(180deg, #4c0000 0%, #560000 40%, #600000 75%, #6a0000 100%);
}

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

.nemesis-ma {
  min-height: 100vh;
}

/* Hero Section */
.ne-hero {
  position: relative;
  min-height: 400px;
  padding: clamp(80px, 10vw, 150px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  background: var(--gradient-main);
}

.ne-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  z-index: 1;
}

.ne-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

.ne-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ne-hero__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

/* Container */
.ne-container {
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Content Section */
.ne-section {
  padding: 80px 0;
}

.ne-content {
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}

.ne-content__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.ne-content__image {
  position: relative;
}

.ne-content__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ne-content__text {
  padding: 40px 0;
}

.ne-content__text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 20px;
}

.ne-content__text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .ne-hero {
    height: 300px;
  }

  .ne-hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .ne-content__wrapper {
    gap: 30px;
  }

  .ne-section {
    padding: 60px 0;
  }

  .ne-content__text {
    padding: 20px 0;
  }
}

@media (max-width: 640px) {
  .ne-hero {
    height: 250px;
  }

  .ne-hero__title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .ne-section {
    padding: 40px 0;
  }

  .ne-content__text {
    padding: 15px 0;
  }

  .ne-content__text p {
    font-size: 0.95rem;
  }
}
