/* =========================================================
   THEME TOKENS
   ========================================================= */
:root {
    --pine: #2E5339;
    --wood: #8B5E3C;
    --cream: #F4EFEB;
    --paper: #ECE6DD;
    --ink: #1F2A24;
    --white: #fff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);

    /* Scrollbar (base) */
    --sb-size: 12px;
    --sb-track: #ECE6DD;
    --sb-thumb: #2E5339;
    --sb-thumb-hover: #254430;

    /* spazio riservato al bottone CHIAMA su mobile/tablet */
    --sticky-call-safe: 88px;
    --nav-offset: 96px;
    /* fallback: altezza header + un po’ di aria */
}

/* =========================================================
   GLOBAL BASE
   ========================================================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-offset);
    /* offset per anchor scroll */
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream), var(--white) 20%, var(--cream) 60%, var(--white));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", Georgia, serif;
}

.section-alt {
    background: var(--cream);
}

/* Buttons */
.btn-cta {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--pine);
    --bs-btn-border-color: var(--pine);
    --bs-btn-hover-bg: #254430;
    --bs-btn-hover-border-color: #254430;
    --bs-btn-active-bg: #1e3727;
    --bs-btn-active-border-color: #1e3727;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(46, 83, 57, .25);
}

/* .btn-fluid{  full-width su mobile, vedi media query 
} */

/* Navbar */
.rustic-nav {
    background: rgba(255, 255, 255, .9) !important;
    backdrop-filter: saturate(1.2) blur(8px);
}

/* padding quando il menu mobile è aperto (classe aggiunta via JS) */
.rustic-nav.pb-open {
    padding-bottom: 1rem;
}

/* Hamburger default / X quando aperto */
.navbar-toggler .navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

.navbar-toggler.is-open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,.7)' stroke-width='2' stroke-linecap='round' d='M7 7 L23 23 M23 7 L7 23'/%3E%3C/svg%3E");
}

.brand-title small {
    font-size: .75rem;
}

.nav-link {
    font-weight: 600;
}

/* Hero */
.hero,
.hero-small {
    position: relative;
    min-height: 60vh;
    display: grid;
    align-items: end;
}

.hero-small {
    min-height: 40vh;
}

.hero .container,
.hero-small .container {
    z-index: 2;
}

.hero-bg{
  position:absolute; 
  inset:0; 
  width:100%; 
  height:100%;
  object-fit: cover;       /* riempie tutto il container */
  object-position: center; /* mantiene il soggetto al centro */
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.02);
}
.hero-bg.hero-home {
  object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .45));
    z-index: 1;
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: var(--shadow);
    border-radius: 16px;
}

/* Check list */
.check li {
    margin: .5rem 0;
    padding-left: 1.6rem;
    position: relative;
}

.check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pine);
    font-weight: 700;
}

/* Scrollable gallery (base) */
.scroll-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 60%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}

.scroll-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    scroll-snap-align: center;
    box-shadow: var(--shadow);
}

/* Map holder with consent */
.map-holder {
    position: relative;
    background: var(--paper);
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-height: 320px;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.map-holder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-consent {
    text-align: center;
    padding: 24px;
}

.map-consent p {
    margin: 0;
}

/* Footer */
.rustic-footer {
    background: linear-gradient(180deg, rgba(139, 94, 60, .08), rgba(46, 83, 57, .08));
    border-top: 1px solid rgba(0, 0, 0, .05);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--pine);
    color: #fff;
    border: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 1100;
    /* sopra cookie/sticky */
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    filter: brightness(1.05);
}

/* Sticky call on mobile */
.sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--pine);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow);
    margin-bottom: calc(12px + env(safe-area-inset-bottom));
    /* evita che “mangi” il footer */
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: transform .6s ease, opacity .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal[data-delay] {
    transition-delay: calc(var(--d, 1ms) * 1ms);
}

.reveal.in-view[data-delay] {
    --d: attr(data-delay number, 0);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    background: rgba(0, 0, 0, .85);
    color: #fff;
    padding: 12px 0;
    z-index: 1000;
    transition: bottom .35s ease;
}

.cookie-banner.show {
    bottom: 0;
}

/* Prose */
.prose h2 {
    margin-top: 1rem;
}

.prose h3 {
    margin-top: 1rem;
}

.prose p,
.prose li {
    line-height: 1.7;
}

/* Scroll progress bar */
.progress-bar-top {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--pine), var(--wood));
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

/* Active nav link */
.navbar .nav-link.active {
    color: var(--pine) !important;
    position: relative;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -6px;
    height: 2px;
    background: var(--pine);
    border-radius: 2px;
}

/* Parallax utility */
[data-parallax] {
    will-change: transform;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.lightbox .close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: 0;
    border-radius: 12px;
    padding: 8px 10px;
}

/* Rustic background texture */
body::before {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -1;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(46, 83, 57, .08), transparent 60%),
        radial-gradient(900px 500px at 110% 10%, rgba(139, 94, 60, .08), transparent 50%),
        radial-gradient(900px 500px at -10% 110%, rgba(46, 83, 57, .06), transparent 50%);
    pointer-events: none;
}

/* =========================================================
   SCROLLBAR (BASE)
   ========================================================= */
/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--sb-thumb) var(--sb-track);
}

/* Chrome/Edge/Safari */
*::-webkit-scrollbar {
    width: var(--sb-size);
    height: var(--sb-size);
}

*::-webkit-scrollbar-track {
    background: var(--sb-track);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--sb-thumb);
    border: 2px solid var(--sb-track);
    border-radius: 0 !important;
    box-shadow: none;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--sb-thumb-hover);
}

*::-webkit-scrollbar-corner {
    background: var(--sb-track);
}

*::-webkit-scrollbar-button {
    display: none;
}

/* Scrollbar galleria (più bassa se visibile) */
.scroll-gallery::-webkit-scrollbar {
    height: 10px;
}

.scroll-gallery {
    scrollbar-width: thin;
}

/* Applica l’offset alle sezioni con id (bersagli degli anchor) */
main [id] {
    scroll-margin-top: var(--nav-offset);
}

/* =========================================================
   CAROSELLO ORIZZONTALE — NASCONDI SCROLLBAR VISIVA
   ========================================================= */
.scroll-gallery {
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE/Edge legacy */
    scrollbar-width: none;
    /* Firefox */
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    overscroll-behavior-x: contain;
}

.scroll-gallery::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* WebKit */
.scroll-gallery img {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    outline: none;
}

.scroll-gallery img:focus-visible {
    outline: 3px solid var(--pine);
    outline-offset: 2px;
}

/* =========================================================
   BREAKPOINTS & FEATURE QUERIES (RAGGRUPPATI)
   ========================================================= */

/* ---------- ≥992px (DESKTOP): 1 foto per pagina nel carosello ---------- */
@media (min-width: 992px) {
    .scroll-gallery {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 100% !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .scroll-gallery img {
        width: 100%;
        height: clamp(360px, 70vh, 720px);
        object-fit: cover;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

/* ---------- ≤1200px (MOBILE/TABLET): navbar + footer stacked + cleanup ---------- */
@media (max-width: 1199.98px) {

    /* Navbar: brand+toggler in linea; menù a tendina sotto, full-width */
    .brand-title small {
        margin-top: 2px;
    }

    .rustic-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .navbar-brand {
        min-width: 0;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .brand-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.1;
    }

    .navbar-toggler {
        flex: 0 0 auto;
        order: 2;
        margin-left: .5rem;
    }

    #mainNav {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
    }

    #mainNav.collapse.show {
        display: block;
    }

    #mainNav .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
        padding: .5rem 0;
    }

    /* Footer: impila le colonne e la footbar per evitare sovrapposizioni */
    .rustic-footer .row {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .rustic-footer .col-md-4 {
        width: 100%;
    }

    .rustic-footer .border-top .container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: .5rem !important;
    }
}

/* ---------- ≤768px: concedi spazio al toggler rispetto al titolo ---------- */
@media (max-width: 767.98px) {
    .navbar-brand {
        max-width: calc(100% - 56px);
    }

    /* spazio riservato al toggler */
}

/* ---------- ≤576px (PHONE): hero più compatto, bottoni fluid, navbar compatta ---------- */
@media (max-width: 575.98px) {

    /* Hero */
    .brand-title small {
        font-size: 10px;
    }

    .hero .display-4 {
        line-height: 1.2;
    }

    .hero .lead {
        font-size: .85rem;
    }

    .hero .btn-lg {
        padding: .5rem .9rem;
        font-size: .95rem;
        border-radius: 12px;
    }

    /* Bottoni full-width su telefono */
    .btn-fluid {
        width: 100%;
    }

    /* Navbar xs */
    .navbar-brand img {
        width: 28px;
        height: 28px;
    }

    .brand-title strong {
        font-size: 1rem;
    }
}

/* ---------- Tablet + Phone: gestisci overlap con sticky-call ---------- */
@media (max-width: 991.98px) {

    /* back-to-top sempre sopra al bottone CHIAMA */
    .back-to-top {
        bottom: calc(var(--sticky-call-safe) + 16px + env(safe-area-inset-bottom));
    }

    /* margine extra sotto il footer-info per non farsi coprire */
    #footer-info {
        margin-bottom: calc(var(--sticky-call-safe) + 8px) !important;
    }
}

/* ---------- TOUCH DEVICES: nascondi scrollbar visiva + blocca overflow X ---------- */
@media (hover: none) and (pointer: coarse) {

    /* Scrollbar invisibile su touch (scroll attivo) */
    html {
        scrollbar-width: none;
    }

    * {
        -ms-overflow-style: none;
    }

    *::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
    }

    *::-webkit-scrollbar-thumb,
    *::-webkit-scrollbar-track {
        background: transparent !important;
        border: 0 !important;
    }

    /* Evita “spifferi” orizzontali del documento */
    html,
    body {
        overflow-x: hidden;
    }

    header,
    main,
    footer,
    section,
    .rustic-nav,
    .hero,
    .hero-small,
    .cookie-banner,
    .rustic-footer,
    .map-holder,
    .lightbox {
        overflow-x: clip;
    }

    body::before {
        inset: 0;
    }

    /* la texture non deve sbordare su touch */
}

/* ---------- PC (MOUSE/TOUCHPAD): mostra scrollbar personalizzata ---------- */
@media (hover: hover) and (pointer: fine) {
    :root {
        --sb-size: 12px;
        --sb-track: #ECE6DD;
        --sb-thumb: #2E5339;
    }

    html {
        scrollbar-width: thin;
        scrollbar-color: var(--sb-thumb) var(--sb-track);
    }

    *::-webkit-scrollbar {
        width: var(--sb-size);
        height: var(--sb-size);
    }

    *::-webkit-scrollbar-track {
        background: var(--sb-track);
    }

    *::-webkit-scrollbar-thumb {
        background-color: var(--sb-thumb);
        border: 2px solid var(--sb-track);
        border-radius: 0;
    }
}

/* ---------- RIDUZIONE MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
    }

    .hero-bg {
        transform: none;
    }
}

/* Safety: la galleria resta scorrevole orizzontalmente in ogni caso */
.scroll-gallery {
    overflow-x: auto;
}

/* === NAVBAR MOBILE/TABLET FIX (≤1200px) — brand + toggler in linea, menu sotto === */
@media (max-width:1199.98px) {

    /* prima riga: brand + toggler (in linea) */
    .rustic-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap !important;
        /* forza il menu a capo */
    }

    .navbar-brand {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        /* abilita ellissi */
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .brand-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.1;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
        flex: 0 0 auto;
        position: static !important;
        /* niente posizionamento strano */
        z-index: 3;
        /* resta sopra il collapse */
    }

    /* seconda riga: il menù a tendina */
    #mainNav {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        margin-top: .25rem;
    }

    #mainNav.collapse.show {
        display: block;
    }

    #mainNav .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
        padding: .5rem 0;
    }

    #mainNav .nav-link {
        display: block;
        width: 100%;
        padding: .5rem 0;
    }
}

/* IMMAGINI SCORCI DEL RIFUGIO */
/* ===== Scroll lock quando serve ===== */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
}

/* Lightbox: toggle zoom + close button dimensioni uniformi */
.lightbox img {
    transition: transform .25s ease;
    cursor: zoom-in;
    touch-action: manipulation;
    /* riduce gesture browser */
}

.lightbox img.zoomed {
    transform: scale(1.9);
    /* cambia a piacere (es. 2.2) */
    cursor: zoom-out;
}

lightbox .close,
.lightbox .close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    line-height: 1;
    font-size: 20px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, .35);
    background: #fff;
}

/* (opzionale) quando la lightbox è aperta blocca lo scroll della pagina sotto */
.lightbox.open~* {
    pointer-events: none;
}

/* evita click sotto l’overlay */

/* LOGO PIERAGNOLI AGGIORNATO IN HERO */
/* HERO: logo Pieragnoli inline su desktop, sopra il testo su tablet/cel */
.hero-copy {
    display: block;
}

.hero-stack {
    display: inline-flex;
    /* PC/desktop */
    flex-direction: row;
    align-items: flex-end;
    /* logo allineato alla base del testo */
    gap: 32px;
}

.hero-pieragnoli-logo {
    height: 72px;
    width: auto;
    flex: 0 0 auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
}

/* Tablet e smartphone: colonna invertita (logo sopra la scritta) */
@media (max-width: 991.98px) {
    .hero-stack {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-pieragnoli-logo {
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .hero-pieragnoli-logo {
        height: 52px;
    }
}

.hero-pieragnoli-link {
    display: inline-flex;
    line-height: 0;
}

/* TRIPADVISOR BTN FOOTER */
/* TripAdvisor badge in footer (stile btn Bootstrap-like) */
.tripadvisor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: #fff;
    /* sfondo chiaro */
    border: 1px solid rgba(0, 0, 0, .08);
    /* bordo leggero (bordato) */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .06);
    /* ombra lieve stile btn */
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    line-height: 0;
}

.tripadvisor-badge img {
    height: 36px;
    width: auto;
    display: block;
}

.tripadvisor-badge:hover {
    background: #f8f9fa;
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08);
    transform: translateY(-1px);
}





/* CARDS curiosità & esperienze */
/* ===== Feature cards (Curiosità & Esperienze) ===== */
.feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.feature-card .feature-body {
    padding: 18px 18px 20px;
}

.feature-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
}

.feature-text {
    color: #5a5a5a;
}

/* ===== Feature card con media (stile “Signature Journeys”) ===== */
.feature-card:has(.feature-media) .feature-media {
    width: 100%;
    height: 140px;
    /* compatta su mobile */
    background: #eeeeee;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.feature-card:has(.feature-media) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* riempie come nelle card d’esempio */
    display: block;
}

/* una tacca in più su schermi più larghi, ma resta “stretta” */
@media (min-width:576px) {
    .feature-card--with-media .feature-media {
        height: 160px;
    }
}

@media (min-width:992px) {
    .feature-card--with-media .feature-media {
        height: 180px;
    }
}

/* IMMAGINE NILO IN ORIGINI */
/* Portrait top-crop: immagine ancorata in alto (viso sempre visibile) */
.portrait-top {
    position: relative;
    aspect-ratio: 500 / 389;
    /* mantiene il rapporto del ritratto */
    /* fallback per browser senza aspect-ratio */
}

@supports not (aspect-ratio: 1 / 1) {
    .portrait-top {
        height: 260px;
    }

    /* altezza di sicurezza */
}

.portrait-top>img {
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* riempi il contenitore */
    object-position: top center;
    /* ancora l’immagine in alto */
    display: block;
}



/* LE NOSTRE SPECIALITA */
.scroll-gallery img {
    height: 260px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .scroll-gallery img {
        height: 420px;
    }
}
/* CAROSELLO "IL RIFUGIO" */
#heroCarousel {
  border-radius: 20px;
  overflow: hidden;
}

#heroCarousel .carousel-inner {
  aspect-ratio: 4 / 3; /* più basso ma proporzionato */
}

#heroCarousel .carousel-item {
  height: 100%;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
    display: block;
    width: 100%;
}

.hero-stack {
    display: flex;
    width: 100%;
    align-items: flex-end;
    gap: 18px;
}

.hero-pieragnoli-link {
    display: inline-flex;
    line-height: 0;
    margin-left: auto; /* spinge il logo tutto a destra su desktop */
    flex: 0 0 auto;
}

.hero-pieragnoli-logo {
    height: 52px; /* desktop più piccolo */
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .18));
}

/* Tablet e smartphone: logo sopra il testo e più compatto */
@media (max-width: 991.98px) {
    .hero-stack {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-pieragnoli-link {
        margin-left: 0;
    }

    .hero-pieragnoli-logo {
        height: 42px;
    }
}

@media (max-width: 575.98px) {
    .hero-pieragnoli-logo {
        height: 34px; /* telefono ancora più piccolo */
    }
}