/* ============================================
   HOTEL ROSETO - Main CSS v1.1
   Mobile-first, design premium, animazioni
   ============================================ */

/* === DESIGN TOKENS === */
:root {
    --hr-blue:         #1B4F72;
    --hr-blue-dark:    #154060;
    --hr-blue-light:   #2E86C1;
    --hr-blue-lighter: #EAF4FB;
    --hr-teal:         #17A589;
    --hr-teal-dark:    #0E8674;
    --hr-teal-light:   #E8F8F5;
    --hr-sand:         #F8F4EF;
    --hr-gold:         #F5A623;
    --hr-white:        #FFFFFF;
    --hr-text:         #2C3E50;
    --hr-text-light:   #6C7A89;
    --hr-border:       #E8EDF2;
    --hr-shadow-sm:    0 1px 6px rgba(27,79,114,.08);
    --hr-shadow:       0 2px 20px rgba(27,79,114,.10);
    --hr-shadow-lg:    0 8px 40px rgba(27,79,114,.16);
    --hr-shadow-xl:    0 20px 60px rgba(27,79,114,.22);
    --hr-radius:       10px;
    --hr-radius-lg:    18px;
    --hr-radius-xl:    28px;
    --hr-transition:   .25s ease;
    --hr-transition-slow: .4s ease;
    --hr-font:         'Raleway', 'Segoe UI', system-ui, sans-serif;
    --hr-font-serif:   'Playfair Display', Georgia, serif;
    --hr-container:    1240px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--hr-font);
    color: var(--hr-text);
    background: var(--hr-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--hr-transition); }
a:hover { color: var(--hr-blue-light); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* === ACCESSIBILITY === */
.hr-skip-link {
    position: absolute; top: -100%; left: 0;
    background: var(--hr-blue); color: var(--hr-white);
    padding: 8px 16px; z-index: 9999; transition: top .2s;
}
.hr-skip-link:focus { top: 0; }
*:focus-visible {
    outline: 3px solid var(--hr-teal);
    outline-offset: 2px;
    border-radius: 3px;
}

/* === CONTAINER === */
.hr-container {
    width: 100%;
    max-width: var(--hr-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--hr-font);
    font-weight: 700;
    line-height: 1.25;
    color: var(--hr-text);
}
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }

/* === ANIMATIONS === */
@keyframes hr-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hr-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes hr-scale-in {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes hr-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes hr-shimmer {
    from { background-position: -200% 0; }
    to   { background-position: 200% 0; }
}

.hr-animate-up   { animation: hr-fade-up  .55s ease both; }
.hr-animate-in   { animation: hr-fade-in  .45s ease both; }
.hr-animate-scale{ animation: hr-scale-in .45s ease both; }

/* Intersection Observer targets */
.hr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}
.hr-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hr-reveal-delay-1 { transition-delay: .1s; }
.hr-reveal-delay-2 { transition-delay: .2s; }
.hr-reveal-delay-3 { transition-delay: .3s; }
.hr-reveal-delay-4 { transition-delay: .4s; }

/* === BUTTONS === */
.hr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    transition: all var(--hr-transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.hr-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background .2s;
}
.hr-btn:hover::after { background: rgba(255,255,255,.08); }

.hr-btn--primary {
    background: var(--hr-teal);
    color: var(--hr-white) !important;
    border-color: var(--hr-teal);
    box-shadow: 0 4px 14px rgba(23,165,137,.28);
}
.hr-btn--primary:hover {
    background: var(--hr-teal-dark);
    border-color: var(--hr-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23,165,137,.38);
}
.hr-btn--primary:active { transform: translateY(0); }

.hr-btn--outline {
    background: transparent;
    color: var(--hr-blue);
    border-color: var(--hr-blue);
}
.hr-btn--outline:hover {
    background: var(--hr-blue);
    color: var(--hr-white) !important;
    transform: translateY(-1px);
}
.hr-btn--outline-white {
    background: transparent;
    color: var(--hr-white);
    border-color: rgba(255,255,255,.7);
}
.hr-btn--outline-white:hover {
    background: var(--hr-white);
    color: var(--hr-blue) !important;
}

.hr-btn--sm  { padding: 8px 18px; font-size: 0.8rem; }
.hr-btn--lg  { padding: 16px 36px; font-size: 1rem; border-radius: 9px; }
.hr-btn--xl  { padding: 20px 48px; font-size: 1.05rem; border-radius: 9px; }
.hr-btn--full{ width: 100%; }

/* === HEADER === */
.hr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hr-border);
    box-shadow: 0 1px 8px rgba(27,79,114,.06);
    transition: box-shadow var(--hr-transition), background var(--hr-transition);
}
.hr-header--scrolled {
    box-shadow: 0 3px 20px rgba(27,79,114,.12);
}
.hr-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
}
.hr-header__logo { flex-shrink: 0; }
.hr-header__logo-text { display: flex; flex-direction: column; gap: 2px; }
.hr-logo-main {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--hr-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hr-logo-claim {
    font-size: 0.6rem;
    color: var(--hr-text-light);
    font-weight: 400;
    line-height: 1.3;
    max-width: 220px;
}
.hr-header__nav { flex: 1; }
.hr-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.hr-nav__list > li > a {
    display: block;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.87rem;
    border-radius: 6px;
    transition: background var(--hr-transition), color var(--hr-transition);
    color: var(--hr-text);
}
.hr-nav__list > li > a:hover,
.hr-nav__list > li.current-menu-item > a,
.hr-nav__list > li.current-page-ancestor > a {
    background: var(--hr-teal-light);
    color: var(--hr-teal-dark);
}
.hr-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.hr-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    z-index: 1001;
    transition: background var(--hr-transition);
}
.hr-hamburger:hover { background: var(--hr-sand); }
.hr-hamburger span {
    width: 22px; height: 2px;
    background: var(--hr-text);
    border-radius: 2px;
    transition: all .25s;
    display: block;
}
.hr-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hr-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hr-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.hr-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99;
    backdrop-filter: blur(3px);
}
.hr-nav-overlay.is-visible { display: block; animation: hr-fade-in .2s ease; }

/* === HERO === */
.hr-hero {
    position: relative;
    min-height: 88vh;
    min-height: 88svh;
    display: flex;
    align-items: center;
    background: linear-gradient(150deg, #0A2F47 0%, #1B4F72 40%, #0D6E8A 70%, #19A58A 100%);
    overflow: hidden;
}
.hr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,202.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom/cover;
    z-index: 1;
}
.hr-hero--custom-bg {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}
.hr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,47,71,.6) 0%,
        rgba(11,47,71,.78) 100%
    );
    z-index: 2;
}
.hr-hero__content {
    position: relative;
    z-index: 3;
    padding: 100px 0 80px;
    text-align: center;
}
.hr-hero__eyebrow {
    display: inline-block;
    background: rgba(23,165,137,.25);
    border: 1px solid rgba(23,165,137,.5);
    color: rgba(255,255,255,.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: hr-fade-up .5s ease both;
}
.hr-hero__title {
    font-family: var(--hr-font-serif);
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--hr-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
    font-weight: 700;
    animation: hr-fade-up .55s .1s ease both;
}
.hr-hero__title strong { color: var(--hr-gold); }
.hr-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: hr-fade-up .55s .2s ease both;
}
.hr-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: hr-bounce 2.2s infinite;
}
.hr-hero__scroll-icon { font-size: 1.3rem; color: rgba(255,255,255,.5); }

/* === SEARCH BOX === */
.hr-search-box {
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 16px;
    padding: 22px 26px;
    max-width: 820px;
    margin: 0 auto;
    animation: hr-fade-up .55s .3s ease both;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.hr-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}
.hr-search-form__field {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hr-search-form__field label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.7);
}
.hr-search-form__field select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,.95);
    color: var(--hr-text);
    font-size: 0.88rem;
    font-family: var(--hr-font);
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C7A89' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    transition: box-shadow .2s;
}
.hr-search-form__field select:focus { outline: none; box-shadow: 0 0 0 2px var(--hr-teal); }
.hr-search-form__btn { align-self: flex-end; }

/* === SECTION === */
.hr-section { padding: 80px 0; }
.hr-section--alt { background: var(--hr-sand); }
.hr-section--mappa { background: var(--hr-white); padding: 64px 0; }
.hr-section--cta { background: linear-gradient(135deg, var(--hr-blue) 0%, #0D5273 100%); }

.hr-section__header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
}
.hr-section__header::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--hr-teal);
    border-radius: 2px;
    margin: 16px auto 0;
}
.hr-section__title {
    font-family: var(--hr-font-serif);
    color: var(--hr-blue);
    margin-bottom: 10px;
}
.hr-section--cta .hr-section__title { color: var(--hr-white); }
.hr-section__subtitle {
    color: var(--hr-text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 12px;
}
.hr-section__link {
    display: inline-block;
    color: var(--hr-teal);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: .02em;
    transition: color var(--hr-transition), transform var(--hr-transition);
}
.hr-section__link:hover { color: var(--hr-teal-dark); transform: translateX(2px); }

/* Wave separator */
.hr-wave {
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}
.hr-wave svg { display: block; width: 100%; }

/* === HOTEL GRID === */
.hr-hotel-grid {
    display: grid;
    gap: 28px;
}
.hr-hotel-grid--4col { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.hr-hotel-grid--3col { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* === HOTEL CARD === */
.hr-hotel-card {
    background: var(--hr-white);
    border-radius: var(--hr-radius-lg);
    overflow: hidden;
    box-shadow: var(--hr-shadow);
    transition: transform var(--hr-transition), box-shadow var(--hr-transition);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.hr-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hr-shadow-lg);
    border-color: rgba(23,165,137,.15);
}
.hr-hotel-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    height: 220px;
    background: var(--hr-border);
}
.hr-hotel-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--hr-transition-slow);
}
.hr-hotel-card:hover .hr-hotel-card__image { transform: scale(1.06); }
.hr-hotel-card__image--placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E8EDF2 0%, #C5D5E8 100%);
    display: flex; align-items: center; justify-content: center;
}
.hr-hotel-card__image--placeholder::after {
    content: '🏨';
    font-size: 3rem;
    opacity: .3;
}
.hr-hotel-card__stelle {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 3px 8px;
}
.hr-stelle { display: flex; gap: 1px; }
.hr-stella { font-size: 12px; }
.hr-stella--filled { color: var(--hr-gold); }
.hr-stella--empty  { color: rgba(255,255,255,.4); }

.hr-hotel-card__badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--hr-blue);
    color: var(--hr-white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hr-hotel-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.hr-hotel-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}
.hr-hotel-card__title a:hover { color: var(--hr-blue); }
.hr-hotel-card__location {
    font-size: 0.82rem;
    color: var(--hr-text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.hr-hotel-card__excerpt {
    font-size: 0.85rem;
    color: var(--hr-text-light);
    line-height: 1.55;
    flex: 1;
}
.hr-hotel-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--hr-border);
    margin-top: auto;
}
.hr-hotel-card__price { font-size: 0.85rem; color: var(--hr-text-light); }
.hr-hotel-card__price strong { font-size: 1.1rem; color: var(--hr-teal); font-weight: 800; }
.hr-hotel-card__price small { font-size: 0.72rem; }

/* === SERVIZI LIST === */
.hr-servizi-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.hr-servizi-list__item {
    display: flex;
    align-items: center;
    gap: 3px;
    background: var(--hr-sand);
    border-radius: 20px;
    padding: 3px 9px;
    font-size: 0.73rem;
    color: var(--hr-text);
    font-weight: 500;
}
.hr-servizio-icon { font-size: 0.85rem; }
.hr-servizi-list__item--more {
    background: var(--hr-border);
    color: var(--hr-text-light);
    font-weight: 700;
}

/* === MAPPA === */
.hr-map-container {
    height: 460px;
    border-radius: var(--hr-radius-lg);
    overflow: hidden;
    box-shadow: var(--hr-shadow);
}
.hr-map-container--full { width: 100%; }
.hr-map-credit { font-size: 0.73rem; color: var(--hr-text-light); text-align: right; margin-top: 6px; }

/* === HOTEL HERO (singolo) === */
.hr-hotel-hero {
    position: relative;
    height: 540px;
    overflow: hidden;
}
.hr-hotel-hero__image { position: absolute; inset: 0; }
.hr-hotel-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hr-hotel-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,40,65,.9) 0%, rgba(11,40,65,.3) 65%);
}
.hr-hotel-hero__content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-bottom: 52px;
}
.hr-hotel-hero__title {
    font-family: var(--hr-font-serif);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    color: var(--hr-white);
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin-bottom: 14px;
}
.hr-hotel-hero__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hr-hotel-hero__address,
.hr-hotel-hero__price { color: rgba(255,255,255,.88); font-size: 0.92rem; }
.hr-hotel-hero__price strong { color: var(--hr-gold); font-size: 1.1rem; }

/* === SINGLE HOTEL === */
.hr-hotel-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 52px;
    padding-top: 60px;
    padding-bottom: 80px;
    align-items: start;
}
.hr-hotel-description { font-size: 1rem; line-height: 1.85; }
.hr-hotel-description p { margin-bottom: 1.1em; color: var(--hr-text); }
.hr-hotel-description h2 { margin: 2em 0 .6em; color: var(--hr-blue); font-family: var(--hr-font-serif); }
.hr-hotel-description h3 { margin: 1.5em 0 .5em; color: var(--hr-blue); }
.hr-hotel-description ul, .hr-hotel-description ol { padding-left: 1.5em; margin-bottom: 1em; }
.hr-hotel-description ul li, .hr-hotel-description ol li { margin-bottom: .4em; }

/* FAQ in hotel/territorio */
.hrc-faq { margin: 32px 0; }
.hrc-faq-item {
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow var(--hr-transition);
}
.hrc-faq-item:hover { box-shadow: var(--hr-shadow-sm); }
.hrc-faq-item h3 {
    font-size: .95rem;
    padding: 16px 20px;
    background: var(--hr-sand);
    color: var(--hr-blue);
    cursor: pointer;
    border-bottom: 1px solid var(--hr-border);
    font-family: var(--hr-font);
}
.hrc-faq-item p {
    padding: 14px 20px;
    font-size: .88rem;
    color: var(--hr-text-light);
    line-height: 1.6;
}

/* CTA territorio */
.hr-territorio-cta {
    background: var(--hr-blue-lighter);
    border-left: 4px solid var(--hr-teal);
    border-radius: var(--hr-radius);
    padding: 28px 32px;
    margin: 40px 0 0;
}
.hr-territorio-cta h3 { color: var(--hr-blue); margin-bottom: 10px; font-size: 1.1rem; }
.hr-territorio-cta p { color: var(--hr-text-light); margin-bottom: 18px; font-size: .92rem; }

/* === GALLERIA === */
.hr-hotel-gallery { margin-top: 48px; }
.hr-hotel-gallery h2 { color: var(--hr-blue); margin-bottom: 20px; font-family: var(--hr-font-serif); }
.hr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.hr-gallery-item {
    border-radius: var(--hr-radius);
    overflow: hidden;
    aspect-ratio: 3/2;
    display: block;
    background: var(--hr-border);
}
.hr-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--hr-transition-slow);
}
.hr-gallery-item:hover img { transform: scale(1.06); }

/* === SERVIZI FULL === */
.hr-hotel-servizi { margin-top: 44px; }
.hr-hotel-servizi h2 { color: var(--hr-blue); margin-bottom: 18px; font-family: var(--hr-font-serif); }
.hr-hotel-servizi .hr-servizi-list { gap: 10px; }
.hr-hotel-servizi .hr-servizi-list__item {
    padding: 7px 14px;
    font-size: .87rem;
    background: var(--hr-sand);
    border: 1px solid var(--hr-border);
}

/* === MAPPA SINGOLO === */
.hr-hotel-map { margin-top: 52px; }
.hr-hotel-map h2 { color: var(--hr-blue); margin-bottom: 18px; font-family: var(--hr-font-serif); }
.hr-hotel-map__address { margin-top: 12px; font-size: .87rem; color: var(--hr-text-light); }
.hr-hotel-map__address .hr-link { color: var(--hr-teal); margin-left: 8px; font-weight: 600; }

/* === SIDEBAR HOTEL === */
.hr-hotel-contact-card {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius-lg);
    padding: 26px;
    box-shadow: var(--hr-shadow);
    margin-bottom: 24px;
}
.hr-hotel-contact-card h3 {
    font-size: 1rem;
    color: var(--hr-blue);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--hr-teal-light);
}
.hr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--hr-border);
    font-size: .9rem;
}
.hr-contact-item:last-child { border-bottom: none; }
.hr-contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.hr-contact-item a { color: var(--hr-blue); font-weight: 500; }
.hr-contact-item a:hover { color: var(--hr-teal); }

/* === FORM === */
.hr-hotel-form-widget,
.hr-hotel-cta-card {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius-lg);
    padding: 26px;
    box-shadow: var(--hr-shadow);
    margin-bottom: 24px;
}
.hrc-form-title {
    font-size: 1.1rem; color: var(--hr-blue);
    margin-bottom: 22px; font-weight: 700;
    border-bottom: 2px solid var(--hr-teal-light);
    padding-bottom: 14px;
}
.hrc-form-row { margin-bottom: 14px; }
.hrc-form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hrc-form-field { display: flex; flex-direction: column; gap: 5px; }
.hrc-form-field label {
    font-size: 0.78rem; font-weight: 700; color: var(--hr-text-light);
    text-transform: uppercase; letter-spacing: .04em;
}
.hrc-form-field input,
.hrc-form-field select,
.hrc-form-field textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--hr-border);
    border-radius: 7px;
    font-size: .9rem;
    font-family: var(--hr-font);
    color: var(--hr-text);
    transition: border-color var(--hr-transition), box-shadow var(--hr-transition);
    background: #FAFBFC;
}
.hrc-form-field input:focus,
.hrc-form-field select:focus,
.hrc-form-field textarea:focus {
    outline: none;
    border-color: var(--hr-teal);
    box-shadow: 0 0 0 3px rgba(23,165,137,.12);
    background: var(--hr-white);
}
.hrc-form-gdpr { font-size: .8rem; color: var(--hr-text-light); line-height: 1.5; }
.hrc-form-gdpr label { display: flex; gap: 8px; align-items: flex-start; text-transform: none; font-weight: 400; }
.hrc-form-gdpr input { margin-top: 3px; flex-shrink: 0; }
.hrc-form-submit { margin-top: 18px; }
.hrc-form-message {
    padding: 13px 16px;
    border-radius: 7px;
    font-size: .87rem;
    margin-top: 14px;
    display: none;
}
.hrc-form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.hrc-form-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* === CORRELATI === */
.hr-hotel-correlati { margin-top: 24px; }
.hr-hotel-correlati h4 { font-size: .82rem; color: var(--hr-text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.hr-correlato-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--hr-border); font-size: .87rem;
}
.hr-correlato-item:last-child { border-bottom: none; }
.hr-correlato-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 7px; flex-shrink: 0; }
.hr-correlato-item strong { display: block; color: var(--hr-text); font-size: .9rem; }
.hr-correlato-item span  { color: var(--hr-gold); font-size: 10px; }

/* === TERRITORIO === */
.hr-territorio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}
.hr-territorio-card {
    background: var(--hr-white);
    border-radius: var(--hr-radius-lg);
    overflow: hidden;
    box-shadow: var(--hr-shadow);
    transition: transform var(--hr-transition), box-shadow var(--hr-transition);
    border: 1px solid transparent;
}
.hr-territorio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hr-shadow-lg);
    border-color: rgba(23,165,137,.12);
}
.hr-territorio-card__image-link {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--hr-border);
}
.hr-territorio-card__image {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--hr-transition-slow);
}
.hr-territorio-card:hover .hr-territorio-card__image { transform: scale(1.06); }
.hr-territorio-card__image--placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E8EDF2 0%, #C5D5E8 100%);
    display: flex; align-items: center; justify-content: center;
}
.hr-territorio-card__image--placeholder::after { content: '🗺️'; font-size: 2.5rem; opacity: .3; }
.hr-territorio-card__badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--hr-teal); color: var(--hr-white);
    padding: 3px 10px; border-radius: 20px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.hr-territorio-card__body { padding: 18px 20px 22px; }
.hr-territorio-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.hr-territorio-card__title a:hover { color: var(--hr-blue); }
.hr-territorio-card__excerpt { font-size: .84rem; color: var(--hr-text-light); line-height: 1.55; margin-bottom: 14px; }
.hr-territorio-card__link { color: var(--hr-teal); font-weight: 700; font-size: .85rem; }
.hr-territorio-card__link:hover { color: var(--hr-teal-dark); }

/* === ARCHIVE HERO === */
.hr-archive-hero {
    background: linear-gradient(135deg, var(--hr-blue) 0%, #0A3251 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.hr-archive-hero::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.hr-archive-hero__title { color: var(--hr-white); font-family: var(--hr-font-serif); margin-bottom: 10px; }
.hr-archive-hero__subtitle { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-top: 8px; }

/* === ARCHIVE BODY === */
.hr-archive-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-top: 52px;
    padding-bottom: 80px;
    align-items: start;
}
.hr-archive-filters { position: sticky; top: 80px; }
.hr-filter-form {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius-lg);
    padding: 26px;
    box-shadow: var(--hr-shadow);
    margin-bottom: 20px;
}
.hr-filter-title {
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--hr-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hr-filter-group { margin-bottom: 20px; }
.hr-filter-group > label { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--hr-text-light); margin-bottom: 10px; }
.hr-filter-reset { display: block; text-align: center; color: var(--hr-text-light); font-size: .8rem; margin-top: 14px; transition: color .2s; }
.hr-filter-reset:hover { color: var(--hr-blue); }

/* Chip / pill filters */
.hr-chip-group { display: flex; flex-wrap: wrap; gap: 7px; }
.hr-chip { display: inline-flex; }
.hr-chip input[type="checkbox"],
.hr-chip input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.hr-chip-label {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 20px;
    border: 1.5px solid var(--hr-border);
    font-size: .78rem;
    font-weight: 600;
    color: var(--hr-text-light);
    background: #FAFBFC;
    transition: background .15s, border-color .15s, color .15s;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    line-height: 1.4;
}
.hr-chip-label:hover { border-color: var(--hr-teal); color: var(--hr-blue); }
.hr-chip input:checked + .hr-chip-label {
    background: var(--hr-teal);
    border-color: var(--hr-teal);
    color: #fff;
}
.hr-chip input:focus-visible + .hr-chip-label { outline: 2px solid var(--hr-teal); outline-offset: 2px; }
.hr-chip-label--reset { font-size: .72rem; padding: 5px 10px; color: var(--hr-text-light); }

/* Mobile filters toggle */
.hr-filter-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    background: var(--hr-white);
    border: 1.5px solid var(--hr-border);
    border-radius: var(--hr-radius);
    font-weight: 700;
    font-size: .88rem;
    color: var(--hr-blue);
    text-align: left;
    margin-bottom: 12px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}
.hr-filter-toggle .hr-filter-toggle-icon { transition: transform .2s; }
.hr-filter-toggle.is-open .hr-filter-toggle-icon { transform: rotate(180deg); }

.hr-archive-count { font-size: .87rem; color: var(--hr-text-light); margin-bottom: 24px; font-weight: 500; }
.hr-archive-empty { text-align: center; padding: 48px 20px; }
.hr-archive-empty p { color: var(--hr-text-light); margin-bottom: 20px; font-size: 1.05rem; }
.hr-archive-map-mini { border-radius: var(--hr-radius-lg); overflow: hidden; box-shadow: var(--hr-shadow-sm); }

/* === CTA BOX === */
.hr-cta-box { text-align: center; padding: 16px 0; }
.hr-cta-box__title { color: var(--hr-white); font-family: var(--hr-font-serif); margin-bottom: 16px; }
.hr-cta-box__text { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }

/* === BREADCRUMB === */
.hr-breadcrumb { margin-bottom: 14px; }
.hr-breadcrumb__list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .78rem; }
.hr-breadcrumb__item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.65); }
.hr-breadcrumb__item a { color: rgba(255,255,255,.72); transition: color .2s; }
.hr-breadcrumb__item a:hover { color: var(--hr-white); }
.hr-breadcrumb__item--current { color: var(--hr-white); font-weight: 600; }
.hr-breadcrumb__sep { color: rgba(255,255,255,.35); }

/* Light version (within white pages) */
.hr-breadcrumb--light .hr-breadcrumb__item { color: var(--hr-text-light); }
.hr-breadcrumb--light .hr-breadcrumb__item a { color: var(--hr-blue-light); }
.hr-breadcrumb--light .hr-breadcrumb__item--current { color: var(--hr-text); }
.hr-breadcrumb--light .hr-breadcrumb__sep { color: var(--hr-border); }

/* === LANG SWITCHER === */
.hr-lang-switcher { display: flex; gap: 3px; }
.hr-lang {
    padding: 4px 10px; font-size: .75rem; font-weight: 700;
    border: 1.5px solid var(--hr-border); border-radius: 5px;
    color: var(--hr-text-light); transition: all var(--hr-transition);
    text-transform: uppercase;
}
.hr-lang:hover, .hr-lang--active {
    background: var(--hr-blue); color: var(--hr-white) !important;
    border-color: var(--hr-blue);
}

/* === FOOTER === */
.hr-footer { background: var(--hr-blue-dark); color: rgba(255,255,255,.78); }
.hr-footer__top { padding: 72px 0; }
.hr-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px;
}
.hr-footer__logo-name { font-size: 1.3rem; font-weight: 900; color: var(--hr-white); display: block; margin-bottom: 12px; }
.hr-footer__claim { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 240px; }
.hr-footer__col-title {
    color: var(--hr-white); font-size: .78rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
}
.hr-footer__links { display: flex; flex-direction: column; gap: 10px; }
.hr-footer__links li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--hr-transition), padding-left var(--hr-transition); }
.hr-footer__links li a:hover { color: var(--hr-white); padding-left: 4px; }
.hr-footer__links li { font-size: .88rem; }
.hr-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
}
.hr-footer__bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.45);
}
.hr-footer__legal-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.hr-footer__legal-nav a { color: rgba(255,255,255,.45); font-size: .8rem; transition: color .2s; }
.hr-footer__legal-nav a:hover { color: var(--hr-white); }
.hr-footer .hr-lang { border-color: rgba(255,255,255,.2); }
.hr-footer .hr-lang--active { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }

/* === MISC === */
.hr-content-none { text-align: center; padding: 80px 20px; }
.hr-content-none h2 { margin-bottom: 14px; }
.hr-content-none p { color: var(--hr-text-light); margin-bottom: 28px; }

.hr-page-content { padding-top: 52px; padding-bottom: 80px; }
.hr-page-title { font-family: var(--hr-font-serif); color: var(--hr-blue); margin-bottom: 36px; }

.hr-prezzo { font-size: .9rem; }
.hr-prezzo strong { color: var(--hr-teal); font-weight: 800; font-size: 1.1rem; }

.hr-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}
.hr-post-card {
    background: var(--hr-white); border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius); overflow: hidden; box-shadow: var(--hr-shadow);
    transition: transform var(--hr-transition);
}
.hr-post-card:hover { transform: translateY(-2px); }
.hr-post-card__image { display: block; height: 200px; overflow: hidden; }
.hr-post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.hr-post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.hr-post-card__title { font-size: 1rem; font-weight: 700; }
.hr-post-card__excerpt { font-size: .87rem; color: var(--hr-text-light); line-height: 1.5; }

/* Territorio singolo */
.hr-territorio-hero { position: relative; height: 460px; overflow: hidden; }
.hr-territorio-hero__image { position: absolute; inset: 0; }
.hr-territorio-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hr-territorio-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,40,65,.88) 0%, rgba(11,40,65,.28) 60%);
}
.hr-territorio-hero__content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-bottom: 48px;
}
.hr-territorio-hero__title { font-family: var(--hr-font-serif); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--hr-white); }
.hr-territorio-body {
    display: grid; grid-template-columns: 1fr 340px; gap: 52px;
    padding-top: 60px; padding-bottom: 80px; align-items: start;
}
.hr-territorio-content { font-size: 1rem; line-height: 1.85; }
.hr-territorio-content p { margin-bottom: 1.1em; }
.hr-territorio-content h2 { margin: 2em 0 .6em; color: var(--hr-blue); font-family: var(--hr-font-serif); }
.hr-territorio-content h3 { margin: 1.5em 0 .5em; color: var(--hr-blue); }
.hr-territorio-content ul { padding-left: 1.5em; margin-bottom: 1em; }
.hr-territorio-content ul li { margin-bottom: .5em; }
.hr-territorio-map-widget {
    background: var(--hr-white); border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius-lg); padding: 22px; box-shadow: var(--hr-shadow);
    position: sticky; top: 80px;
}
.hr-territorio-map-widget h3 { font-size: 1rem; margin-bottom: 16px; color: var(--hr-blue); }
.hr-territorio-map-widget .hr-map-container { height: 260px; }
.hr-territorio-hotels { margin-top: 52px; }
.hr-territorio-hotels h2 { color: var(--hr-blue); margin-bottom: 24px; font-family: var(--hr-font-serif); }

/* Paginazione */
.nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.nav-links .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 7px; font-weight: 600; font-size: .88rem;
    border: 1.5px solid var(--hr-border); color: var(--hr-text); transition: all .2s;
}
.nav-links .page-numbers:hover, .nav-links .page-numbers.current {
    background: var(--hr-blue); color: var(--hr-white); border-color: var(--hr-blue);
}
.nav-links .page-numbers.prev, .nav-links .page-numbers.next { width: auto; padding: 0 14px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
    .hr-hotel-body { grid-template-columns: 1fr 320px; gap: 36px; }
    .hr-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .hr-territorio-body { grid-template-columns: 1fr 300px; gap: 36px; }
}

@media (max-width: 900px) {
    .hr-hotel-body { grid-template-columns: 1fr; }
    .hr-hotel-body__sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hr-archive-body { grid-template-columns: 240px 1fr; gap: 24px; }
    .hr-territorio-body { grid-template-columns: 1fr; }
    .hr-territorio-map-widget { position: static; }
}

@media (max-width: 768px) {
    .hr-header__nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--hr-white);
        z-index: 100;
        padding: 80px 28px 40px;
        overflow-y: auto;
        box-shadow: var(--hr-shadow-xl);
    }
    .hr-header__nav.is-open { display: block; animation: hr-fade-in .2s ease; }
    .hr-header__nav.is-open .hr-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
    .hr-header__nav.is-open .hr-nav__list > li { width: 100%; }
    .hr-header__nav.is-open .hr-nav__list > li > a { font-size: 1.15rem; padding: 14px 0; border-radius: 0; border-bottom: 1px solid var(--hr-border); }
    .hr-hamburger { display: flex; }
    .hr-header__actions .hr-btn--outline { display: none; }
    .hr-search-form { flex-direction: column; }
    .hr-search-form__field { min-width: 100%; }
    .hr-archive-body { grid-template-columns: 1fr; padding-top: 36px; }
    .hr-archive-filters { position: static; }
    .hr-filter-toggle { display: flex; }
    .hr-filter-form { display: none; }
    .hr-filter-form.is-open { display: block; }
    .hr-hotel-grid--4col,
    .hr-hotel-grid--3col { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hr-hotel-card__image-link { height: 180px; }
    .hr-hero { min-height: 100svh; }
    .hr-section { padding: 56px 0; }
    .hr-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hrc-form-row--2col { grid-template-columns: 1fr; }
    .hr-hotel-hero { height: 420px; }
    .hr-territorio-hero { height: 360px; }
}

@media (max-width: 480px) {
    .hr-container { padding: 0 16px; }
    .hr-hotel-grid--4col,
    .hr-hotel-grid--3col { grid-template-columns: 1fr; gap: 16px; }
    .hr-hotel-body__sidebar { grid-template-columns: 1fr; }
    .hr-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .hr-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
    .hr-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hr-hero { min-height: 100svh; }
    .hr-search-box { padding: 16px; }
    .hr-territorio-grid { grid-template-columns: 1fr; }
    .hr-section__header { margin-bottom: 36px; }
    .hr-hero__content { padding-top: 80px; padding-bottom: 60px; }
}

/* Performance: reduce animations for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .hr-reveal { opacity: 1; transform: none; }
}

/* ============================================
   PREMIUM UX — Sprint 4/5 Additions
   ============================================ */

/* === HOTEL CARD — PREMIUM REDESIGN === */
.hr-hotel-card {
    background: var(--hr-white);
    border-radius: var(--hr-radius-lg);
    overflow: hidden;
    box-shadow: var(--hr-shadow);
    transition: transform var(--hr-transition), box-shadow var(--hr-transition);
    display: flex;
    flex-direction: column;
}
.hr-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hr-shadow-lg);
}
.hr-hotel-card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}
.hr-hotel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.hr-hotel-card:hover .hr-hotel-card__img { transform: scale(1.07); }
.hr-hotel-card__img--placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--hr-blue-lighter) 0%, #d6eaf8 100%);
}
.hr-hotel-card__img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,79,114,.65) 0%, rgba(0,0,0,0) 55%);
    pointer-events: none;
}
.hr-hotel-card__tip-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    color: var(--hr-blue);
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .04em;
    padding: 4px 10px; border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
    box-shadow: 0 1px 8px rgba(0,0,0,.12);
}
.hr-hotel-card__stelle-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    color: var(--hr-gold);
    font-size: .82rem; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,.12);
    letter-spacing: 1px;
}
.hr-hotel-card__price-badge {
    position: absolute; bottom: 12px; left: 12px;
    color: #fff; font-size: .8rem;
    display: flex; align-items: baseline; gap: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.hr-hotel-card__price-badge strong { font-size: 1.15rem; font-weight: 800; }
.hr-hotel-card__price-badge small { font-size: .72rem; opacity: .85; }
.hr-hotel-card__body {
    padding: 18px 20px 20px;
    display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.hr-hotel-card__title {
    font-size: 1.05rem; font-weight: 800; line-height: 1.3; margin: 0;
}
.hr-hotel-card__title a { color: var(--hr-text); }
.hr-hotel-card__title a:hover { color: var(--hr-blue); }
.hr-hotel-card__location {
    display: flex; align-items: center; gap: 5px;
    font-size: .78rem; color: var(--hr-text-light); margin: 0;
}
.hr-icon-pin { color: var(--hr-teal); flex-shrink: 0; }
.hr-hotel-card__excerpt {
    font-size: .84rem; color: var(--hr-text-light); line-height: 1.55;
    margin: 0; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hr-hotel-card__servizi {
    display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px;
}
.hr-service-pill {
    display: inline-flex; align-items: center; gap: 3px;
    background: var(--hr-sand); border-radius: 12px;
    padding: 3px 9px; font-size: .72rem; color: var(--hr-text-light); font-weight: 600;
}
.hr-service-pill__label { font-size: .7rem; }
.hr-hotel-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--hr-border);
}
.hr-hotel-card__cta {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--hr-teal); font-size: .84rem; font-weight: 700;
    transition: gap var(--hr-transition), color var(--hr-transition);
}
.hr-hotel-card__cta:hover { color: var(--hr-teal-dark); gap: 8px; }
.hr-hotel-card__tel {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    background: var(--hr-teal-light); border-radius: 50%;
    color: var(--hr-teal); transition: background var(--hr-transition), color var(--hr-transition);
}
.hr-hotel-card__tel:hover { background: var(--hr-teal); color: #fff; }

/* === FILTER — PREMIUM ENHANCEMENTS === */
.hr-filter-group__label {
    display: block; font-size: .72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--hr-text-light); margin-bottom: 10px;
}
.hr-chip-icon { font-size: .88em; }
.hr-chip-label--stelle {
    font-family: serif; letter-spacing: 2px; color: var(--hr-gold);
}
.hr-chip input:checked + .hr-chip-label--stelle {
    background: var(--hr-gold); border-color: var(--hr-gold); color: #fff;
}
.hr-filter-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--hr-teal); color: #fff;
    font-size: .7rem; font-weight: 800; margin-left: 4px;
}
/* Search autocomplete */
.hr-search-autocomplete { position: relative; margin-bottom: 24px; }
.hr-search-wrap { position: relative; display: flex; align-items: center; }
.hr-search-icon { position: absolute; left: 12px; color: var(--hr-text-light); pointer-events: none; flex-shrink: 0; }
.hr-search-input {
    width: 100%; padding: 9px 36px 9px 36px; border: 1.5px solid var(--hr-border);
    border-radius: var(--hr-radius); font-size: .88rem; background: #fff;
    transition: border-color .2s;
}
.hr-search-input:focus { outline: none; border-color: var(--hr-teal); }
.hr-search-clear {
    position: absolute; right: 10px; background: none; border: none;
    color: var(--hr-text-light); cursor: pointer; font-size: .75rem;
    padding: 4px; line-height: 1; transition: color .15s;
}
.hr-search-clear:hover { color: var(--hr-blue); }
.hr-search-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 200;
    background: #fff; border: 1.5px solid var(--hr-border); border-radius: var(--hr-radius-lg);
    box-shadow: 0 8px 24px rgba(0,0,0,.12); list-style: none;
    padding: 4px 0; margin: 0; max-height: 320px; overflow-y: auto;
}
.hr-search-option {
    display: flex; align-items: center; gap: 10px; padding: 8px 14px;
    cursor: pointer; transition: background .12s;
}
.hr-search-option:hover, .hr-search-option.is-active {
    background: var(--hr-teal-light);
}
.hr-search-thumb { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.hr-search-thumb--placeholder { background: var(--hr-bg); border-radius: 6px; }
.hr-search-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.hr-search-name { font-size: .88rem; font-weight: 700; color: var(--hr-blue); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hr-search-tip { font-size: .72rem; color: var(--hr-text-light); text-transform: capitalize; }
.hr-search-stelle { font-size: .72rem; color: #F5A623; flex-shrink: 0; }
.hr-search-empty { padding: 12px 14px; color: var(--hr-text-light); font-size: .85rem; }

.hr-filter-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }

/* Active filter pills */
.hr-results-bar { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hr-active-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.hr-active-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--hr-teal-light); color: var(--hr-teal);
    border: 1px solid var(--hr-teal); border-radius: 20px;
    padding: 4px 10px 4px 12px; font-size: .78rem; font-weight: 600;
}
.hr-active-pill__remove {
    background: none; border: none; color: var(--hr-teal);
    font-size: .75rem; cursor: pointer; padding: 0; line-height: 1;
    opacity: .7; transition: opacity .15s;
}
.hr-active-pill__remove:hover { opacity: 1; }

/* Loading skeleton */
.hr-card-skeleton {
    background: #f0f2f4;
    border-radius: var(--hr-radius-lg);
    height: 360px;
    animation: hr-skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes hr-skeleton-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .55; }
}
.hr-filter-loading .hr-hotel-grid { pointer-events: none; }

/* Archive count */
.hr-archive-count {
    font-size: .87rem; color: var(--hr-text-light); font-weight: 500; margin: 0;
}

/* === SINGLE HOTEL PREMIUM === */
.hr-hotel-hero {
    position: relative; min-height: 520px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.hr-hotel-hero__image {
    position: absolute; inset: 0;
}
.hr-hotel-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hr-hotel-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,30,50,.85) 0%,
        rgba(10,30,50,.4) 50%,
        rgba(0,0,0,.2) 100%
    );
}
.hr-hotel-hero__content {
    position: relative; z-index: 1;
    padding-bottom: 52px; padding-top: 140px;
    width: 100%;
}
.hr-hotel-hero__badges {
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.hr-hotel-hero__tip {
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    color: #fff; font-size: .72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .06em;
    padding: 4px 12px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.25);
}
.hr-hotel-hero__stelle {
    color: var(--hr-gold); font-size: 1rem; letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.hr-hotel-hero__title {
    color: #fff; font-family: var(--hr-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px; line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hr-hotel-hero__meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
    margin-bottom: 24px;
}
.hr-hotel-hero__address,
.hr-hotel-hero__price { color: rgba(255,255,255,.88); font-size: .92rem; display: flex; align-items: center; gap: 5px; }
.hr-hotel-hero__price strong { color: var(--hr-gold); font-size: 1.2rem; font-weight: 800; }
.hr-hotel-hero__price small { font-size: .75rem; opacity: .8; }
.hr-hotel-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Glass button */
.hr-btn--glass {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: #fff; border: 1.5px solid rgba(255,255,255,.3);
    padding: 11px 22px; border-radius: var(--hr-radius);
    font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 7px;
    transition: background var(--hr-transition), border-color var(--hr-transition);
}
.hr-btn--glass:hover { background: rgba(255,255,255,.22); color: #fff; border-color: rgba(255,255,255,.5); }

/* Hotel body layout */
.hr-hotel-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 80px;
    align-items: start;
}
.hr-hotel-body__sidebar { position: sticky; top: 90px; }

/* Gallery strip */
.hr-hotel-gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 6px;
    border-radius: var(--hr-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}
.hr-gallery-strip__item {
    position: relative; overflow: hidden; display: block;
    background: var(--hr-sand);
}
.hr-gallery-strip__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.hr-gallery-strip__item:hover img { transform: scale(1.06); }
.hr-gallery-strip__item--main {
    grid-row: 1 / 3;
}
.hr-gallery-strip__more {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.55);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; font-weight: 800;
}

/* Section small title */
.hr-section-title-sm {
    font-size: 1.3rem; font-weight: 800;
    color: var(--hr-blue); margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hr-border);
}

/* Services grid */
.hr-hotel-servizi-section,
.hr-hotel-map-section,
.hr-hotel-correlati-section { margin-bottom: 48px; }
.hr-servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.hr-servizio-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--hr-sand); border-radius: var(--hr-radius);
    padding: 12px 14px;
    font-size: .84rem; color: var(--hr-text); font-weight: 600;
    transition: background var(--hr-transition);
}
.hr-servizio-item:hover { background: var(--hr-teal-light); }
.hr-servizio-item__icon { font-size: 1.2rem; flex-shrink: 0; }

/* Map container large */
.hr-map-container { height: 300px; border-radius: var(--hr-radius-lg); overflow: hidden; }
.hr-map-container--lg { height: 380px; }
.hr-hotel-map__address {
    font-size: .84rem; color: var(--hr-text-light); margin-top: 10px;
}
.hr-link { color: var(--hr-teal); font-weight: 600; }
.hr-link:hover { color: var(--hr-teal-dark); }

/* Contact card sidebar */
.hr-contact-card {
    background: var(--hr-white);
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius-lg);
    padding: 26px;
    box-shadow: var(--hr-shadow);
}
.hr-contact-card--sticky { /* sticky applied via JS/CSS on parent */ }
.hr-contact-card__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.hr-contact-card__title { font-size: 1.05rem; font-weight: 800; color: var(--hr-blue); }
.hr-contact-card__stelle { color: var(--hr-gold); font-size: .9rem; letter-spacing: 2px; }
.hr-contact-card__price {
    display: flex; align-items: baseline; gap: 6px;
    padding: 12px 16px;
    background: var(--hr-teal-light);
    border-radius: var(--hr-radius);
    margin-bottom: 16px;
    color: var(--hr-teal);
}
.hr-contact-card__price span { font-size: .8rem; }
.hr-contact-card__price strong { font-size: 1.6rem; font-weight: 900; }
.hr-contact-card__price small { font-size: .8rem; }
.hr-contact-list { display: flex; flex-direction: column; gap: 2px; }
.hr-contact-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: var(--hr-radius);
    font-size: .88rem; color: var(--hr-text);
    transition: background var(--hr-transition);
}
.hr-contact-item--action {
    cursor: pointer;
    transition: background var(--hr-transition), color var(--hr-transition);
}
.hr-contact-item--action:hover { background: var(--hr-teal-light); color: var(--hr-teal); }
.hr-contact-item__icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.hr-contact-item__text { flex: 1; word-break: break-all; }
.hr-contact-item__arrow { color: var(--hr-text-light); font-size: .8rem; }
.hr-sidebar-cta-back { margin-top: 12px; text-align: center; }
.hr-back-link { font-size: .84rem; color: var(--hr-text-light); transition: color var(--hr-transition); }
.hr-back-link:hover { color: var(--hr-blue); }

/* Mobile sticky CTA */
.hr-mobile-sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--hr-white);
    border-top: 1px solid var(--hr-border);
    padding: 12px 20px;
    z-index: 200;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

/* === HOMEPAGE PREMIUM === */

/* Hero eyebrow */
.hr-hero__eyebrow {
    display: flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.78);
    margin-bottom: 16px;
}
.hr-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--hr-teal); flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(23,165,137,.3);
    animation: hr-dot-pulse 2s infinite;
}
@keyframes hr-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(23,165,137,.3); }
    50%       { box-shadow: 0 0 0 8px rgba(23,165,137,.1); }
}

/* Stats strip */
.hr-hero__stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(10,30,50,.65);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.1);
}
.hr-stats-strip {
    display: flex; justify-content: center; flex-wrap: wrap;
    padding: 14px 0;
}
.hr-stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 4px 36px;
}
.hr-stat--divider { border-left: 1px solid rgba(255,255,255,.15); }
.hr-stat__num { font-size: 1.2rem; font-weight: 900; color: #fff; }
.hr-stat__label { font-size: .7rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

/* Quick search */
.hr-quick-search {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--hr-radius-xl);
    padding: 24px 28px;
    margin-top: 36px;
    max-width: 700px;
}
.hr-quick-search__form { display: flex; flex-direction: column; gap: 16px; }
.hr-quick-search__group { display: flex; flex-direction: column; gap: 8px; }
.hr-quick-search__label {
    font-size: .7rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; color: rgba(255,255,255,.65);
}
.hr-quick-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.hr-quick-chip input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.hr-quick-chip span {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px; border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,.3);
    font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85);
    cursor: pointer; transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap; user-select: none;
    background: rgba(255,255,255,.08);
}
.hr-quick-chip span:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color: #fff; }
.hr-quick-chip input:checked + span { background: var(--hr-teal); border-color: var(--hr-teal); color: #fff; }
.hr-quick-chip--stelle span { font-family: serif; letter-spacing: 2px; color: rgba(245,166,35,.9); }
.hr-quick-chip--stelle input:checked + span { background: var(--hr-gold); border-color: var(--hr-gold); color: #fff; }
.hr-quick-search__btn { align-self: flex-start; }

/* Section header flex */
.hr-section__header {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 20px; margin-bottom: 40px;
}
.hr-section__header-text { flex: 1; }
.hr-section__header::after { display: none; } /* remove old decorator */
.hr-section__cta-bottom { text-align: center; margin-top: 40px; }

/* Abruzzo emotional strip */
.hr-abruzzo-strip { background: var(--hr-blue); padding: 56px 0; }
.hr-abruzzo-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.1);
    border-radius: var(--hr-radius-lg);
    overflow: hidden;
}
.hr-abruzzo-card { background: var(--hr-blue); transition: background var(--hr-transition); }
.hr-abruzzo-card:hover { background: var(--hr-blue-dark); }
.hr-abruzzo-card__body {
    padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; height: 100%;
}
.hr-abruzzo-card__icon { font-size: 2rem; }
.hr-abruzzo-card__body h3 { color: #fff; font-size: 1.05rem; font-weight: 800; }
.hr-abruzzo-card__body p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.6; }

/* CTA box enhancements */
.hr-cta-box__eyebrow {
    display: inline-block;
    font-size: .72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .1em; color: var(--hr-teal);
    background: rgba(23,165,137,.15);
    padding: 4px 14px; border-radius: 20px;
    margin-bottom: 16px;
}
.hr-cta-box__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === PAGINATION === */
.hr-pagination { margin-top: 40px; }
.hr-pagination .page-numbers {
    display: inline-flex; align-items: center;
    gap: 4px; flex-wrap: wrap;
}
.hr-pagination .page-numbers li { list-style: none; }
.hr-pagination .page-numbers li a,
.hr-pagination .page-numbers li span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px; font-size: .88rem; font-weight: 700;
    color: var(--hr-text-light);
    border: 1.5px solid var(--hr-border);
    transition: background .15s, border-color .15s, color .15s;
}
.hr-pagination .page-numbers li a:hover { background: var(--hr-teal-light); border-color: var(--hr-teal); color: var(--hr-teal); }
.hr-pagination .page-numbers li .current { background: var(--hr-teal); border-color: var(--hr-teal); color: #fff; }

/* Archive empty state */
.hr-archive-empty { text-align: center; padding: 72px 20px; }
.hr-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.hr-archive-empty p { color: var(--hr-text-light); margin-bottom: 24px; font-size: 1.1rem; }

/* ============================================
   RESPONSIVE — Premium additions
   ============================================ */

@media (max-width: 1100px) {
    .hr-hotel-body { grid-template-columns: 1fr 300px; gap: 36px; }
    .hr-abruzzo-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .hr-hotel-gallery-strip { grid-template-rows: 170px 170px; }
}

@media (max-width: 900px) {
    .hr-hotel-body { grid-template-columns: 1fr; }
    .hr-hotel-body__sidebar { position: static; }
    .hr-quick-search { padding: 20px; }
    .hr-stats-strip { gap: 0; }
    .hr-stat { padding: 4px 20px; }
}

@media (max-width: 768px) {
    .hr-hotel-hero { min-height: 420px; }
    .hr-hotel-gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
    .hr-gallery-strip__item--main { grid-row: auto; }
    .hr-hotel-card__img-wrap { height: 200px; }
    .hr-servizi-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .hr-abruzzo-strip__grid { grid-template-columns: 1fr 1fr; }
    .hr-abruzzo-card__body { padding: 24px 20px; }
    .hr-quick-search { border-radius: var(--hr-radius-lg); margin-top: 24px; }
    .hr-hero__stats { position: static; margin-top: 0; }
    .hr-section__header { flex-direction: column; gap: 8px; }
    .hr-mobile-sticky-cta { display: flex; }
    .hr-hotel-body__sidebar .hr-contact-card { display: none; }
    .hr-hotel-correlati-section .hr-hotel-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hr-abruzzo-strip__grid { grid-template-columns: 1fr; }
    .hr-hotel-gallery-strip { grid-template-columns: 1fr; grid-template-rows: repeat(3, 160px); }
    .hr-stats-strip { gap: 0; }
    .hr-stat { padding: 4px 14px; }
    .hr-quick-search__btn { width: 100%; justify-content: center; }
    .hr-hotel-correlati-section .hr-hotel-grid { grid-template-columns: 1fr; }
    .hr-cta-box__actions { flex-direction: column; align-items: center; }
}
