/* ===================== RESET & THEME ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  /* Palette */
  --navy:   #0E2381;  /* NAVBAR BLU */
  --sea:    #4FB7A7;  /* Turchese – Mare Blu */
  --forest: #2F5D50;  /* Verde bosco – Chalet */
  --bg:     #E6D5C3;  /* Sabbia più scuro per contrasto col bianco */
  --shadow: 0 6px 16px rgba(0,0,0,.22);

  /* Slideshow (JS li sovrascrive) */
  --per: 4s;
  --cycle: 120s;
}

html, body { height: 100%; }
body{
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: #0b1b2b;
  scroll-behavior: smooth;
}

/* ===================== NAVBAR ===================== */
.navbar{
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 14px 20px;
  display: flex; justify-content: center; align-items: center;
  z-index: 1000;
}
.nav-links{ display: flex; gap: 22px; }
.nav-links a{
  color: #fff; text-decoration: none; font-weight: 700;
  padding: 10px 16px; border-radius: 28px; transition: .25s;
}
.nav-links a.active{ background: #fff; color: var(--navy); }
.nav-links a:hover{ opacity: .9; }

/* Hamburger (mobile) */
.hamburger{ display:none; position:absolute; right:20px; top:50%; transform:translateY(-50%);
  flex-direction:column; justify-content:center; align-items:center; gap:6px; cursor:pointer; z-index:1100; }
.hamburger span{ width:28px; height:3px; background:#fff; border-radius:2px; display:block; }

/* ===================== SEZIONI BASE ===================== */
section{ padding-top: 80px; }
.home-hero{ padding-top: 0; }

/* ===================== HERO + DOPPIO FADE SLIDESHOW ===================== */
.home-hero{ position:relative; height:100vh; overflow:hidden; }

/* Solo uno slider a seconda del device */
.desktop-slider{ display:block; } .mobile-slider{ display:none; }
@media (max-width:768px){ .desktop-slider{ display:none; } .mobile-slider{ display:block; } }

/* Contenitore slideshow */
.hero-fade{ position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }

/* Stack delle slide */
.fade-slider{ position:absolute; inset:0; }
.fade-slide{ position:absolute; inset:0; opacity:0; animation:fadeSlide var(--cycle) linear infinite;
  animation-delay: calc(var(--i) * var(--per)); will-change:opacity,transform; }

/* Immagine a pieno schermo + Ken Burns */
.fade-slide img{ width:100%; height:100%; object-fit:cover; display:block;
  animation: kenburns var(--per) ease-in-out forwards; will-change: transform; }

/* Dissolvenza */
@keyframes fadeSlide{ 0%{opacity:0;} 3%{opacity:1;} 18%{opacity:1;} 21%{opacity:0;} 100%{opacity:0;} }
/* Zoom leggero */
@keyframes kenburns{ from{transform:scale(1.05);} to{transform:scale(1.12);} }

/* Velo per contrasto testo */
.hero-fade::after{ content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.45)); z-index:1; }

/* ===================== TESTO HERO (tipografia elegante) ===================== */
.hero-center{
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; text-shadow: 0 2px 12px rgba(0,0,0,.45); color:#fff; padding: 0 18px;
}
.hero-center .kicker{
  font-family:"Montserrat",system-ui,-apple-system,sans-serif; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase; font-size:clamp(11px,1.2vw,14px);
  opacity:.95; margin-bottom:16px;
}
.hero-center .brand{
  font-family:"Great Vibes","Playfair Display",Georgia,serif; font-size:clamp(42px,7vw,86px);
  line-height:1.05; font-weight:400; margin-bottom:14px;
}
.hero-center .subline{
  font-family:"Playfair Display",Georgia,serif; font-weight:700; letter-spacing:.35em;
  text-transform:uppercase; font-size:clamp(12px,1.4vw,15px); opacity:.92;
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce){
  .fade-slide{ animation:none !important; }
  .fade-slide:first-child{ opacity:1; }
  .fade-slide img{ animation:none !important; }
}

/* ===================== TESSERE ===================== */
.bnb-tiles{
  --gap: 28px; padding: 56px 20px; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: var(--gap);
}
@media (max-width:860px){ .bnb-tiles{ grid-template-columns:1fr; max-width:680px; } }

.tile{
  background:#fff; border-radius:20px; overflow:hidden; box-shadow:var(--shadow);
  display:grid; grid-template-rows:auto 1fr;
}
.tile-media{ position:relative; aspect-ratio:16/9; overflow:hidden; }
.tile-media img{ width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.02); transition:transform .4s ease; }
.tile:hover .tile-media img{ transform:scale(1.06); }

.badge{
  position:absolute; left:14px; bottom:14px; background:rgba(0,0,0,.55); color:#fff;
  font-weight:700; font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  padding:8px 10px; border-radius:12px; backdrop-filter: blur(2px);
}

/* Pill "Maggiori dettagli" in alto a destra */
.more-pill{
  position:absolute; right:14px; top:14px;
  background: rgba(255,255,255,.92); color:#0b1b2b;
  font-weight:700; font-size:13px; padding:8px 12px; border-radius:999px;
  text-decoration:none; box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.more-pill:hover{ filter: brightness(.97); }

.tile-body{ padding: 20px 20px 22px; }
.tile-title{ font-family:"Playfair Display",Georgia,serif; font-size:24px; line-height:1.15; margin-bottom:6px; color:#0b1b2b; }
.tile-claim{ font-family:"Montserrat",system-ui,-apple-system,sans-serif; font-size:14px; opacity:.85; margin-bottom:14px; }
.tile-points{ list-style:none; margin:0 0 18px 0; padding:0; display:grid; gap:6px; font-size:14px; }
.tile-points li::before{ content:"•"; margin-right:8px; opacity:.6; }

/* CTA area */
.tile-ctas{ display:flex; flex-wrap:wrap; gap:10px; align-items:flex-start; }

/* ---- MENU A TENDINA (verso il basso, robusto) ---- */
.dropdown{ position: relative; }

.dropdown > summary{
  list-style:none; display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:12px; font-weight:700; cursor:pointer; user-select:none;
  background: var(--sea); color:#fff; transition: filter .2s ease, transform .06s ease;
}
.tile-chalet .dropdown > summary{ background: var(--forest); }
.dropdown > summary::-webkit-details-marker{ display:none; }
.dropdown > summary::after{ content:"▾"; margin-left:8px; font-size:.9em; }
.dropdown > summary:active{ transform: translateY(1px); }

/* La tendina sta NEL FLUSSO della card (niente position:absolute) */
.dropdown .menu{
  display:none; margin-top:8px;
  background:#fff; border:1px solid rgba(0,0,0,.12); border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.12); padding:8px; min-width:220px;
}
.dropdown[open] .menu{ display:grid; gap:4px; }
.dropdown .menu a{
  display:block; padding:10px 12px; border-radius:10px; text-decoration:none; font-weight:700; color:#0b1b2b;
}
.dropdown .menu a:hover{ background: rgba(0,0,0,.06); }

/* Bottoni aggiuntivi */
.btn{ display:inline-block; text-decoration:none; cursor:pointer; border-radius:12px; padding:10px 16px; font-weight:700;
  transition: transform .06s ease, filter .2s ease, background .2s ease, border-color .2s ease; user-select:none; text-align:center; }
.btn:active{ transform: translateY(1px); }

.btn-outline{ border:2px solid rgba(0,0,0,.15); color:#0b1b2b; background:#fff; }
.btn-outline:hover{ border-color: rgba(0,0,0,.25); }

/* titolo tessere */
.section-head{
  max-width: 1100px; margin: 32px auto 8px; padding: 0 20px; text-align: center;
}
.section-title{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.15; margin-bottom: 6px; color: #0b1b2b;
}
.section-sub{
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase; opacity: .75;
}

/* ===== CHI SONO / ABOUT HOST ===== */
.about-host{ padding: 24px 20px 0; }
.about-card{
  max-width: 1100px; margin: 0 auto;
  background:#fff; border-radius:22px; box-shadow: var(--shadow);
  display:grid; grid-template-columns: 180px 1fr; gap: 22px; align-items:center;
  padding: 22px;
}
@media (max-width: 720px){
  .about-card{ grid-template-columns: 1fr; text-align:center; }
}
.host-photo{
  width: 160px; height:160px; border-radius:50%; object-fit:cover; display:block;
  border:6px solid #f7f7f7; box-shadow: 0 6px 16px rgba(0,0,0,.12);
  margin-inline:auto;
}
.about-title{ margin-bottom: 6px; }
.host-name{
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 700; letter-spacing: .02em; margin-bottom: 4px;
}
.lead{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px; line-height: 1.45; margin-bottom: 10px; color:#0b1b2b;
}
.pills{
  list-style:none; display:flex; flex-wrap:wrap; gap:8px; margin: 10px 0 12px; padding:0;
}
.pills li{
  background: rgba(0,0,0,.06); border-radius:999px; padding:8px 12px;
  font-weight:700; font-size:13px;
}
.direct{ margin: 2px 0 12px; font-weight:700; }
.direct a{ color: var(--navy); text-decoration: underline; }
.air-quick{ display:grid; gap:6px; font-size:14px; }
.air-quick .row{ opacity:.95; }
.air-quick .score{ font-weight:700; }
.air-quick .star{ color:#FFC83D; margin-right:6px; }
.tag.superhost{
  display:inline-block; padding:2px 8px; border-radius:999px;
  background:#ff3b7a; color:#fff; font-size:12px; margin-left:6px;
}

/* ===================== RESPONSIVE MENU ===================== */
@media (max-width:768px){
  .nav-links{
    position: fixed; top: 0; right: -260px; width: 260px; height: 100vh;
    background: var(--navy); flex-direction: column; gap: 22px;
    padding: 86px 22px 22px; transition: right .3s ease;
  }
  .nav-links.open{ right: 0; }
  .hamburger{ display: flex; }
}

/* ===== CAROUSEL REVIEWS ===== */
.container{ max-width:1100px; margin:0 auto; padding:0 20px; }

.reviews{ background:var(--bg); padding:40px 0; }
.reviews .section-head{ text-align:center; margin-bottom:14px; }

.carousel{ position:relative; overflow:hidden; }
.carousel-track{ display:flex; gap:20px; transition:transform .6s ease; }
.review-card{ flex:0 0 calc((100% / 2) - 10px); }
@media (max-width:768px){ .review-card{ flex:0 0 100%; } }

/* Badge & testo */
.rev-badge{ font-size:12px; font-weight:700; padding:4px 10px; border-radius:999px; color:#fff; margin-bottom:8px; display:inline-block; }
.rev-badge.mare{ background:var(--sea); } .rev-badge.chalet{ background:var(--forest); }
.rev-head{ font-weight:700; margin-bottom:4px; }
.rev-meta{ font-size:12px; opacity:.6; margin-left:4px; }
.rev-stars{ color:#FFC83D; font-weight:700; margin-bottom:8px; }
.rev-text{ font-size:14px; line-height:1.45; }

/* Dots */
.carousel-dots{ text-align:center; margin-top:14px; }
.carousel-dots button{
  width:10px; height:10px; border-radius:50%; border:none; margin:0 5px;
  background:#cfcfcf; cursor:pointer;
}
.carousel-dots button.active{ background:var(--navy); }

/* ===== FOOTER ===== */
.site-footer{
  background: var(--navy);
  color: #fff;
  padding: 36px 20px 28px;
  margin-top: 48px;
}
.site-footer a{ color:#fff; text-decoration:none; opacity:.95; }
.site-footer a:hover{ opacity:1; text-decoration: underline; }

.foot-wrap{
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 26px;
  grid-template-columns: 1.2fr 1fr 1fr;
}
@media (max-width: 960px){
  .foot-wrap{ grid-template-columns: 1fr; gap: 18px; }
}
.foot-logo{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px; font-weight: 700; margin-bottom: 8px;
}
.superhost-row{ display:flex; align-items:center; gap:10px; margin-bottom: 10px; }
.superhost-badge{
  display:inline-block; padding:6px 10px; border-radius:999px;
  background:#ff3b7a; color:#fff; font-weight:700; font-size:12px; letter-spacing:.02em;
}
.superhost-score{ font-weight:700; opacity:.95; }
.star{ color:#FFC83D; margin-right:6px; }
.contact-mini{ opacity:.95; }
.contact-mini .sep{ margin: 0 8px; opacity:.6; }

/* Ratings per alloggio */
.foot-ratings{ display:grid; gap:14px; }
.listing-title{ font-weight:700; margin-bottom:4px; }
.listing-score{ font-weight:700; margin-bottom:6px; opacity:.95; }
.air-link{
  display:inline-block; padding:6px 10px; border:1px solid rgba(255,255,255,.35);
  border-radius:10px; font-weight:700;
}

/* Legal */
.foot-legal{ display:grid; gap:12px; justify-items:start; }
.codes{ line-height:1.5; }
.copy{ font-size: 12.5px; opacity:.85; }
.copy a{ opacity: .9; }

/* --- Carousel: fix mobile --- */
@media (max-width: 768px){
  .carousel-track{ gap: 0; }
  .review-card{ flex: 0 0 100%; }
}

/* --- Spaziatura più armoniosa su mobile --- */
@media (max-width: 768px){
  section { padding-top: 64px; }
  .about-host{ padding: 32px 16px 8px; }
  .about-card{ padding: 24px 18px; }
  .pills{ gap: 10px; margin: 14px 0 16px; }
  .direct{ margin: 10px 0 14px; }
  .air-quick{ gap: 8px; }
  .reviews{ padding: 36px 0; }
}

/* ====== HERO MARE BLU: allineamento come Magic Chalet ====== */
/* Base: desktop */
.mareblu-page .mb-hero .inner{
  display:grid; justify-items:center; row-gap:10px;
  /* sposta il blocco verso la parte alta del background come su Chalet */
  margin-top: -40vh;
}
.mareblu-page .btn-outline-airbnb{
  display:block; margin:14px auto 0; padding:10px 22px;
  border:2px solid var(--navy); border-radius:12px; font-weight:600; text-decoration:none; text-align:center;
  background:#fff; color:var(--navy); transition:background .2s ease, color .2s ease;
}
.mareblu-page .btn-outline-airbnb:hover{ background:var(--navy); color:#fff; }

/* Tablet */
@media (max-width: 1024px){
  .mareblu-page .mb-hero .inner{ margin-top: -46vh; }
}
/* Mobile medio */
@media (max-width: 768px){
  .mareblu-page .mb-hero .inner{
    margin-top: -50vh;
    display:flex; flex-direction:column; align-items:center; gap:10px;
  }
  .mareblu-page .prenota-main > summary{ padding:11px 22px; font-size:.95rem; border-radius:12px; }
  .mareblu-page .btn-outline-airbnb{ padding:9px 20px; font-size:.95rem; border-radius:11px; max-width:260px; }
}
/* Mobile piccolo */
@media (max-width: 560px){
  .mareblu-page .mb-hero .inner{ margin-top: -52vh; gap:8px; }
  .mareblu-page .prenota-main > summary{ padding:9px 18px; font-size:.9rem; border-radius:11px; }
  .mareblu-page .prenota-main .menu{ min-width:220px; padding:12px; }
  .mareblu-page .prenota-main .menu a{ padding:8px 10px; font-size:.95rem; border-radius:8px; }
  .mareblu-page .btn-outline-airbnb{ padding:8px 18px; font-size:.9rem; border-radius:10px; max-width:230px; }
}
/* Telefono molto piccolo */
@media (max-width: 400px){
  .mareblu-page .mb-hero .inner{ margin-top: -54vh; }
  .mareblu-page .prenota-main > summary{ padding:8px 16px; font-size:.85rem; border-radius:10px; }
  .mareblu-page .btn-outline-airbnb{ padding:7px 16px; font-size:.85rem; border-radius:10px; max-width:210px; }
}

/* ====== CARDS MODERNE MARE BLU ====== */
.cards-wrap{ max-width:1100px; margin:0 auto; padding:0 20px 28px; }

/* Feature grid */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap:18px;
}
@media (max-width: 1020px){
  .feature-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .feature-grid{ grid-template-columns: 1fr; }
}

.feature-card{
  background:#fff; border-radius:18px; box-shadow: var(--shadow);
  border:1px solid rgba(14,35,129,.08);
  padding:16px 16px 14px; display:flex; gap:12px; align-items:flex-start;
}
.feature-card .icon{
  width:32px; height:32px; color: var(--navy); flex: 0 0 32px;
}
.feature-card .icon svg{ width:100%; height:100%; display:block; }
.f-title{
  font-weight:800; color: var(--navy); margin-bottom:4px; font-size:16px;
}
.f-text{ font-size:14px; opacity:.85; }

/* Info cards (check-in) */
.info-cards .info-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(280px,1fr));
  gap:16px;
}
@media (max-width:900px){ .info-cards .info-grid{ grid-template-columns:1fr; } }

.infocard{
  position:relative; background:#fff; border:1px solid rgba(14,35,129,.10);
  border-radius:18px; padding:18px 16px 16px; box-shadow:0 10px 24px rgba(0,0,0,.08);
  transition: transform .12s ease, box-shadow .2s ease; overflow:hidden;
}
.infocard::before{
  content:""; position:absolute; inset:0 0 auto 0; height:4px;
  background: linear-gradient(90deg, var(--navy), rgba(14,35,129,.25)); opacity:.85;
}
.infocard:hover{ transform: translateY(-2px); box-shadow:0 14px 28px rgba(0,0,0,.12); }
.infocard .ico{
  width:40px; height:40px; border-radius:12px; background: rgba(14,35,129,.08);
  color: var(--navy); display:grid; place-items:center; margin-bottom:10px;
}
.infocard .ico svg{ width:22px; height:22px; }
.infocard h3{ margin:0 0 4px; color: var(--navy); font-weight:800; font-size:18px; }
.infocard p{ margin:0; font-size:15px; opacity:.92; }

/* ===== Sezione Dotazioni con 3 foto affiancate ===== */
.amenities-bg{
  position: relative; isolation: isolate; overflow: hidden; padding: 24px 0 32px;
}
.amenities-bg .bg-strip{
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); z-index: -2;
}
.amenities-bg .bg-strip > span{ background-position: center; background-size: cover; background-repeat: no-repeat; }
.amenities-bg .bg1{ background-image: url("images/collage/VISTADALLECAMERE.jpg"); }
.amenities-bg .bg2{ background-image: url("images/collage/VISTADALSOGGIORNO.jpg"); }
.amenities-bg .bg3{ background-image: url("images/collage/tramontoSpioaggia.jpg"); }
.amenities-bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient( to bottom, rgba(255, 255, 255, 0.329) 0%, rgba(255, 255, 255, 0.103) 55%, rgba(255, 255, 255, 0.253) 100% );
  z-index:-1;
}
.amenities-bg .section-head{ position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 0 8px; }
.amenities-bg .section-head h2{
  display:inline-block; background: rgba(255,255,255,.88); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  padding: 4px 14px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.amenities-bg .section-head .section-sub{
  display:inline-block; background:#fff; padding: 6px 16px; border-radius: 12px; font-weight: 800; letter-spacing: .10em; color: var(--navy);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}
@media (max-width: 600px){
  .amenities-bg .bg-strip{ grid-template-columns: 1fr; }
  .amenities-bg .bg2, .amenities-bg .bg3{ display:none; }
}

/* ===== Sezione PUNTEGGI con strip fotografica ===== */
.scores-bg{ position: relative; isolation: isolate; overflow: hidden; padding: 24px 0 32px; }
.scores-bg .bg-strip{ position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); z-index: -2; }
.scores-bg .bg-strip > span{ background-position: center; background-size: cover; background-repeat: no-repeat; }
.scores-bg .bg1{ background-image: url("images/collage/VISTADALLECAMERE.jpg"); }
.scores-bg .bg2{ background-image: url("images/collage/moloGrado.jpg"); }
.scores-bg .bg3{ background-image: url("images/collage/VISTADALSOGGIORNO.jpg"); }
.scores-bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient( to bottom, rgba(255,255,255,.35) 0%, rgba(255,255,255,.25) 40%, rgba(255,255,255,.45) 100% );
  z-index:-1;
}
.scores-bg .section-head{ position: relative; display:flex; flex-direction:column; align-items:center; gap:8px; padding:18px 0 8px; }
.scores-bg .section-head h2,
.scores-bg .section-head .section-sub{ display:block; width:fit-content; }
.scores-bg .section-head h2{
  background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  padding: 4px 14px; border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.scores-bg .section-head .section-sub{
  background:#fff; padding:6px 16px; border-radius:12px; font-weight:800; letter-spacing:.10em; color:var(--navy);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}
@media (max-width: 600px){
  .scores-bg .bg-strip{ grid-template-columns: 1fr; }
  .scores-bg .bg2, .scores-bg .bg3{ display:none; }
}

.scores-grid{ display:grid; grid-template-columns: repeat(6, minmax(120px,1fr)); gap:14px; }
@media (max-width: 900px){ .scores-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){ .scores-grid{ grid-template-columns: repeat(2, 1fr); } }
.score-card{
  background:#fff; border-radius:16px; box-shadow: var(--shadow);
  border:1px solid rgba(14,35,129,.08); padding:16px 14px; text-align:center; display:grid; place-items:center; gap:6px;
}
.s-icon{ color:#FFC83D; font-size:18px; line-height:1; }
.score-card strong{ font-size:20px; color: var(--navy); }
.score-card small{
  display:block; margin-top:6px;
  font-size: clamp(1rem, 0.6vw + 0.7rem, 1.15rem);
  font-weight:700; letter-spacing:.01em; color:var(--navy); opacity:.98;
}

/* ===== GALLERY SPAZI – CARDS MODERNE BLU ===== */
.spaces-carousel{ position: relative; max-width: 1100px; margin: 0 auto 8px; padding: 0 20px 28px; }
.spaces-scroller{
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3); gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.spaces-scroller::-webkit-scrollbar{ display:none; }
.space-card{
  scroll-snap-align: start; background: #fff; border-radius: 18px; border: 1px solid rgba(14,35,129,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.08); overflow: hidden; display: grid; grid-template-rows: auto 1fr;
}
.space-photo{ aspect-ratio: 16/11; overflow: hidden; }
.space-photo img{ width:100%; height:100%; object-fit: cover; display:block; }
.space-body{ padding: 14px 14px 16px; }
.space-title{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.space-title h3{ margin:0; font-weight:800; color: var(--navy); font-size: 18px; }
.s-icon{ width:24px; height:24px; color: var(--navy); flex:0 0 24px; }
.s-icon svg{ width:100%; height:100%; display:block; }
.space-body p{ margin:0; font-size:14px; opacity:.92; }
.spaces-nav{
  position:absolute; top: 50%; transform: translateY(-50%);
  width:42px; height:42px; border-radius: 50%; display:grid; place-items:center;
  background: #fff; color: var(--navy); border:1px solid rgba(14,35,129,.15);
  box-shadow: 0 6px 18px rgba(0,0,0,.15); cursor:pointer; transition: transform .08s ease, filter .2s ease;
}
.spaces-nav:hover{ filter: brightness(.95); }
.spaces-nav:active{ transform: translateY(-50%) scale(.97); }
.spaces-nav.prev{ left: 10px; }
.spaces-nav.next{ right: 10px; }
@media (max-width: 1024px){
  .spaces-scroller{ grid-auto-columns: calc((100% - 16px) / 2); }
}
@media (max-width: 600px){
  .spaces-scroller{ grid-auto-columns: 100%; }
}

/* ——— DOVE SARAI: spaziatura migliore ——— */
#where .section-head .section-sub{ margin-top: 6px; margin-bottom: 16px; }
#where .section-head + .where-paragraph{ margin-top: 12px; }
.where-paragraph{ max-width: 980px; margin: 0 auto 22px; padding: 0 8px; }
@media (max-width: 768px){
  #where .section-head, .where-paragraph{ padding-inline: 18px; }
}
@media (max-width: 420px){
  #where .section-head, .where-paragraph{ padding-inline: 22px; }
}


/* Footer: testo di contatto e sconto diretto */
.site-footer .contact-lead{
  margin: 8px 0 6px;
  font-weight: 700;
  opacity: .95;
}
.site-footer .contact-discount{
  margin-top: 8px;
  font-weight: 800;
}
