:root{
  --cream2:#edeae0; --paper:#fdfbf4; --border:#ddd4c0;
  --ink:#2a2018; --muted:#7a6d5c; --terra:#c07a45;
}
*{ box-sizing:border-box; margin:0; padding:0; }
body{ background:var(--cream2); font-family:'Jost',sans-serif; -webkit-font-smoothing:antialiased; }

.hero{ position:relative; max-width:1500px; margin:0 auto; padding:8px 6px 6px; }
.hero-viewport{ overflow:hidden; }
.hero-rail{ display:flex; gap:18px; will-change:transform; align-items:flex-start; }

/* Active world shows full; the next peeks ~16% on the right. */
.hero-slide{ flex:0 0 84%; position:relative; }
.hero-slide iframe{ width:100%; border:0; display:block; }
/* Only the active world is interactive; a peeking world is click-to-focus. */
.hero-slide iframe{ pointer-events:none; }
.hero-slide.is-active iframe{ pointer-events:auto; }
.hero-slide:not(.is-active){ cursor:pointer; }
.hero-slide:not(.is-active)::after{ content:""; position:absolute; inset:0; border-radius:14px; background:rgba(237,234,224,0.34); transition:background .3s ease; }
.hero-slide:not(.is-active):hover::after{ background:rgba(237,234,224,0.12); }

.hero-ph{ width:100%; min-height:460px; display:flex; align-items:center; justify-content:center; border-radius:14px; background:#f7f4ea; border:1px solid var(--border); color:var(--muted); font-family:'Cormorant Garamond',serif; font-style:italic; font-size:19px; }

.hero-arrow{ position:absolute; top:40%; transform:translateY(-50%); width:58px; height:58px; border-radius:50%; background:var(--paper); border:2px solid var(--terra); color:var(--terra); font-size:30px; line-height:1; cursor:pointer; box-shadow:0 10px 26px rgba(40,30,20,.24); z-index:6; display:flex; align-items:center; justify-content:center; transition:background .2s ease, color .2s ease; }
.hero-arrow.prev{ left:28px; }
.hero-arrow.next{ right:28px; }
.hero-arrow:disabled{ opacity:0; pointer-events:none; }
.hero-arrow:hover{ background:var(--terra); color:#fdf9ee; }

.hero-dots{ display:flex; gap:8px; justify-content:center; padding-top:14px; }
.hero-dot{ width:9px; height:9px; border-radius:50%; background:var(--border); border:none; cursor:pointer; padding:0; transition:background .2s ease, transform .2s ease; }
.hero-dot.on{ background:var(--terra); transform:scale(1.15); }

@media (prefers-reduced-motion: no-preference){
  .hero-rail{ transition:transform .42s cubic-bezier(.22,.7,.28,1); }
}
@media (max-width:640px){
  .hero-slide{ flex:0 0 88%; }
  .hero-arrow{ width:48px; height:48px; font-size:25px; }
  .hero-arrow.prev{ left:12px; } .hero-arrow.next{ right:12px; }
}
