.home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  min-height: 100vh;
}

.home-hero {
  position: relative;
  overflow: hidden;
  height: 50vh;
  min-height: 640px;
  background: var(--bg);
}

.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 32px 40px;
  color: #fff;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-credit {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 6px 40px;
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

.home-content {
  background: var(--bg);
  border-top: 1px solid var(--rule-strong);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px;
}

.hero-cover {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 260px;
}

.hero-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-cover-link {
  display: block;
  cursor: pointer;
}

.hero-cover-link:hover img {
  transform: translateY(-3px);
  box-shadow: 0 50px 100px rgba(0,0,0,0.55), 0 12px 28px rgba(0,0,0,0.38);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  margin-right: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.hero-carousel-track {
  position: absolute;
  inset: 0;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.hero-carousel-dot {
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-carousel-dot.is-active {
  background: rgba(255,255,255,0.95);
}

.hero-cover-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-spine {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 6;
}

.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-bright);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #fff;
}
.hero-title em {
  font-style: normal;
  color: var(--ember-bright);
}
