:root{
  --bg:#0b1220;
  --surface:#0f1a2c;
  --card:#101f35;
  --text:#e9f0ff;
  --muted:#b8c7e6;
  --line:rgba(255,255,255,.12);
  --brand:#33b3e6;
  --brand2:#7ad7ff;
  --ok:#4ade80;
  --warn:#fbbf24;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}
@media (prefers-color-scheme: light){
  :root{
    --bg:#f6fbff;
    --surface:#ffffff;
    --card:#ffffff;
    --text:#0a1220;
    --muted:#4a5a73;
    --line:rgba(10,18,32,.12);
    --shadow: 0 12px 30px rgba(10,18,32,.10);
  }
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% -10%, rgba(51,179,230,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(122,215,255,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%; height:auto; display:block}

/* Typography + spacing reset (v12) */
h1,h2,h3,h4{margin:0 0 10px}
p{margin:0 0 12px}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 12px; padding-left:18px}
li{margin:6px 0}
hr{border:0; border-top:1px solid var(--line); margin:16px 0}


/* Typography + spacing reset (v12) */
h1,h2,h3,h4{margin:0 0 10px}
p{margin:0 0 12px}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 12px; padding-left:18px}
li{margin:6px 0}
hr{border:0; border-top:1px solid var(--line); margin:16px 0}


/* Typography rhythm: reduce empty spaces, improve readability */
h1,h2,h3,h4{margin:0 0 10px}
p{margin:0 0 12px; color:color-mix(in srgb, var(--text) 92%, var(--muted))}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 12px; padding-left:18px}
li{margin:6px 0}

/* Compact vertical rhythm (still breathable) */
main{padding:18px 0 34px}
section{margin-top:14px}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skiplink{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skiplink:focus{left:18px; top:12px; width:auto; height:auto; padding:10px 14px; background:var(--surface); border:1px solid var(--line); border-radius:12px; z-index:9999}

header.site-header{
  position:sticky; top:0; z-index:50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  min-width:0;
  flex-wrap:nowrap; /* mai sotto: resta affiancato */
}
.brandmark{display:flex; flex-direction:column; gap:6px; min-width:0; flex:1 1 auto;}

.brand img{max-width:100%; height:auto; display:block;}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border:1px solid var(--line);
  border-radius:999px; color:var(--muted);
  font-size:13px;
}
.nav{
  display:flex; align-items:center; gap:10px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  transition:background .2s ease, color .2s ease;
  font-size:14px;
}
.nav a:hover{background:color-mix(in srgb, var(--brand) 12%, transparent); color:var(--text)}
.nav a[aria-current="page"]{background:color-mix(in srgb, var(--brand) 18%, transparent); color:var(--text); border:1px solid var(--line)}
.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:color-mix(in srgb, var(--surface) 80%, transparent);
  color:var(--text);
  text-decoration:none;
  box-shadow:none;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  font-weight:600;
  font-size:14px;
}
.btn:hover{background:color-mix(in srgb, var(--brand) 12%, var(--surface)); border-color:color-mix(in srgb, var(--brand) 28%, var(--line))}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 92%, #0b1220), color-mix(in srgb, var(--brand2) 80%, #0b1220));
  border-color: color-mix(in srgb, var(--brand2) 35%, var(--line));
  color:#051018;
}
.btn.ghost{background:transparent}

.mobile-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
}
.mobile-toggle svg{width:22px; height:22px}
.mobile-drawer{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 16px;
}
.mobile-drawer a{
  display:block;
  padding:14px 14px;
  border-radius:14px;
  color:var(--muted);
  text-decoration:none;
  font-size:18px;
  line-height:1.25;
}
.mobile-drawer a:hover{background:color-mix(in srgb, var(--brand) 12%, transparent); color:var(--text)}

@media (max-width: 980px){
  /* Bigger mobile drawer text */
  .mobile-drawer a{font-size:clamp(26px, 6.5vw, 36px); padding:18px 16px;}

  .nav{display:none}
  .badge{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; justify-content:center}
  .mobile-drawer.open{display:block}
  .brand img{max-width:100%; height:auto; display:block;}
}

main{padding:18px 0 34px}
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
  margin-top:12px;
}
.hero .panel{
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero .content{padding:18px}
.kicker{color:var(--muted); font-weight:600; letter-spacing:.2px}
h1{font-size:34px; line-height:1.15; margin:10px 0 10px}
.lead{font-size:16px; color:var(--muted); margin:0 0 16px}
.meta-row{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  background:color-mix(in srgb, var(--surface) 78%, transparent);
}
.hero .image{
  position:relative;
  min-height:260px;
  /* When we avoid cropping, the container can show a subtle background */
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
}
/*
  IMPORTANT: Many of your photos (and brochure scans) are meaningful and
  must not be cut. We therefore default to "contain" instead of "cover".
  If in the future you want a specific image to be full-bleed, add the
  class "img-cover" to that <img>.
*/
.hero .image img{
  width:100%;
  height:auto;
  max-height:560px;
  object-fit:contain;
  object-position:center;
  display:block;
}
.hero .image img.img-cover{object-fit:cover}
.hero .image .overlay{
  position:absolute; inset:0;
  /* Softer overlay: images are no longer cropped, so we keep them readable without darkening too much */
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.40));
}
.hero .image .caption{
  position:absolute; left:16px; right:16px; bottom:14px;
  color:#fff;
  font-weight:700;
  text-shadow:0 6px 20px rgba(0,0,0,.55);
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  h1{font-size:30px}
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  grid-column: span 6;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card .pad{padding:16px}
.card h2{margin:0 0 8px; font-size:20px}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 10px; color:var(--muted)}
.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.card img{
  width:100%;
  height:220px;
  object-fit:contain;
  object-position:center;
  background: color-mix(in srgb, var(--brand) 6%, var(--surface));
}
.card img.img-cover{object-fit:cover}
.card.small img{height:180px}
@media (max-width: 900px){ .card{grid-column: span 12} }

.section-title{
  margin:26px 0 10px;
  font-size:22px;
}
hr.sep{border:0; border-top:1px solid var(--line); margin:24px 0}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
}
.table th,.table td{
  padding:12px 12px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.table th{background:color-mix(in srgb, var(--brand) 10%, transparent); color:var(--text); font-size:14px}
.table td{color:var(--muted); font-size:14px}
.table tr:last-child td{border-bottom:0}

.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.form .full{grid-column: 1 / -1}
label{display:block; font-size:13px; color:var(--muted); margin:0 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:color-mix(in srgb, var(--surface) 84%, transparent);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus,textarea:focus,select:focus{border-color:color-mix(in srgb, var(--brand2) 55%, var(--line)); box-shadow:0 0 0 4px color-mix(in srgb, var(--brand2) 18%, transparent)}
.helper{font-size:13px; color:var(--muted)}
.form-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}

footer.site-footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:18px;
}
.footer-grid h3{margin:0 0 8px; font-size:16px}
.footer-grid p,.footer-grid a{color:var(--muted); text-decoration:none; font-size:14px}
.footer-grid a:hover{color:var(--text)}
.footer-note{margin-top:18px; color:var(--muted); font-size:13px}
@media (max-width: 900px){ .footer-grid{grid-template-columns:1fr} }


/* ============================
   Media + sections (v2)
   - orderly images (no crop)
   - less "dry" reading rhythm
   ============================ */

.section{margin-top:18px}
.section-subtitle{color:var(--muted); margin:0 0 10px; max-width:72ch}

.sublead{color:color-mix(in srgb, var(--muted) 92%, #fff); margin:0 0 14px; max-width:72ch}

.bullets{margin:10px 0 0; padding-left:18px; color:var(--text)}
.bullets li{margin:6px 0; color:color-mix(in srgb, var(--text) 92%, var(--muted))}

.media{margin:0; width:100%; background: color-mix(in srgb, var(--brand) 7%, var(--surface)); border-bottom:1px solid var(--line)}
.media img{width:100%; height:auto; object-fit:contain; object-position:center}

.media--hero{max-height:560px}
.media--card{height:240px}

.hero .image{display:flex; flex-direction:column}
.hero .image .overlay{pointer-events:none}
.hero .image .caption{font-size:14px; letter-spacing:.2px}

/* Cards: rely on aspect-ratio of the figure */
.card > img{height:auto; object-fit:contain}
.card .pad{padding:16px}
.card h2{font-size:20px; margin:0 0 10px}
.card p{margin:0 0 10px; color:color-mix(in srgb, var(--text) 92%, var(--muted))}
.card p.muted,.muted{color:var(--muted)}


/* ============================
   Home tuning (v3)
   - zero crop guarantee
   - captions under images
   - FAQ styling
   ============================ */

.media{display:flex; align-items:center; justify-content:center; overflow:hidden}
.media--pad{padding:10px}
.media--pad img{border-radius:14px}

.media--banner{height:240px}

.caption-under{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}

.note{
  margin-top:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  color:color-mix(in srgb, var(--text) 92%, var(--muted));
  max-width:72ch;
}

.faq{margin-top:12px; max-width:900px}
.faq details{
  border:1px solid var(--line);
  border-radius:16px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq details p{margin:10px 0 0; color:var(--muted)}


/* Media sizing: keep images fully visible (no crop) */
.media--card,
.media--banner{
  display:flex;
  align-items:center;
  justify-content:center;
}
.media--card img,
.media--banner img{
  max-height:220px;
  width:auto;
  max-width:100%;
}

/* Booking box */
.booking-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
  margin-top:18px;
}
@media (max-width: 900px){
  .booking-grid{grid-template-columns:1fr}
}
.hours-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.hours-table th,.hours-table td{
  text-align:left;
  padding:10px 10px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.hours-table th{color:var(--muted); font-weight:800}
.small-muted{color:var(--muted); font-size:13px}

@media (min-width: 981px){.hours-sticky{position:sticky; top:88px}}

.toast{
  position:fixed; left:50%; bottom:18px; transform:translateX(-50%);
  background:rgba(15,23,42,.92); color:#fff; padding:10px 12px;
  border-radius:999px; font-size:13px; box-shadow:0 10px 28px rgba(0,0,0,.25);
  opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease;
  z-index:9999;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(-4px)}

/* === Logo più visibile (header) === */
.site-header .brand{
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  background:#fff;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.site-header .brand img{
  width:clamp(300px, 36vw, 680px);
  height:auto;
  display:block;
  background:transparent;
  padding:0;
  border:none;
  border-radius:0;
  box-shadow:none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.18));
}
.site-header .badge{
  background:#f3f7fb;
  border:1px solid rgba(0,0,0,.10);
  color:#1b2a41;
  font-weight:600;
  letter-spacing:.2px;
}
@media (max-width: 900px){
  .site-header .brand{padding:10px 12px; border-radius:16px}
  .site-header .brand img{width:min(92vw, 560px);}
  .site-header .badge{font-size:12px; padding:6px 10px}
}
/* === Fine logo header === */

/* --- Logo prominence (elegant, no stravolgimenti) --- */
.site-header .header-inner{
  flex-wrap: wrap;
  row-gap: 10px;
}
.site-header .brand{
  /* più “importante” ma pulito */
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, rgba(0,0,0,.10));
  box-shadow: 0 16px 44px rgba(0,0,0,.14);
  background: #fff;
}
.site-header .brand img{
  width: clamp(280px, 34vw, 640px);
  max-width: min(640px, 78vw);
  height: auto;
  display: block;
  /* rimuovo “doppia cornice” sull’immagine: la cornice resta sul box brand */
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.site-header .badge{
  font-size: 14px;
  padding: 7px 12px;
  border-color: color-mix(in srgb, var(--brand) 18%, var(--line));
  background: color-mix(in srgb, var(--brand) 4%, #fff);
  color: color-mix(in srgb, var(--text) 70%, var(--brand));
}
@media (max-width: 900px){
  .site-header .brand{
    padding: 14px 14px;
    border-radius: 20px;
  }
  .site-header .brand img{
    width: clamp(240px, 78vw, 520px);
    max-width: 100%;
  }
}



/* ===== Header v4: logo più importante + immagine a fianco (elegante) ===== */
.site-header .header-inner{padding:16px 0;} /* un filo più alto */
.brand{gap:16px;}
.brandmark{display:flex; flex-direction:column; gap:6px; min-width:0;}
.brandmark .badge{align-self:flex-start;}
/* Logo più grande e sempre leggibile */
.brand img.logo{
  /* Logo importante ma compatibile: cresce in altezza, non forza l'andare a capo */
  height:clamp(52px, 6vw, 86px);
  width:auto;
  max-width:min(540px, 48vw);
  display:block;
  background:#fff;
  padding:10px 14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 26px rgba(0,0,0,.10);
}
/* Illustrazione a fianco del logo (sempre a fianco, mai sotto) */
.brand img.brand-side{
  flex:0 0 auto;
  height:clamp(48px, 5.5vw, 78px);
  width:auto;
  max-width:clamp(120px, 26vw, 320px);
  object-fit:contain;
  display:block;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

/* Mobile: logo + immagine sempre affiancati (si ridimensionano, non vanno a capo) */
@media (max-width: 860px){
  .header-inner{flex-wrap:nowrap;}
  .brand{flex:1 1 auto; flex-wrap:nowrap; gap:10px;}
  .brandmark{min-width:0; flex:1 1 auto;}
  .brand img.logo{height:clamp(46px, 10vw, 64px); max-width:62vw; padding:8px 10px; border-radius:16px;}
  .brand img.brand-side{height:clamp(44px, 9.5vw, 58px); max-width:34vw; border-radius:14px;}
  .actions{gap:8px;}
  .actions .btn{height:44px; padding:10px 12px;}
  .actions .btn.primary{white-space:nowrap;}
}
  .brand{flex:1 1 100%;}
  .nav{display:none;}
  .brand{flex-wrap:wrap;}
  .brand img.brand-side{width:min(92vw, 420px);}
  .brand img.logo{width:min(92vw, 560px);}
}


/* Prose blocks (technical long-form text) */
.prose{max-width:78ch; font-size:16px; line-height:1.75; color:var(--text)}
.prose p{margin:0 0 14px}
.prose h3{margin:18px 0 10px; font-size:18px}
.principles{display:grid; gap:10px; margin:12px 0 16px}
.principles dt{font-weight:700}
.principles dd{margin:0; color:var(--muted)}

@media (max-width:520px){.header-inner{min-height:86px}}


/* Typo helper per testi tecnici (RPG) */
.mini-title{margin:14px 0 8px; font-size:16px; letter-spacing:.2px;}
.checklist{margin:10px 0 0; padding-left:18px;}
.checklist li{margin:8px 0; line-height:1.55;}


@media (max-width: 540px){
  .site-header{padding:14px 0;}
  .brand{gap:10px;}
  .brand img.logo{
    width:min(60vw, 360px);
    padding:8px 10px;
    border-radius:16px;
  }
  .brand img.brand-side{
    max-width:38vw;
    min-width:120px;
    height:54px;
    border-radius:12px;
  }
}



/* Media images: zero-crop by default */
.media-img{width:100%; height:auto; object-fit:contain; object-position:center;}

.micro-link{margin:8px 0 0; font-size:14px; color:var(--muted)}
.micro-link a{color:var(--brand); text-decoration:none; border-bottom:1px dashed color-mix(in srgb, var(--brand) 45%, transparent)}
.micro-link a:hover{border-bottom-style:solid}

/* ============================
   v8: riempimento spazi (icone + immagini inline)
   ============================ */

.sep-icon{display:flex; justify-content:center; align-items:center; margin:14px 0 18px; opacity:.95}
.sep-icon img{width:min(240px, 70%); height:auto}

.text-media{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:16px;
  align-items:start;
}
.text-media figure{
  margin:0;
  padding:10px;
  border:1px solid var(--line);
  border-radius:16px;
  background: color-mix(in srgb, var(--brand) 6%, var(--surface));
}
.text-media figure img{border-radius:12px}
.text-media figcaption{margin-top:8px; color:var(--muted); font-size:13px; line-height:1.35}

.prose .callout{
  margin:14px 0;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: color-mix(in srgb, var(--brand) 10%, var(--surface));
}
.prose .callout .tag{display:inline-flex; gap:8px; align-items:center; font-weight:800}
.prose .callout .tag img{width:18px; height:18px}

@media (max-width: 900px){
  .text-media{grid-template-columns:1fr}
}

/* Header: immagine SEMPRE a fianco del logo (mai sotto) */
@media (max-width: 860px){
  .site-header .header-inner{flex-wrap:nowrap; align-items:center}
  .brand{flex-wrap:nowrap}
  .brand img.logo{width:clamp(220px, 58vw, 420px); padding:8px 10px}
  .brand img.brand-side{max-width:clamp(140px, 34vw, 220px); height:44px}
}


/* ============================
   Richness tuning (v9)
   - fill whitespace with subtle symbols
   - banner triple images on home
============================ */
section{margin-top:14px} /* tighter rhythm */

.banner-triple{
  margin-top:14px;
}
.banner-triple__wrap{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
}
.banner-triple__wrap img{
  flex:1 1 0;
  min-width:0;
  display:block;
  width:100%;
  height:clamp(110px, 12vw, 170px);
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:12px;
}

@media (max-width: 720px){
  .banner-triple__wrap{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:6px;
  }
  .banner-triple__wrap img{height:110px; padding:10px}
}

/* Rich prose: add small marker between paragraphs (no clutter) */
.prose.prose--rich p + p{
  padding-top:6px;
  margin-top:0;
}
.prose.prose--rich p + p::before{
  content:"";
  display:block;
  width:30px;
  height:30px;
  margin:8px 0 10px;
  background:url("../img/icons/posture-2.png") no-repeat center/contain;
  opacity:.22;
}
/* alternate markers for variety if you set data-marker on container */
.prose.prose--rich[data-marker="4"] p + p::before{background-image:url("../img/icons/posture-4.png")}
.prose.prose--rich[data-marker="5"] p + p::before{background-image:url("../img/icons/posture-5.png")}
.prose.prose--rich[data-marker="6"] p + p::before{background-image:url("../img/icons/posture-6.png")}

/* Section watermark (very subtle) */
.section{
  position:relative;
}
.section::after{
  content:"";
  position:absolute;
  right:14px;
  top:14px;
  width:64px;
  height:64px;
  background:url("../img/icon-rpg.svg") no-repeat center/contain;
  opacity:.05;
  pointer-events:none;
}



/* AUTO_MEDIA_V1 */
.icon-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin:14px 0 6px;
}
.icon-row .icon-dot{
  width:34px;
  height:34px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,34,51,.10);
  box-shadow: 0 8px 18px rgba(10,18,32,.10);
  padding:6px;
  object-fit:contain;
}

.section-visual{
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.section-visual .icon-list{
  margin: 10px 0 0;
  padding-left: 18px;
}
.section-visual .icon-list li{
  margin: 8px 0;
  color: rgba(240,248,255,.86);
}

.mini-gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.mini-gallery .thumb{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 26px rgba(0,0,0,.25);
}
.mini-gallery .thumb img{
  width:100%;
  height: 240px;
  object-fit: contain; /* zero crop */
  background: rgba(255,255,255,.03);
  display:block;
}

@media (max-width: 880px){
  .mini-gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mini-gallery .thumb img{ height: 220px; }
}
@media (max-width: 560px){
  .mini-gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mini-gallery .thumb img{ height: 180px; }
}
@media (max-width: 380px){
  .mini-gallery{ grid-template-columns: 1fr; }
  .mini-gallery .thumb img{ height: 220px; }
}


/* Index: make "In evidenza" gallery big and readable */
.section-visual[data-page="index"] .mini-gallery{grid-template-columns:repeat(3, minmax(0,1fr));}
.section-visual[data-page="index"] .mini-gallery .thumb img{height:300px;}
@media (max-width: 880px){
  .section-visual[data-page="index"] .mini-gallery{grid-template-columns:repeat(2, minmax(0,1fr));}
  .section-visual[data-page="index"] .mini-gallery .thumb img{height:240px;}
}
@media (max-width: 560px){
  .section-visual[data-page="index"] .mini-gallery{grid-template-columns:1fr;}
  .section-visual[data-page="index"] .mini-gallery .thumb img{height:260px;}
}


/* Extra-small phones: CTA "Prenota" sempre in scala e tappabile */
@media (max-width: 420px){
  .actions .btn{height:42px; padding:9px 10px; border-radius:14px; font-size:13px;}
  .mobile-toggle{width:42px; height:42px; border-radius:14px;}
  .brand img.logo{padding:7px 9px;}
}
