/* Hero Section */
.hero {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1f1e 0%, #2d3633 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(74, 104, 91, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74, 104, 91, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: #d0d0d0;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.02em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero {
    min-height: 350px;
    padding: 60px 20px;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 280px;
    padding: 40px 16px;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}
