/* =====================================================
   borghi-stile.css
   Foglio di stile comune per tutte le pagine dei borghi
   Posizione: https://www.alisei.net/borghi2/borghi-stile.css

   NOTA: il CSS specifico di ogni borgo (solo .hero-img
   con l'URL dell'immagine) va nel <style> inline della
   singola pagina HTML.
   ===================================================== */
/* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     VARIABILI
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  :root {
    --terracotta: #8B3A1A;
    --stone:      #B8956A;
    --cream:      #F5F0E8;
    --dark:       #0F0B09;
    --mid:        #4A3828;
    --light-stone:#E8DFD0;
    --accent:     #5C2800;
    --text:       #1A1008;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--text);
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 300;
    line-height: 1.75;
    font-size: 17px;
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     NAV &#8212; menu dinamico da menu.txt
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  nav.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--dark);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--stone);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo span { color: var(--cream); }

  .logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* lista voci */
  .nav-links { display: flex; gap: 0; list-style: none; align-items: stretch; }

  .nav-links > li { position: relative; display: flex; align-items: stretch; }

  .nav-links > li > a,
  .nav-links > li > button.nav-parent {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1rem;
    color: rgba(245,240,232,0.75);
    text-decoration: none;
    font-family: 'Source Serif 4', serif;
    font-size: 0.92rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 1;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    height: 56px;
    white-space: nowrap;
  }
  .nav-links > li > a:hover,
  .nav-links > li > button.nav-parent:hover,
  .nav-links > li.open > button.nav-parent {
    color: #fff;
    background: rgba(255,255,255,0.06);
  }

  /* freccia dropdown */
  .nav-arrow {
    font-size: 0.55rem;
    opacity: 0.6;
    transition: transform 0.25s;
    display: inline-block;
  }
  .nav-links > li.open .nav-arrow { transform: rotate(180deg); }

  /* sottomen&#249; */
  .nav-dropdown {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    min-width: 220px;
    background: #2A1E16;
    border-top: 2px solid var(--terracotta);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    list-style: none;
    z-index: 200;
  }
  .nav-links > li.open .nav-dropdown { display: block; }

  .nav-dropdown a {
    display: block;
    padding: 0.28rem 1.2rem;
    color: rgba(245,240,232,0.72);
    text-decoration: none;
    font-family: 'Source Serif 4', serif;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    border-bottom: 1px solid rgba(196,168,130,0.1);
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown a:last-child { border-bottom: none; }
  .nav-dropdown a:hover { background: rgba(160,82,45,0.25); color: #fff; }

  /* hamburger mobile */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--stone); transition: all 0.3s; }

  /* mobile: menu a cascata */
  @media (max-width: 700px) {
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: stretch;
      position: fixed;
      top: 56px; left: 0; right: 0;
      background: var(--dark);
      padding: 0.5rem 0 1rem;
      z-index: 99;
      gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links > li > a,
    .nav-links > li > button.nav-parent { height: auto; padding: 0.75rem 1.5rem; width: 100%; justify-content: space-between; }
    .nav-dropdown { position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--terracotta); margin-left: 1.5rem; }
    .hamburger { display: flex; }
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     HERO
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .hero {
    position: relative;
    height: 92vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #3A2510;
  }
  /* .hero-img e' definita nel <style> inline di ogni pagina borgo */
  @keyframes heroZoom { to { transform: scale(1); } }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,20,16,0.92) 0%, rgba(28,20,16,0.3) 50%, transparent 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 4rem 4rem;
    max-width: 800px;
    animation: fadeUp 1s 0.3s both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-kicker {
    font-size: 1.0rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .hero-kicker::before { content: ''; display: block; width: 32px; height: 1px; background: var(--stone); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.8rem, 8vw, 6.5rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }
  .hero h1 em { font-style: italic; color: var(--stone); }
  .hero-sub {
    font-size: 1.05rem;
    color: rgba(245,240,232,0.75);
    font-style: italic;
    max-width: 520px;
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     BREADCRUMB
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .breadcrumb {
    background: var(--light-stone);
    padding: 0.7rem 2rem;
    font-size: 0.78rem;
    color: var(--mid);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--stone);
  }
  .breadcrumb a { color: var(--terracotta); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb .sep { opacity: 0.45; }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     LAYOUT &#8212; sidebar + colonna articolo
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .page-wrap {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 3.5rem;
    align-items: start;
    overflow: clip;
  }

  /* &#9472;&#9472; SIDEBAR &#9472;&#9472; */
  .sidebar {
    position: sticky;
    top: 72px;
    padding-top: 2.8rem;
  }
  .toc-head {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--stone);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .toc-head::before { content: ''; width: 16px; height: 1px; background: var(--terracotta); flex-shrink: 0; }

  .toc-list { list-style: none; counter-reset: toc; }
  .toc-list li { counter-increment: toc; }
  .toc-list a {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.5rem 0.4rem;
    color: var(--mid);
    text-decoration: none;
    font-size: 0.95rem;
    border-left: 2px solid transparent;
    transition: all 0.18s;
    line-height: 1.35;
  }
  .toc-list a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--stone);
    flex-shrink: 0;
    width: 1.6rem;
  }
  .toc-list a:hover,
  .toc-list li.active a {
    color: var(--accent);
    border-left-color: var(--terracotta);
    padding-left: 0.8rem;
  }

  /* pulsante mobile sommario */
  .toc-mobile-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--stone);
    color: var(--mid);
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    font-family: 'Source Serif 4', serif;
    font-size: 0.78rem;
    margin-top: 0.5rem;
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     BLOCCHI DETTAGLIO ESPANDIBILI (edifici)
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .detail-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    border-bottom: 1px dashed var(--terracotta);
    color: #4A2010;
    font-family: 'Source Serif 4', serif;
    font-size: 0.82rem;
    font-style: italic;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding: 0.1rem 0.2rem;
    margin: -0.6rem 0 1.4rem 1.8rem;
    transition: color 0.2s, border-color 0.2s;
    vertical-align: middle;
  }
  .detail-trigger:hover { color: var(--accent); border-color: var(--accent); }
  .detail-trigger .dt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.75rem;
    font-style: normal;
    transition: transform 0.3s, background 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .detail-trigger[aria-expanded="true"] { color: var(--accent); }
  .detail-trigger[aria-expanded="true"] .dt-icon {
    transform: rotate(45deg);
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
  }

  .detail-block {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
    margin: 0;
  }
  .detail-block.open { grid-template-rows: 1fr; }
  .detail-block-inner {
    min-height: 0;
    overflow: hidden;
  }
  .detail-block-content {
    background: #8A6E54;
    border-left: 4px solid var(--terracotta);
    margin: 0.6rem 0 0.8rem;
    padding: 1.1rem 1.4rem;
    font-size: 0.93rem;
    color: #F5EFE6;
    line-height: 1.72;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
  }
  .detail-block-content strong { color: #fff; font-weight: 500; }
  .detail-block-content p,
  .detail-block-content p strong { color: #F5EFE6 !important; }
  .detail-block-label {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F5EFE6;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
  }
  .detail-block-label::before { content: '\25AA'; }
  .section,
  .gallery-mosaic,
  #newsletter { scroll-margin-top: 80px; }

  /* &#9472;&#9472; COLONNA ARTICOLO &#9472;&#9472; */
  .article-col {
    padding-top: 2.8rem;
    padding-bottom: 4rem;
    min-width: 0;
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     AUDIO BANNER
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .audio-banner {
    background: var(--light-stone);
    color: var(--text);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2.8rem;
    border-left: 4px solid var(--terracotta);
    flex-wrap: wrap;
  }
  .audio-banner .audio-icon { font-size: 1.8rem; flex-shrink: 0; }
  .audio-banner p { font-size: 0.88rem; color: var(--mid); flex: 1; min-width: 180px; font-style: italic; }
  .audio-banner audio { flex: 1; min-width: 200px; max-width: 400px; }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     SEZIONI ARTICOLO
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .section { margin: 0 0 3.5rem; }

  .section-label {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .section-label::after { content: ''; flex: 1; height: 1px; background: var(--light-stone); }

  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.6rem;
    color: var(--dark);
  }

  /* testo + foto */
  .content-block {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
  }
  .content-block.img-left  { direction: rtl; grid-template-columns: 1fr 1.15fr; }
  .content-block.img-left > * { direction: ltr; }
  .content-block .prose p { margin-bottom: 1.15em; color: #1A1008; }
  .content-block .prose strong { color: #5C3018; font-weight: 500; font-style: normal; }
  .content-block .prose a { color: var(--terracotta); }

  .content-block figure { position: sticky; top: 80px; }
  .content-block figure img {
    width: 100%;
    aspect-ratio: 640/480;
    object-fit: cover;
    display: block;
  }
  .content-block figure figcaption {
    font-size: 1.0rem;
    color: var(--mid);
    margin-top: 0.6rem;
    font-style: italic;
    padding-left: 0.5rem;
    border-left: 3px solid var(--stone);
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     DIVISORE ORNAMENTALE
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  hr.ornament {
    border: none;
    text-align: center;
    margin: 2.5rem 0;
    color: var(--stone);
    font-size: 1.8rem;
    opacity: 0.55;
  }
  hr.ornament::before { content: '\2014 \2726 \2014'; }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     MAPPA
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .map-container {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin: 1rem 0 0.5rem;
  }
  .map-container iframe { width: 100%; height: 100%; border: none; display: block; }
  .map-label { font-size: 0.75rem; color: var(--mid); font-style: italic; margin-top: 0.4rem; }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     GALLERIA &#8212; mosaico creativo
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .gallery-mosaic { margin: 1.2rem 0 0; }

  .mosaic-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    grid-template-rows: 220px 180px;
    gap: 5px;
  }
  .mosaic-grid .ph { overflow: hidden; position: relative; }

  /* foto grande verticale sinistra */
  .mosaic-grid .ph:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .mosaic-grid .ph:nth-child(2) { grid-column: 2; grid-row: 1; }
  .mosaic-grid .ph:nth-child(3) { grid-column: 3; grid-row: 1; }
  .mosaic-grid .ph:nth-child(4) { grid-column: 2; grid-row: 2; }
  .mosaic-grid .ph:nth-child(5) { grid-column: 3; grid-row: 2; }

  .mosaic-grid .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
  }
  .mosaic-grid .ph:hover img { transform: scale(1.06); filter: brightness(1.05); }

  /* vignetta sottile */
  .mosaic-grid .ph::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,20,16,0.45) 0%, transparent 60%);
    pointer-events: none;
  }

  /* badge conteggio sulla 5a foto */
  .ph-count-badge {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(28,20,16,0.55);
    backdrop-filter: blur(2px);
    z-index: 2;
    text-decoration: none;
    transition: background 0.3s;
  }
  .ph-count-badge:hover { background: rgba(160,82,45,0.75); }
  .ph-count-badge .count-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .ph-count-badge .count-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
  }

  /* barra CTA sotto la griglia */
  .gallery-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-stone);
    padding: 0.9rem 1.4rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .gallery-cta-text { font-size: 1.0rem; color: var(--mid); font-style: italic; }
  .btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--terracotta);
    color: var(--cream);
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    font-size: 0.976rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: 'Source Serif 4', serif;
  }
  .btn-gallery:hover { background: var(--accent); }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     VIDEO
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark);
    margin: 1rem 0;
  }
  .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     CURIOSIT&#192; &#8212; accordion
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .curiosita-list { margin: 0.5rem 0; }

  .curiosita-item { border-bottom: 1px solid var(--light-stone); }
  .curiosita-item:first-child { border-top: 1px solid var(--light-stone); }

  .curiosita-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 0.4rem 1rem 0;
    text-align: left;
    font-family: 'Source Serif 4', serif;
    color: var(--text);
    transition: background 0.15s;
  }
  .curiosita-toggle:hover { background: rgba(232,223,208,0.4); }

  .curi-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--stone);
    line-height: 1;
    flex-shrink: 0;
    width: 2.4rem;
    text-align: right;
  }
  .curi-title {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.3;
  }
  .curi-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--stone);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--terracotta);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.3s, background 0.2s, border-color 0.2s;
    user-select: none;
  }
  .curiosita-toggle[aria-expanded="true"] .curi-icon {
    transform: rotate(45deg);
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
  }

  /* apertura con grid-template-rows trick */
  .curiosita-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s ease;
    overflow: hidden;
  }
  .curiosita-body.open { grid-template-rows: 1fr; }
  .curiosita-body-inner { overflow: hidden; min-height: 0; }
  .curiosita-body p {
    padding: 0 0.4rem 1.2rem 3.4rem;
    font-size: 0.94rem;
    color: var(--mid);
    line-height: 1.7;
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     CTA NEWSLETTER
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .cta-banner {
    background: #1D160E;
    padding: 4rem 2rem;
    text-align: center;
  }
  .cta-banner__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.9rem;
  }
  .cta-banner__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.4rem;
    line-height: 1.2;
  }
  .cta-banner__title em { font-style: italic; color: var(--stone); }
  .btn-cta {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    padding: 0.85rem 2.2rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Source Serif 4', serif;
    transition: background 0.2s;
  }
  .btn-cta:hover { background: var(--accent); }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     FOOTER
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .site-footer {
    background: #111111;
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(196,168,130,0.15);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
  }
  .site-footer__social-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
  }
  .site-footer__social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
  }
  .site-footer__social-icons a {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
  .site-footer__social-icons a:hover { opacity: 0.75; }
  .site-footer__social-icons img { width: 36px; height: 36px; object-fit: cover; display: block; }
  .site-footer__links { margin-bottom: 0.8rem; letter-spacing: 0.04em; }
  .site-footer__links a { color: var(--stone); text-decoration: none; }
  .site-footer__links a:hover { text-decoration: underline; }
  .site-footer__copy { letter-spacing: 0.02em; line-height: 1.9; }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     COOKIE BANNER
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  .cookie-banner {
    position: fixed;
    inset-block-end: 0;
    inset-inline: 0;
    z-index: 999;
    background: rgba(10,8,6,0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200,184,154,0.18);
    padding: 1.6rem 2rem;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
  }
  .cookie-banner__inner {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
  .cookie-banner.cookie-banner--hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
  .cookie-banner__icon { font-size: 2.4rem; line-height: 1; flex-shrink: 0; margin-top: 0.2rem; }
  .cookie-banner__content { flex: 1; min-width: 0; }
  .cookie-banner__title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.9); margin-bottom: 0.4rem; }
  .cookie-banner__text { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
  .cookie-banner__text a { color: var(--stone); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-banner__actions { display: flex; flex-direction: column; gap: 0.6rem; flex-shrink: 0; align-items: stretch; width: 180px; }
  .cookie-btn { display: inline-block; padding: 0.75rem 1.5rem; font-family: 'Source Serif 4', serif; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: none; text-align: center; transition: background 0.2s, color 0.2s; white-space: nowrap; }
  .cookie-btn--accept { background: var(--terracotta); color: #fff; }
  .cookie-btn--accept:hover { background: var(--accent); }
  .cookie-btn--necessary { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.18); }
  .cookie-btn--necessary:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
  .cookie-btn--manage { background: transparent; color: var(--stone); font-size: 0.76rem; padding: 0.3rem 0; text-decoration: underline; text-underline-offset: 2px; letter-spacing: 0.06em; }
  .cookie-btn--manage:hover { color: #fff; }
  .cookie-modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(10,8,6,0.7); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
  .cookie-modal-overlay.cookie-modal--open { opacity: 1; pointer-events: auto; }
  .cookie-modal { background: #1e1a17; border: 1px solid rgba(200,184,154,0.2); max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2.5rem; transform: translateY(20px); transition: transform 0.3s ease; }
  .cookie-modal-overlay.cookie-modal--open .cookie-modal { transform: translateY(0); }
  .cookie-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(200,184,154,0.15); }
  .cookie-modal__title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 300; font-style: italic; color: #fff; }
  .cookie-modal__close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.4); font-size: 1.4rem; line-height: 1; transition: color 0.2s; padding: 0.2rem 0.4rem; }
  .cookie-modal__close:hover { color: #fff; }
  .cookie-modal__intro { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.8rem; }
  .cookie-modal__intro a { color: var(--stone); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-category { padding: 1.1rem 0; border-bottom: 1px solid rgba(200,184,154,0.1); }
  .cookie-category:last-of-type { border-bottom: none; }
  .cookie-category__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
  .cookie-category__name { font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
  .cookie-category__desc { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.55; }
  .cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
  .cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
  .cookie-toggle__track { position: absolute; inset: 0; background: rgba(255,255,255,0.12); border-radius: 12px; cursor: pointer; transition: background 0.25s; }
  .cookie-toggle input:checked + .cookie-toggle__track { background: var(--terracotta); }
  .cookie-toggle input:disabled + .cookie-toggle__track { background: rgba(160,82,45,0.35); cursor: not-allowed; }
  .cookie-toggle__track::after { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform 0.25s; }
  .cookie-toggle input:checked + .cookie-toggle__track::after { transform: translateX(20px); }
  .cookie-modal__footer { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
  .cookie-modal__footer .cookie-btn { flex: 1; min-width: 120px; }

  @media (max-width: 640px) {
    .cookie-banner { padding: 1.4rem 1.2rem; }
    .cookie-banner__inner { flex-direction: column; gap: 1rem; align-items: center; }
    .cookie-banner__content { text-align: center; }
    .cookie-banner__actions { flex-direction: column; width: 220px; }
    .cookie-modal { padding: 1.6rem 1.2rem; }
  }

  /* &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;
     RESPONSIVE
  &#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552;&#9552; */
  @media (max-width: 1024px) {
    .page-wrap { grid-template-columns: 200px 1fr; gap: 2rem; }
  }

  @media (max-width: 800px) {
    .page-wrap { grid-template-columns: 1fr; padding: 0 1.2rem; }
    .sidebar { position: static; padding-top: 1.5rem; }
    .toc-head { display: none; }
    .toc-list { display: none; }
    .toc-list.open { display: block; }
    .toc-mobile-btn { display: flex !important; }
    .article-col { padding-top: 1rem; }
    .content-block { grid-template-columns: 1fr; }
    .content-block.img-left { direction: ltr; }
    .content-block figure { position: static; }
    .mosaic-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 160px 160px;
    }
    .mosaic-grid .ph:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .mosaic-grid .ph:nth-child(2) { grid-column: 1; grid-row: 2; }
    .mosaic-grid .ph:nth-child(3) { grid-column: 2; grid-row: 2; }
    .mosaic-grid .ph:nth-child(4) { grid-column: 1; grid-row: 3; }
    .mosaic-grid .ph:nth-child(5) { grid-column: 2; grid-row: 3; }
    .hero-content { padding: 2rem 1.5rem 3rem; }
    .breadcrumb { padding: 0.7rem 1.2rem; }
    .newsletter-wrap { padding: 2rem 1.2rem; margin: 0; }
    footer { padding: 1.5rem 1.2rem; }
  }

  @media (max-width: 600px) {
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1px solid rgba(196,168,130,0.35); }
    .hero { height: 80vh; }
  }

/* Ultime recensioni */
.borghi-section { padding: 0 2rem 3rem; }
.bs-head { margin-bottom: .8rem; }
.hero-ss { position: relative; height: 340px; overflow: hidden; background: #3A2A1E; }
.ss-slides { display: flex; height: 100%; transition: transform .9s cubic-bezier(.77,0,.18,1); }
.ss-slide { flex: 0 0 100%; height: 100%; position: relative; display: flex; align-items: center; }
.ss-slide .side-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--terracotta); }
.ss-slide .s-num { position: absolute; top: 1.8rem; right: 2.5rem; font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 400; color: rgba(184,149,106,.22); line-height: 1; user-select: none; }
.ss-slide .sc { position: relative; z-index: 2; padding: 2rem 4.5rem; width: 100%; }
.ss-slide .s-ey { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: .55rem; display: flex; align-items: center; gap: .5rem; }
.ss-slide .s-ey::before { content: ''; display: block; width: 16px; height: 1px; background: var(--stone); }
.ss-slide .s-name { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; color: var(--cream); line-height: 1.05; margin-bottom: .5rem; white-space: nowrap; }
.ss-slide .s-name em { font-style: italic; color: var(--stone); }
.ss-slide .s-desc { font-size: .88rem; color: rgba(245,240,232,.68); font-style: italic; line-height: 1.72; max-width: 640px; }
.ss-slide .s-cta { display: inline-block; margin-top: 1rem; border: 1px solid rgba(184,149,106,.45); color: rgba(245,240,232,.85); padding: .4rem 1.1rem; font-size: .65rem; letter-spacing: .10em; text-transform: uppercase; cursor: pointer; transition: all .2s; font-family: 'Source Serif 4', serif; text-decoration: none; white-space: nowrap; }
.ss-slide .s-cta:hover { background: rgba(184,149,106,.12); }
.ss-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(58,42,30,.6); border: 1px solid rgba(184,149,106,.3); color: rgba(184,149,106,.8); width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all .2s; font-family: serif; flex-shrink: 0; }
.ss-arr:hover { background: rgba(184,149,106,.15); border-color: var(--stone); color: var(--stone); }
.ss-arr.prev { left: .5rem; }
.ss-arr.next { right: .5rem; }
.ss-nav { position: absolute; bottom: 1.2rem; right: 1.5rem; display: flex; gap: .4rem; z-index: 10; }
.ss-dot { width: 26px; height: 2px; background: rgba(245,240,232,.2); cursor: pointer; transition: background .3s; }
.ss-dot.on { background: var(--stone); }
@media (max-width: 600px) {
  .hero-ss { height: 300px; }
  .ss-slide .s-name { white-space: normal; font-size: 1.5rem; }
  .ss-slide .sc { padding: 1.6rem 4rem; }
  .ss-slide .s-num { font-size: 3rem; top: 1rem; right: 1rem; opacity: .06; }
  .ss-slide .s-desc { font-size: .82rem; }
  .ss-nav { display: none; }
  .s-cta { margin-top: .4rem; font-size: .6rem; padding: .3rem .8rem; }
}
/* ══════════════════════════════════════════
   CTA NEWSLETTER — blocco "Rimani collegato"
   ══════════════════════════════════════════ */
.borghi-section + .borghi-section { padding-top: 2.5rem; }

.cta-sec-label {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta); display: flex; align-items: center;
  gap: .55rem; margin-bottom: .45rem;
}
.cta-sec-label::before {
  content: ''; display: block; width: 22px; height: 1px;
  background: var(--terracotta); flex-shrink: 0;
}

.cta-box {
  position: relative; height: 340px; overflow: hidden; background: #3A2A1E;
}
.cta-box .side-accent {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--terracotta);
}
.cta-box .cta-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem 4.5rem;
}
.cta-eyebrow {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--stone); margin-bottom: .55rem;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap; justify-content: center;
}
.cta-eyebrow::before {
  content: ''; display: block; width: 16px; height: 1px;
  background: var(--stone); flex-shrink: 0;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: .5rem;
}
.cta-title em { font-style: italic; color: var(--stone); }
.cta-btn {
  display: block; margin: 1.4rem auto 0;
  background: var(--terracotta); color: #fff;
  padding: .75rem 2rem; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; font-family: 'Source Serif 4', serif;
  text-decoration: none; max-width: 280px; text-align: center;
  transition: background .2s;
}
.cta-btn:hover { background: var(--accent); }

@media (max-width: 600px) {
  .cta-box { height: 300px; }
  .cta-box .cta-content { padding: 1.6rem 2rem; }
  .cta-eyebrow { font-size: .62rem; letter-spacing: .10em; }
  .cta-title { font-size: 1.5rem; }
}
