/* Hero v13 — Dual Pane */

.hero-v13 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background-color: var(--background-color, #1c1917);
  background-image: var(--background-image, none), linear-gradient(135deg, #1c1917 40%, #292524 100%);
  background-size: cover, auto;
}

.hero-v13-grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

.hero-v13-main {
  text-align: left;
}

.hero-v13 .hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  margin: 0 0 1rem;
  background: linear-gradient(95deg, #fafaf9, var(--accent-color, #f59e0b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v13 .hero-subtitle {
  margin: 0 0 1.5rem;
  opacity: 0.9;
  max-width: 34rem;
}

.hero-v13 .hero-cta {
  justify-content: flex-start;
}

.hero-v13-aside {
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--accent-color, #f59e0b);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 12px 12px 0;
}

.hero-v13-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent-color, #f59e0b) 85%, #fff);
}

@media (max-width: 768px) {
  .hero-v13-grid {
    grid-template-columns: 1fr;
  }
  .hero-v13-main { text-align: center; }
  .hero-v13 .hero-cta { justify-content: center; }
  .hero-v13-aside { border-left: none; border-top: 3px solid var(--accent-color, #f59e0b); border-radius: 0 0 12px 12px; }
}
