/* =========================================================
           LOCATION RENTAL — PAGE-SPECIFIC STYLES
        ========================================================= */
        .lr-page {
            overflow: clip;
            background: #050505;
        }

        .lr-container {
            width: min(calc(100% - 64px), 1380px);
            margin-inline: auto;
        }

        .lr-section {
            position: relative;
            padding: clamp(90px, 10vw, 150px) 0;
        }

        .lr-kicker {
            margin: 0 0 18px;
            color: var(--accent);
            font-size: .76rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .lr-display {
            margin: 0;
            color: #fff;
            font-size: clamp(3rem, 7vw, 7rem);
            font-weight: 600;
            line-height: .92;
            letter-spacing: -.062em;
            text-wrap: balance;
        }

        .lr-heading {
            margin: 0;
            color: #fff;
            font-size: clamp(2.45rem, 5vw, 5.6rem);
            font-weight: 600;
            line-height: .96;
            letter-spacing: -.055em;
            text-wrap: balance;
        }

        .lr-lead {
            color: rgba(255,255,255,.66);
            font-size: clamp(1.04rem, 1.5vw, 1.23rem);
            line-height: 1.76;
        }

        /* HERO */
        .lr-hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            align-items: flex-end;
            isolation: isolate;
            overflow: hidden;
            padding: 150px 0 78px;
            background: #080808;
        }

        .lr-hero-media,
        .lr-hero-media picture,
        .lr-hero-media img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .lr-hero-media {
            z-index: -4;
        }

        .lr-hero-media img {
            object-fit: cover;
            object-position: center 44%;
            animation: lrHeroZoom 18s ease-out both;
        }

        .lr-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -3;
            background:
                radial-gradient(circle at 78% 30%, rgba(201,59,45,.34), transparent 33%),
                linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.73) 38%, rgba(0,0,0,.23) 73%, rgba(0,0,0,.45) 100%),
                linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.34) 100%);
        }

        .lr-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            opacity: .22;
            background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 5px);
            mix-blend-mode: overlay;
        }

        .lr-hero-content {
            max-width: 990px;
            animation: lrRise .9s ease-out both;
        }

        .lr-hero .lr-display {
            max-width: 960px;
            font-size: clamp(3.7rem, 8.1vw, 8.8rem);
        }

        .lr-hero-subtitle {
            max-width: 690px;
            margin: 30px 0 36px;
            color: rgba(255,255,255,.79);
            font-size: clamp(1.08rem, 1.6vw, 1.34rem);
            line-height: 1.65;
            text-wrap: balance;
        }

        .lr-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .lr-hero-note {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
            margin-top: 34px;
            color: rgba(255,255,255,.58);
            font-size: .83rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .lr-hero-note span {
            position: relative;
            padding-left: 16px;
        }

        .lr-hero-note span::before {
            content: "";
            position: absolute;
            top: .55em;
            left: 0;
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: 50%;
        }

        /* QUICK FACTS */
        .lr-facts {
            background: #090909;
            border-top: 1px solid rgba(255,255,255,.08);
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .lr-facts-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .lr-fact {
            min-height: 172px;
            padding: 38px 34px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border-right: 1px solid rgba(255,255,255,.08);
        }

        .lr-fact:last-child { border-right: 0; }

        .lr-fact strong {
            margin-bottom: 9px;
            color: #fff;
            font-size: clamp(2rem, 3vw, 3.1rem);
            line-height: .95;
            letter-spacing: -.045em;
        }

        .lr-fact span {
            color: rgba(255,255,255,.55);
            font-size: .88rem;
            line-height: 1.5;
        }

        /* INTRO */
        .lr-intro {
            background:
                radial-gradient(circle at 86% 8%, rgba(231,76,60,.12), transparent 29%),
                #050505;
        }

        .lr-intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(310px, .72fr);
            gap: clamp(50px, 9vw, 140px);
            align-items: end;
        }

        .lr-intro-copy {
            display: grid;
            gap: 24px;
        }

        .lr-intro-callout {
            padding: 30px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 24px;
        }

        .lr-intro-callout strong {
            display: block;
            margin-bottom: 10px;
            color: #fff;
            font-size: 1.22rem;
            letter-spacing: -.02em;
        }

        .lr-intro-callout p {
            margin: 0;
            color: rgba(255,255,255,.62);
            line-height: 1.7;
        }

        /* USES */
        .lr-uses {
            background: #090909;
            border-top: 1px solid rgba(255,255,255,.07);
            border-bottom: 1px solid rgba(255,255,255,.07);
        }

        .lr-section-head {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
            gap: 60px;
            align-items: end;
            margin-bottom: 58px;
        }

        .lr-section-head .lr-lead {
            margin: 0 0 5px;
        }

        .lr-uses-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .lr-use-card {
            min-height: 255px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background:
                linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 22px;
            transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
        }

        .lr-use-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255,255,255,.18);
        }

        .lr-use-number {
            color: var(--accent);
            font-size: .71rem;
            font-weight: 900;
            letter-spacing: .18em;
        }

        .lr-use-card h3 {
            margin: 48px 0 12px;
            color: #fff;
            font-size: clamp(1.45rem, 2.1vw, 2rem);
            line-height: 1.02;
            letter-spacing: -.04em;
        }

        .lr-use-card p {
            margin: 0;
            color: rgba(255,255,255,.58);
            line-height: 1.65;
        }

        /* GALLERY */
        .lr-gallery {
            background: #050505;
        }

        .lr-gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 16px;
        }

        .lr-gallery-card {
            position: relative;
            min-height: 410px;
            overflow: hidden;
            isolation: isolate;
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 24px;
            background: #111;
        }

        .lr-gallery-card:nth-child(1),
        .lr-gallery-card:nth-child(4) { grid-column: span 7; }

        .lr-gallery-card:nth-child(2),
        .lr-gallery-card:nth-child(3) { grid-column: span 5; }

        .lr-gallery-card:nth-child(5),
        .lr-gallery-card:nth-child(6) { grid-column: span 6; }

        .lr-gallery-card img {
            position: absolute;
            inset: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(.22,1,.36,1), filter .4s ease;
        }

        .lr-gallery-card::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.05) 68%);
        }

        .lr-gallery-card:hover img {
            transform: scale(1.055);
            filter: saturate(1.08);
        }

        .lr-gallery-copy {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 30px;
        }

        .lr-gallery-copy span {
            color: rgba(255,255,255,.56);
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .lr-gallery-copy h3 {
            margin: 8px 0 0;
            color: #fff;
            font-size: clamp(2rem, 4vw, 4.1rem);
            line-height: .95;
            letter-spacing: -.052em;
        }

        /* RESTRICTION */
        .lr-restriction {
            padding: clamp(86px, 9vw, 130px) 0;
            background:
                radial-gradient(circle at 85% 50%, rgba(201,59,45,.28), transparent 34%),
                #0a0a0a;
            border-top: 1px solid rgba(255,255,255,.08);
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .lr-restriction-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr);
            gap: 70px;
            align-items: center;
        }

        .lr-rule-mark {
            width: 84px;
            height: 84px;
            display: grid;
            place-items: center;
            margin-bottom: 28px;
            color: #fff;
            background: var(--accent-dark);
            border-radius: 50%;
            font-size: 2.2rem;
            font-weight: 900;
        }

        .lr-restriction-copy {
            padding: 34px;
            background: rgba(0,0,0,.32);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 24px;
        }

        .lr-restriction-copy h3 {
            margin: 0 0 14px;
            color: #fff;
            font-size: 1.35rem;
            letter-spacing: -.025em;
        }

        .lr-restriction-copy p {
            margin: 0;
            color: rgba(255,255,255,.68);
            line-height: 1.72;
        }

        /* PRICING */
        .lr-pricing {
            background: #050505;
        }

        .lr-price-shell {
            margin-top: 62px;
            overflow: hidden;
            background: #0b0b0b;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 28px;
            box-shadow: 0 34px 90px rgba(0,0,0,.34);
        }

        .lr-price-table {
            width: 100%;
            border-collapse: collapse;
            color: #fff;
        }

        .lr-price-table th,
        .lr-price-table td {
            padding: 28px 24px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.08);
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .lr-price-table tr:last-child td { border-bottom: 0; }
        .lr-price-table th:last-child,
        .lr-price-table td:last-child { border-right: 0; }

        .lr-price-table thead th {
            color: rgba(255,255,255,.53);
            background: rgba(255,255,255,.025);
            font-size: .75rem;
            font-weight: 850;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .lr-price-table thead th:first-child,
        .lr-price-table tbody th {
            text-align: left;
        }

        .lr-price-table tbody th {
            color: rgba(255,255,255,.72);
            font-size: .98rem;
            font-weight: 750;
        }

        .lr-price-table td {
            font-size: clamp(1.45rem, 2.5vw, 2.35rem);
            font-weight: 650;
            letter-spacing: -.045em;
        }

        .lr-price-table .lr-featured {
            background: rgba(201,59,45,.12);
            color: #fff;
        }

        .lr-price-notes {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            border-top: 1px solid rgba(255,255,255,.08);
        }

        .lr-price-note {
            padding: 28px;
            border-right: 1px solid rgba(255,255,255,.08);
        }

        .lr-price-note:last-child { border-right: 0; }

        .lr-price-note strong {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 1rem;
        }

        .lr-price-note span {
            display: block;
            color: rgba(255,255,255,.56);
            font-size: .91rem;
            line-height: 1.6;
        }

        /* AVAILABILITY */
        .lr-availability {
            background:
                radial-gradient(circle at 12% 100%, rgba(231,76,60,.11), transparent 28%),
                #090909;
            border-top: 1px solid rgba(255,255,255,.07);
            border-bottom: 1px solid rgba(255,255,255,.07);
        }

        .lr-availability-grid {
            display: grid;
            grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
            gap: clamp(52px, 8vw, 120px);
            align-items: start;
        }

        .lr-hours {
            display: grid;
            gap: 14px;
        }

        .lr-hour-card {
            padding: 28px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 20px;
        }

        .lr-hour-card span {
            color: rgba(255,255,255,.62);
            font-weight: 650;
        }

        .lr-hour-card strong {
            color: #fff;
            font-size: clamp(1.55rem, 3vw, 2.35rem);
            line-height: 1;
            letter-spacing: -.045em;
            white-space: nowrap;
        }

        .lr-process {
            display: grid;
            gap: 0;
            counter-reset: lr-step;
        }

        .lr-process-item {
            position: relative;
            padding: 26px 0 26px 74px;
            border-bottom: 1px solid rgba(255,255,255,.09);
        }

        .lr-process-item:first-child { border-top: 1px solid rgba(255,255,255,.09); }

        .lr-process-item::before {
            counter-increment: lr-step;
            content: "0" counter(lr-step);
            position: absolute;
            top: 28px;
            left: 0;
            color: var(--accent);
            font-size: .73rem;
            font-weight: 900;
            letter-spacing: .12em;
        }

        .lr-process-item h3 {
            margin: 0 0 8px;
            color: #fff;
            font-size: 1.22rem;
            letter-spacing: -.025em;
        }

        .lr-process-item p {
            margin: 0;
            color: rgba(255,255,255,.58);
            line-height: 1.65;
        }

        /* FAQ */
        .lr-faq {
            background: #050505;
        }

        .lr-faq-wrap {
            display: grid;
            grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
            gap: clamp(50px, 8vw, 120px);
            align-items: start;
        }

        .lr-faq-list {
            border-top: 1px solid rgba(255,255,255,.1);
        }

        .lr-faq-item {
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .lr-faq-item summary {
            position: relative;
            list-style: none;
            cursor: pointer;
            padding: 26px 58px 26px 0;
            color: #fff;
            font-size: clamp(1.08rem, 1.7vw, 1.28rem);
            font-weight: 650;
            line-height: 1.35;
            letter-spacing: -.02em;
        }

        .lr-faq-item summary::-webkit-details-marker { display: none; }

        .lr-faq-item summary::after {
            content: "+";
            position: absolute;
            top: 50%;
            right: 4px;
            transform: translateY(-50%);
            color: rgba(255,255,255,.55);
            font-size: 1.65rem;
            font-weight: 300;
            transition: transform .22s ease, color .22s ease;
        }

        .lr-faq-item[open] summary::after {
            transform: translateY(-50%) rotate(45deg);
            color: #fff;
        }

        .lr-faq-answer {
            max-width: 780px;
            padding: 0 58px 26px 0;
            color: rgba(255,255,255,.6);
            line-height: 1.72;
        }

        /* FINAL CTA */
        .lr-final {
            position: relative;
            min-height: 700px;
            display: grid;
            align-items: end;
            overflow: hidden;
            isolation: isolate;
            padding: 100px 0 72px;
            background: #0a0a0a;
        }

        .lr-final img {
            position: absolute;
            inset: 0;
            z-index: -3;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .lr-final::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            background:
                linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.7) 48%, rgba(0,0,0,.18) 100%),
                linear-gradient(0deg, rgba(0,0,0,.92) 0%, transparent 65%);
        }

        .lr-final-content {
            max-width: 930px;
        }

        .lr-final-content p:not(.lr-kicker) {
            max-width: 650px;
            margin: 28px 0 34px;
            color: rgba(255,255,255,.72);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .lr-final-helper {
            margin-top: 22px;
            color: rgba(255,255,255,.5);
            font-size: .86rem;
            line-height: 1.6;
        }

        .lr-mobile-cta {
            display: none;
        }

        @keyframes lrHeroZoom {
            from { transform: scale(1); }
            to { transform: scale(1.045); }
        }

        @keyframes lrRise {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 1080px) {
            .lr-section-head,
            .lr-intro-grid,
            .lr-restriction-grid,
            .lr-availability-grid,
            .lr-faq-wrap {
                grid-template-columns: 1fr;
                gap: 46px;
            }

            .lr-uses-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
            .lr-facts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
            .lr-fact:nth-child(2) { border-right: 0; }
            .lr-fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
        }

        @media (max-width: 820px) {
            .lr-container { width: min(calc(100% - 44px), 1380px); }

            .lr-hero {
                min-height: 100svh;
                padding: 118px 0 44px;
            }

            .lr-hero-media img { object-position: center; }

            .lr-hero::before {
                background:
                    linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.65) 54%, rgba(0,0,0,.17) 100%),
                    radial-gradient(circle at 70% 28%, rgba(201,59,45,.24), transparent 35%);
            }

            .lr-hero .lr-display {
                font-size: clamp(3rem, 14vw, 5.2rem);
                line-height: .92;
            }

            .lr-hero-actions .btn { width: 100%; }

            .lr-gallery-grid { grid-template-columns: 1fr; }
            .lr-gallery-card,
            .lr-gallery-card:nth-child(n) { grid-column: 1; min-height: 390px; }

            .lr-price-shell {
                overflow-x: auto;
                border-radius: 20px;
            }

            .lr-price-table { min-width: 760px; }
            .lr-price-notes { grid-template-columns: 1fr; }
            .lr-price-note { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
            .lr-price-note:last-child { border-bottom: 0; }

            .lr-final { min-height: 650px; }

            .lr-mobile-cta {
                position: fixed;
                right: 16px;
                bottom: calc(16px + env(safe-area-inset-bottom));
                left: 16px;
                z-index: 1200;
                min-height: 54px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                background: #c93b2d;
                border: 1px solid rgba(255,255,255,.22);
                border-radius: 999px;
                box-shadow: 0 18px 48px rgba(0,0,0,.46);
                font-size: .9rem;
                font-weight: 850;
                text-decoration: none;
            }
        }

        @media (max-width: 650px) {
            .lr-section { padding: 84px 0; }
            .lr-facts-grid { grid-template-columns: 1fr; }
            .lr-fact { min-height: 142px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
            .lr-fact:last-child { border-bottom: 0; }
            .lr-uses-grid { grid-template-columns: 1fr; }
            .lr-use-card { min-height: 230px; }
            .lr-hour-card { align-items: flex-start; flex-direction: column; }
            .lr-process-item { padding-left: 54px; }
            .lr-restriction-copy { padding: 26px; }
            .lr-gallery-card,
            .lr-gallery-card:nth-child(n) { min-height: 350px; }
            .lr-final { min-height: 620px; padding-bottom: 92px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .lr-hero-media img,
            .lr-hero-content { animation: none; }
            .lr-gallery-card img,
            .lr-use-card { transition: none; }
        }
/* =========================================================
   RESPONSIVE HARDENING — MOBILE FIRST OVERRIDES
   Queste regole completano la pagina su tablet, smartphone,
   viewport basse, dispositivi touch e schermi molto stretti.
========================================================= */

.lr-page,
.lr-page main,
.lr-page section,
.lr-container,
.lr-intro-grid > *,
.lr-section-head > *,
.lr-restriction-grid > *,
.lr-availability-grid > *,
.lr-faq-wrap > * {
    min-width: 0;
}

.lr-page {
    overflow-x: clip;
    overflow-y: auto;
}

.lr-page .btn,
.lr-mobile-cta,
.lr-faq-item summary {
    -webkit-tap-highlight-color: transparent;
}

.lr-hours-spaced {
    margin-top: 40px;
}

.lr-request-cta {
    margin-top: 34px;
}

.lr-faq-intro {
    margin-top: 26px;
}

.lr-gallery-card:focus-within,
.lr-use-card:focus-within,
.lr-faq-item summary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .lr-use-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .lr-gallery-card:hover img {
        transform: scale(1.055);
        filter: saturate(1.08);
    }
}

/* Large tablet / compact desktop */
@media (max-width: 1180px) {
    .lr-container {
        width: min(calc(100% - 56px), 1180px);
    }

    .lr-hero {
        padding-top: 132px;
    }

    .lr-gallery-card {
        min-height: 370px;
    }

    .lr-section-head {
        gap: 42px;
    }
}

/* Tablet */
@media (max-width: 980px) {
    .lr-section {
        padding-block: clamp(84px, 11vw, 112px);
    }

    .lr-display {
        font-size: clamp(3.1rem, 9vw, 6rem);
    }

    .lr-heading {
        font-size: clamp(2.55rem, 7vw, 4.65rem);
    }

    .lr-hero {
        min-height: 820px;
        min-height: 100svh;
        min-height: 100dvh;
    }

    .lr-hero-content {
        max-width: 760px;
    }

    .lr-hero .lr-display {
        font-size: clamp(3.5rem, 10.5vw, 6.8rem);
    }

    .lr-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .lr-gallery-card,
    .lr-gallery-card:nth-child(n) {
        grid-column: auto;
        min-height: 370px;
    }

    .lr-gallery-card:first-child,
    .lr-gallery-card:nth-child(4) {
        grid-column: 1 / -1;
        min-height: 470px;
    }

    .lr-restriction {
        padding-block: 96px;
    }

    .lr-final {
        min-height: 680px;
    }
}

/* Smartphone / small tablet */
@media (max-width: 820px) {
    .lr-page {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .lr-container {
        width: min(calc(100% - 40px), 720px);
    }

    .lr-kicker {
        margin-bottom: 14px;
        font-size: 0.7rem;
        letter-spacing: 0.19em;
    }

    .lr-lead {
        font-size: 1rem;
        line-height: 1.68;
    }

    .lr-hero {
        align-items: flex-end;
        min-height: 720px;
        min-height: 100svh;
        min-height: 100dvh;
        padding: calc(104px + env(safe-area-inset-top)) 0 38px;
    }

    .lr-hero-media img {
        object-position: center 38%;
    }

    .lr-hero-content {
        width: 100%;
        max-width: 680px;
    }

    .lr-hero .lr-display {
        font-size: clamp(3rem, 13.4vw, 5.15rem);
        line-height: 0.91;
        letter-spacing: -0.058em;
    }

    .lr-hero-subtitle {
        max-width: 38rem;
        margin: 22px 0 26px;
        font-size: clamp(1rem, 4.2vw, 1.14rem);
        line-height: 1.58;
    }

    .lr-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lr-hero-actions .btn {
        width: 100%;
        min-height: 56px;
        padding-inline: 22px;
    }

    .lr-hero-note {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
        margin-top: 24px;
        font-size: 0.72rem;
        letter-spacing: 0.045em;
    }

    .lr-hero-note span:last-child {
        grid-column: 1 / -1;
    }

    .lr-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lr-fact {
        min-height: 136px;
        padding: 26px 22px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lr-fact:nth-child(even) {
        border-right: 0;
    }

    .lr-fact:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .lr-fact strong {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .lr-section-head,
    .lr-intro-grid,
    .lr-restriction-grid,
    .lr-availability-grid,
    .lr-faq-wrap {
        gap: 34px;
    }

    .lr-intro-callout,
    .lr-restriction-copy {
        padding: 24px;
        border-radius: 20px;
    }

    .lr-uses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .lr-use-card {
        min-height: 235px;
        padding: 24px;
        border-radius: 19px;
    }

    .lr-use-card h3 {
        margin-top: 36px;
    }

    .lr-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lr-gallery-card,
    .lr-gallery-card:nth-child(n),
    .lr-gallery-card:first-child,
    .lr-gallery-card:nth-child(4) {
        grid-column: 1;
        min-height: clamp(330px, 82vw, 480px);
        border-radius: 20px;
    }

    .lr-gallery-copy {
        padding: 24px;
    }

    .lr-restriction {
        padding-block: 82px;
    }

    .lr-rule-mark {
        width: 54px;
        height: 54px;
        margin-bottom: 24px;
        font-size: 1.4rem;
    }

    /* Tariffe trasformate in schede: nessuno scroll orizzontale */
    .lr-price-shell {
        overflow: visible;
        border-radius: 20px;
        background: transparent;
        border: 0;
    }

    .lr-price-table,
    .lr-price-table tbody,
    .lr-price-table tr,
    .lr-price-table th,
    .lr-price-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .lr-price-table {
        min-width: 0;
        border: 0;
        background: transparent;
    }

    .lr-price-table thead {
        display: none;
    }

    .lr-price-table tbody {
        display: grid;
        gap: 14px;
    }

    .lr-price-table tbody tr {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.035);
    }

    .lr-price-table th[scope="row"] {
        grid-column: 1 / -1;
        padding: 19px 20px;
        color: #fff;
        background: rgba(255, 255, 255, 0.055);
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 1.16rem;
        text-align: left;
    }

    .lr-price-table td {
        min-height: 90px;
        padding: 18px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1.3rem;
        text-align: left;
    }

    .lr-price-table td:nth-child(odd) {
        border-right: 0;
    }

    .lr-price-table td:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .lr-price-table td::before {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.11em;
        text-transform: uppercase;
    }

    .lr-price-table td:nth-child(2)::before { content: "1 stanza"; }
    .lr-price-table td:nth-child(3)::before { content: "2 stanze"; }
    .lr-price-table td:nth-child(4)::before { content: "3 stanze"; }
    .lr-price-table td:nth-child(5)::before { content: "Intera struttura"; }

    .lr-price-table td.lr-featured {
        background: rgba(201, 59, 45, 0.15);
    }

    .lr-price-notes {
        margin-top: 14px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 20px;
    }

    .lr-price-note {
        padding: 22px;
    }

    .lr-hour-card {
        padding: 23px;
        border-radius: 18px;
    }

    .lr-process-item {
        padding-block: 23px;
    }

    .lr-request-cta {
        width: 100%;
    }

    .lr-faq-item summary {
        min-height: 72px;
        padding: 22px 48px 22px 0;
        font-size: 1.05rem;
    }

    .lr-faq-answer {
        padding: 0 42px 24px 0;
        font-size: 0.96rem;
    }

    .lr-final {
        min-height: 650px;
        padding: 88px 0 calc(106px + env(safe-area-inset-bottom));
    }

    .lr-final::before {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.66) 60%, rgba(0, 0, 0, 0.2) 100%),
            radial-gradient(circle at 70% 24%, rgba(201, 59, 45, 0.18), transparent 38%);
    }

    .lr-final-content p:not(.lr-kicker) {
        margin: 22px 0 28px;
        font-size: 1rem;
    }

    .lr-final-content .btn {
        width: 100%;
    }

    .lr-mobile-cta {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        left: max(14px, env(safe-area-inset-left));
        min-height: 56px;
        padding-inline: 20px;
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.52);
    }
}

/* Smartphone */
@media (max-width: 620px) {
    .lr-container {
        width: min(calc(100% - 32px), 560px);
    }

    .lr-section {
        padding-block: 76px;
    }

    .lr-display {
        font-size: clamp(2.75rem, 14vw, 4.25rem);
    }

    .lr-heading {
        font-size: clamp(2.35rem, 11vw, 3.75rem);
        line-height: 0.98;
    }

    .lr-hero {
        padding-bottom: 30px;
    }

    .lr-hero .lr-display {
        font-size: clamp(2.9rem, 14.5vw, 4.25rem);
    }

    .lr-hero-note {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lr-hero-note span:last-child {
        grid-column: auto;
    }

    .lr-facts-grid,
    .lr-uses-grid {
        grid-template-columns: 1fr;
    }

    .lr-fact,
    .lr-fact:nth-child(n) {
        min-height: 118px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lr-fact:last-child {
        border-bottom: 0;
    }

    .lr-use-card {
        min-height: 210px;
    }

    .lr-gallery-card,
    .lr-gallery-card:nth-child(n) {
        min-height: clamp(300px, 95vw, 420px);
    }

    .lr-gallery-copy h3 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .lr-price-table tbody tr {
        grid-template-columns: 1fr;
    }

    .lr-price-table td,
    .lr-price-table td:nth-child(n) {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .lr-price-table td:last-child {
        border-bottom: 0;
    }

    .lr-hour-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .lr-hour-card strong {
        font-size: 2rem;
        white-space: normal;
    }

    .lr-process-item {
        padding-left: 48px;
    }

    .lr-process-item::before {
        top: 25px;
    }

    .lr-faq-item summary {
        padding-right: 42px;
    }

    .lr-faq-answer {
        padding-right: 0;
    }
}

/* Very small phones */
@media (max-width: 390px) {
    .lr-container {
        width: calc(100% - 26px);
    }

    .lr-hero {
        padding-top: calc(96px + env(safe-area-inset-top));
    }

    .lr-hero .lr-display {
        font-size: clamp(2.62rem, 14.2vw, 3.45rem);
    }

    .lr-hero-subtitle {
        font-size: 0.96rem;
    }

    .lr-intro-callout,
    .lr-restriction-copy,
    .lr-use-card,
    .lr-price-note,
    .lr-hour-card {
        padding: 20px;
    }

    .lr-gallery-copy {
        padding: 20px;
    }

    .lr-mobile-cta {
        font-size: 0.84rem;
    }
}

/* Landscape phones / viewport basse */
@media (max-height: 620px) and (orientation: landscape) and (max-width: 980px) {
    .lr-hero {
        min-height: 620px;
        padding-top: 98px;
        padding-bottom: 28px;
    }

    .lr-hero .lr-display {
        max-width: 760px;
        font-size: clamp(3rem, 8vw, 4.6rem);
    }

    .lr-hero-subtitle {
        max-width: 640px;
        margin-block: 16px 20px;
    }

    .lr-hero-note {
        margin-top: 18px;
    }
}

/* Motion, contrast and printing */
@media (prefers-reduced-motion: reduce) {
    .lr-page *,
    .lr-page *::before,
    .lr-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: more) {
    .lr-use-card,
    .lr-gallery-card,
    .lr-intro-callout,
    .lr-restriction-copy,
    .lr-hour-card,
    .lr-price-shell {
        border-color: rgba(255, 255, 255, 0.28);
    }

    .lr-lead,
    .lr-use-card p,
    .lr-faq-answer,
    .lr-process-item p {
        color: rgba(255, 255, 255, 0.8);
    }
}

/* =========================================================
   LOCATION RENTAL — MOBILE V2
   Mobile layout rebuilt for clarity, hierarchy and conversion.
========================================================= */

/* Accessible visually-hidden utility used by the pricing caption. */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 820px) {
    .lr-page {
        padding-bottom: 0;
    }

    .lr-container {
        width: 100%;
        max-width: 720px;
        padding-inline: 20px;
    }

    .lr-section {
        padding-block: 72px;
    }

    .lr-section-head,
    .lr-intro-grid,
    .lr-restriction-grid,
    .lr-availability-grid,
    .lr-faq-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .lr-section-head {
        margin-bottom: 38px;
    }

    .lr-kicker {
        margin-bottom: 12px;
        font-size: .68rem;
        letter-spacing: .18em;
    }

    .lr-heading,
    .lr-display {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .lr-heading {
        font-size: clamp(2.55rem, 10.8vw, 4.2rem);
        line-height: .96;
        letter-spacing: -.052em;
    }

    .lr-lead {
        max-width: 42rem;
        font-size: 1rem;
        line-height: 1.62;
    }

    /* Hero: image-led, compact and readable. */
    .lr-hero {
        min-height: 760px;
        min-height: 100svh;
        padding: calc(104px + env(safe-area-inset-top)) 0 34px;
    }

    .lr-hero::before {
        background:
            linear-gradient(0deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.82) 37%, rgba(0,0,0,.34) 67%, rgba(0,0,0,.18) 100%),
            radial-gradient(circle at 72% 24%, rgba(201,59,45,.22), transparent 36%);
    }

    .lr-hero-media img {
        object-position: center 34%;
    }

    .lr-hero .lr-display {
        max-width: 660px;
        font-size: clamp(3.1rem, 13.6vw, 5.15rem);
        line-height: .89;
        letter-spacing: -.06em;
    }

    .lr-hero-subtitle {
        margin: 20px 0 24px;
        font-size: 1rem;
        line-height: 1.56;
    }

    .lr-hero-actions {
        gap: 9px;
    }

    .lr-hero-actions .btn {
        min-height: 54px;
    }

    .lr-hero-note {
        display: flex;
        gap: 8px 18px;
        margin-top: 22px;
        font-size: .68rem;
        line-height: 1.45;
    }

    .lr-hero-note span,
    .lr-hero-note span:last-child {
        grid-column: auto;
    }

    /* Supporting data feels like a compact dashboard. */
    .lr-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lr-fact,
    .lr-fact:nth-child(n) {
        min-height: 124px;
        padding: 24px 20px;
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .lr-fact:nth-child(even) {
        border-right: 0;
    }

    .lr-fact:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .lr-fact strong {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
    }

    .lr-fact span {
        font-size: .8rem;
    }

    .lr-intro-callout,
    .lr-restriction-copy {
        padding: 24px;
        border-radius: 20px;
    }

    .lr-uses-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lr-use-card {
        min-height: 0;
        padding: 25px;
        border-radius: 20px;
    }

    .lr-use-card h3 {
        margin-top: 30px;
    }

    /* Gallery: large editorial frames instead of a cramped mosaic. */
    .lr-gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lr-gallery-card,
    .lr-gallery-card:nth-child(n),
    .lr-gallery-card:first-child,
    .lr-gallery-card:nth-child(4) {
        grid-column: 1;
        min-height: clamp(300px, 78vw, 430px);
        border-radius: 20px;
    }

    .lr-gallery-copy {
        padding: 22px;
    }

    .lr-gallery-copy h3 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .lr-restriction {
        padding-block: 72px;
    }

    /* Pricing: two clear duration cards, no horizontal scrolling. */
    .lr-pricing .lr-section-head {
        gap: 20px;
        margin-bottom: 32px;
    }

    .lr-pricing .lr-heading {
        max-width: 640px;
        font-size: clamp(2.65rem, 11.6vw, 4.3rem);
    }

    .lr-price-shell {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .lr-price-table,
    .lr-price-table tbody,
    .lr-price-table tr,
    .lr-price-table th,
    .lr-price-table td {
        width: 100%;
        min-width: 0;
    }

    .lr-price-table {
        display: block;
        border: 0;
        background: transparent;
    }

    .lr-price-table caption {
        position: absolute !important;
    }

    .lr-price-table thead {
        display: none;
    }

    .lr-price-table tbody {
        display: grid;
        gap: 12px;
    }

    .lr-price-table tbody tr {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 22px;
        background:
            linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
        box-shadow: 0 18px 50px rgba(0,0,0,.22);
    }

    .lr-price-table th[scope="row"] {
        grid-column: 1 / -1;
        padding: 17px 18px;
        color: #fff;
        background: rgba(255,255,255,.055);
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1;
        text-align: left;
    }

    .lr-price-table td,
    .lr-price-table td:nth-child(n) {
        min-height: 86px;
        padding: 17px 18px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
        border: 0;
        border-right: 1px solid rgba(255,255,255,.075);
        border-bottom: 1px solid rgba(255,255,255,.075);
        background: transparent;
        color: #fff;
        font-size: clamp(1.35rem, 5.8vw, 1.75rem);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.035em;
        text-align: left;
    }

    .lr-price-table td:nth-child(3),
    .lr-price-table td:nth-child(5) {
        border-right: 0;
    }

    .lr-price-table td:nth-child(4),
    .lr-price-table td:nth-child(5) {
        border-bottom: 0;
    }

    .lr-price-table td::before {
        color: rgba(255,255,255,.52);
        font-size: .66rem;
        font-weight: 850;
        line-height: 1.2;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .lr-price-table td:nth-child(2)::before { content: "1 stanza"; }
    .lr-price-table td:nth-child(3)::before { content: "2 stanze"; }
    .lr-price-table td:nth-child(4)::before { content: "3 stanze"; }
    .lr-price-table td:nth-child(5)::before { content: "Tutta la struttura"; }

    .lr-price-table td.lr-featured {
        background:
            linear-gradient(135deg, rgba(201,59,45,.22), rgba(201,59,45,.1));
    }

    .lr-price-notes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 14px;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .lr-price-note,
    .lr-price-note:nth-child(n) {
        padding: 20px;
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 18px;
        background: rgba(255,255,255,.025);
    }

    .lr-price-note strong {
        margin-bottom: 6px;
        font-size: .95rem;
    }

    .lr-price-note span {
        font-size: .86rem;
        line-height: 1.55;
    }

    .lr-hour-card {
        padding: 22px;
    }

    .lr-process-item {
        padding: 22px 0 22px 50px;
    }

    .lr-process-item::before {
        top: 24px;
    }

    .lr-faq-item summary {
        padding-block: 21px;
    }

    .lr-final {
        min-height: 610px;
        padding: 78px 0 74px;
    }

    .lr-final-content .btn {
        width: 100%;
    }

    /* The old fixed dock obscured content and made the page feel app-like. */
    .lr-mobile-cta {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .lr-container {
        padding-inline: 16px;
    }

    .lr-section {
        padding-block: 64px;
    }

    .lr-heading {
        font-size: clamp(2.35rem, 11.8vw, 3.45rem);
    }

    .lr-pricing .lr-heading {
        font-size: clamp(2.5rem, 12.4vw, 3.6rem);
    }

    .lr-hero {
        min-height: 720px;
        padding-top: calc(98px + env(safe-area-inset-top));
    }

    .lr-hero .lr-display {
        font-size: clamp(2.75rem, 14.3vw, 3.9rem);
    }

    .lr-hero-note {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lr-facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lr-fact,
    .lr-fact:nth-child(n) {
        min-height: 112px;
        padding: 21px 16px;
    }

    .lr-price-table tbody tr {
        border-radius: 20px;
    }

    .lr-price-table td,
    .lr-price-table td:nth-child(n) {
        min-height: 82px;
        padding: 15px 16px;
        font-size: 1.45rem;
    }

    .lr-price-table th[scope="row"] {
        padding: 16px;
    }

    .lr-hour-card {
        gap: 10px;
    }

    .lr-hour-card strong {
        font-size: 1.8rem;
    }
}

@media (max-width: 350px) {
    .lr-price-table tbody tr {
        grid-template-columns: 1fr;
    }

    .lr-price-table td:nth-child(n) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.075);
    }

    .lr-price-table td:last-child {
        border-bottom: 0;
    }
}
