@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ─── BASE ──────────────────────────────────────────────── */

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── HEADER UNIFICATO ───────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: #000000;
    border-bottom: 2px solid #ffffff;
    transition: transform 0.25s ease;
}

.header-info {
    padding: 0.7rem 0;
    border-bottom: 1px solid #2a2a2a;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.09rem;
    overflow: hidden;
    max-height: 4rem;
    transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
    opacity: 1;
}

.header-info-link {
    font-size: 0.75rem;
    letter-spacing: 0.08rem;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.header-info-link:hover {
    opacity: 1;
}

.topbar-location-mobile {
    display: none;
}

body.hide-topbar .header-info {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border-color: transparent;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */

.navbar,
.navbar .nav-link {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.navbar {
    position: static;
    background-color: transparent !important;
    border-bottom: none;
}

.navbar-brand-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid #444444;
    filter: grayscale(100%);
}

.navbar-toggler {
    border: 1px solid #ffffff !important;
    border-radius: 0;
    padding: 0.45rem 0.6rem;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    position: relative;
    display: block;
    width: 1.5rem;
    height: 1rem;
    background-image: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: top 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-toggler-icon::before {
    top: 0;
    box-shadow: 0 0.45rem 0 #ffffff;
}

.navbar-toggler-icon::after {
    top: calc(100% - 2px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.nav-link {
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    color: #ffffff !important;
}

a.nav-link {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    background-color: transparent;
    padding-bottom: 0.2rem;
    transition: border-color 0.2s ease;
}

a.nav-link:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
}

/* ─── HERO ──────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    background-image: url('../res/Foto\ principale.JPG');
    background-position: center 50%;
    background-size: cover;
    background-attachment: scroll;
    will-change: background-position;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #ffffff;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero .btn {
    padding: 0.9rem 2.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    border-radius: 0;
    animation: scaleIn 0.8s ease-out 1.1s both;
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero .btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeInLeftSoft {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatInUp {
    from { opacity: 0; transform: translateY(36px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── CHI SIAMO ──────────────────────────────────────────── */

#chi-siamo {
    scroll-margin-top: 11rem;
}

.section-chi-siamo {
    padding-top: 11rem;
    padding-bottom: 8rem;
    background: #ffffff;
}

.section-chi-siamo .col-lg-6:first-child {
    animation: fadeInLeftSoft 1s ease-out 0.2s both;
}

.section-chi-siamo .col-lg-6:last-child {
    animation: floatInUp 1s ease-out 0.45s both;
}

.section-chi-siamo h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.section-chi-siamo .lead {
    max-width: 40rem;
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
}

.chi-siamo-card {
    background-color: #f5f5f5 !important;
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    animation: fadeIn 1s ease-out 0.75s both;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.section-chi-siamo .chi-siamo-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 #000000 !important;
}

/* Statistiche */
.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000000;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-weight: 500;
}

/* Lista servizi */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.65rem 0;
    color: #000000;
    border-bottom: 1px solid #000000;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 400;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #000000;
    width: 20px;
    text-align: center;
}

/* Value cards (approccio) */
.approccio-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: #888888;
    font-weight: 600;
}

.approccio-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.value-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-right: none;
    height: 100%;
}

.value-card-last {
    border-right: 1px solid #000000;
}

.value-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: rgb(0, 0, 0);
    letter-spacing: -0.04em;
}

.value-card h5 {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.value-card p {
    color: #555555;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Maps section */
.maps-section {
    border: 1px solid #000000;
    overflow: hidden;
    margin-top: 8rem;
}

.maps-details-col {
    padding: 3rem 2.5rem;
    background: #000000;
    color: #ffffff;
}

.maps-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: #666666;
    font-weight: 600;
}

.maps-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #ffffff;
}

.maps-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.maps-info-icon {
    color: #ffffff;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    opacity: 0.5;
}

.maps-info-row strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.maps-info-row span {
    color: #888888;
    font-size: 0.85rem;
}

.maps-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.maps-cta-btn:hover {
    background: transparent;
    color: #ffffff;
}

.maps-embed-new {
    height: 100%;
    min-height: 420px;
}

.maps-embed-new iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .maps-details-col {
        padding: 2.5rem 1.5rem;
    }
    .maps-embed-new {
        min-height: 320px;
    }
    .value-card {
        border-right: 1px solid #000000;
        border-bottom: none;
    }
    .value-card-last {
        border-bottom: 1px solid #000000;
    }
}

@media (max-width: 768px) {
    .maps-embed-new {
        min-height: 280px;
    }
}

/* ─── RECENSIONI ─────────────────────────────────────────── */

#section-recensioni {
    scroll-margin-top: 11rem;
}

.section-recensioni {
    background: #f5f5f5;
}

.reviews-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    height: clamp(380px, 36vw, 500px);
}

.reviews-image {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.reviews-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviews-content {
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    min-height: 0;
    border-left: 4px solid #ffffff;
}

.reviews-content-inner {
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 2.5rem 2.5rem;
}

.reviews-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
    color: #aaaaaa;
    font-weight: 500;
}

.reviews-content h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 1.1rem;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.reviews-divider {
    width: 6rem;
    height: 2px;
    background: #ffffff;
    margin-bottom: 1.5rem;
}

.reviews-slider {
    position: relative;
    min-height: 0;
}

.review-card {
    display: none;
    position: relative;
    animation: fadeIn 0.45s ease;
}

.review-card.is-active {
    display: block;
}

.review-quote-mark {
    position: absolute;
    left: -0.4rem;
    top: -1.4rem;
    font-size: 6rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    font-family: Georgia, serif;
}

.review-text {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
    color: #cccccc;
}

.review-author {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.reviews-dots {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.6rem;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: 1px solid #ffffff;
    padding: 0;
    background: transparent;
    transition: background 0.2s ease;
    cursor: pointer;
}

.review-dot.is-active,
.review-dot:hover {
    background: #ffffff;
}

/* ─── GALLERY ────────────────────────────────────────────── */

#gallery-tagli {
    scroll-margin-top: 11rem;
}

.section-gallery {
    padding: 7rem 0;
    background: #ffffff;
}

.gallery-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.gallery-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.72rem;
    color: #666666;
    font-weight: 500;
}

.section-gallery h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 1rem;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #000000;
}

.gallery-description {
    color: #555555;
    line-height: 1.75;
    font-size: 0.95rem;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: calc(1200px + 2.5rem);
    margin: 2.5rem auto 0;
}

.gallery-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-carousel-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    transition: transform 0.45s ease;
    will-change: transform;
}

.gallery-slide {
    flex: 0 0 400px;
    min-width: 400px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.35;
    filter: blur(2px);
    transform: scale(0.92);
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.gallery-slide.active {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

.gallery-slide.prev,
.gallery-slide.next {
    opacity: 0.65;
    filter: blur(0.5px);
    transform: scale(0.97);
}

.gallery-card {
    width: 100%;
    background: #000000;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #000000;
}

.gallery-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.gallery-card-content {
    padding: 1.5rem 1.6rem 1.8rem;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 0;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 2;
    cursor: pointer;
}

.gallery-prev {
    left: 0.5rem;
}

.gallery-next {
    right: 0.5rem;
}

.gallery-arrow:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-50%);
}

.gallery-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
}

.gallery-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: 1px solid #000000;
    padding: 0;
    background: transparent;
    transition: background 0.2s ease;
    cursor: pointer;
}

.gallery-carousel-dots button.active {
    background: #000000;
}

/* ─── ORARI ──────────────────────────────────────────────── */

#orari {
    scroll-margin-top: 11rem;
}

.section-orari {
    padding: 7rem 0;
    background: #000000;
    color: #ffffff;
}

.orari-heading {
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.orari-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.72rem;
    color: #888888;
    font-weight: 500;
}

.section-orari h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 1rem;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.orari-description {
    color: #aaaaaa;
    line-height: 1.7;
    font-size: 0.95rem;
}

.orari-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid #333333;
}

.orario-card {
    min-height: 160px;
    padding: 1.6rem 1.2rem;
    background: white;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    border-right: 1px solid #333333;
}

.orario-card:last-child {
    border-right: none;
}

.orario-day,
.orario-time {
    display: inline-block;
    transition: transform 0.3s ease;
}

.orario-card:hover .orario-day,
.orario-card:hover .orario-time {
    transform: skew(-20deg);
}

.orario-card-closed {
    background: #ffffff;
    color: black;
}

.orario-card-closed:hover {
    background: #ffffff;
}

.orario-day {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: #444444;
}

.orario-card-closed .orario-day {
    color: #444444;
}

.orario-time {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.orario-card-closed .orario-time {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: #444444;
}

/* ─── LISTINO PREZZI ─────────────────────────────────────── */

#listino-prezzi {
    scroll-margin-top: 11rem;
}

.section-listino {
    padding: 7rem 0;
    background: #f5f5f5;
}

.listino-heading {
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.listino-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    font-size: 0.72rem;
    color: #666666;
    font-weight: 500;
}

.section-listino h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 1rem;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #000000;
}

.listino-description {
    color: #555555;
    line-height: 1.75;
    font-size: 0.95rem;
}

.listino-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #000000;
}

.listino-card {
    background: #ffffff;
    border-radius: 0;
    padding: 2.5rem;
    border: none;
    border-right: 1px solid #000000;
}

.listino-card:last-child {
    border-right: none;
}

.listino-card-accent {
    background: #000000;
    color: #ffffff;
}

.listino-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #000000;
}

.listino-card-accent .listino-card-header {
    border-bottom-color: #333333;
}

.listino-category {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.72rem;
    color: #666666;
    font-weight: 600;
}

.listino-card-accent .listino-category {
    color: #888888;
}

.listino-card h3 {
    font-size: 1.7rem;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0;
}

.listino-card-accent h3 {
    color: #ffffff;
}

.listino-items {
    display: grid;
    gap: 0;
}

.listino-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.listino-card-accent .listino-item {
    border-bottom-color: #222222;
}

.listino-item:last-child {
    border-bottom: none;
}

.listino-service {
    font-size: 0.95rem;
    color: #000000;
    font-weight: 400;
}

.listino-card-accent .listino-service {
    color: #cccccc;
}

.listino-price {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
    font-size: 1rem;
}

.listino-card-accent .listino-price {
    color: #ffffff;
}

.listino-note {
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid #000000;
    background: #ffffff;
    border-radius: 0;
    color: #555555;
    font-size: 0.88rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 4.5rem 0 1.5rem;
    border-top: 1px solid #222222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #222222;
}

.footer-brand h3,
.footer-column h4 {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.85rem;
}

.footer-brand p,
.footer-column p,
.footer-bottom p {
    color: #888888;
    line-height: 1.75;
    font-size: 0.9rem;
}

.footer-logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 1px solid #333333;
    filter: grayscale(100%);
}

.footer-column a {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 1.4rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* ─── CAROUSEL ARROWS (legacy) ───────────────────────────── */

.carousel-arrow {
    width: 52px;
    height: 52px;
    border-radius: 0;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    font-size: 1.8rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.carousel-arrow:hover {
    background: #000000;
    color: #ffffff;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.6rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: 1px solid #000000;
    padding: 0;
    background: transparent;
    transition: background 0.2s ease;
    cursor: pointer;
}

.carousel-dot.is-active,
.carousel-dot:hover {
    background: #000000;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .navbar-collapse {
        margin-top: 0.5rem;
        padding: 0;
        background: #000000;
        border-top: 1px solid #333333;
        border-bottom: 1px solid #333333;
        overflow: hidden;
    }

    .navbar-nav {
        width: 100%;
        align-items: center;
        background: transparent;
    }

    .navbar-nav .nav-item,
    .navbar-nav > li {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item + .nav-item,
    .navbar-nav > li + li {
        border-top: 1px solid #222222;
    }

    .navbar-nav .nav-link {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        padding: 1rem 1rem;
        color: #ffffff !important;
        font-size: 0.78rem;
        letter-spacing: 0.22rem;
        text-transform: uppercase;
        border-bottom: none;
    }

    .navbar-nav .nav-link:hover {
        color: #ffffff !important;
        background: #111111;
    }

    .section-gallery {
        padding: 5rem 0;
    }

    .gallery-card img {
        height: 360px;
    }

    .section-orari {
        padding: 5rem 0;
    }

    .orari-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .section-listino {
        padding: 5rem 0;
    }

    .listino-grid {
        grid-template-columns: 1fr;
        border: 1px solid #000000;
    }

    .listino-card {
        border-right: none;
        border-bottom: 1px solid #000000;
    }

    .listino-card:last-child {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .reviews-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .reviews-image {
        min-height: 280px;
        height: 280px;
    }

    .reviews-content {
        border-left: none;
        border-top: 4px solid #ffffff;
    }

    .reviews-content-inner {
        padding: 2.5rem 1.5rem;
    }

    .reviews-slider {
        min-height: auto;
    }

    .review-text {
        font-size: 1.05rem;
    }

    .carousel-arrow {
        display: none;
    }

    .gallery-arrow {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero {
        overflow: hidden;
    }

    .hero-content {
        padding: 3.5rem 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4rem);
        letter-spacing: -0.02em;
        overflow-wrap: anywhere;
    }

    .header-info .container {
        justify-content: center !important;
        gap: 1.2rem;
    }

    .topbar-location-full {
        display: none;
    }

    .topbar-location-mobile {
        display: inline;
    }

    .orari-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .orario-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 0.9rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-card img {
        height: 300px;
    }

    .orari-grid {
        grid-template-columns: 1fr;
    }

    .orario-card {
        min-height: 54px;
        border-right: none;
    }
}

@media (max-width: 991.98px) {
    .gallery-slide {
        flex: 0 0 260px;
        min-width: 260px;
    }
}

@media (max-width: 767.98px) {
    .gallery-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .gallery-carousel-track {
        gap: 0;
    }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .hero-subtitle,
    .hero-title,
    .hero-description,
    .hero .btn,
    .section-chi-siamo .col-lg-6:first-child,
    .section-chi-siamo .col-lg-6:last-child,
    .chi-siamo-card,
    .review-card {
        animation: none !important;
        transition: none !important;
    }
}
