/* Samed Pavilion V21 — restore compact room-page hero headings */
.rooms-page-hero .page-hero-copy{
  position:relative;
  z-index:2;
  animation:roomHeroCopyIn .72s cubic-bezier(.22,.75,.25,1) both;
}
.rooms-page-hero .page-hero-copy .eyebrow{
  color:#f2c66d;
  text-shadow:0 2px 14px rgba(0,0,0,.34);
}
.rooms-page-hero .page-hero-copy h1{
  max-width:850px;
  margin-bottom:.34em;
  font-size:clamp(2.15rem,3.55vw,3.8rem);
  line-height:1.16;
  text-wrap:balance;
  text-shadow:0 3px 22px rgba(0,0,0,.42);
}
.rooms-page-hero .page-hero-copy p{
  max-width:720px!important;
  margin-bottom:0;
  color:rgba(255,255,255,.94);
  text-shadow:0 2px 14px rgba(0,0,0,.45);
}
@keyframes roomHeroCopyIn{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
@media(max-width:640px){
  .rooms-page-hero .page-hero-copy h1{
    font-size:clamp(1.85rem,8.2vw,2.45rem);
  }
  .rooms-page-hero .page-hero-copy p{
    max-width:38ch!important;
    line-height:1.55!important;
  }
}
@media(prefers-reduced-motion:reduce){
  .rooms-page-hero .page-hero-copy{animation:none}
}
