.hop-pb-wrap{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.hop-pb-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
  margin-bottom:8px;
}
.hop-pb-eyebrow{
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#C5A059;
}
.hop-pb-heading{
  font-family:'DM Sans',sans-serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(34px,5vw,48px);
  line-height:1.06;
  letter-spacing:-0.04em;
  color:#1A2621;
  margin:0;
  text-wrap:balance;
}
.hop-pb-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  width:100%;
}
@media(max-width:960px){.hop-pb-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.hop-pb-grid{grid-template-columns:1fr;}}
.hop-pb-card{
  position:relative;
  perspective:1500px;
  min-height:380px;
  cursor:pointer;
  outline:none;
  border-radius:20px;
}
.hop-pb-card:focus-visible{
  box-shadow:0 0 0 3px rgba(197,160,89,0.55);
}
.hop-pb-inner{
  position:relative;
  width:100%;
  height:100%;
  min-height:380px;
  transform-style:preserve-3d;
  transition:transform .85s cubic-bezier(0.2,0.8,0.2,1);
}
.hop-pb-card:hover .hop-pb-inner,
.hop-pb-card.is-flipped .hop-pb-inner,
.hop-pb-card:focus-visible .hop-pb-inner{
  transform:rotateY(180deg);
}
.hop-pb-front,
.hop-pb-back{
  position:absolute;
  inset:0;
  border-radius:20px;
  overflow:hidden;
  -webkit-backface-visibility:hidden;
          backface-visibility:hidden;
  border:1px solid rgba(197,160,89,0.14);
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
.hop-pb-img{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,#2d3e33 0%,#1a2a20 55%,#0a1f14 100%);
  background-size:cover;
  background-position:center;
  transition:transform 1.6s cubic-bezier(0.2,0.8,0.2,1);
}
.hop-pb-card:hover .hop-pb-img{transform:scale(1.04);}
.hop-pb-fallback{
  position:absolute;
  top:42%;
  left:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
  z-index:0;
}
.hop-pb-fallback .material-symbols-outlined{
  font-size:96px;
  color:rgba(197,160,89,0.32);
  font-variation-settings:'wght' 200, 'opsz' 48;
}
.hop-pb-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,
    rgba(10,31,20,0.0) 0%,
    rgba(10,31,20,0.15) 45%,
    rgba(10,31,20,0.78) 100%);
}
.hop-pb-front-meta{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:#FBF9F7;
}
.hop-pb-idx{
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.24em;
  color:#C5A059;
  line-height:1;
}
.hop-pb-title{
  font-family:'DM Sans',sans-serif;
  font-size:21px;
  font-style:italic;
  font-weight:400;
  color:#FBF9F7;
  margin:0;
  line-height:1.25;
  letter-spacing:-0.01em;
  text-wrap:balance;
}
.hop-pb-hint{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:6px;
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.78);
}
.hop-pb-hint svg{
  width:14px;
  height:14px;
  flex-shrink:0;
  color:#C5A059;
}
.hop-pb-back{
  background:#1A2621;
  transform:rotateY(180deg);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:14px;
}
.hop-pb-back::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 90% 0%,rgba(197,160,89,0.10),transparent 55%);
}
.hop-pb-back-eyebrow{
  position:relative;
  z-index:1;
  font-family:'DM Sans',sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:#C5A059;
}
.hop-pb-back-title{
  position:relative;
  z-index:1;
  font-family:'DM Sans',sans-serif;
  font-style:italic;
  font-weight:400;
  font-size:18px;
  color:#FBF9F7;
  margin:0 0 4px;
  line-height:1.3;
  text-wrap:balance;
}
.hop-pb-bullets{
  position:relative;
  z-index:1;
  list-style:none;
  padding:0;
  margin:0;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:0;
}
.hop-pb-bullets li{
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  line-height:1.55;
  color:rgba(251,249,247,0.78);
  padding:11px 0;
  border-top:1px solid rgba(255,255,255,0.06);
  transition:color .35s ease,transform .35s ease;
}
.hop-pb-bullets li:first-child{border-top:0;padding-top:6px;}
.hop-pb-bullets li:hover{color:#FBF9F7;transform:translateX(3px);}
@media(max-width:600px){
  .hop-pb-wrap{gap:20px;}
  .hop-pb-card{min-height:340px;}
  .hop-pb-inner{min-height:340px;}
  .hop-pb-back{padding:28px 22px;}
  .hop-pb-title{font-size:19px;}
}
@media(prefers-reduced-motion:reduce){
  .hop-pb-inner{transition:none;}
  .hop-pb-img{transition:none;}
}
