/* Premium Editorial Hero Section */
.hero-editorial {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-editorial-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 50vh;
  padding: 30px 0;
}

/* Content Side */
.hero-editorial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 40px;
}

.hero-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #151515;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.hero-editorial-badge svg {
  width: 14px;
  height: 14px;
  color: #d4a574;
}

.hero-editorial-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  color: #151515;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-editorial-title .highlight {
  font-style: italic;
  color: #d4a574;
  position: relative;
  display: inline-block;
}

.hero-editorial-description {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  max-width: 520px;
  margin: 0;
}

.hero-editorial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 600;
  color: #151515;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-editorial-actions {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.hero-btn-primary {
  background: #151515;
  color: #ffffff;
}

.hero-btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
  background: transparent;
  color: #151515;
  border: 1.5px solid #151515;
}

.hero-btn-secondary:hover {
  background: #151515;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

/* Visual Side */
.hero-editorial-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-visual-composition {
  position: relative;
  width: 100%;
  height: 600px;
}

.hero-visual-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual-main:hover img {
  transform: scale(1.05);
}

.hero-visual-accent {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.hero-visual-accent:hover {
  transform: scale(1.05);
}

.hero-visual-accent-1 {
  top: 0;
  right: 0;
  width: 200px;
  height: 240px;
  z-index: 2;
}

.hero-visual-accent-2 {
  bottom: 0;
  left: 0;
  width: 180px;
  height: 220px;
  z-index: 2;
}

.hero-visual-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Badge */
.hero-floating-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 4;
  backdrop-filter: blur(10px);
}

.hero-floating-badge-title {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}

.hero-floating-badge-value {
  font-size: 28px;
  font-weight: 600;
  color: #151515;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-floating-badge-stars {
  display: flex;
  gap: 4px;
  color: #d4a574;
}

/* Background Decorations */
.hero-editorial::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-editorial::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-editorial-grid {
    gap: 60px;
    padding: 60px 0;
  }

  .hero-editorial-content {
    padding-right: 20px;
  }

  .hero-visual-main {
    width: 360px;
    height: 450px;
  }

  .hero-visual-accent-1 {
    width: 160px;
    height: 200px;
  }

  .hero-visual-accent-2 {
    width: 140px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-editorial {
    min-height: auto;
  }

  .hero-editorial-container {
    padding: 0 24px;
  }

  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding: 48px 0;
  }

  .hero-editorial-content {
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .hero-editorial-badge {
    margin: 0 auto;
  }

  .hero-editorial-description {
    max-width: 100%;
  }

  .hero-editorial-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .hero-editorial-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual-composition {
    height: 500px;
  }

  .hero-visual-main {
    width: 280px;
    height: 380px;
  }

  .hero-visual-accent-1 {
    width: 120px;
    height: 160px;
    top: 20px;
    right: 20px;
  }

  .hero-visual-accent-2 {
    width: 100px;
    height: 140px;
    bottom: 20px;
    left: 20px;
  }

  .hero-floating-badge {
    bottom: 20px;
    right: 20px;
    padding: 16px 20px;
  }

  .hero-floating-badge-value {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-editorial-title {
    font-size: 36px;
  }

  .hero-editorial-description {
    font-size: 16px;
  }

  .hero-editorial-stats {
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .hero-stat-label {
    font-size: 11px;
  }

  .hero-visual-composition {
    height: 400px;
  }

  .hero-visual-main {
    width: 240px;
    height: 320px;
  }

  .hero-visual-accent-1,
  .hero-visual-accent-2 {
    display: none;
  }

  .hero-floating-badge {
    display: none;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-editorial-badge,
.hero-editorial-title,
.hero-editorial-description,
.hero-editorial-stats,
.hero-editorial-actions {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-editorial-title {
  animation-delay: 0.1s;
}

.hero-editorial-description {
  animation-delay: 0.2s;
}

.hero-editorial-stats {
  animation-delay: 0.3s;
}

.hero-editorial-actions {
  animation-delay: 0.4s;
}
