
    /* ==========================================================
       AIRAFFITTI 3.0 — Design Tokens (Nero · Beige · Bianco)
       ========================================================== */
    :root {
      --nero: #14181D;
      --nero-soft: #5C636C;
      --beige: #C9B18A;
      --beige-scuro: #A88F65;
      --beige-chiaro: #EDE5D5;
      --bianco: #FDFCF9;
      --bianco-puro: #FFFFFF;
      --linea: #E4DECF;
      --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
      --r-sm: 8px; --r-md: 14px; --r-lg: 24px; --r-pill: 999px;
      --container: 74rem;
      --sh-soft: 0 1px 2px rgba(20,24,29,.05), 0 14px 34px -16px rgba(20,24,29,.14);
      --sh-float: 0 2px 8px rgba(20,24,29,.07), 0 28px 56px -20px rgba(20,24,29,.22);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.7;
      color: var(--nero); background: var(--bianco); -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; letter-spacing: -0.02em; text-wrap: balance; }
    h1 { font-size: clamp(2.3rem, 5.4vw, 4.1rem); font-weight: 800; }
    h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 800; }
    h3 { font-size: 1.12rem; font-weight: 700; }
    p { margin: 0 0 1rem; text-wrap: pretty; }
    p:last-child { margin-bottom: 0; }
    a { color: var(--beige-scuro); }
    a:hover { color: var(--nero); }
    :focus-visible { outline: 3px solid var(--beige); outline-offset: 3px; border-radius: var(--r-sm); }

    .container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
    .container--sm { max-width: 54rem; }
    .section { padding-block: clamp(4rem, 9vw, 7.5rem); }
    .kicker {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: var(--beige-scuro); margin-bottom: 1.1rem;
    }
    .kicker::before { content: ""; width: 28px; height: 2px; background: var(--beige); }
    .lead { font-size: 1.13rem; color: var(--nero-soft); max-width: 44rem; }
    .head { max-width: 48rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
    .head--center { margin-inline: auto; text-align: center; }
    .head--center .kicker { justify-content: center; }
    .head--center .lead { margin-inline: auto; }

    /* ===== Reveal on scroll ===== */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

    /* ===== Bottoni premium ===== */
    .btn {
      position: relative; display: inline-flex; align-items: center; gap: .6rem; justify-content: center;
      font: 700 .92rem/1 var(--font); padding: 1.1em 2.1em; border-radius: var(--r-pill);
      text-decoration: none; border: 1.5px solid transparent; cursor: pointer; overflow: hidden;
      transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }
    .btn svg { width: 15px; height: 15px; flex: none; transition: transform .2s ease; }
    .btn:hover svg { transform: translateX(4px); }
    .btn--nero { background: var(--nero); color: #fff; }
    .btn--nero:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(20,24,29,.4); color: #fff; }
    .btn--beige { background: var(--beige); color: var(--nero); }
    .btn--beige:hover { background: var(--beige-scuro); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(168,143,101,.5); }
    .btn--ghost { background: transparent; color: var(--nero); border-color: var(--linea); }
    .btn--ghost:hover { border-color: var(--nero); color: var(--nero); }
    .btn--ghost-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
    .btn--ghost-w:hover { border-color: #fff; color: #fff; }
    .btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

    /* ===== Header ===== */
    .hd {
      position: sticky; top: 0; z-index: 80;
      background: rgba(253, 252, 249, .82); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--linea);
    }
    .hd__in { display: flex; align-items: center; gap: 1.3rem; padding-block: .8rem; flex-wrap: wrap; }
    .hd__logo img { height: 32px; width: auto; }
    .hd nav { margin-left: auto; }
    .hd nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; }
    .hd nav a { font-size: .86rem; font-weight: 600; color: var(--nero-soft); text-decoration: none; padding-block: .3rem; }
    .hd nav a:hover, .hd nav a[aria-current="page"] { color: var(--nero); }
    .hd__tel { font-size: .84rem; font-weight: 700; color: var(--nero); text-decoration: none; white-space: nowrap; }
    .hd__tel:hover { color: var(--beige-scuro); }
    .hd .btn { padding: .85em 1.5em; font-size: .8rem; }
    @media (max-width: 1080px) { .hd__tel { display: none; } }
    @media (max-width: 860px) { .hd .btn--ghost { display: none; } }
    @media (max-width: 720px) {
      .hd__in { justify-content: center; }
      .hd nav { margin-left: 0; width: 100%; order: 3; }
      .hd nav ul { justify-content: center; }
      .hd .btn--beige { display: none; }
    }

    /* ===== Hero ===== */
    .hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3rem, 6vw, 5rem); overflow: clip; }
    .hero__grid { display: grid; gap: 3.5rem; align-items: center; }
    @media (min-width: 980px) { .hero__grid { grid-template-columns: 1.08fr 1fr; gap: 4.5rem; } }
    .hero__badge {
      display: inline-flex; align-items: center; gap: .55rem;
      background: var(--beige-chiaro); color: var(--nero);
      font-size: .76rem; font-weight: 700; padding: .55em 1.2em; border-radius: var(--r-pill);
      margin-bottom: 1.6rem;
    }
    .hero__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--beige-scuro); }
    .hero h1 em { font-style: normal; color: var(--beige-scuro); }
    .hero .lead { margin-block: 1.4rem 1.8rem; }
    .hero__check { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--nero-soft); margin-top: 1.1rem; }
    .hero__check svg { width: 16px; height: 16px; color: var(--beige-scuro); flex: none; }

    /* Configuratore rapido */
    .cfg {
      margin-top: 1.4rem; background: var(--bianco-puro); border: 1px solid var(--linea);
      border-radius: var(--r-lg); padding: .6rem; display: grid; gap: .6rem;
      box-shadow: var(--sh-soft); max-width: 36rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) { .cfg { grid-template-columns: 1fr 1fr auto; border-radius: var(--r-pill); } }
    .cfg select {
      font: 600 .88rem/1.4 var(--font); color: var(--nero);
      padding: .8em 1em; border: 0; border-radius: var(--r-pill); background: transparent; width: 100%;
      cursor: pointer;
    }
    @media (min-width: 640px) { .cfg select:first-child { border-right: 1px solid var(--linea); border-radius: 0; } }
    .cfg .btn { padding: .9em 1.7em; font-size: .84rem; }
    .cfg__lb { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--beige-scuro); margin-top: 1.6rem; display: block; margin-bottom: .5rem; }

    /* Visual + card glass */
    .hero__vis { position: relative; }
    .hero__ph {
      border-radius: 150px 150px var(--r-lg) var(--r-lg); overflow: hidden;
      box-shadow: var(--sh-soft); aspect-ratio: 4 / 4.7; background: var(--beige-chiaro);
    }
    .hero__ph img { width: 104%; height: 104%; object-fit: cover; will-change: transform; }
    .fl {
      position: absolute; background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
      border-radius: var(--r-md); box-shadow: var(--sh-float); padding: .9rem 1.15rem;
      display: flex; align-items: center; gap: .8rem;
      border: 1px solid rgba(255,255,255,.7);
    }
    .fl__ic {
      width: 40px; height: 40px; border-radius: 12px; flex: none;
      display: grid; place-items: center; background: var(--beige-chiaro); color: var(--nero);
    }
    .fl__ic svg { width: 19px; height: 19px; }
    .fl strong { display: block; font-size: 1.02rem; font-weight: 800; line-height: 1.15; letter-spacing: -.01em; }
    .fl span { font-size: .7rem; font-weight: 600; color: var(--nero-soft); }
    .fl--rev { top: 5%; left: -8%; flex-direction: column; align-items: flex-start; gap: .3rem; max-width: 215px; }
    .fl--rev .stars { color: var(--beige-scuro); font-size: .82rem; letter-spacing: 2.5px; }
    .fl--rev p { font-size: .78rem; font-weight: 600; margin: 0; line-height: 1.45; }
    .fl--rev cite { font-size: .68rem; font-style: normal; color: var(--nero-soft); }
    .fl--min { bottom: 30%; left: -9%; }
    .fl--occ { top: 24%; right: -6%; }
    .fl--fee { bottom: 12%; right: -5%; }
    .fl--badge {
      bottom: -4%; left: 12%; gap: .6rem; padding: .65rem 1.1rem; font-size: .72rem; font-weight: 700;
    }
    .fl--badge span { display: inline-flex; align-items: center; gap: .35rem; font-size: .72rem; font-weight: 700; color: var(--nero); }
    .fl--badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--beige); }
    @media (max-width: 1120px) { .fl--rev, .fl--min { left: -2%; } .fl--occ, .fl--fee { right: -2%; } }
    @media (max-width: 640px) {
      .fl { position: static; width: 100%; margin-top: .7rem; }
      .hero__vis { display: grid; }
      .fl--rev { display: none; }
      .fl--badge { justify-content: center; }
      .hero__ph { border-radius: 90px 90px var(--r-lg) var(--r-lg); }
    }

    /* ===== Statistiche full width ===== */
    .stats { border-block: 1px solid var(--linea); background: var(--bianco-puro); }
    .stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-block: 3rem 2rem; }
    @media (min-width: 880px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
    .st { text-align: center; }
    .st strong { display: block; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
    .st strong em { font-style: normal; color: var(--beige-scuro); }
    .st span { font-size: .78rem; font-weight: 600; color: var(--nero-soft); }
    .plat { display: flex; flex-wrap: wrap; gap: 1rem 3rem; justify-content: center; align-items: center; padding-block: 0 2.4rem; }
    .plat span { font-size: .95rem; font-weight: 700; letter-spacing: .04em; color: var(--nero-soft); opacity: .75; display: inline-flex; align-items: center; gap: .5rem; }
    .plat .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--beige); }

    /* ===== Bento servizi ===== */
    .bento { display: grid; gap: 1rem; grid-template-columns: 1fr; }
    @media (min-width: 700px) { .bento { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1000px) { .bento { grid-template-columns: repeat(4, 1fr); } }
    .bx {
      background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-lg);
      padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: .8rem;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .bx:hover { transform: translateY(-5px); box-shadow: var(--sh-soft); border-color: var(--beige); }
    .bx:hover .fl__ic { background: var(--beige); color: var(--nero); }
    .bx .fl__ic { transition: background .25s ease, color .25s ease; }
    .bx--hero { background: var(--nero); color: rgba(255,255,255,.66); border-color: var(--nero); }
    .bx--hero h3 { color: #fff; }
    .bx--hero p { color: rgba(255,255,255,.66); }
    .bx--hero .fl__ic { background: rgba(201,177,138,.18); color: var(--beige); }
    .bx--hero:hover { border-color: var(--beige); }
    .bx--hero:hover .fl__ic { background: var(--beige); color: var(--nero); }
    @media (min-width: 1000px) { .bx--hero { grid-column: span 2; } }
    .bx h3 { margin: 0; }
    .bx p { font-size: .87rem; color: var(--nero-soft); }
    .bx__num { margin-top: auto; font-size: 1.5rem; font-weight: 800; color: var(--beige); letter-spacing: -.02em; }

    /* ===== Timeline Come lavoriamo ===== */
    .tl { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: clamp(2rem, 5vw, 3.2rem); }
    .tl::before {
      content: ""; position: absolute; left: 2.05rem; top: .5rem; bottom: .5rem;
      width: 2px; background: linear-gradient(var(--beige), var(--linea));
    }
    .tl li { display: grid; grid-template-columns: 4.1rem 1fr; gap: 1.4rem; align-items: start; position: relative; }
    .tl__num {
      width: 4.1rem; height: 4.1rem; border-radius: 50%; background: var(--bianco);
      border: 2px solid var(--beige); color: var(--nero);
      display: grid; place-items: center; font-size: 1.25rem; font-weight: 800; position: relative; z-index: 1;
    }
    .tl h3 { margin-bottom: .4rem; font-size: 1.25rem; }
    .tl p { font-size: .92rem; color: var(--nero-soft); max-width: 38rem; }

    /* ===== 20% ===== */
    .cost { background: var(--nero); color: rgba(255,255,255,.72); }
    .cost h2 { color: #fff; }
    .cost .kicker { color: var(--beige); }
    .cost__grid { display: grid; gap: 3rem; align-items: center; }
    @media (min-width: 960px) { .cost__grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }
    .cost__num { font-size: clamp(6rem, 14vw, 11rem); font-weight: 800; line-height: .9; color: var(--beige); letter-spacing: -.04em; }
    .cost__num small { display: block; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: .8rem; }
    .cost__pts { display: grid; gap: 1.1rem; margin-top: 1.8rem; list-style: none; padding: 0; }
    .cost__pts li { display: flex; gap: .8rem; align-items: flex-start; font-size: .9rem; }
    .cost__pts svg { width: 20px; height: 20px; flex: none; color: var(--beige); margin-top: 2px; }
    .cost__pts strong { color: #fff; }

    /* ===== Prima / Dopo ===== */
    .bad { background: var(--beige-chiaro); }
    .bad__grid { display: grid; gap: 1.2rem; align-items: stretch; }
    @media (min-width: 900px) { .bad__grid { grid-template-columns: 1fr auto 1fr; align-items: center; } }
    .bad__card { background: var(--bianco-puro); border-radius: var(--r-lg); padding: 2.2rem 2rem; border: 1px solid var(--linea); }
    .bad__card--after { background: var(--nero); color: rgba(255,255,255,.75); border-color: var(--nero); box-shadow: var(--sh-float); }
    .bad__card h3 { font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.4rem; }
    .bad__card--before h3 { color: var(--nero-soft); }
    .bad__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; font-size: .92rem; }
    .bad__list li { display: flex; gap: .7rem; align-items: flex-start; }
    .bad__list .x { color: #B3552F; font-weight: 800; flex: none; }
    .bad__list .v { color: var(--beige); font-weight: 800; flex: none; }
    .bad__arrow {
      width: 54px; height: 54px; border-radius: 50%; background: var(--nero); color: var(--beige);
      display: grid; place-items: center; margin-inline: auto; font-size: 1.3rem; font-weight: 800;
      transform: rotate(90deg);
    }
    @media (min-width: 900px) { .bad__arrow { transform: none; } }

    /* ===== Comparison ===== */
    .cmp-wrap { overflow-x: auto; border: 1px solid var(--linea); border-radius: var(--r-lg); background: var(--bianco-puro); box-shadow: var(--sh-soft); }
    .cmp { width: 100%; border-collapse: collapse; min-width: 38rem; }
    .cmp caption { position: absolute; left: -9999px; }
    .cmp th, .cmp td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--linea); font-size: .87rem; }
    .cmp thead th { font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; background: var(--bianco); }
    .cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
    .cmp tbody th { font-weight: 600; color: var(--nero-soft); }
    .cmp .brand { background: rgba(201,177,138,.12); }
    .cmp thead th.brand { color: var(--beige-scuro); }
    .cmp td.brand { font-weight: 700; color: var(--nero); }
    .cmp td.no { color: var(--nero-soft); }

    /* ===== Recensioni ===== */
    .rev { display: grid; gap: 1rem; }
    @media (min-width: 900px) { .rev { grid-template-columns: 1.45fr 1fr 1fr; } }
    .rv {
      background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-lg);
      padding: 1.9rem 1.7rem; margin: 0; display: flex; flex-direction: column; gap: 1rem;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .rv:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); }
    .rv--feat { background: var(--beige-chiaro); border-color: var(--beige); }
    .rv__top { display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
    .rv .stars { color: var(--beige-scuro); letter-spacing: 3px; font-size: .88rem; }
    .rv__via { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-pill); padding: .3em .9em; color: var(--nero-soft); }
    .rv p { font-size: .94rem; font-weight: 500; line-height: 1.65; }
    .rv--feat p { font-size: 1.05rem; }
    .rv footer { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
    .rv__av {
      width: 40px; height: 40px; border-radius: 50%; background: var(--nero); color: var(--beige);
      display: grid; place-items: center; font-size: .8rem; font-weight: 800; flex: none;
    }
    .rv footer strong { display: block; font-size: .86rem; line-height: 1.3; }
    .rv footer span { font-size: .72rem; color: var(--nero-soft); }

    /* ===== Callout ===== */
    .callout {
      background: var(--beige-chiaro); border: 1px solid var(--beige); border-radius: var(--r-lg);
      padding: 2.2rem 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
    }
    .callout h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 800; margin: 0; }
    .callout p { font-size: .88rem; color: var(--nero-soft); margin: .3rem 0 0; }

    /* ===== Zone ===== */
    .zone { display: grid; gap: 1rem; grid-template-columns: 1fr; }
    @media (min-width: 640px) { .zone { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1000px) { .zone { grid-template-columns: 1.25fr 1fr 1fr 1.25fr; } }
    .zn { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-soft); text-decoration: none; }
    .zn img { aspect-ratio: 3 / 3.5; width: 100%; object-fit: cover; transition: transform .8s ease; }
    .zn:hover img { transform: scale(1.05); }
    .zn__lb {
      position: absolute; inset: auto 1rem 1rem;
      background: rgba(253, 252, 249, .9); backdrop-filter: blur(8px);
      border-radius: var(--r-md); padding: .8rem 1rem;
    }
    .zn__lb strong { display: block; font-size: .98rem; font-weight: 800; color: var(--nero); }
    .zn__lb span { font-size: .72rem; font-weight: 600; color: var(--nero-soft); }

    /* ===== FAQ ===== */
    .faq { display: grid; gap: .7rem; max-width: 50rem; margin-inline: auto; }
    .faq details { background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-md); transition: border-color .2s ease; }
    .faq details[open] { border-color: var(--beige); }
    .faq summary {
      cursor: pointer; list-style: none; font-weight: 700; font-size: .96rem;
      padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--beige-scuro); line-height: 1; }
    .faq details[open] summary::after { content: "–"; }
    .faq .bd { padding: 0 1.4rem 1.3rem; color: var(--nero-soft); font-size: .89rem; }

    /* ===== Blog ===== */
    .posts { display: grid; gap: 1rem; }
    @media (min-width: 900px) { .posts { grid-template-columns: repeat(3, 1fr); } }
    .ps {
      background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-lg);
      padding: 1.8rem 1.6rem; text-decoration: none; color: inherit;
      display: flex; flex-direction: column; gap: .9rem;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .ps:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); border-color: var(--beige); }
    .ps__meta { display: flex; gap: .6rem; align-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .ps__meta .cat { color: var(--beige-scuro); }
    .ps__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--linea); }
    .ps__meta .time { color: var(--nero-soft); }
    .ps h3 { margin: 0; font-size: 1.05rem; line-height: 1.35; transition: color .2s ease; }
    .ps:hover h3 { color: var(--beige-scuro); }
    .ps p { font-size: .85rem; color: var(--nero-soft); }
    .ps__arrow { margin-top: auto; font-weight: 800; color: var(--nero); font-size: .9rem; transition: transform .2s ease; }
    .ps:hover .ps__arrow { transform: translateX(6px); color: var(--beige-scuro); }

    /* ===== CTA finale ===== */
    .final {
      background: var(--nero); color: rgba(255,255,255,.72); border-radius: var(--r-lg);
      padding: clamp(3rem, 7vw, 5.5rem) 2rem; position: relative; overflow: hidden;
    }
    .final::before {
      content: ""; position: absolute; inset: -50% -30% auto; height: 130%;
      background: radial-gradient(closest-side, rgba(201,177,138,.22), transparent 70%);
      pointer-events: none;
    }
    .final > * { position: relative; }
    .final .kicker { color: var(--beige); }
    .final h2 { color: #fff; }
    .final__grid { display: grid; gap: 2.5rem; }
    @media (min-width: 900px) { .final__grid { grid-template-columns: 1fr 1fr; } }
    .final__card { border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 2rem 1.8rem; background: rgba(255,255,255,.03); }
    .final__card h3 { color: #fff; font-size: 1.2rem; margin-bottom: .5rem; }
    .final__card p { font-size: .88rem; margin-bottom: 1.4rem; }
    .final__pts { display: flex; flex-wrap: wrap; gap: .6rem 2rem; margin-top: 2rem; font-size: .82rem; font-weight: 600; }
    .final__pts span { display: inline-flex; gap: .45rem; align-items: center; }
    .final__pts svg { width: 15px; height: 15px; color: var(--beige); }

    /* ===== Footer ===== */
    .ft { background: var(--bianco-puro); border-top: 1px solid var(--linea); margin-top: clamp(3rem, 7vw, 5rem); }
    .ft__grid { display: grid; gap: 2.2rem; padding-block: 3.5rem 2.5rem; grid-template-columns: 1fr; }
    @media (min-width: 640px) { .ft__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1000px) { .ft__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }
    .ft img { height: 30px; width: auto; }
    .ft h4 { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1rem; color: var(--nero); }
    .ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .85rem; }
    .ft a { color: var(--nero-soft); text-decoration: none; }
    .ft a:hover { color: var(--nero); text-decoration: underline; }
    .ft p { font-size: .87rem; color: var(--nero-soft); }
    .ft__soc { display: flex; gap: .7rem; margin-top: 1.2rem; }
    .ft__soc a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid var(--linea); border-radius: 50%; color: var(--nero); transition: border-color .2s ease, color .2s ease; }
    .ft__soc a:hover { border-color: var(--beige-scuro); color: var(--beige-scuro); }
    .ft__soc svg { width: 16px; height: 16px; }
    .ft__bot { border-top: 1px solid var(--linea); padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; font-size: .74rem; color: var(--nero-soft); }
    @media (max-width: 720px) { .ft__bot { padding-bottom: 5.5rem; } }

    /* ===== Sticky CTA mobile ===== */
    .sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
      background: rgba(253, 252, 249, .92); backdrop-filter: blur(14px);
      border-top: 1px solid var(--linea); padding: .7rem 1rem;
      display: none; gap: .6rem;
    }
    .sticky-cta .btn { flex: 1; padding: .95em 1em; font-size: .78rem; white-space: normal; text-align: center; }
    @media (max-width: 720px) { .sticky-cta { display: flex; } }

    /* ===== Modal Valutatore ===== */
    .mdl { position: fixed; inset: 0; z-index: 100; display: none; }
    .mdl.open { display: block; }
    .mdl__bk { position: absolute; inset: 0; background: rgba(20,24,29,.55); backdrop-filter: blur(4px); }
    .mdl__box {
      position: relative; max-width: 34rem; margin: 4vh auto; max-height: 92vh; overflow: auto;
      background: var(--bianco); border-radius: var(--r-lg); box-shadow: var(--sh-float);
      padding: 2.4rem 2.2rem 2.2rem; width: calc(100% - 2rem);
    }
    .mdl__close {
      position: absolute; top: 1.1rem; right: 1.1rem; width: 38px; height: 38px;
      border: 1px solid var(--linea); background: var(--bianco-puro); border-radius: 50%;
      font-size: 1.1rem; cursor: pointer; color: var(--nero); line-height: 1;
    }
    .mdl__close:hover { border-color: var(--nero); }
    .mdl h2 { font-size: 1.45rem; margin-bottom: .4rem; }
    .mdl__sub { font-size: .87rem; color: var(--nero-soft); margin-bottom: 1.4rem; }
    .mdl__pts { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin-bottom: 1.6rem; }
    .mdl__pts span {
      font-size: .68rem; font-weight: 700; background: var(--beige-chiaro); color: var(--nero);
      border-radius: var(--r-pill); padding: .35em .9em;
    }
    .steps { display: flex; gap: .4rem; margin-bottom: 1.6rem; }
    .steps span { flex: 1; height: 4px; border-radius: 2px; background: var(--linea); }
    .steps span.on { background: var(--beige); }
    .stp { display: none; }
    .stp.on { display: grid; gap: 1rem; }
    .stp h3 { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--beige-scuro); margin: 0; }
    .fld { display: grid; gap: .35rem; }
    .fld label { font-size: .8rem; font-weight: 700; }
    .fld input, .fld select {
      font: 500 .9rem/1.4 var(--font); color: var(--nero);
      padding: .75em 1em; border: 1px solid var(--linea); border-radius: var(--r-md);
      background: var(--bianco-puro); width: 100%;
    }
    .fld input:focus-visible, .fld select:focus-visible { outline: 3px solid var(--beige); outline-offset: 1px; }
    .fld2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
    .fld3 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr 1fr; }
    @media (max-width: 520px) { .fld3, .fld2 { grid-template-columns: 1fr; } }
    .chips { display: flex; flex-wrap: wrap; gap: .5rem; }
    .chips label {
      display: inline-flex; align-items: center; gap: .45rem; cursor: pointer;
      font-size: .82rem; font-weight: 600; border: 1px solid var(--linea); border-radius: var(--r-pill);
      padding: .5em 1.1em; background: var(--bianco-puro); transition: border-color .15s ease, background .15s ease;
    }
    .chips label:has(input:checked) { border-color: var(--beige-scuro); background: var(--beige-chiaro); }
    .chips input { accent-color: var(--nero); margin: 0; }
    .mdl__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.7rem; }
    .mdl__note { font-size: .72rem; color: var(--nero-soft); margin-top: 1rem; text-align: center; }
    .priv { display: flex; gap: .6rem; align-items: flex-start; font-size: .76rem; color: var(--nero-soft); }
    .priv input { margin-top: 3px; accent-color: var(--nero); }
    .mdl__done { text-align: center; padding-block: 1.5rem; }
    .mdl__done .fl__ic { margin-inline: auto; width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1rem; }
    body.mdl-open { overflow: hidden; }
  
/* ===== Pagine interne ===== */
.fld textarea { font: 500 .9rem/1.5 var(--font); color: var(--nero); padding: .75em 1em; border: 1px solid var(--linea); border-radius: var(--r-md); background: var(--bianco-puro); width: 100%; min-height: 9rem; resize: vertical; }
.fld textarea:focus-visible { outline: 3px solid var(--beige); outline-offset: 1px; }
.split { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr 1fr; gap: 3.5rem; } }
.page-hero { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--linea); }

/* ===== Alloggi — card stile hospitality ===== */
.lst { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) and (min-width: 641px) { .lst { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .lst {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1rem; margin-inline: -1.5rem; padding-inline: 1.5rem; padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .lst::-webkit-scrollbar { display: none; }
  .lst > * { flex: 0 0 84%; scroll-snap-align: center; }
}
.lc {
  background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lc:hover { transform: translateY(-5px); box-shadow: var(--sh-float); border-color: var(--beige); }
.lc__media { position: relative; overflow: hidden; }
.lc__media img { aspect-ratio: 4 / 3.1; width: 100%; object-fit: cover; transition: transform .9s ease; display: block; }
.lc:hover .lc__media img { transform: scale(1.06); }
.lc__badges { position: absolute; top: .9rem; left: .9rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.lc__badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: .45em 1em; border-radius: var(--r-pill);
  background: rgba(253, 252, 249, .94); backdrop-filter: blur(6px); color: var(--nero);
}
.lc__badge--beige { background: var(--beige); }
.lc__save {
  position: absolute; top: .8rem; right: .8rem; width: 38px; height: 38px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(253, 252, 249, .94); backdrop-filter: blur(6px); color: var(--nero);
  display: grid; place-items: center; transition: transform .2s ease, color .2s ease;
}
.lc__save svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: fill .2s ease; }
.lc__save:hover { transform: scale(1.1); color: var(--beige-scuro); }
.lc__save.on { color: var(--beige-scuro); }
.lc__save.on svg { fill: currentColor; }
.lc__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.lc__top { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.lc__top h3 { margin: 0; font-size: 1.05rem; }
.lc__rate { display: inline-flex; align-items: baseline; gap: .25rem; font-weight: 800; font-size: .86rem; white-space: nowrap; }
.lc__rate .star { color: var(--beige-scuro); }
.lc__rate small { font-weight: 600; color: var(--nero-soft); }
.lc__zone { font-size: .8rem; font-weight: 600; color: var(--nero-soft); }
.lc__ft { display: flex; flex-wrap: wrap; gap: .3rem .5rem; font-size: .78rem; color: var(--nero-soft); margin-top: .2rem; }
.lc__ft .sep { color: var(--beige); font-weight: 800; }
.lc__foot {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--linea);
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
}
.lc__price { font-size: .76rem; font-weight: 600; color: var(--nero-soft); line-height: 1.3; }
.lc__price strong { display: block; font-size: 1.12rem; font-weight: 800; color: var(--nero); }
.lc__link { font-weight: 800; font-size: .84rem; color: var(--nero); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.lc__link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.lc__link:hover { color: var(--beige-scuro); }
.lc__link:hover svg { transform: translateX(4px); }

/* ===== Breadcrumb ===== */
.crumb { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .76rem; font-weight: 600; color: var(--nero-soft); padding-block: 1.2rem 0; }
.crumb a { color: var(--nero-soft); text-decoration: none; }
.crumb a:hover { color: var(--nero); }
.crumb .sep { color: var(--beige); }

/* ===== Pagina alloggio ===== */
.gal { position: relative; display: grid; gap: .6rem; grid-template-columns: 1fr 1fr; border-radius: var(--r-lg); overflow: hidden; }
.gal > a { display: block; overflow: hidden; cursor: zoom-in; min-height: 0; }
.gal > a[hidden] { display: none; }
.gal img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; transition: transform .6s ease; }
.gal > a:hover img { transform: scale(1.04); }
.gal > a:first-child { grid-column: 1 / -1; }
.gal > a:first-child img { aspect-ratio: 21 / 10; }
@media (min-width: 860px) {
  .gal { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 230px); }
  .gal img { aspect-ratio: auto; }
  .gal > a:first-child { grid-column: 1; grid-row: 1 / 3; }
  .gal > a:first-child img { aspect-ratio: auto; }
}
.gal__more {
  position: absolute; right: 1rem; bottom: 1rem;
  background: rgba(253, 252, 249, .94); backdrop-filter: blur(6px);
  font-size: .76rem; font-weight: 800; color: var(--nero);
  padding: .55em 1.2em; border-radius: var(--r-pill); text-decoration: none;
  border: 0; cursor: pointer; font-family: var(--font);
}
.gal__more:hover { background: var(--beige); color: var(--nero); }
.stay-grid { display: grid; gap: 2.5rem; margin-top: 2.5rem; }
@media (min-width: 980px) { .stay-grid { grid-template-columns: 1.55fr 1fr; align-items: start; } }
.stay h2 { font-size: 1.35rem; margin: 2.4rem 0 .9rem; }
.stay h2:first-child { margin-top: 0; }
.stay p { color: var(--nero-soft); font-size: .95rem; }
.stay__meta { display: flex; flex-wrap: wrap; gap: .4rem .6rem; margin-block: .8rem 0; }
.stay__meta span { font-size: .76rem; font-weight: 700; background: var(--beige-chiaro); border-radius: var(--r-pill); padding: .45em 1.1em; }
.amen { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.5rem; list-style: none; margin: 0; padding: 0; }
.amen li { display: flex; gap: .7rem; align-items: center; font-size: .9rem; }
.amen svg { width: 20px; height: 20px; flex: none; color: var(--beige-scuro); }
.rules { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .9rem; color: var(--nero-soft); }
.rules li { display: flex; gap: .7rem; align-items: baseline; }
.rules .dot { color: var(--beige-scuro); font-weight: 800; }
.book { position: sticky; top: 92px; }
.book .bx { gap: .9rem; box-shadow: var(--sh-float); border-color: var(--beige); }
.book__price { display: flex; align-items: baseline; gap: .5rem; }
.book__price strong { font-size: 1.5rem; font-weight: 800; }
.book__price span { font-size: .8rem; color: var(--nero-soft); font-weight: 600; }

/* ===== Template articolo ===== */
.art-hero { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-soft); margin-top: 2rem; }
.art-hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block; }
.art-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .78rem; font-weight: 600; color: var(--nero-soft); align-items: center; }
.art-meta .av { width: 34px; height: 34px; border-radius: 50%; background: var(--nero); color: var(--beige); display: inline-grid; place-items: center; font-size: .72rem; font-weight: 800; }
.art-grid { display: grid; gap: 3rem; margin-top: 3rem; }
@media (min-width: 1000px) { .art-grid { grid-template-columns: 15rem minmax(0, 1fr); align-items: start; } }
.toc {
  font-size: .84rem;
  background: var(--bianco-puro); border: 1px solid var(--beige); border-radius: 20px;
  padding: 1.4rem 1.3rem; box-shadow: var(--sh-soft);
}
@media (min-width: 1000px) { .toc { position: sticky; top: 100px; } }
.toc strong { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--beige-scuro); margin-bottom: .9rem; padding-left: .6rem; }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a {
  display: flex; gap: .7rem; align-items: baseline;
  color: var(--nero-soft); font-weight: 600; text-decoration: none;
  padding: .45rem .6rem; border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.toc a::before { content: "0" counter(toc); font-size: .66rem; font-weight: 800; color: var(--beige); flex: none; }
.toc a:hover, .toc a.on { color: var(--nero); background: var(--beige-chiaro); }
.toc a.on::before { color: var(--beige-scuro); }
.prose { max-width: 44rem; font-size: 1rem; line-height: 1.85; }
.prose h2 { font-size: 1.45rem; margin: 2.6rem 0 1rem; scroll-margin-top: 110px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.3em; display: grid; gap: .5rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .87rem; margin-block: 1.4rem; }
.prose th, .prose td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--linea); }
.prose thead th { background: var(--beige-chiaro); font-weight: 800; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.check { list-style: none !important; padding-left: 0 !important; }
.check li { display: flex; gap: .7rem; align-items: baseline; }
.check li::before { content: "✓"; color: var(--beige-scuro); font-weight: 800; flex: none; }
.box { border-radius: var(--r-md); padding: 1.3rem 1.5rem; margin-block: 1.7rem; font-size: .92rem; line-height: 1.7; }
.box__lb { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .5rem; }
.box--tip { background: var(--beige-chiaro); border: 1px solid var(--beige); }
.box--tip .box__lb { color: var(--beige-scuro); }
.box--err { background: var(--bianco-puro); border: 1px solid var(--linea); border-left: 4px solid #B3552F; }
.box--err .box__lb { color: #B3552F; }
.box--mem { background: var(--nero); color: rgba(255,255,255,.8); }
.box--mem .box__lb { color: var(--beige); }
.box--mem strong { color: #fff; }

/* ===== Piani commissioni ===== */
.plans { display: grid; gap: 1.2rem; margin-top: 3.2rem; }
@media (min-width: 960px) { .plans { grid-template-columns: 1fr 1.12fr 1fr; align-items: stretch; gap: 1.4rem; } }
.plan {
  background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: 26px;
  padding: 2.5rem 2.2rem; display: flex; flex-direction: column; gap: 1rem; position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-float); border-color: var(--beige); }
.plan__name { font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--beige-scuro); }
.plan__benefit { font-size: 1.3rem; font-weight: 800; letter-spacing: -.015em; line-height: 1.25; }
.plan__price { display: flex; align-items: baseline; gap: .7rem; padding-block: .4rem .2rem; }
.plan__price strong { font-size: 3.4rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.plan__price span { font-size: .76rem; font-weight: 600; color: var(--nero-soft); max-width: 13ch; line-height: 1.35; }
.plan__sub { font-size: .88rem; color: var(--nero-soft); }
.plan__list { list-style: none; margin: .4rem 0 1.2rem; padding: 1.3rem 0 0; border-top: 1px solid var(--linea); display: grid; gap: .7rem; font-size: .88rem; }
.plan__list li { display: flex; gap: .7rem; align-items: baseline; }
.plan__list svg { width: 15px; height: 15px; flex: none; color: var(--beige-scuro); transform: translateY(2px); }
.plan .btn { margin-top: auto; width: 100%; }
.plan__note { font-size: .72rem; font-weight: 600; color: var(--nero-soft); text-align: center; margin: .7rem 0 0; }
.plan--feat { background: var(--nero); border-color: var(--nero); color: rgba(255,255,255,.75); box-shadow: var(--sh-float); }
@media (min-width: 960px) { .plan--feat { margin-top: -1.8rem; padding-block: 3rem; } }
.plan--feat .plan__benefit { color: #fff; }
.plan--feat .plan__price strong { color: var(--beige); }
.plan--feat .plan__price span, .plan--feat .plan__sub, .plan--feat .plan__note { color: rgba(255,255,255,.6); }
.plan--feat .plan__list { border-top-color: rgba(255,255,255,.16); }
.plan--feat .plan__list svg { color: var(--beige); }
.plan--feat:hover { border-color: var(--beige); }
.plan__badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  background: var(--beige); color: var(--nero);
  font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: .6em 1.5em; border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(201, 177, 138, .7);
}
.plan__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--nero); }
.plans-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 3.5rem; justify-content: center; margin-top: 2.4rem; }
.plans-trust div { text-align: center; }
.plans-trust strong { display: block; font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.plans-trust span { font-size: .74rem; font-weight: 600; color: var(--nero-soft); }
.fascia {
  background: var(--beige-chiaro); border: 1px solid var(--beige); border-radius: 26px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 2.8rem); margin-top: 3.5rem;
}
.fascia h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; letter-spacing: -.015em; margin: 0 0 .8rem; }
.fascia p { font-size: .95rem; color: var(--nero-soft); max-width: 56rem; }
.mini3 { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.8rem; }
@media (min-width: 700px) { .mini3 { grid-template-columns: repeat(3, 1fr); } }
.mini {
  background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: var(--r-lg);
  padding: 1.2rem 1.4rem; display: flex; gap: .8rem; align-items: center;
  font-size: .9rem; font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mini:hover { transform: translateY(-3px); box-shadow: var(--sh-soft); }
.mini svg { width: 20px; height: 20px; color: var(--beige-scuro); flex: none; }


/* ============================================================
   ADATTATORE ELEMENTOR — mappa le classi custom sui widget.
   Assegna la classe (Avanzate → Classi CSS) al widget indicato.
   ============================================================ */
body { --e-global-color-primary: var(--nero); --e-global-color-accent: var(--beige); }
.aa-btn .elementor-button { border-radius: 999px; font-family: var(--font); font-weight: 700; font-size: .92rem; padding: 1.05em 2em; transition: transform .16s ease, background-color .16s ease; }
.aa-btn .elementor-button:hover { transform: translateY(-1px); }
.aa-btn-nero .elementor-button { background: var(--nero); color: #fff; }
.aa-btn-nero .elementor-button:hover { background: var(--beige-scuro); }
.aa-btn-beige .elementor-button { background: var(--beige); color: var(--nero); }
.aa-btn-beige .elementor-button:hover { background: var(--nero); color: #fff; }
.aa-btn-ghost .elementor-button { background: transparent; color: var(--nero); border: 1.5px solid var(--linea); }
.aa-btn-ghost .elementor-button:hover { border-color: var(--nero); }
.aa-kicker .elementor-heading-title { font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--beige-scuro); }
.aa-kicker .elementor-heading-title::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--beige); vertical-align: middle; margin-right: .6rem; }
.aa-h .elementor-heading-title { font-family: var(--font); font-weight: 800; letter-spacing: -.02em; }
.aa-card { background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: 26px; padding: 2rem; transition: transform .25s ease, box-shadow .25s ease; }
.aa-card:hover { transform: translateY(-4px); box-shadow: var(--sh-float); border-color: var(--beige); }
.aa-dark { background: var(--nero); color: #fff; }
.aa-dark .elementor-heading-title { color: #fff; }
.aa-check .elementor-icon-list-icon svg, .aa-check .elementor-icon-list-icon i { color: var(--beige-scuro); }
.aa-faq .elementor-accordion-item { background: var(--bianco-puro); border: 1px solid var(--linea) !important; border-radius: 16px; margin-bottom: .7rem; overflow: hidden; }
.aa-faq .elementor-tab-title { font-weight: 700; font-family: var(--font); }
.aa-booking-form { background: var(--bianco-puro); border: 1px solid var(--linea); border-radius: 26px; padding: 2rem; box-shadow: var(--sh-soft); }
.aa-booking-form .elementor-field-group { margin-bottom: 1.1rem; }
.aa-booking-form .elementor-field-label { font-weight: 700; font-size: .85rem; margin-bottom: .4rem; }
.aa-booking-form .elementor-field { border-radius: 12px !important; border: 1px solid var(--linea) !important; padding: .8em 1em !important; font-family: var(--font); }
.aa-booking-form .elementor-field:focus { border-color: var(--beige-scuro) !important; outline: none; }
.aa-booking-form .elementor-button { border-radius: 999px; background: var(--nero); color: #fff; font-weight: 700; padding: 1.05em 2em; width: 100%; }
.aa-booking-form .elementor-button:hover { background: var(--beige-scuro); }

/* ============================================================
   BLOG / POSTS WIDGET — stile premium per Elementor Posts / Archive Posts
   Applicato automaticamente ai widget nativi "posts" e "archive-posts".
   ============================================================ */
.elementor-posts-container { row-gap: 2.4rem !important; }
.elementor-post {
  position: relative;
  background: var(--bianco-puro);
  border: 1px solid var(--linea);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.elementor-post:hover { transform: translateY(-5px); box-shadow: var(--sh-float); border-color: var(--beige); }
.elementor-post__thumbnail__link { display: block; }
.elementor-post__thumbnail {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  overflow: hidden;
}
.elementor-post__thumbnail img { transition: transform .5s ease; }
.elementor-post:hover .elementor-post__thumbnail img { transform: scale(1.07); }
.elementor-post__text { padding: 1.4rem 1.5rem 1.6rem; }
.elementor-post__title {
  font-family: var(--font); font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em;
  line-height: 1.35; margin: 0 0 .55rem;
}
.elementor-post__title a { color: var(--nero); text-decoration: none; }
.elementor-post__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.elementor-post__meta-data {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
  color: var(--beige-scuro); margin-bottom: .6rem;
}
.elementor-post__excerpt p { color: var(--nero-soft); font-size: .93rem; line-height: 1.6; margin: 0; }
.elementor-post__read-more {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .9rem; font-weight: 700; font-size: .88rem; color: var(--nero); text-decoration: none;
}
.elementor-post__read-more:after { content: "\2192"; transition: transform .2s ease; }
.elementor-post__read-more:hover:after { transform: translateX(3px); }

/* Reading progress bar (Custom Code, single post) */
.aa-progress-track { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: transparent; z-index: 9999; pointer-events: none; }
.aa-progress-bar { height: 100%; width: 0%; background: var(--nero); transition: width .12s linear; }

