Back to CSS Hero Sections 3D Card Stack Pure CSS
Share
HTML
<section class="hs-cst" aria-label="Hero">
  <div class="hs-cst-copy">
    <span class="hs-cst-eye">— Cuvée 04</span>
    <h2>The fragrance <em>three editors couldn't stop wearing.</em></h2>
    <p>Bergamot, oud, and a single drop of Damascus rose. 50ml. Limited.</p>
    <a class="hs-cst-cta" href="#shop">Discover the bottle</a>
  </div>
  <div class="hs-cst-stack">
    <article class="hs-cst-card hs-cst-c1"><strong>04</strong><em>Cuvée</em></article>
    <article class="hs-cst-card hs-cst-c2"><strong>04</strong><em>Cuvée</em></article>
    <article class="hs-cst-card hs-cst-c3"><strong>04</strong><em>Cuvée</em></article>
  </div>
</section>
CSS
.hs-cst {
  display: grid; grid-template-columns: 1fr 1fr;
  width: 100%; min-height: 480px;
  padding: clamp(28px, 5vw, 56px);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  background: #0d0a0a;
  font-family: 'Inter', system-ui, sans-serif;
  color: #f0e0c8;
  box-sizing: border-box;
  perspective: 1200px;
}
.hs-cst-eye {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 16px;
  color: #c69e5a; margin-bottom: 14px;
}
.hs-cst h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.1;
  color: #f0e0c8;
}
.hs-cst h2 em { color: #f5c2c8; font-style: italic; }
.hs-cst p { margin: 0 0 24px; font-size: 15px; line-height: 1.6; color: #b89878; max-width: 380px; }
.hs-cst-cta {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  color: #c69e5a; text-decoration: none;
  border-bottom: 1.5px solid #c69e5a; padding-bottom: 3px;
  transition: color 0.18s, border-color 0.18s;
}
.hs-cst-cta:hover { color: #f5c2c8; border-color: #f5c2c8; }
.hs-cst-stack {
  position: relative; height: 100%; min-height: 360px;
  display: grid; place-items: center;
  transform-style: preserve-3d;
}
.hs-cst-card {
  position: absolute;
  width: 180px; height: 260px;
  background: linear-gradient(135deg, #2a1a1a 0%, #0d0a0a 100%);
  border: 1px solid #c69e5a;
  border-radius: 6px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.hs-cst-card strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px; font-weight: 800; font-style: italic;
  color: #c69e5a; line-height: 1;
}
.hs-cst-card em {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-style: normal; letter-spacing: 0.24em;
  color: #c69e5a;
}
.hs-cst-c1 { transform: translateX(-90px) rotateY(20deg) translateZ(-40px); }
.hs-cst-c2 { transform: translateZ(0); z-index: 2; background: linear-gradient(135deg, #3a2828 0%, #1a1010 100%); }
.hs-cst-c3 { transform: translateX(90px) rotateY(-20deg) translateZ(-40px); }
.hs-cst-stack:hover .hs-cst-c1 { transform: translateX(-130px) rotateY(20deg) translateZ(0); }
.hs-cst-stack:hover .hs-cst-c2 { transform: translateZ(40px); }
.hs-cst-stack:hover .hs-cst-c3 { transform: translateX(130px) rotateY(-20deg) translateZ(0); }
@media (max-width: 720px) {
  .hs-cst { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-cst-card { transition: none; }
  .hs-cst-cta { transition: none; }
}