/* =========================================================
   ALKECÈ — BLOG STYLESHEET (assets/blog.css)
   Foglio di stile CONDIVISO dalle pagine del blog.

   Le sezioni 1-8 sono estratte 1:1 dal design system del sito
   (variabili/nav/drawer/footer da index.html; .container,
   .breadcrumb, .page-hero/.page-title/.page-lead, .meta-pills,
   .btn/.btn-fill/.btn-line, .link-line, .prose sono le stesse
   classi già usate in camere.html / dintorni.html / dintorni-*.html
   — fanno parte dello stesso design system, non sono invenzioni).
   Palette: notte / brass / cream. Nessuna palette agricantus qui.

   Le pagine blog NON includono selettore lingua né cookie
   banner: nessun servizio terzo (niente Google Translate) viene
   caricato da queste pagine — il footer rimanda direttamente a
   index.html per Privacy/Cookie/Termini (nessuna modale legale
   duplicata sulle pagine blog).

   La sezione 9 contiene i componenti NUOVI, specifici del blog
   (pillola categoria, filtri, featured, griglia card, hero
   articolo, prose, callout, box CTA soggiorno, correlati,
   .article-figure per foto future).
========================================================= */

/* ===== 1. VARIABILI (identiche a index.html) ===== */
:root {
  --night: #0E1620;
  --night-2: #050A11;
  --night-3: #1A2332;
  --brass: #B8935A;
  --brass-2: #94733F;
  --brass-soft: #D8B576;
  --cream: #EAE3D2;
  --cream-2: #D8CFB9;
  --gray: #6B7280;
  --gray-2: #9CA3AF;
  --line: rgba(234,227,210,0.12);
  --line-2: rgba(234,227,210,0.22);
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Space Grotesk', -apple-system, sans-serif;
  --gutter: clamp(20px, 4vw, 60px);
  --max: 1480px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== 2. RESET + TIPOGRAFIA BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0 !important; padding: 0 !important; max-width: 100vw !important; width: 100% !important; overflow-x: hidden !important; }
body { font-family: var(--font-sans); background: var(--night); color: var(--cream); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
main { display: block; width: 100%; }
img { max-width: 100%; display: block; background: var(--night-3); }
img.broken { background: var(--night-3); }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--brass); color: var(--night); }

/* ===== 3. NAV (identica al sito, senza selettore lingua) ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: linear-gradient(180deg, rgba(14,22,32,0.7) 0%, transparent 100%); transition: all 0.4s var(--ease); }
.nav.scrolled { background: rgba(14,22,32,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 14px var(--gutter); }
.nav-brand { font-family: var(--font-display); font-size: 22px; font-weight: 500; font-style: italic; letter-spacing: 0.01em; color: var(--cream); }
.nav-brand .dot { color: var(--brass); }
.nav-menu { justify-self: center; display: flex; gap: 36px; list-style: none; }
.nav-menu a { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--cream-2); transition: color 0.3s; }
.nav-menu a:hover { color: var(--brass); }
.nav-menu a.current { color: var(--brass); }
.nav-cta-wrap { justify-self: end; display: flex; align-items: center; gap: 24px; }
.nav-time { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.18em; color: var(--gray-2); }
.nav-time .live { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); animation: pulseDot 1.6s infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.nav-cta { background: var(--brass); color: var(--night); padding: 12px 24px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-cta:hover { background: var(--brass-soft); }
.nav-burger { display: none; }
@media (max-width: 1000px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-menu li { display: none; }
  .nav-menu { gap: 0; justify-self: end; }
  .nav-time, .nav-cta-wrap { display: none; }
  .nav-burger { display: flex; flex-direction: column; gap: 4px; padding: 8px; cursor: pointer; }
  .nav-burger span { width: 22px; height: 1.5px; background: var(--cream); transition: transform 0.4s ease, opacity 0.3s ease; }
}

/* ===== 4. MOBILE DRAWER (identico al sito) ===== */
.nav-drawer { position: fixed; inset: 0; z-index: 999; background: var(--night-2); color: var(--cream); display: flex; flex-direction: column; justify-content: flex-end; gap: 0; opacity: 0; visibility: hidden; transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease); padding: 100px var(--gutter) 64px; overflow-y: auto; }
.nav-drawer::after { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 88px; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.7s var(--ease) 0.1s; }
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer.open::after { transform: scaleX(1); }
.nav-drawer .drawer-meta { position: absolute; top: 32px; left: var(--gutter); display: flex; flex-direction: column; gap: 4px; opacity: 0; transition: opacity 0.4s var(--ease) 0.2s; }
.nav-drawer.open .drawer-meta { opacity: 1; }
.nav-drawer .drawer-meta .lab { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brass); font-weight: 500; }
.nav-drawer .drawer-meta .place { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--cream-2); }
.nav-drawer a:not(.drawer-cta) { color: var(--cream); font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.4rem); font-weight: 400; line-height: 1; padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s, padding-left 0.4s; letter-spacing: -0.005em; }
.nav-drawer a:not(.drawer-cta) i { font-style: italic; color: var(--brass); font-weight: 400; }
.nav-drawer a:not(.drawer-cta)::after { content: attr(data-num); font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.3em; color: var(--brass); font-weight: 500; opacity: 0.7; }
.nav-drawer a:not(.drawer-cta):hover { color: var(--brass-soft); padding-left: 12px; }
.nav-drawer.open a { opacity: 1; transform: translateY(0); }
.nav-drawer.open a:nth-of-type(1) { transition-delay: 0.18s; }
.nav-drawer.open a:nth-of-type(2) { transition-delay: 0.26s; }
.nav-drawer.open a:nth-of-type(3) { transition-delay: 0.34s; }
.nav-drawer.open a:nth-of-type(4) { transition-delay: 0.42s; }
.nav-drawer.open a:nth-of-type(5) { transition-delay: 0.50s; }
.nav-drawer.open a:nth-of-type(6) { transition-delay: 0.58s; }
.nav-drawer .drawer-cta { margin-top: 36px; padding: 18px 36px; background: var(--brass); color: var(--night-2); border-radius: 0; font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; align-self: flex-start; transition: background 0.3s, color 0.3s, transform 0.4s var(--ease); }
.nav-drawer .drawer-cta:hover { background: var(--cream); transform: translateY(-2px); }
.nav-drawer-close { position: absolute; top: 22px; right: var(--gutter); width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--cream); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; background: transparent; cursor: pointer; transition: background 0.3s, border-color 0.3s, transform 0.4s; }
.nav-drawer-close:hover { background: var(--brass); border-color: var(--brass); color: var(--night-2); transform: rotate(90deg); }
body.menu-open { overflow: hidden; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ===== 5. LAYOUT BASE (stesse classi di camere.html / dintorni.html) ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--brass); display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brass); }

h2.title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -0.005em; color: var(--cream); }
h2.title i { font-style: italic; color: var(--brass); }
.lead-italic { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 1.4vw, 1.4rem); color: var(--cream-2); line-height: 1.5; margin-top: 24px; max-width: 50ch; }

.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--gray-2); margin-bottom: 26px; transition: color 0.3s; }
.breadcrumb::before { content: '\2190'; color: var(--brass); transition: transform 0.3s; display: inline-block; }
.breadcrumb:hover { color: var(--brass); }
.breadcrumb:hover::before { transform: translateX(-3px); }

.page-hero { padding: clamp(120px, 20vw, 168px) var(--gutter) 56px; background: var(--night); border-bottom: 1px solid var(--line); }
h1.page-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1.06; letter-spacing: -0.01em; color: var(--cream); max-width: 22ch; }
h1.page-title i { font-style: italic; color: var(--brass); }
p.page-lead { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--gray-2); line-height: 1.6; max-width: 56ch; margin-top: 20px; }

.meta-pills { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; }
.meta-pills span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.meta-pills span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: 0.6; }
.meta-pills span:first-child::before { display: none; }

/* ===== 6. BOTTONI (identici al sito) ===== */
.btn { display: inline-flex; align-items: center; gap: 14px; padding: 18px 28px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s var(--ease); }
.btn-fill { background: var(--brass); color: var(--night); }
.btn-fill:hover { background: var(--cream); }
.btn-line { background: transparent; color: var(--cream); border: 1px solid var(--line-2); }
.btn-line:hover { border-color: var(--brass); color: var(--brass); }
.btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; transition: width 0.3s; }
.btn:hover .arrow { width: 26px; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

.link-line { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-2); display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s, gap 0.3s; }
.link-line::after { content: '\2192'; transition: transform 0.3s; }
.link-line:hover { color: var(--brass); gap: 12px; }

/* ===== 7. REVEAL ON SCROLL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ===== 8. FOOTER + TO-TOP (identici al sito, link legali → index.html) ===== */
footer { background: var(--night-2); color: var(--cream); padding: 80px var(--gutter) 32px; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-brand h4 { font-family: var(--font-display); font-style: italic; font-size: 36px; color: var(--cream); margin-bottom: 16px; }
.footer-brand h4 .dot { color: var(--brass); }
.footer-brand p { color: var(--gray-2); font-size: 14px; max-width: 30ch; line-height: 1.6; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: var(--cream-2); font-size: 14px; margin-bottom: 6px; transition: color 0.3s; }
.footer-col a:hover { color: var(--brass); }
.footer-legal { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; padding: 18px var(--gutter) 0; max-width: var(--max); margin: 0 auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-2); border-top: 1px solid var(--line); }
.footer-legal a { color: var(--cream-2); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.footer-legal a:hover { color: var(--brass); border-bottom-color: var(--brass); }
.footer-legal .sep { width: 3px; height: 3px; background: var(--line-2); border-radius: 50%; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11px; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; }
.footer-bottom a { color: var(--brass); }
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .footer-legal { gap: 12px; font-size: 10px; } .footer-legal .sep { display: none; } }

.to-top { position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 80; width: 46px; height: 46px; border-radius: 50%; background: var(--night-3); border: 1px solid var(--line-2); color: var(--brass); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s, background 0.3s, border-color 0.3s; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.5); }
.to-top.in { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brass); border-color: var(--brass); color: var(--night); }

/* =========================================================
   9. COMPONENTI BLOG (nuovi)
========================================================= */

/* --- Pillola categoria (card, featured, hero articolo) --- */
.blog-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass);
  background: var(--night-2);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: 6px 12px;
}

/* --- Header pagina blog.html (basato su .page-hero) --- */
.blog-hero { padding: clamp(120px, 20vw, 168px) 0 40px; background: var(--night); border-bottom: 1px solid var(--line); }
.blog-hero p.page-lead { margin-top: 22px; }

/* --- Filtri categoria (pillole cliccabili, JS vanilla) --- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 8px; }
.blog-filters button {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-2); background: transparent;
  border: 1px solid var(--line-2); border-radius: 0;
  padding: 10px 18px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.blog-filters button:hover { border-color: var(--brass); color: var(--brass); }
.blog-filters button.active { background: var(--brass); color: var(--night); border-color: var(--brass); }

/* --- Featured article (box grande in evidenza) --- */
.blog-featured {
  display: block; position: relative; overflow: hidden;
  background: var(--night-2); border: 1px solid var(--line);
  padding: clamp(36px, 5vw, 64px);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.blog-featured:hover { transform: translateY(-4px); border-color: var(--brass); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55); }
.blog-featured .kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 26px;
}
.blog-featured .kicker::before { content: ""; width: 32px; height: 1px; background: var(--brass); }
.blog-featured h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.01em;
  max-width: 19ch; color: var(--cream);
}
.blog-featured h2 i { font-style: italic; color: var(--brass); }
.blog-featured .excerpt { margin-top: 18px; max-width: 58ch; font-size: 15px; color: var(--gray-2); line-height: 1.6; }
.blog-featured .meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-2); }
.blog-featured .go { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); border-bottom: 1px solid var(--line-2); padding-bottom: 5px; transition: gap 0.3s, border-color 0.3s; }
.blog-featured .go::after { content: '\2192'; transition: transform 0.3s; }
.blog-featured:hover .go::after { transform: translateX(4px); }

/* --- Griglia magazine + card articolo --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--night-2); border: 1px solid var(--line);
  padding: 30px 28px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); border-color: var(--brass); }
.blog-card .blog-pill { align-self: flex-start; margin-bottom: 16px; }
.blog-card h3 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px); font-weight: 500; color: var(--cream); line-height: 1.22; letter-spacing: -0.005em; }
.blog-card h3 i { font-style: italic; color: var(--brass); }
.blog-card .excerpt {
  margin-top: 12px; color: var(--gray-2); font-size: 14px; line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card .blog-meta { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; font-size: 11px; color: var(--gray); letter-spacing: 0.04em; }
.blog-card .go { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.blog-card .go::after { content: '\2192'; transition: transform 0.3s; }
.blog-card:hover .go::after { transform: translateX(4px); }
.blog-card[hidden] { display: none; }

@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* --- Hero tipografico (pagina articolo singolo, senza foto) --- */
.article-hero { padding: clamp(120px, 20vw, 168px) 0 56px; background: var(--night); border-bottom: 1px solid var(--line); }
.article-hero .blog-pill { margin-bottom: 24px; }
.article-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 4.4rem); line-height: 1.06; letter-spacing: -0.01em;
  color: var(--cream); max-width: 20ch;
}
.article-hero h1 i { font-style: italic; color: var(--brass); }
.article-hero .subtitle { margin-top: 20px; font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--gray-2); max-width: 62ch; line-height: 1.6; }

/* --- Corpo articolo (prose) --- */
.article-body { padding: clamp(56px, 8vw, 96px) 0; background: var(--night); }
.prose { max-width: 70ch; }
.prose p { font-size: 15.5px; line-height: 1.78; color: var(--gray-2); }
.prose p + p { margin-top: 20px; }
.prose h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 32px); color: var(--cream); letter-spacing: -0.01em; margin-top: 48px; margin-bottom: 18px; line-height: 1.2; }
.prose h2 i { font-style: italic; color: var(--brass); }
.prose ul { margin: 22px 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose li { font-size: 15px; color: var(--cream-2); line-height: 1.65; }
.prose strong { color: var(--cream); font-weight: 600; }

/* --- Callout (box evidenza dentro il testo) --- */
.callout { background: var(--night-3); border-left: 3px solid var(--brass); padding: 18px 22px; font-size: 14px; color: var(--cream-2); line-height: 1.65; margin: 32px 0; max-width: 70ch; }
.callout strong { color: var(--cream); }

/* --- Box CTA soggiorno (dentro / fine articolo) --- */
.blog-cta {
  margin: 48px 0; max-width: 70ch;
  background: var(--night-2); border: 1px solid var(--line); border-left: 3px solid var(--brass);
  padding: clamp(30px, 4vw, 42px);
}
.blog-cta h4 { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(21px, 2.4vw, 27px); color: var(--brass); letter-spacing: -0.005em; max-width: 22ch; }
.blog-cta p { margin-top: 12px; font-size: 14px; color: var(--gray-2); max-width: 48ch; line-height: 1.6; }
.blog-cta .actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 26px; }

/* --- Articoli correlati --- */
.blog-related { padding: clamp(56px, 8vw, 96px) 0; background: var(--night-2); border-top: 1px solid var(--line); }
.blog-related h2.title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-related-grid .blog-card { background: var(--night); }
@media (max-width: 900px) { .blog-related-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .article-hero { padding-top: 150px; } .blog-hero { padding-top: 150px; } }

/* --- Foto articolo (per uso futuro, credito in didascalia) --- */
.article-figure { margin: 38px 0 8px; }
.article-figure img { width: 100%; height: auto; max-height: 520px; object-fit: cover; display: block; border: 1px solid var(--line); }
.article-figure figcaption { margin-top: 10px; font-size: 11.5px; color: var(--gray); letter-spacing: 0.02em; }
.article-figure figcaption a { color: var(--gray-2); text-decoration: underline; text-underline-offset: 2px; }
.prose .article-figure { margin: 34px 0; }


/* --- Alkecè: lang switcher + overlay legali (da index.html) --- */
/* Language switcher — palette: night / brass / cream */
.lang-switch { position: relative; display: inline-flex; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 0; font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream); border: 1px solid var(--line-2); background: transparent; cursor: pointer; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.nav.scrolled .lang-btn { border-color: var(--line-2); }
.lang-btn:hover { background: var(--brass); border-color: var(--brass); color: var(--night); }
.lang-cur { font-weight: 600; }
.lang-arr { font-size: 8px; transition: transform 0.3s; opacity: 0.6; }
.lang-switch.open .lang-arr { transform: rotate(180deg); }
.lang-dropdown { position: absolute; top: calc(100% + 12px); right: 0; background: var(--night-3); border-radius: 2px; padding: 6px; min-width: 190px; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.7); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; z-index: 200; border: 1px solid var(--line); }
.lang-switch.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button { text-align: left; padding: 12px 14px; border-radius: 0; font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--cream); background: transparent; border: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s, color 0.2s; }
.lang-dropdown button .code { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.28em; opacity: 0.5; font-weight: 500; }
.lang-dropdown button:hover { background: var(--night); color: var(--brass-soft); }
.lang-dropdown button.active { background: var(--brass); color: var(--night); }
.lang-dropdown button.active .code { color: var(--night); opacity: 0.7; }

/* Google Translate chrome cleanup */
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame, .goog-te-balloon-frame, .goog-tooltip, .goog-tooltip:hover { display: none !important; background: transparent !important; box-shadow: none !important; }
#goog-gt-tt { display: none !important; }
.goog-te-gadget { font-size: 0 !important; height: 0 !important; overflow: hidden !important; }
font[style*="background-color"], font.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
/* Mobile drawer — cinematic dark luxury */
.nav-drawer { position: fixed; inset: 0; z-index: 999; background: var(--night-2); color: var(--cream); display: flex; flex-direction: column; justify-content: flex-end; gap: 0; opacity: 0; visibility: hidden; transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease); padding: 100px var(--gutter) 64px; overflow-y: auto; }
.nav-drawer::after { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 88px; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.7s var(--ease) 0.1s; }
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer.open::after { transform: scaleX(1); }
.nav-drawer .drawer-meta { position: absolute; top: 32px; left: var(--gutter); display: flex; flex-direction: column; gap: 4px; opacity: 0; transition: opacity 0.4s var(--ease) 0.2s; }
.nav-drawer.open .drawer-meta { opacity: 1; }
.nav-drawer .drawer-meta .lab { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brass); font-weight: 500; }
.nav-drawer .drawer-meta .place { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--cream-2); }
.nav-drawer a:not(.drawer-cta) { color: var(--cream); font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.4rem); font-weight: 400; line-height: 1; padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s, padding-left 0.4s; letter-spacing: -0.005em; }
.nav-drawer a:not(.drawer-cta) i { font-style: italic; color: var(--brass); font-weight: 400; }
.nav-drawer a:not(.drawer-cta)::after { content: attr(data-num); font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.3em; color: var(--brass); font-weight: 500; opacity: 0.7; }
.nav-drawer a:not(.drawer-cta):hover { color: var(--brass-soft); padding-left: 12px; }
.nav-drawer.open a { opacity: 1; transform: translateY(0); }
.nav-drawer.open a:nth-of-type(1) { transition-delay: 0.18s; }
.nav-drawer.open a:nth-of-type(2) { transition-delay: 0.26s; }
.nav-drawer.open a:nth-of-type(3) { transition-delay: 0.34s; }
.nav-drawer.open a:nth-of-type(4) { transition-delay: 0.42s; }
.nav-drawer.open a:nth-of-type(5) { transition-delay: 0.50s; }
.nav-drawer.open a:nth-of-type(6) { transition-delay: 0.58s; }
.nav-drawer .drawer-cta { margin-top: 36px; padding: 18px 36px; background: var(--brass); color: var(--night-2); border-radius: 0; font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; align-self: flex-start; transition: background 0.3s, color 0.3s, transform 0.4s var(--ease); }
.nav-drawer .drawer-cta:hover { background: var(--cream); transform: translateY(-2px); }
.nav-drawer-close { position: absolute; top: 22px; right: var(--gutter); width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--cream); font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; background: transparent; cursor: pointer; transition: background 0.3s, border-color 0.3s, transform 0.4s; }
.nav-drawer-close:hover { background: var(--brass); border-color: var(--brass); color: var(--night-2); transform: rotate(90deg); }
body.menu-open { overflow: hidden; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* HERO (kept) */
.hero { position: relative; height: 100vh; height: 100dvh; min-height: 640px; overflow: hidden; display: grid; grid-template-columns: 7fr 5fr; }
@media (max-height: 700px) { .hero h1 { font-size: clamp(2.4rem, 4.5vw, 4.4rem) !important; } }
.hero-img { position: relative; overflow: hidden; background: var(--night-2); }
.hero-img img { width:100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-img::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg, transparent 30%, rgba(14,22,32,0.6) 100%), linear-gradient(180deg, rgba(14,22,32,0.3) 0%, transparent 30%); }
.hero-side { background: var(--night); padding: 120px 60px 60px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.hero-side::before { content: "01"; position: absolute; top: 100px; right: 60px; font-family: var(--font-display); font-size: 14px; font-style: italic; color: var(--brass); }
.hero-coords { font-size: 11px; letter-spacing: 0.24em; color: var(--gray-2); text-transform: uppercase; display: flex; gap: 20px; margin-bottom: 56px; }
.hero-coords span:first-child { color: var(--brass); }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 4.8vw, 4.8rem); line-height: 1; letter-spacing: -0.01em; margin-bottom: 32px; color: var(--cream); }
.hero h1 i { color: var(--brass); }
.hero .sub { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--gray-2); line-height: 1.6; max-width: 38ch; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; }
.btn { display: inline-flex; align-items: center; gap: 14px; padding: 18px 28px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s var(--ease); }
.btn-fill { background: var(--brass); color: var(--night); }
.btn-fill:hover { background: var(--cream); }
.btn-line { background: transparent; color: var(--cream); border: 1px solid var(--line-2); }
.btn-line:hover { border-color: var(--brass); color: var(--brass); }
.btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; transition: width 0.3s; }
.btn:hover .arrow { width: 26px; }
.btn .arrow::after { content:""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.hero-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-meta .v { font-family: var(--font-display); font-size: 26px; color: var(--brass); margin-bottom: 4px; }
.hero-meta .l { color: var(--gray-2); letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; min-height: auto; height: auto; } .hero-img { height: 50vh; min-height: 400px; } .hero-side { padding: 60px 40px; } .hero-side::before { display: none; } }

/* ==========================================================
   STRUCT C: SPLIT-SCREEN STICKY SIDEBAR
   - All sections 50/50 with sticky sidebar
   - Horizontal filmstrip gallery
   - Interactive map for dintorni (background image + overlayed pins)
   - Horizontal scroll testimonials
   - Side-by-side FAQ
   - Full-screen split booking
   ========================================================== */

/* SPLIT SECTION pattern */
.split { display: grid; grid-template-columns: 5fr 7fr; min-height: 100vh; }
.split.flip { grid-template-columns: 7fr 5fr; }
.split-side {
  background: var(--night-2);
  padding: clamp(60px, 10vh, 120px) clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  position: sticky; top: 0; height: 100vh;
}
.split.flip .split-side { order: 2; }
.split-content {
  background: var(--night);
  padding: clamp(60px, 10vh, 140px) clamp(40px, 5vw, 80px);
}
.split.flip .split-content { order: 1; }
@media (max-width: 1000px) {
  .split, .split.flip { grid-template-columns: 1fr; min-height: auto; }
  .split-side, .split.flip .split-side { position: static; height: auto; padding: 60px 32px; order: 1; }
  .split-content, .split.flip .split-content { padding: 60px 32px; order: 2; }
}

.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--brass); display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.eyebrow::before { content:""; width: 32px; height: 1px; background: var(--brass); }
.huge-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(4rem, 8vw, 8rem); line-height: 0.85;
  color: var(--brass); opacity: 0.5;
  margin-bottom: 24px;
}
h2.title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -0.005em; color: var(--cream); }
h2.title i { color: var(--brass); }
.lead-italic { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 1.4vw, 1.4rem); color: var(--cream-2); line-height: 1.5; margin-top: 24px; max-width: 50ch; }

/* SECTION 01 — INTRO */
.s-intro .split-side .ima {
  margin-top: auto;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--night-2);
}
.s-intro .split-side .ima img { width:100%; height:100%; object-fit: contain; transition: transform 1.4s var(--ease); }
.s-intro .split-side .ima:hover img { transform: scale(1.05); }
.s-intro .split-content .body p { color: var(--gray-2); margin-bottom: 18px; max-width: 50ch; line-height: 1.7; font-size: 15px; }
.s-intro .split-content .body p:first-of-type { margin-top: 32px; }
.s-intro .split-content .meta-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.s-intro .split-content .meta-row .v { font-family: var(--font-display); font-style: italic; color: var(--brass); font-size: 32px; }
.s-intro .split-content .meta-row .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-2); margin-top: 4px; }

/* CITY MARQUEE */
.city-marquee { background: var(--night-2); padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.cm-track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: marqCity 40s linear infinite; }
.cm-track span { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2.4rem); color: var(--cream-2); font-style: italic; display: inline-flex; align-items: center; gap: 60px; }
.cm-track span i { color: var(--brass); }
.cm-track .star { color: var(--brass); font-style: normal; font-size: 16px; }
@keyframes marqCity { to { transform: translateX(-50%); } }

/* SECTION 02 — COMFORT split with timeline list */
.s-comfort .split-side {
  background: var(--night-3);
}
.s-comfort .split-content .timeline {
  margin-top: 56px;
  position: relative;
}
.s-comfort .split-content .timeline::before {
  content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px;
  width: 1px; background: var(--brass); opacity: 0.3;
}
.tl-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px;
  padding: 24px 0;
  position: relative;
}
.tl-item::before {
  content: ""; position: absolute; left: 9px; top: 32px;
  width: 11px; height: 11px; background: var(--brass); border-radius: 50%;
  border: 3px solid var(--night);
}
.tl-item .num {
  font-family: var(--font-display); font-style: italic;
  color: var(--brass); font-size: 18px;
  padding-left: 36px;
}
.tl-item h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.2; color: var(--cream); margin-bottom: 8px; }
.tl-item p { color: var(--gray-2); font-size: 14px; line-height: 1.6; }

/* SECTION 03 — LE CAMERE */
.s-rooms { background: var(--night-2); padding: clamp(80px, 12vw, 160px) var(--gutter); }
.rooms-head { max-width: var(--max); margin: 0 auto 56px; }
.rooms-head h2 i { color: var(--brass); }
.rooms-head .lead-italic { color: var(--cream-2); margin-top: 24px; }
.rooms-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.room-card { background: var(--night); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.4s var(--ease); }
.room-card:hover { border-color: var(--brass); transform: translateY(-4px); }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.room-gallery img { width: 100%; height: 220px; object-fit: cover; filter: grayscale(15%) brightness(0.95); transition: filter 0.4s, transform 1.2s var(--ease); }
.room-card:hover .room-gallery img { filter: none; }
.room-body { padding: 32px 36px 36px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 26px; color: var(--cream); margin-bottom: 12px; }
.room-body h3 a { transition: color 0.3s; }
.room-body h3 a:hover { color: var(--brass); }
.room-body .desc { color: var(--gray-2); font-size: 14.5px; line-height: 1.7; margin-bottom: 24px; }
.room-amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-bottom: 32px; }
.room-amenities li { font-size: 13px; color: var(--cream-2); display: flex; align-items: center; gap: 8px; }
.room-amenities li::before { content: ""; width: 5px; height: 5px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }
.room-cta { margin-top: auto; align-self: flex-start; padding: 14px 26px; }
@media (max-width: 900px) { .rooms-grid { grid-template-columns: 1fr; } .room-amenities { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .room-gallery { grid-template-columns: 1fr; } .room-gallery img { height: 180px; } }

/* GALLERY — FILMSTRIP horizontal full width */
.filmstrip {
  background: var(--night-2);
  padding: clamp(60px, 10vw, 120px) 0;
}
.fs-head { padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto 56px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.fs-head h2 i { color: var(--brass); }
.fs-meta { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--brass); }
.fs-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  padding: 0;
}
.fs-track::-webkit-scrollbar { display: none; }
.fs-track.grabbing { cursor: grabbing; }
.fs-frame {
  flex: 0 0 24vw;
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fs-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 0.4s; filter: grayscale(20%) brightness(0.95); }
.fs-frame:hover img { transform: scale(1.06); filter: none; }
.fs-frame .label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--cream);
  background: rgba(14,22,32,0.7); padding: 4px 10px;
  backdrop-filter: blur(6px);
}
.fs-frame .num {
  position: absolute; bottom: 16px; right: 16px;
  font-family: var(--font-display); font-style: italic;
  color: var(--brass); font-size: 20px;
}
@media (max-width: 700px) { .fs-frame { flex-basis: 80vw; height: 50vh; } }
.fs-foot { padding: 24px var(--gutter) 0; max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fs-foot .hint { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-2); }
.fs-foot button { background: var(--brass); color: var(--night); padding: 14px 26px; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

/* QUOTE BANNER */
.quote-banner {
  background: var(--night);
  padding: 100px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.quote-banner blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3.5vw, 3rem); line-height: 1.3; max-width: 880px; margin: 0 auto; color: var(--cream); position: relative; }
.quote-banner blockquote::before { content: '"'; font-family: var(--font-display); font-size: 120px; color: var(--brass); display: block; line-height: 0.5; margin-bottom: 12px; opacity: 0.6; }
.quote-banner cite { display: block; margin-top: 32px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); font-weight: 700; font-style: normal; }

/* DINTORNI — Interactive map (background + overlay pins) */
.s-around { padding: clamp(80px, 12vw, 160px) var(--gutter); background: var(--night); }
.around-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.around-text h2 i { color: var(--brass); }
.around-text .lead-italic { color: var(--cream-2); }
.around-list-mini {
  margin-top: 40px;
  list-style: none;
}
.around-list-mini li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  font-size: 14px;
  color: var(--cream-2);
  cursor: pointer;
  transition: color 0.3s, padding 0.3s;
}
.around-list-mini li:hover { color: var(--brass); padding-left: 8px; }
.around-list-mini li .min { color: var(--brass); font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 15px; }
.imap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--night-3);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.imap-bg { position: absolute; inset: 0; opacity: 0.45; z-index: 0; }
.imap-bg img { width:100%; height:100%; object-fit: cover; filter: grayscale(40%) brightness(0.55) contrast(1.1); }
.imap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,22,32,0.4) 0%, rgba(5,10,17,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Radial map — ripples + sinuous particle flows */
.route-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
/* Concentric ripple rings emanating from home */
.route-svg .ripple {
  fill: none;
  stroke: rgba(184,147,90,0.55);
  stroke-width: 0.5;
  transform-origin: 48px 60px;
  animation: ripple 4.2s cubic-bezier(0.16,1,0.3,1) infinite;
}
.route-svg .ripple.r2 { animation-delay: 1.4s; stroke: rgba(232,201,138,0.45); }
.route-svg .ripple.r3 { animation-delay: 2.8s; stroke: rgba(184,147,90,0.4); }
@keyframes ripple {
  0%   { r: 1.5; opacity: 0;   stroke-width: 0.7; }
  10%  { opacity: 0.95; }
  100% { r: 55;  opacity: 0;   stroke-width: 0.12; }
}
/* Sinuous flow paths (always faint, like ink lines) */
.route-svg .flow-path {
  fill: none;
  stroke: rgba(184,147,90,0.18);
  stroke-width: 0.35;
  stroke-linecap: round;
}
/* Particle traveling outward from home */
.route-svg .particle {
  fill: #F2DBA8;
  filter: drop-shadow(0 0 1.2px #E8C98A) drop-shadow(0 0 2.6px rgba(232,201,138,0.7));
}
.route-svg .particle-halo {
  fill: rgba(232,201,138,0.22);
}

.ipin {
  position: absolute;
  width: 36px; height: 36px;
  background: var(--brass); color: var(--night);
  border-radius: 50%;
  border: 2px solid var(--night-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 0 0 6px rgba(184,147,90,0.18), 0 4px 18px -6px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  transform: translate(-50%, -50%);
}
/* Radar pulse — multi-ring */
.ipin::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  opacity: 0;
  animation: pinRadar 3.2s cubic-bezier(0.16,1,0.3,1) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pinRadar {
  0%   { transform: scale(0.6); opacity: 0; border-width: 1.6px; }
  20%  { opacity: 0.95; }
  100% { transform: scale(4.2); opacity: 0; border-width: 0.4px; }
}
.ipin:hover { transform: translate(-50%, -50%) scale(1.25); box-shadow: 0 0 0 14px rgba(184,147,90,0.28), 0 6px 22px -6px rgba(0,0,0,0.7); }
.ipin::after {
  content: attr(data-name); position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); background: var(--night-2); padding: 5px 11px; border-radius: 3px;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.6);
}
.ipin:hover::after { opacity: 1; transform: translateX(-50%) translateY(-4px); }
/* Stagger radar pulses across pins */
.ipin.p1 { top: 22.5%; left: 28%; }
.ipin.p2 { top: 35%;   left: 50%; }
.ipin.p3 { top: 47.5%; left: 68%; }
.ipin.p4 { top: 60%;   left: 35%; }
.ipin.p5 { top: 72.5%; left: 60%; }
.ipin.p6 { top: 85%;   left: 25%; }
.ipin.p7 { top: 93.75%;left: 70%; }
.ipin.p1::before { animation-delay: 0s; }
.ipin.p2::before { animation-delay: 0.45s; }
.ipin.p3::before { animation-delay: 0.9s; }
.ipin.p4::before { animation-delay: 1.35s; }
.ipin.p5::before { animation-delay: 1.8s; }
.ipin.p6::before { animation-delay: 2.25s; }
.ipin.p7::before { animation-delay: 2.7s; }
/* Pin centrale della mappa illustrata */
.ipin.home {
  top: 48%; left: 48%;
  width: 50px; height: 50px;
  background: var(--cream);
  color: var(--night);
  border: 2.5px solid var(--brass);
  font-size: 17px;
  z-index: 5;
  box-shadow: 0 0 0 8px rgba(232,201,138,0.18), 0 0 0 16px rgba(184,147,90,0.08), 0 8px 28px -6px rgba(0,0,0,0.7);
  animation: homePulse 3.4s ease-in-out infinite;
}
.ipin.home::before {
  border-color: var(--cream);
  border-width: 2px;
  inset: -3px;
  animation-duration: 3.4s;
  animation-delay: 0s;
}
.ipin.home::after {
  color: var(--cream);
  background: var(--brass);
  font-weight: 800;
}
@keyframes homePulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(232,201,138,0.18), 0 0 0 16px rgba(184,147,90,0.08), 0 8px 28px -6px rgba(0,0,0,0.7); }
  50%      { box-shadow: 0 0 0 12px rgba(232,201,138,0.28), 0 0 0 22px rgba(184,147,90,0.14), 0 8px 28px -6px rgba(0,0,0,0.7); }
}
@media (max-width: 1000px) { .around-inner { grid-template-columns: 1fr; } }

/* TESTIMONIALS — horizontal scroll cards */
.s-testi { background: var(--night-2); padding: clamp(80px, 12vw, 160px) 0; }
.s-testi .head { padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto 56px; }
.s-testi h2 i { color: var(--brass); }
.t-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  padding: 8px var(--gutter) 24px;
  scroll-snap-type: x mandatory;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 min(420px, 80vw);
  scroll-snap-align: start;
  background: var(--night);
  padding: 36px;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.t-card:hover { border-color: var(--brass); transform: translateY(-4px); }
.t-card .stars { color: var(--brass); margin-bottom: 16px; font-size: 14px; }
.t-card p { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.5; margin-bottom: 28px; color: var(--cream); }
.t-card .who { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.t-card .av { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--brass); color: var(--brass); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-size: 16px; }
.t-card .name { font-weight: 600; font-size: 14px; color: var(--cream); }
.t-card .date { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-2); }
.t-foot { padding: 0 var(--gutter); max-width: var(--max); margin: 24px auto 0; }
.t-foot .hint { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-2); }

/* FAQ — Side by side question + answer */
.s-faq { padding: clamp(80px, 12vw, 160px) var(--gutter); background: var(--night); }
.faq-inner { max-width: var(--max); margin: 0 auto; }
.faq-head { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; margin-bottom: 56px; }
.faq-head h2 i { color: var(--brass); }
.faq-head .lead-italic { color: var(--cream-2); margin-top: 0; }
.faq-list { display: grid; grid-template-columns: 5fr 7fr; gap: 80px 32px; }
.faq-row {
  display: contents;
}
.faq-row .faq-q-text {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  align-self: start;
}
.faq-row .faq-a-text {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--gray-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}
.faq-row:last-child .faq-q-text, .faq-row:last-child .faq-a-text { border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .faq-head, .faq-list { grid-template-columns: 1fr; gap: 24px; } .faq-row .faq-a-text { border-top: 0; padding-top: 0; padding-bottom: 28px; } }

/* BOOKING — full-screen split (form left, image right) */
.s-booking { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.booking-form-side {
  background: var(--night-3);
  padding: clamp(60px, 8vh, 100px) clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.booking-img-side {
  background: var(--night-2);
  position: relative;
  overflow: hidden;
}
.booking-img-side img { width:100%; height:100%; object-fit: cover; opacity: 0.85; }
.booking-img-side::after { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(14,22,32,0.4) 0%, rgba(184,147,90,0.2) 100%); }
.booking-img-side .overlay {
  position: absolute; bottom: 60px; left: 60px; right: 60px;
  z-index: 2; color: var(--cream);
}
.booking-img-side .overlay h3 { font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; margin-bottom: 16px; }
.booking-img-side .overlay h3 i { color: var(--brass); }
.booking-img-side .overlay p { color: var(--cream-2); font-size: 15px; max-width: 36ch; line-height: 1.6; }
.booking-form-side h2 { font-family: var(--font-display); font-size: 36px; color: var(--cream); margin-bottom: 8px; }
.booking-form-side h2 i { color: var(--brass); }
.booking-form-side .sub { color: var(--gray-2); font-size: 14px; margin-bottom: 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--brass); margin-bottom: 8px; }
.field input, .field select { width: 100%; padding: 12px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line-2); font-size: 15px; color: var(--cream); font-family: var(--font-display); outline: none; transition: border-color 0.3s; }
.field input:focus, .field select:focus { border-color: var(--brass); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-row3 { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 18px; }
.qty { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--line-2); }
.qty button { width: 28px; height: 28px; border: 1px solid var(--brass); border-radius: 50%; color: var(--brass); font-size: 14px; }
.qty button:hover { background: var(--brass); color: var(--night); }
.qty input { flex: 1; text-align: center; background: transparent; border: 0; color: var(--cream); font-family: var(--font-display); font-size: 18px; outline: none; }
.btn-book { width: 100%; padding: 18px; background: var(--brass); color: var(--night); font-weight: 700; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 8px; }
.btn-book:hover { background: var(--cream); }
.disclaimer { text-align: center; margin-top: 16px; font-size: 11px; color: var(--gray-2); }
.contacts-mini { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; font-size: 12px; }
.contacts-mini small { color: var(--brass); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; font-size: 10px; display: block; margin-bottom: 4px; }
.contacts-mini span, .contacts-mini a { color: var(--cream); font-family: var(--font-display); font-size: 14px; }
@media (max-width: 900px) { .s-booking { grid-template-columns: 1fr; } .booking-img-side { min-height: 50vh; } .field-row, .field-row3 { grid-template-columns: 1fr; } }

/* MAP */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 460px; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) brightness(0.85); }

/* FOOTER */
footer { background: var(--night-2); color: var(--cream); padding: 80px var(--gutter) 32px; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-brand h4 { font-family: var(--font-display); font-style: italic; font-size: 36px; color: var(--cream); margin-bottom: 16px; }
.footer-brand h4 .dot { color: var(--brass); }
.footer-brand p { color: var(--gray-2); font-size: 14px; max-width: 30ch; line-height: 1.6; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: var(--cream-2); font-size: 14px; margin-bottom: 6px; transition: color 0.3s; }
.footer-col a:hover { color: var(--brass); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11px; color: var(--gray); letter-spacing: 0.14em; text-transform: uppercase; }
.footer-bottom a { color: var(--brass); }
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; } }

/* LIGHTBOX */
.lb { position: fixed; inset: 0; z-index: 9990; background: rgba(5,10,17,0.98); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s; backdrop-filter: blur(20px); }
.lb.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 90vw; max-height: 85vh; }
.lb-close, .lb-arrow { position: absolute; width: 50px; height: 50px; border: 1px solid var(--brass); display: flex; align-items: center; justify-content: center; color: var(--brass); transition: all 0.3s; }
.lb-close { top: 24px; right: 24px; }
.lb-close::before, .lb-close::after { content:""; position:absolute; width: 18px; height: 1px; background: currentColor; }
.lb-close::before { transform: rotate(45deg); } .lb-close::after { transform: rotate(-45deg); }
.lb-arrow.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-arrow.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-arrow:hover { background: var(--brass); color: var(--night); }
.lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--brass); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1!important; transform:none!important; } }

.flatpickr-calendar { background: var(--night-3)!important; color: var(--cream)!important; border: 1px solid var(--brass)!important; box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6)!important; font-family: var(--font-sans)!important; }
.flatpickr-current-month { font-family: var(--font-display)!important; color: var(--cream)!important; }
.flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year { color: var(--cream)!important; background: transparent!important; }
.flatpickr-monthDropdown-months option { background: var(--night)!important; }
.flatpickr-prev-month, .flatpickr-next-month { fill: var(--cream)!important; }
.flatpickr-weekday { color: var(--gray-2)!important; }
.flatpickr-day { color: var(--cream)!important; border-radius: 0!important; border: 0!important; }
.flatpickr-day:hover { background: var(--night)!important; color: var(--brass)!important; }
.flatpickr-day.today { border: 1px solid var(--brass)!important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--brass)!important; color: var(--night)!important; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: var(--gray)!important; }

/* =========================================================
   LEGAL · POLICY MODAL · COOKIE BANNER (struttura)
========================================================= */
.map-container { position: relative; width: 100%; height: 460px; }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) brightness(0.85); }
.map-blocked { position: absolute; inset: 0; background: var(--night-3); display: flex; align-items: center; justify-content: center; color: var(--cream-2); padding: 32px 24px; }
.map-blocked-inner { text-align: center; max-width: 440px; }
.map-blocked svg { margin-bottom: 14px; color: var(--brass); opacity: .75; }
.map-blocked h4 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--cream); margin-bottom: 8px; font-style: italic; }
.map-blocked p { font-size: 14px; line-height: 1.55; color: var(--cream-2); margin-bottom: 20px; opacity: 0.8; }
.btn-consent-map { background: var(--brass); color: var(--night); padding: 12px 24px; border-radius: 0; border: 0; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.btn-consent-map:hover { background: var(--brass-soft); transform: translateY(-1px); }
.map-policy-link { display: inline-block; margin-top: 14px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-2); text-decoration: none; border-bottom: 1px solid var(--line-2); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.map-policy-link:hover { color: var(--brass); border-bottom-color: var(--brass); }

/* Footer legal row */
.footer-legal { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; padding: 18px var(--gutter) 0; max-width: var(--max); margin: 0 auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-2); border-top: 1px solid var(--line); }
.footer-legal a { color: var(--cream-2); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.footer-legal a:hover { color: var(--brass); border-bottom-color: var(--brass); }
.footer-legal .sep { width: 3px; height: 3px; background: var(--line-2); border-radius: 50%; }
@media (max-width: 600px) { .footer-legal { gap: 12px; font-size: 10px; } .footer-legal .sep { display: none; } }

/* Cookie banner — dark */
.cookie-banner { position: fixed; left: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 150; background: var(--night-2); color: var(--cream); border: 1px solid var(--line-2); box-shadow: 0 30px 80px rgba(0,0,0,0.6); padding: clamp(20px, 2.5vw, 26px) clamp(22px, 3vw, 32px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; transform: translateY(24px); opacity: 0; pointer-events: none; transition: transform .5s var(--ease), opacity .4s var(--ease); max-width: 1080px; margin: 0 auto; }
.cookie-banner.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner-text { font-size: 13.5px; line-height: 1.6; color: var(--cream-2); }
.cookie-banner-text h5 { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--cream); margin-bottom: 6px; font-style: italic; letter-spacing: 0.01em; }
.cookie-banner-text a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-text a:hover { color: var(--brass-soft); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.cookie-btn { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 20px; border-radius: 0; cursor: pointer; transition: all .25s ease; border: 1px solid transparent; white-space: nowrap; }
.cookie-btn.ghost { background: transparent; color: var(--cream-2); border-color: var(--line-2); }
.cookie-btn.ghost:hover { color: var(--night); border-color: var(--cream); background: var(--cream); }
.cookie-btn.primary { background: var(--brass); color: var(--night); border-color: var(--brass); }
.cookie-btn.primary:hover { background: var(--brass-soft); border-color: var(--brass-soft); }
.cookie-btn.link { background: transparent; color: var(--cream-2); border: 0; padding: 12px 10px; text-transform: uppercase; text-decoration: underline; text-underline-offset: 4px; letter-spacing: 0.14em; }
.cookie-btn.link:hover { color: var(--brass); }
@media (max-width: 820px) { .cookie-banner { grid-template-columns: 1fr; gap: 16px; padding: 20px 20px 18px; } .cookie-banner-actions { justify-content: flex-start; } .cookie-btn { flex: 1 1 calc(50% - 5px); text-align: center; padding: 12px 10px; } .cookie-btn.link { flex-basis: 100%; } }

/* Policy + Cookie Prefs modal — light card with dark brand */
.legal-overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: clamp(16px, 3vw, 48px); background: rgba(5,10,17,0.84); backdrop-filter: saturate(1.1) blur(6px); -webkit-backdrop-filter: saturate(1.1) blur(6px); opacity: 0; transition: opacity .35s var(--ease); }
.legal-overlay.open { display: flex; opacity: 1; }
.legal-card { background: #FBF7EC; color: var(--night); width: 100%; max-width: 860px; max-height: 92vh; border-radius: 2px; box-shadow: 0 40px 100px rgba(0,0,0,0.6); display: flex; flex-direction: column; overflow: hidden; transform: translateY(16px) scale(0.98); transition: transform .45s var(--ease); border: 1px solid var(--cream-2); }
.legal-overlay.open .legal-card { transform: translateY(0) scale(1); }
.legal-head { padding: 28px clamp(24px, 4vw, 44px) 20px; border-bottom: 1px solid rgba(14,22,32,0.12); display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; background: #FBF7EC; position: sticky; top: 0; z-index: 2; }
.legal-head .kicker { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-2); font-weight: 700; display: block; margin-bottom: 8px; }
.legal-head h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 2.1rem); line-height: 1.1; color: var(--night); letter-spacing: -0.01em; }
.legal-head h3 em { font-style: italic; color: var(--brass-2); font-weight: 500; }
.legal-head .updated { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(14,22,32,0.5); margin-top: 6px; }
.legal-close { position: relative; flex-shrink: 0; width: 40px; height: 40px; border-radius: 0; border: 1px solid rgba(14,22,32,0.2); background: transparent; cursor: pointer; color: var(--night); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.legal-close:hover { background: var(--night); color: var(--cream); border-color: var(--night); transform: rotate(90deg); }
.legal-close::before, .legal-close::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 1px; background: currentColor; }
.legal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.legal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }

.legal-body { padding: 24px clamp(24px, 4vw, 44px) clamp(28px, 5vw, 48px); overflow-y: auto; flex: 1; font-size: 14.5px; line-height: 1.7; color: rgba(14,22,32,0.84); overscroll-behavior: contain; }
.legal-body::-webkit-scrollbar { width: 8px; }
.legal-body::-webkit-scrollbar-thumb { background: rgba(14,22,32,0.2); border-radius: 4px; }
.legal-body .lead { font-size: 15px; color: rgba(14,22,32,0.82); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(14,22,32,0.1); }
.legal-body h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--night); margin-top: 32px; margin-bottom: 12px; letter-spacing: -0.01em; scroll-margin-top: 120px; }
.legal-body h4:first-of-type { margin-top: 0; }
.legal-body h5 { font-family: var(--font-sans); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--night); margin-top: 22px; margin-bottom: 10px; }
.legal-body p { margin-bottom: 12px; }
.legal-body p strong, .legal-body li strong { color: var(--night); font-weight: 700; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--brass-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--brass); }
.legal-body .callout { background: #F2EBDA; border-left: 3px solid var(--brass-2); padding: 14px 18px; margin: 18px 0; font-size: 14px; }
.legal-body .placeholder { display: inline-block; background: rgba(184,147,90,0.15); color: var(--brass-2); padding: 1px 8px; border-radius: 3px; font-weight: 600; font-size: 0.95em; border: 1px dashed var(--brass); }
.legal-body table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 13.5px; }
.legal-body table th, .legal-body table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(14,22,32,0.1); vertical-align: top; }
.legal-body table th { font-weight: 700; color: var(--night); background: #F2EBDA; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-body table td { color: rgba(14,22,32,0.84); }
.legal-body .cookie-block { background: #fff; border: 1px solid rgba(14,22,32,0.1); padding: 18px 22px; margin: 16px 0; }
.legal-body .cookie-block h5 { margin-top: 0; margin-bottom: 8px; }
.legal-body .cookie-block .tag { display: inline-block; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; padding: 2px 8px; border-radius: 0; margin-left: 6px; font-weight: 700; vertical-align: 1px; }
.legal-body .tag-tech { background: rgba(14,22,32,0.08); color: var(--night); }
.legal-body .tag-third { background: rgba(184,147,90,0.2); color: var(--brass-2); }
.legal-body .cookie-block dl { margin-top: 8px; font-size: 13px; }
.legal-body .cookie-block dl div { display: grid; grid-template-columns: 150px 1fr; padding: 6px 0; border-bottom: 1px dashed rgba(14,22,32,0.12); }
.legal-body .cookie-block dl div:last-child { border-bottom: 0; }
.legal-body .cookie-block dt { font-weight: 700; color: var(--night); font-size: 12px; letter-spacing: 0.04em; }
.legal-body .cookie-block dd { color: rgba(14,22,32,0.84); font-size: 13px; }
.legal-body .foot-note { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(14,22,32,0.1); font-size: 12.5px; color: rgba(14,22,32,0.58); font-style: italic; }

/* Cookie preferences (light card) */
.cookie-prefs-card { max-width: 620px; }
.cookie-prefs-body { padding: 22px 32px 8px; overflow-y: auto; flex: 1; font-size: 14px; line-height: 1.6; color: rgba(14,22,32,0.84); }
.cookie-prefs-body p { margin-bottom: 12px; }
.cookie-prefs-body a { color: var(--brass-2); text-decoration: underline; text-underline-offset: 3px; }
.cookie-category { padding: 16px 0; border-bottom: 1px solid rgba(14,22,32,0.1); display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: flex-start; }
.cookie-category:last-of-type { border-bottom: 0; }
.cookie-category-title { font-family: var(--font-sans); font-weight: 700; font-size: 14px; color: var(--night); margin-bottom: 4px; }
.cookie-category-desc { font-size: 13px; color: rgba(14,22,32,0.58); line-height: 1.55; }
.cookie-category .status { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(14,22,32,0.4); margin-top: 6px; font-weight: 700; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch .slider { position: absolute; inset: 0; background: rgba(14,22,32,0.2); border-radius: 999px; cursor: pointer; transition: background .2s ease; }
.switch .slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #FBF7EC; border-radius: 50%; transition: transform .2s var(--ease); }
.switch input:checked + .slider { background: var(--brass-2); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: rgba(184,147,90,0.55); cursor: not-allowed; }
.cookie-prefs-foot { padding: 18px 32px 24px; border-top: 1px solid rgba(14,22,32,0.1); display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-prefs-foot .cookie-btn.ghost { color: rgba(14,22,32,0.7); border-color: rgba(14,22,32,0.2); }
.cookie-prefs-foot .cookie-btn.ghost:hover { color: #FBF7EC; border-color: var(--night); background: var(--night); }
.cookie-prefs-foot .cookie-btn.primary { background: var(--night); color: var(--cream); border-color: var(--night); }
.cookie-prefs-foot .cookie-btn.primary:hover { background: var(--brass-2); border-color: var(--brass-2); color: var(--night); }
@media (max-width: 500px) { .cookie-prefs-body, .cookie-prefs-foot, .legal-head { padding-left: 20px; padding-right: 20px; } .cookie-prefs-foot { flex-direction: column; } .cookie-prefs-foot .cookie-btn { width: 100%; text-align: center; } }

body.no-scroll { overflow: hidden; }
/* --- Alkecè: mappa (non usata sulle pagine blog) e figure articolo --- */
.article-figure img { width: 100%; height: auto; display: block; }
