/* ═══ Split Hero ═══ */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

/* Left — brand + gradient */
.hero__left {
  position: relative;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-2xl);
}
.hero__left .grain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.hero__brand {
  position: relative;
  z-index: 1;
  max-width: 360px;
}
.hero__title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1.1;
}
.hero__subtitle {
  font-size: 15px;
  color: var(--text-on-dark-muted);
  margin-top: var(--space-sm);
  line-height: 1.5;
}

/* Subscribe form in hero */
.hero__subscribe {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.hero__subscribe-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 237, 227, 0.2);
  border-radius: var(--radius-md);
  background: rgba(245, 237, 227, 0.08);
  color: var(--text-on-dark);
  outline: none;
  min-width: 0;
}
.hero__subscribe-input:focus {
  border-color: rgba(245, 237, 227, 0.4);
  background: rgba(245, 237, 227, 0.12);
}
.hero__subscribe-input::placeholder {
  color: var(--text-on-dark-muted);
}
.hero__subscribe-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
  background: var(--text-on-dark);
  color: var(--espresso);
}
.hero__subscribe-btn:hover {
  background: #fff;
}

/* Right — latest post preview */
.hero__right {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: var(--space-3xl) var(--space-2xl);
}
.hero__latest {
  display: block;
  max-width: 420px;
}
.hero__latest-label {
  display: block;
  color: var(--coffee);
  margin-bottom: var(--space-md);
}
.hero__latest-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: var(--space-md);
  transition: color var(--duration-fast) ease;
}
.hero__latest:hover .hero__latest-title {
  color: var(--coffee);
}
.hero__latest-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.hero__latest-meta {
  color: var(--text-secondary);
}
