*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
:root{
 --dark:#5c3d1e; 
  --teal:#8b6914;  
  --teal-lt:#b8900a;
 --sage-lt:#d4b878;
  --beige:#f0e0b8; ;
  --beige-dk:#ddc898; 
  --gold:#c8961e;  
 --gold-lt:#d4aa4a; 
  --cream:#fdf6e8; 
--text:#3a2a0e;
  --wa:#25D366;
}
body{font-family:'Jost',sans-serif;font-weight:300;color:var(--text);background:var(--cream);overflow-x:hidden}

/* NAV */
nav{
  position:fixed;top:0;left:0;right:0;z-index:9999;height:68px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 1.5rem;
  background:rgba(253,250,244,.97);
  box-shadow:0 1px 0 rgba(0,0,0,.08);
}

.nav-logo{text-decoration:none}
.nav-right{display:flex;align-items:center;gap:.5rem}
.nav-icon{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:transform .2s}
.nav-icon:hover{transform:scale(1.1)}
.nav-icon.tel{background:var(--dark);color:#fff}
.nav-icon.wa{background:var(--wa);color:#fff}
.nav-icon svg{width:16px;height:16px}
.lang{display:flex;gap:.2rem}
.lang button{background:none;border:1.5px solid #1e4f4f4d;color:var(--dark);font-family:'Jost',sans-serif;font-size:.62rem;letter-spacing:.1em;padding:.18rem .42rem;cursor:pointer;border-radius:2px;transition:all .2s}
.lang button.on{background:var(--dark);color:#fff;border-color:var(--dark)}


/* HAMBURGER */
.burger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.burger span{display:block;width:22px;height:2px;background:var(--dark);border-radius:2px;transition:all .3s}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* OVERLAY */
.overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:9998}
.overlay.open{display:block}

/* DRAWER */
.drawer{
  position:fixed;top:0;right:0;bottom:0;width:260px;
  background:var(--cream);z-index:9999;transform:translateX(100%);
  transition:transform .35s ease;
  display:flex;flex-direction:column;
  padding:5rem 2rem 2rem;
  box-shadow:-4px 0 24px rgba(0,0,0,.12);
}
.drawer.open{transform:translateX(0)}
.drawer-close{position:absolute;top:1rem;left:1.2rem;background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--teal);line-height:1}
.drawer-nav{list-style:none}
.drawer-nav li{border-bottom:1px solid var(--beige-dk)}
.drawer-nav li:first-child{border-top:1px solid var(--beige-dk)}
.drawer-nav a{display:block;padding:1rem 0;font-size:.82rem;letter-spacing:.2em;text-transform:uppercase;color:var(--dark);text-decoration:none;font-weight:400;transition:color .2s,padding-left .2s;cursor:pointer}
.drawer-nav a:hover{color:var(--gold);padding-left:.3rem}
.drawer-btns{margin-top:2rem;display:flex;flex-direction:column;gap:.6rem}
.d-btn{display:inline-flex;align-items:center;gap:.4rem;padding:.6rem 1.1rem;border-radius:50px;font-size:.72rem;font-weight:500;text-decoration:none;font-family:'Jost',sans-serif}
.d-btn.ph{background:linear-gradient(135deg,#2d6e6e,#1e4f4f);color:#fff}
.d-btn.wa{background:linear-gradient(135deg,#25D366,#1ebe57);color:#fff}
.d-btn svg{width:14px;height:14px}

/* FAB */
.fab{position:fixed;bottom:1.8rem;right:1.8rem;display:flex;flex-direction:column;gap:.5rem;z-index:9997}
.fab a{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 3px 12px rgba(0,0,0,.2);transition:transform .2s}
.fab a:hover{transform:scale(1.1)}
.fab .fp{background:linear-gradient(135deg,#2d6e6e,#1e4f4f);color:#fff}
.fab .fw{background:linear-gradient(135deg,#25D366,#1ebe57);color:#fff}
.fab svg{width:20px;height:20px}

/* HERO */
.hero{position:relative;height:100vh;min-height:560px;overflow:hidden;margin-top:68px}
.hero-track{display:flex;height:100%;transition:transform .9s cubic-bezier(.4,0,.2,1)}
.hero-slide{min-width:100%;height:100%;flex-shrink:0;position:relative}
.hero-slide:nth-child(1){background:linear-gradient(155deg,#b8d4d0,#c8dcc8 35%,#ddd4b8 65%,#ccc4a8)}
.hero-slide:nth-child(2){background:linear-gradient(155deg,#c0d8d0,#ccdfcc 35%,#e2d8c2 65%,#d2caa8)}
.hero-slide:nth-child(3){background:linear-gradient(155deg,#a8ccc8,#bcdebc 35%,#d8d0b0 65%,#c8c09c)}
.hero-slide:nth-child(4){background:linear-gradient(155deg,#b4d0cc,#c4dcbf 35%,#dcd4b6 65%,#ccc4a2)}
.hero-slide:nth-child(5){background:linear-gradient(155deg,#bcd4d0,#cce0c4 35%,#e0d8ba 65%,#d0c8a6)}
.hero-slide::after{content:'';position:absolute;inset:0;background:rgba(20,50,50,.22)}
.hero-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-logo-center{position:absolute;inset:0;z-index:2;display:flex;align-items:center;justify-content:center;pointer-events:none}
.hero-logo-center img{width:min(380px,66vw);height:auto;filter:drop-shadow(0 8px 28px rgba(0,0,0,.18));animation:popIn .8s cubic-bezier(.34,1.56,.64,1) both}
@keyframes popIn{from{opacity:0;transform:scale(.88)}to{opacity:1;transform:scale(1)}}
.h-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:40px;height:40px;border-radius:50%;background:rgba(253,250,244,.18);border:1.5px solid rgba(255,255,255,.35);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}
.h-arrow:hover{background:rgba(253,250,244,.32)}
.h-arrow.p{left:1.2rem}
.h-arrow.n{right:1.2rem}
.h-arrow svg{width:16px;height:16px}
.h-dots{position:absolute;bottom:5.5rem;left:50%;transform:translateX(-50%);z-index:3;display:flex;gap:.42rem}
.h-dot{width:7px;height:7px;border-radius:50%;border:none;background:rgba(255,255,255,.4);cursor:pointer;padding:0;transition:all .2s}
.h-dot.on{background:#fff;transform:scale(1.25)}
.hero-bar{position:absolute;bottom:0;left:0;right:0;z-index:3;background:rgba(253,250,244,.95);display:flex;align-items:center;justify-content:center;gap:.9rem;padding:.9rem 1.5rem;flex-wrap:wrap}
.hb-btn{display:inline-flex;align-items:center;gap:.45rem;padding:.65rem 1.9rem;font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;font-weight:500;text-decoration:none;transition:all .3s}
.hb-btn.dark{background:var(--dark);color:#fff;border:2px solid var(--dark)}
.hb-btn.dark:hover{background:var(--gold);border-color:var(--gold)}
.hb-btn.green{background:linear-gradient(135deg,#25D366,#1ebe57);color:#fff;border:2px solid transparent;border-radius:50px}
.hb-btn svg{width:15px;height:15px}
.hero-slide picture,
.hero-slide picture img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* SEZIONI */
.section{padding:5rem 2rem}
.section.alt{background:#f5f0e8}
.s-label{font-size:.63rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);text-align:center;margin-bottom:.5rem}
.s-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,3.5vw,3rem);font-weight:300;color:var(--dark);line-height:1.1;text-align:center}
.s-rule{width:42px;height:1px;background:var(--gold);margin:.9rem auto 0}
.s-sub{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-style:italic;color:var(--teal);text-align:center;margin-top:.5rem}
.s-body{font-size:.88rem;line-height:1.95;color:#5a6e68;max-width:620px;margin:1.8rem auto 0;text-align:center}

/* FOTO GRIGLIA HOME */
.home-photos{display:grid;grid-template-columns:1fr 1fr;gap:.55rem;max-width:900px;margin:2.5rem auto 0}
.hp{aspect-ratio:4/3;overflow:hidden;position:relative;display:flex;align-items:center;justify-content:center}
.hp:nth-child(1){background:linear-gradient(135deg,#b8d4d0,#c8dcbc)}
.hp:nth-child(2){background:linear-gradient(135deg,#c8d8c4,#dde8d0)}
.hp:nth-child(3){background:linear-gradient(135deg,#d4ccb4,#e8dcc8)}
.hp:nth-child(4){background:linear-gradient(135deg,#c4d4d0,#d8e4c8)}
.hp img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s}
.hp:hover img{transform:scale(1.04)}
.hp-ph{font-family:'Cormorant Garamond',serif;font-style:italic;color:rgba(30,79,79,.3);font-size:.95rem;display:flex;flex-direction:column;align-items:center;gap:.4rem}
.hp-ph svg{width:32px;height:32px;opacity:.28}

/* CAMERE */
.rooms-stack{max-width:1100px;margin:2.5rem auto 0}
.room{display:grid;grid-template-columns:1fr 1fr;overflow:hidden;margin-bottom:1px;box-shadow:0 2px 20px rgba(30,79,79,.06)}
.room.flip .rslider{order:2}
.room.flip .rbody{order:1}
.rslider{position:relative;min-height:440px;overflow:hidden;cursor:grab}
.rslider:active{cursor:grabbing}
.rtrack{display:flex;height:100%;transition:transform .45s cubic-bezier(.4,0,.2,1)}
.rslide{min-width:100%;height:100%;flex-shrink:0;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.rslide-bg{position:absolute;inset:0;background:linear-gradient(135deg,#c8dada,#dde8d4)}
.rslide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.rslide-ph{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:.5rem;text-align:center;padding:1.5rem}
.rslide-ph svg{width:34px;height:34px;opacity:.28;color:var(--dark)}
.rslide-ph span{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.9rem;color:rgba(30,79,79,.42)}
.rarrow{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:34px;height:34px;border-radius:50%;background:rgba(253,250,244,.88);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 10px rgba(0,0,0,.12);transition:all .2s}
.rarrow:hover{background:var(--dark);color:#fff}
.rarrow.p{left:.75rem}
.rarrow.n{right:.75rem}
.rarrow svg{width:13px;height:13px}
.rdots{position:absolute;bottom:.75rem;left:50%;transform:translateX(-50%);display:flex;gap:.38rem;z-index:10}
.rdot{width:6px;height:6px;border-radius:50%;border:none;background:rgba(255,255,255,.45);cursor:pointer;padding:0;transition:all .2s}
.rdot.on{background:#fff}
.rcnt{position:absolute;top:.75rem;right:.75rem;z-index:10;background:rgba(30,79,79,.52);color:#fff;font-size:.6rem;letter-spacing:.1em;padding:.16rem .52rem;border-radius:50px}
.rbody{background:var(--cream);padding:3rem 3.5rem;display:flex;flex-direction:column;justify-content:center}
.r-eyebrow{font-size:.6rem;letter-spacing:.25em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.r-name{font-family:'Cormorant Garamond',serif;font-size:2.3rem;font-weight:300;color:var(--dark);line-height:1;margin-bottom:.9rem}
.r-text{font-size:.85rem;line-height:1.95;color:#5a6e68;margin-bottom:1.2rem}
.r-price{font-family:'Cormorant Garamond',serif;font-size:1.95rem;color:var(--gold);font-weight:300;margin-bottom:1.2rem}
.r-price small{font-family:'Jost',sans-serif;font-size:.68rem;color:var(--teal-lt);margin-left:.2rem}
.r-feats{display:flex;flex-wrap:wrap;gap:.3rem;margin-bottom:1.7rem}
.r-feat{font-size:.6rem;letter-spacing:.08em;text-transform:uppercase;padding:.18rem .58rem;border:1px solid var(--sage-lt);color:var(--teal);border-radius:1px}
.r-wa{display:inline-flex;align-items:center;gap:.38rem;align-self:flex-start;padding:.5rem 1.2rem;border-radius:50px;background:rgba(37,211,102,.12);color:#158a3e;border:1.5px solid rgba(37,211,102,.4);font-size:.68rem;font-weight:500;text-decoration:none;transition:all .2s;font-family:'Jost',sans-serif}
.r-wa:hover{background:var(--wa);color:#fff;border-color:var(--wa)}
.r-wa svg{width:13px;height:13px}
.rslide-ph { display: none; }
.r-invite{
  font-family:'Cormorant Garamond',serif;
  font-size:1.05rem;
  font-style:italic;
  color:var(--teal);
  margin-bottom:1.2rem;
}

/* BANDA */
.band{background:var(--dark);padding:4.5rem 2rem;text-align:center}
.band h2{font-family:'Cormorant Garamond',serif;font-size:clamp(1.7rem,3vw,2.5rem);font-weight:300;color:var(--beige);letter-spacing:.04em;margin-bottom:.8rem}
.band p{font-size:.86rem;color:var(--sage-lt);max-width:480px;margin:0 auto 2rem;line-height:1.9}
.band-btns{display:flex;gap:.7rem;justify-content:center;flex-wrap:wrap}
.band-btn{display:inline-flex;align-items:center;gap:.42rem;padding:.7rem 1.7rem;font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;text-decoration:none;border-radius:2px;transition:all .3s}
.band-btn.lt{background:var(--beige);color:var(--dark);border:2px solid var(--beige)}
.band-btn.lt:hover{background:transparent;color:var(--beige)}
.band-btn.wa{background:linear-gradient(135deg,#25D366,#1ebe57);color:#fff;border:2px solid transparent;border-radius:50px;box-shadow:0 4px 14px rgba(37,211,102,.3)}
.band-btn svg{width:14px;height:14px}

/* CONTATTI */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;max-width:1100px;margin:3rem auto 0;overflow:hidden;box-shadow:0 4px 36px rgba(30,79,79,.08)}
.mapbox{min-height:420px;position:relative}
.mapbox iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.ci{background:var(--cream);padding:3.5rem;display:flex;flex-direction:column;justify-content:center}
.ci-ey{font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem}
.ci-title{font-family:'Cormorant Garamond',serif;font-size:1.85rem;font-weight:300;color:var(--dark);margin-bottom:1.6rem;line-height:1.1}
.ci-item{margin-bottom:1.2rem}
.ci-lbl{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.25rem}
.ci-val{font-family:'Cormorant Garamond',serif;font-size:1.05rem;color:var(--dark);line-height:1.55}
.ci-val a{color:var(--dark);text-decoration:none;transition:color .2s}
.ci-val a:hover{color:var(--gold)}
.ci-btns{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:1.6rem}
.ci-btn{display:inline-flex;align-items:center;gap:.35rem;padding:.52rem 1.05rem;border-radius:50px;font-size:.68rem;font-weight:500;text-decoration:none;transition:all .2s;font-family:'Jost',sans-serif}
.ci-btn.ph{background:linear-gradient(135deg,#2d6e6e,#1e4f4f);color:#fff;box-shadow:0 3px 10px rgba(30,79,79,.25)}
.ci-btn.ph:hover{background:var(--gold)}
.ci-btn.wa{background:linear-gradient(135deg,#25D366,#1ebe57);color:#fff;box-shadow:0 3px 10px rgba(37,211,102,.3)}
.ci-btn.wa:hover{background:#1ebe57}
.ci-btn.ig{border:1.5px solid transparent;background:linear-gradient(white,white) padding-box,linear-gradient(135deg,#f09433,#dc2743,#bc1888) border-box;color:#bc1888}
.ci-btn.ig:hover{background:linear-gradient(135deg,#f09433,#dc2743,#bc1888);color:#fff}
.ci-btn svg{width:13px;height:13px}

/* FOOTER */
footer{background:var(--cream);border-top:1px solid var(--beige-dk);padding:2.5rem 2rem;text-align:center}
.ft-logo{width:86px;margin:0 auto .7rem}
.ft-logo img{width:100%;display:block}
.ft-tag{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:.88rem;color:var(--gold);margin-bottom:1rem}
.ft-nav{display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-bottom:1rem}
.ft-nav a{font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--teal);text-decoration:none;transition:color .2s;cursor:pointer}
.ft-nav a:hover{color:var(--gold)}
.ft-btns{display:flex;justify-content:center;gap:.5rem;flex-wrap:wrap;margin-bottom:1.5rem}
.ft-btn{display:inline-flex;align-items:center;gap:.32rem;padding:.33rem .82rem;border-radius:50px;font-size:.67rem;text-decoration:none;font-weight:500;transition:all .2s}
.ft-btn.ph{border:1px solid rgba(30,79,79,.28);color:var(--teal)}
.ft-btn.ph:hover{background:var(--dark);color:#fff;border-color:var(--dark)}
.ft-btn.wa{background:linear-gradient(135deg,#25D366,#1ebe57);color:#fff}
.ft-btn.wa:hover{background:#1ebe57}
.ft-btn svg{width:12px;height:12px}
.ft-copy{font-size:.63rem;color:rgba(30,79,79,.38);letter-spacing:.07em}

/* GALLERY SPAZI */
.gallery-wrap{
  position:relative;
  max-width:1100px;
  margin:2.5rem auto 0;
  overflow:hidden;
}
.gallery-track{
  display:flex;
  gap:1rem;
  transition:transform .45s cubic-bezier(.4,0,.2,1);
  padding:0 .25rem;
}
.gallery-item{
  flex:0 0 calc(33.333% - .7rem);
  display:flex;
  flex-direction:column;
  gap:.6rem;
}
.gallery-img{
  aspect-ratio:4/3;
  border-radius:2px;
  overflow:hidden;
  position:relative;
}
.gallery-img img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s;
}
.gallery-img:hover img{transform:scale(1.04);}
.gallery-label{
  font-size:.62rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  text-align:center;
  font-family:'Jost',sans-serif;
}
.gallery-arrow{
  position:absolute;
  top:calc(50% - 1.2rem);
  transform:translateY(-50%);
  width:38px;height:38px;
  border-radius:50%;
  background:rgba(253,250,244,.92);
  border:1px solid var(--beige-dk);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
  transition:all .2s;
  z-index:10;
}
.gallery-arrow:hover{background:var(--dark);color:#fff;}
.gallery-arrow svg{width:14px;height:14px;}
.gp{left:.5rem;}
.gn{right:.5rem;}
.gallery-dots{
  display:flex;
  justify-content:center;
  gap:.4rem;
  margin-top:1.2rem;
}
.gallery-dot{
  width:7px;height:7px;
  border-radius:50%;
  border:none;
  background:var(--beige-dk);
  cursor:pointer;
  padding:0;
  transition:all .2s;
}
.gallery-dot.on{background:var(--gold);transform:scale(1.2);}

@media(max-width:768px){
  .gallery-item{flex:0 0 calc(50% - .5rem);}
}
@media(max-width:480px){
  .gallery-item{flex:0 0 calc(85% - .5rem);}
  .gallery-arrow{width:32px;height:32px;}
}

/* SPLASH */
#splash{
  position:fixed;inset:0;z-index:99999;
  background:#fdfaf4;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:2.5rem;
  transition:opacity .6s ease, visibility .6s ease;
}
#splash.hide{opacity:0;visibility:hidden;}
#splash-logo{
  width:min(260px,60vw);
  height:auto;
  animation:splashPop .8s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes splashPop{
  from{opacity:0;transform:scale(.8);}
  to{opacity:1;transform:scale(1);}
}
#splash-bar{
  width:min(180px,45vw);
  height:2px;
  background:rgba(30,79,79,.12);
  border-radius:2px;
  overflow:hidden;
}
#splash-fill{
  height:100%;
  width:0%;
  background:var(--gold);
  border-radius:2px;
  animation:splashLoad 1.8s ease forwards;
  animation-delay:.3s;
}
@keyframes splashLoad{
  from{width:0%;}
  to{width:100%;}
}

/* RESPONSIVE */
@media(max-width:820px){
  .room,.room.flip{grid-template-columns:1fr}
  .room.flip .rslider,.room.flip .rbody{order:unset}
  .rslider{min-height:270px}
  .rbody{padding:2rem}
  .home-photos{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .mapbox{min-height:270px}
}

@media(max-width:768px){
  .hero{
    height:100vw;
    min-height:unset;
  }
  .hero-bar{
    position:static;
    background:var(--cream);
    padding:1.2rem 1rem;
    flex-direction:column;
    align-items:center;
    gap:.6rem;
  }
  .hb-btn{
    width:100%;
    max-width:280px;
    justify-content:center;
  }
  .hero-slide picture,
  .hero-slide picture img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }
  /* FIX freccia — impedisce che crei spazio */
  .h-arrow{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
  }
  .h-dots{
    bottom:1rem;
  }
}

@media(max-width:480px){
  /* LOGO — proporzioni corrette */
  .nav-logo-main {
    font-size: 1rem;
    white-space: nowrap;
  }
  .nav-logo-sub {
    font-size: .38rem;
    letter-spacing: .18em;
    white-space: nowrap;
  }
  /* resto nav */
  .nav-icon{width:30px;height:30px;}
  .nav-icon svg{width:13px;height:13px;}
  .lang button{font-size:.55rem;padding:.14rem .32rem;}
  .burger{padding:4px;}
  .burger span{width:18px;}
  .luoghi-grid{grid-template-columns:1fr 1fr;gap:.7rem;}
}

/* =============================================
   NAVBAR LOGO — effetto brand tipografico
   ============================================= */
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 600;
  font-style: italic;
  color: #5c3d1e;
  letter-spacing: .06em;
  transition: color .3s;
  white-space: nowrap;
}
.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: .48rem;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #b89a5a;
  white-space: nowrap;
}
.nav-logo:hover .nav-logo-main { color: #b89a5a; }
.nav-logo-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #b89a5a, transparent);
  margin-top: 1px;
}

/* =============================================
   CURSORE PERSONALIZZATO — solo desktop
   ============================================= */
@media(hover:hover){
  body { cursor: none; }
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: #b89a5a;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%,-50%);
    transition: transform .1s, width .25s, height .25s, opacity .25s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(184,154,90,.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%,-50%);
    transition: transform .18s ease, width .3s, height .3s, opacity .3s;
  }
  a:hover ~ .cursor, button:hover ~ .cursor { width: 18px; height: 18px; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   HERO — overlay gradient migliorato
   ============================================= */
.hero-slide::after {
  background: linear-gradient(
    to bottom,
    rgba(20,50,50,.1) 0%,
    rgba(20,50,50,.05) 50%,
    rgba(20,50,50,.45) 100%
  );
}

/* =============================================
   SEZIONE DESCRIZIONE — card luoghi
   ============================================= */
.luoghi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.luogo-card {
  padding: 1.4rem 1.2rem;
  border: 1px solid #ddd5bc;
  border-radius: 2px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
  background: #fdfaf4;
}
.luogo-card:hover {
  box-shadow: 0 8px 28px rgba(92,61,30,.1);
  transform: translateY(-3px);
}
.luogo-icon {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.luogo-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #5c3d1e;
  margin-bottom: .3rem;
}
.luogo-dist {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #b89a5a;
}

/* =============================================
   SPAZI COMUNI — card descrittive
   ============================================= */
.spazi-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.4rem;
  max-width: 900px;
  margin: 2rem auto 2.5rem;
}
.spazio-card {
  padding: 1.8rem 1.4rem;
  border-top: 2px solid #b89a5a;
  background: #fdfaf4;
  transition: box-shadow .3s, transform .3s;
}
.spazio-card:hover {
  box-shadow: 0 8px 28px rgba(92,61,30,.1);
  transform: translateY(-3px);
}
.spazio-icon {
  font-size: 1.6rem;
  margin-bottom: .7rem;
}
.spazio-titolo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #5c3d1e;
  margin-bottom: .6rem;
}
.spazio-testo {
  font-size: .82rem;
  line-height: 1.85;
  color: #6a5a48;
}

/* =============================================
   ROOM CARD — hover elevazione
   ============================================= */
.room {
  transition: box-shadow .4s;
}
.room:hover {
  box-shadow: 0 12px 48px rgba(92,61,30,.14);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media(max-width:820px){
  .luoghi-grid { grid-template-columns: repeat(2,1fr); }
  .spazi-cards { grid-template-columns: 1fr; gap: .8rem; }
}
@media(max-width:480px){
  .nav-logo-main { font-size: .95rem; }
  .nav-logo-sub { font-size: .4rem; letter-spacing: .22em; }
  .luoghi-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
}

/* LANGUAGE */
[data-en]{display:none}
body.en [data-it]{display:none}
body.en [data-en]{display:unset}

/* LANGUAGE */
[data-en]{display:none}
body.en [data-it]{display:none}
body.en [data-en]{display:unset}
/* NAVBAR LOGO */
.nav-logo{text-decoration:none;display:flex;flex-direction:column;align-items:flex-start;line-height:1;gap:3px}
.nav-logo-main{font-family:'Cormorant Garamond',serif;font-size:1.18rem;font-weight:600;font-style:italic;color:#5c3d1e;letter-spacing:.06em;transition:color .3s;white-space:nowrap}
.nav-logo-sub{font-family:'Jost',sans-serif;font-size:.48rem;font-weight:400;letter-spacing:.32em;text-transform:uppercase;color:#b89a5a;white-space:nowrap}
.nav-logo:hover .nav-logo-main{color:#b89a5a}
.nav-logo-line{width:100%;height:1px;background:linear-gradient(90deg,#b89a5a,transparent);margin-top:1px}

/* CURSORE */
@media(hover:hover){
  body{cursor:none}
  .cursor{position:fixed;width:10px;height:10px;background:#b89a5a;border-radius:50%;pointer-events:none;z-index:99998;transform:translate(-50%,-50%);transition:transform .1s,width .25s,height .25s;mix-blend-mode:multiply}
  .cursor-ring{position:fixed;width:36px;height:36px;border:1.5px solid rgba(184,154,90,.5);border-radius:50%;pointer-events:none;z-index:99997;transform:translate(-50%,-50%);transition:transform .18s ease,width .3s,height .3s}
}

/* SCROLL REVEAL */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}

/* HERO */
.hero-slide::after{background:linear-gradient(to bottom,rgba(20,50,50,.1) 0%,rgba(20,50,50,.05) 50%,rgba(20,50,50,.45) 100%)}

/* LUOGHI */
.luoghi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;max-width:900px;margin:2.5rem auto 0}
.luogo-card{padding:1.4rem 1.2rem;border:1px solid #ddd5bc;border-radius:2px;text-align:center;transition:box-shadow .3s,transform .3s;background:#fdfaf4}
.luogo-card:hover{box-shadow:0 8px 28px rgba(92,61,30,.1);transform:translateY(-3px)}
.luogo-icon{font-size:1.4rem;margin-bottom:.5rem}
.luogo-nome{font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:600;color:#5c3d1e;margin-bottom:.3rem}
.luogo-dist{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:#b89a5a}

/* SPAZI CARDS */
.spazi-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;max-width:900px;margin:2rem auto 2.5rem}
.spazio-card{padding:1.8rem 1.4rem;border-top:2px solid #b89a5a;background:#fdfaf4;transition:box-shadow .3s,transform .3s}
.spazio-card:hover{box-shadow:0 8px 28px rgba(92,61,30,.1);transform:translateY(-3px)}
.spazio-icon{margin-bottom:.9rem;opacity:.85}
.spazio-titolo{font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:600;color:#5c3d1e;margin-bottom:.6rem}
.spazio-testo{font-size:.82rem;line-height:1.85;color:#6a5a48}

/* GALLERY COLONNE */
.gallery-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;max-width:1100px;margin:2.5rem auto 0}
.gallery-col{display:flex;flex-direction:column;gap:.6rem}
.gallery-col-title{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:#b89a5a;text-align:center;padding-bottom:.4rem;border-bottom:1px solid #ddd5bc;margin-bottom:.2rem;font-family:'Jost',sans-serif}
.gallery-col-slider{position:relative;overflow:hidden;border-radius:2px}
.gallery-col-track{display:flex;transition:transform .45s cubic-bezier(.4,0,.2,1)}
.gallery-col-slide{min-width:100%;aspect-ratio:3/4;flex-shrink:0;position:relative;overflow:hidden;background:linear-gradient(135deg,#c8d8d4,#dde8e4)}
.gallery-col-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery-col-slide:hover img{transform:scale(1.04)}
.gallery-col-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:28px;height:28px;border-radius:50%;background:rgba(253,250,244,.9);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.12);transition:background .2s}
.gallery-col-arrow:hover{background:#5c3d1e;color:#fff}
.gallery-col-arrow svg{width:11px;height:11px}
.gallery-col-arrow.p{left:.4rem}
.gallery-col-arrow.n{right:.4rem}
.gallery-col-dots{display:flex;justify-content:center;gap:.3rem;margin-top:.5rem}
.gallery-col-dot{width:5px;height:5px;border-radius:50%;border:none;background:#ddd5bc;cursor:pointer;padding:0;transition:all .2s}
.gallery-col-dot.on{background:#b89a5a;transform:scale(1.3)}

/* RECENSIONI */
.reviews-section{background:#f5f0e8;padding:5rem 2rem}
.reviews-header{text-align:center;margin-bottom:2.5rem}
.reviews-score{display:flex;align-items:center;justify-content:center;gap:1rem;margin:1rem 0 .5rem;flex-wrap:wrap}
.reviews-number{font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:#5c3d1e;line-height:1}
.reviews-stars{display:flex;gap:.2rem}
.reviews-stars svg{width:22px;height:22px;fill:#b89a5a}
.reviews-count{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:#b89a5a;text-align:center}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;max-width:1000px;margin:0 auto 2.5rem}
.review-card{background:#fdfaf4;padding:1.8rem 1.6rem;border-radius:2px;border-top:2px solid #b89a5a;transition:box-shadow .3s,transform .3s}
.review-card:hover{box-shadow:0 8px 28px rgba(92,61,30,.1);transform:translateY(-3px)}
.review-stars{display:flex;gap:.15rem;margin-bottom:.7rem}
.review-stars svg{width:14px;height:14px;fill:#b89a5a}
.review-text{font-family:'Cormorant Garamond',serif;font-size:1rem;font-style:italic;color:#5c3d1e;line-height:1.7;margin-bottom:1rem}
.review-author{font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:#b89a5a}
.review-source{display:flex;align-items:center;gap:.35rem;margin-top:.3rem;font-size:.6rem;color:#9a8878;letter-spacing:.1em}
.review-source svg{width:14px;height:14px}
.reviews-cta{text-align:center}
.reviews-cta a{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 2rem;border:1.5px solid #b89a5a;color:#5c3d1e;text-decoration:none;font-family:'Jost',sans-serif;font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;transition:all .3s;border-radius:2px}
.reviews-cta a:hover{background:#5c3d1e;border-color:#5c3d1e;color:#fdfaf4}
.reviews-cta svg{width:16px;height:16px}

/* ROOM HOVER */
.room{transition:box-shadow .4s}
.room:hover{box-shadow:0 12px 48px rgba(92,61,30,.14)}

/* RESPONSIVE */
@media(max-width:820px){
  .luoghi-grid{grid-template-columns:repeat(2,1fr)}
  .spazi-cards{grid-template-columns:1fr;gap:.8rem}
  .reviews-grid{grid-template-columns:1fr;gap:1rem}
  .gallery-cols{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .nav-logo-main{font-size:1rem;white-space:nowrap}
  .nav-logo-sub{font-size:.38rem;letter-spacing:.18em;white-space:nowrap}
  .nav-icon{width:30px;height:30px}
  .nav-icon svg{width:13px;height:13px}
  .lang button{font-size:.55rem;padding:.14rem .32rem}
  .burger{padding:4px}
  .burger span{width:18px}
  .luoghi-grid{grid-template-columns:1fr 1fr;gap:.7rem}
  .gallery-cols{grid-template-columns:repeat(2,1fr);gap:.6rem}
  .reviews-grid{grid-template-columns:1fr}
}
/* --- NAVBAR LOGO --- */
.nav-logo{text-decoration:none;display:flex;flex-direction:column;align-items:flex-start;line-height:1;gap:3px}
.nav-logo-main{font-family:'Cormorant Garamond',serif;font-size:1.18rem;font-weight:600;font-style:italic;color:#5c3d1e;letter-spacing:.06em;transition:color .3s;white-space:nowrap}
.nav-logo-sub{font-family:'Jost',sans-serif;font-size:.48rem;font-weight:400;letter-spacing:.32em;text-transform:uppercase;color:#b89a5a;white-space:nowrap}
.nav-logo:hover .nav-logo-main{color:#b89a5a}
.nav-logo-line{width:100%;height:1px;background:linear-gradient(90deg,#b89a5a,transparent);margin-top:1px}

/* --- CURSORE PERSONALIZZATO (solo desktop) --- */
@media(hover:hover){
  body{cursor:none}
  .cursor{position:fixed;width:10px;height:10px;background:#b89a5a;border-radius:50%;pointer-events:none;z-index:99998;transform:translate(-50%,-50%);transition:width .25s,height .25s;mix-blend-mode:multiply}
  .cursor-ring{position:fixed;width:36px;height:36px;border:1.5px solid rgba(184,154,90,.5);border-radius:50%;pointer-events:none;z-index:99997;transform:translate(-50%,-50%);transition:width .3s,height .3s}
}

/* --- SCROLL REVEAL --- */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}

/* --- HERO overlay --- */
.hero-slide::after{background:linear-gradient(to bottom,rgba(20,50,50,.1) 0%,rgba(20,50,50,.05) 50%,rgba(20,50,50,.45) 100%)}

/* --- CARD LUOGHI --- */
.luoghi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;max-width:900px;margin:2.5rem auto 0}
.luogo-card{padding:1.4rem 1.2rem;border:1px solid #ddd5bc;border-radius:2px;text-align:center;transition:box-shadow .3s,transform .3s;background:#fdfaf4}
.luogo-card:hover{box-shadow:0 8px 28px rgba(92,61,30,.1);transform:translateY(-3px)}
.luogo-icon{font-size:1.4rem;margin-bottom:.5rem}
.luogo-nome{font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:600;color:#5c3d1e;margin-bottom:.3rem}
.luogo-dist{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:#b89a5a}

/* --- CARD SPAZI --- */
.spazi-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;max-width:900px;margin:2rem auto 2.5rem}
.spazio-card{padding:1.8rem 1.4rem;border-top:2px solid #b89a5a;background:#fdfaf4;transition:box-shadow .3s,transform .3s}
.spazio-card:hover{box-shadow:0 8px 28px rgba(92,61,30,.1);transform:translateY(-3px)}
.spazio-icon{margin-bottom:.9rem;opacity:.85}
.spazio-titolo{font-family:'Cormorant Garamond',serif;font-size:1.25rem;font-weight:600;color:#5c3d1e;margin-bottom:.6rem}
.spazio-testo{font-size:.82rem;line-height:1.85;color:#6a5a48}

/* --- GALLERY COLONNE PER TIPOLOGIA --- */
.gallery-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;max-width:1100px;margin:2.5rem auto 0}
.gallery-col{display:flex;flex-direction:column;gap:.6rem}
.gallery-col-title{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:#b89a5a;text-align:center;padding-bottom:.4rem;border-bottom:1px solid #ddd5bc;margin-bottom:.2rem;font-family:'Jost',sans-serif}
.gallery-col-slider{position:relative;overflow:hidden;border-radius:2px}
.gallery-col-track{display:flex;transition:transform .45s cubic-bezier(.4,0,.2,1)}
.gallery-col-slide{min-width:100%;aspect-ratio:3/4;flex-shrink:0;position:relative;overflow:hidden;background:linear-gradient(135deg,#c8d8d4,#dde8e4)}
.gallery-col-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s}
.gallery-col-slide:hover img{transform:scale(1.04)}
.gallery-col-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:28px;height:28px;border-radius:50%;background:rgba(253,250,244,.9);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.12);transition:background .2s}
.gallery-col-arrow:hover{background:#5c3d1e;color:#fff}
.gallery-col-arrow svg{width:11px;height:11px}
.gallery-col-arrow.p{left:.4rem}
.gallery-col-arrow.n{right:.4rem}
.gallery-col-dots{display:flex;justify-content:center;gap:.3rem;margin-top:.5rem}
.gallery-col-dot{width:5px;height:5px;border-radius:50%;border:none;background:#ddd5bc;cursor:pointer;padding:0;transition:all .2s}
.gallery-col-dot.on{background:#b89a5a;transform:scale(1.3)}

/* --- SEZIONE RECENSIONI --- */
.reviews-section{background:#f5f0e8;padding:5rem 2rem}
.reviews-header{text-align:center;margin-bottom:2.5rem}
.reviews-score{display:flex;align-items:center;justify-content:center;gap:1rem;margin:1rem 0 .5rem;flex-wrap:wrap}
.reviews-number{font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:#5c3d1e;line-height:1}
.reviews-stars{display:flex;gap:.2rem}
.reviews-stars svg{width:22px;height:22px;fill:#b89a5a}
.reviews-count{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:#b89a5a;text-align:center}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;max-width:1000px;margin:0 auto 2.5rem}
.review-card{background:#fdfaf4;padding:1.8rem 1.6rem;border-radius:2px;border-top:2px solid #b89a5a;transition:box-shadow .3s,transform .3s}
.review-card:hover{box-shadow:0 8px 28px rgba(92,61,30,.1);transform:translateY(-3px)}
.review-stars{display:flex;gap:.15rem;margin-bottom:.7rem}
.review-stars svg{width:14px;height:14px;fill:#b89a5a}
.review-text{font-family:'Cormorant Garamond',serif;font-size:1rem;font-style:italic;color:#5c3d1e;line-height:1.7;margin-bottom:1rem}
.review-author{font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:#b89a5a}
.review-source{display:flex;align-items:center;gap:.35rem;margin-top:.3rem;font-size:.6rem;color:#9a8878;letter-spacing:.1em}
.review-source svg{width:14px;height:14px}
.reviews-cta{text-align:center}
.reviews-cta a{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 2rem;border:1.5px solid #b89a5a;color:#5c3d1e;text-decoration:none;font-family:'Jost',sans-serif;font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;transition:all .3s;border-radius:2px}
.reviews-cta a:hover{background:#5c3d1e;border-color:#5c3d1e;color:#fdfaf4}
.reviews-cta svg{width:16px;height:16px}

/* --- ROOM HOVER --- */
.room{transition:box-shadow .4s}
.room:hover{box-shadow:0 12px 48px rgba(92,61,30,.14)}

/* --- RESPONSIVE --- */
@media(max-width:820px){
  .luoghi-grid{grid-template-columns:repeat(2,1fr)}
  .spazi-cards{grid-template-columns:1fr;gap:.8rem}
  .reviews-grid{grid-template-columns:1fr;gap:1rem}
  .gallery-cols{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .hero{height:100vw;min-height:unset}
  .hero-bar{position:static;background:var(--cream);padding:1.2rem 1rem;flex-direction:column;align-items:center;gap:.6rem}
  .hb-btn{width:100%;max-width:280px;justify-content:center}
  .hero-slide picture,.hero-slide picture img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center}
  .h-arrow{position:absolute;top:45%;transform:translateY(-50%)}
}
@media(max-width:480px){
  nav{padding:0 .8rem;height:58px}
  .nav-logo-main{font-size:1rem;white-space:nowrap}
  .nav-logo-sub{font-size:.38rem;letter-spacing:.18em;white-space:nowrap}
  .nav-icon{width:30px;height:30px}
  .nav-icon svg{width:13px;height:13px}
  .lang button{font-size:.55rem;padding:.14rem .32rem}
  .burger{padding:4px}
  .burger span{width:18px}
  .luoghi-grid{grid-template-columns:1fr 1fr;gap:.7rem}
  .gallery-cols{grid-template-columns:repeat(2,1fr);gap:.6rem}
  .reviews-grid{grid-template-columns:1fr}
}

/* --- LANGUAGE SWITCH --- */
[data-en]{display:none}
body.en [data-it]{display:none}
body.en [data-en]{display:unset}

/* SLIDER DENTRO CARD SPAZI */
.sc-slider {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 1.2rem;
  aspect-ratio: 4/3;
}
.sc-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  height: 100%;
}
.sc-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sc-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.sc-slide:hover img { transform: scale(1.04); }
.sc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(253,250,244,.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .2s;
  z-index: 5;
}
.sc-arrow:hover { background: #5c3d1e; color: #fff; }
.sc-arrow svg { width: 12px; height: 12px; }
.sc-arrow.p { left: .5rem; }
.sc-arrow.n { right: .5rem; }
.sc-dots {
  display: flex;
  justify-content: center;
  gap: .35rem;
  margin-top: .6rem;
}
.sc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  border: none;
  background: #ddd5bc;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}
.sc-dot.on { background: #b89a5a; transform: scale(1.3); }