@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300;1,600&family=Inter:wght@400;600&display=swap');

/* ─── Variables ─── */
:root {
  --red:        #8c1623;
  --gold:       #c9a55a;
  --dark:       #0f0f0f;
  --gray-mid:   #6b6b6b;
  --gray-light: #e8e6e3;
  --border:     #e8e5e3;
  --deep-red:   #660a12;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: var(--dark); background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 80px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.navbar--inner { height: 88px; }

.navbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__logo { display: flex; flex-direction: column; gap: 2px; }
.navbar__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 3.3px;
  white-space: nowrap;
}
.navbar__logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1.04px;
}
.navbar__logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar__logos-divider {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gray-light);
  flex-shrink: 0;
}
.navbar__logo-main { height: 58px; width: auto; object-fit: contain; }
.navbar__logo-partner { height: 38px; width: auto; object-fit: contain; }

.navbar__links {
  display: flex;
  gap: 48px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--dark);
}
.navbar__links a:hover { color: var(--red); transition: color 0.2s; }
.navbar__links a.active { color: var(--red); }

/* ─── Navbar Dropdown ─── */
.navbar__item {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar__item--has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.navbar__item--has-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.navbar__item:hover > a::after { transform: rotate(180deg); }
.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--dark);
  border: 1px solid rgba(201, 165, 90, 0.22);
  min-width: 240px;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 200;
}
.navbar__item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.navbar__dropdown-link {
  display: block;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(232, 230, 227, 0.7);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 165, 90, 0.1);
  transition: color 0.18s, padding-left 0.18s;
}
.navbar__dropdown-link:last-child { border-bottom: none; }
.navbar__dropdown-link:hover { color: var(--gold); padding-left: 30px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: #0f0f0f;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 72%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.hero__cards {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.hero__card {
  position: relative;
  width: 400px;
  height: 280px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  border-right: 1px solid var(--border);
  padding: 25px 48px 32px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.25s;
}
.hero__card:last-child { border-right: none; }
.hero__card:hover { background: #faf9f8; }

.hero__card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.hero__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--gold);
  letter-spacing: 2.4px;
  line-height: 1.2;
  margin-top: 0;
  flex: 1;
}
.hero__card-desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.62;
  margin-bottom: auto;
}
.hero__card-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.72px;
  margin-top: 16px;
}

/* ─── Separatore Ristorazione ─── */
.ristorazione__sep {
  position: relative;
  background: var(--deep-red);
  margin: 56px -80px 64px;
  padding: 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}
.ristorazione__sep::before,
.ristorazione__sep::after {
  content: '';
  position: absolute;
  left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
}
.ristorazione__sep::before { top: 16px; }
.ristorazione__sep::after  { bottom: 16px; }

.ristorazione__sep-row {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
}
.ristorazione__sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,165,90,0.6) 100%);
}
.ristorazione__sep-line:last-child {
  background: linear-gradient(90deg, rgba(201,165,90,0.6) 0%, transparent 100%);
}
.ristorazione__sep-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ristorazione__sep-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.ristorazione__sep-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 10px;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(90deg, #a87830 0%, #f0d898 30%, #c9a55a 50%, #f0d898 70%, #a87830 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.ristorazione__sep-sub {
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(201,165,90,0.45);
  font-weight: 600;
}

/* ─── Chi Siamo ─── */
.chi-siamo {
  display: flex;
  height: 704px;
  overflow: hidden;
}

.chi-siamo__left {
  position: relative;
  width: 600px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
}
.chi-siamo__bar {
  position: absolute;
  left: 64px;
  top: 270px;
  width: 3px;
  height: 100px;
  background: var(--gold);
}
.chi-siamo__quote {
  position: absolute;
  left: 84px;
  top: 280px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  color: var(--red);
  line-height: 1.45;
  width: 192px;
}

.chi-siamo__right {
  flex: 1;
  background: #fff;
  padding: 90px 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.chi-siamo__label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.98px;
}
.chi-siamo__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.chi-siamo__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  color: var(--red);
  line-height: 1.12;
}
.chi-siamo__text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 640px;
}

/* ─── Contatti ─── */
.contatti {
  display: flex;
  height: 820px;
  overflow: hidden;
}

.contatti__form-col {
  width: 720px;
  flex-shrink: 0;
  background: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contatti__label {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1.98px;
}
.contatti__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 48px;
  color: var(--red);
  line-height: 1.12;
}
.contatti__sub {
  font-size: 14px;
  color: var(--gray-mid);
}

.form-row { display: flex; gap: 16px; }

.form-field {
  flex: 1;
  height: 52px;
  border: 1px solid var(--gray-light);
  border-radius: 1px;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.form-field:focus { border-color: var(--gold); }
.form-field::placeholder { color: #b3b3b3; }

.form-field--wide { width: 100%; }
.form-field--textarea {
  height: 120px;
  padding: 16px 20px;
  resize: none;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  height: 52px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 1px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #a31b2b; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.form-feedback--success {
  display: block;
  background: #f0faf0;
  border: 1px solid #4caf50;
  color: #256b25;
}
.form-feedback--error {
  display: block;
  background: #fdf2f2;
  border: 1px solid #e57373;
  color: #8c1623;
}

.form-legal {
  font-size: 11px;
  color: #a6a6a6;
  line-height: 1.6;
}

.contatti__info-col {
  flex: 1;
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.contatti__map {
  height: 320px;
  background: linear-gradient(135deg, #660a14, #8c1724, #590a12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contatti__map-label {
  position: absolute;
  left: 40px;
  top: 148px;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2.4px;
}
.contatti__office {
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contatti__office-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  color: #fff;
}
.contatti__info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contatti__info-key {
  width: 80px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.1px;
  padding-top: 2px;
  flex-shrink: 0;
}
.contatti__info-val {
  font-size: 14px;
  color: #fff;
  line-height: 1.55;
}
.contatti__info-val--gold { color: var(--gold); }

/* ─── Footer ─── */
.footer { background: var(--dark); }

.footer__main {
  background: var(--red);
  display: flex;
  justify-content: space-between;
  padding: 80px;
}

.footer__brand { width: 300px; display: flex; flex-direction: column; gap: 20px; }
.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2.8px;
}
.footer__brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}
.footer__brand-divider { width: 36px; height: 1px; background: var(--gold); }
.footer__brand-desc { font-size: 13px; color: var(--gold); line-height: 1.68; }

.footer__col { width: 180px; display: flex; flex-direction: column; gap: 16px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.32px;
}
.footer__col-divider { width: 24px; height: 1px; background: var(--gold); }
.footer__col-link {
  font-size: 13px;
  color: var(--gold);
  transition: opacity 0.2s;
}
.footer__col-link:hover { opacity: 0.75; }
.footer__col-address { font-size: 13px; color: var(--gold); line-height: 1.68; }

.footer__legal {
  background: var(--deep-red);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 56px;
  font-size: 11px;
}
.footer__legal-copy { color: rgba(255,255,255,0.5); }
.footer__legal-links { display: flex; gap: 32px; }
.footer__legal-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.9); }

/* ─── Category Header ─── */
.cat-header {
  height: 260px;
  background: var(--red);
  padding: 80px;
  position: relative;
}
.cat-header__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.cat-header__breadcrumb a { color: rgba(255,255,255,0.6); }
.cat-header__breadcrumb a:hover { color: #fff; }
.cat-header__divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 12px; }
.cat-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 56px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
}
.cat-header__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
}

/* ─── Listings Grid ─── */
.listings {
  background: #fff;
  padding: 64px 80px 80px;
}
.listings__row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.listings__row:last-child { margin-bottom: 0; }

/* ─── Property Card ─── */
.prop-card {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.prop-card:hover .prop-card__title { color: var(--red); }

.prop-card__image {
  position: relative;
  height: 240px;
  background: linear-gradient(160deg, #1a1210, #2a1e18, #1a1210);
  overflow: hidden;
  border-radius: 0;
}
.prop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
}
.prop-card__badge span {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.2px;
}
.prop-card__price {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
}

.prop-card__body {
  padding: 20px 20px 20px;
  border: 1px solid var(--gray-light);
  border-top: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prop-card__district {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}
.prop-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.prop-card__divider { height: 1px; background: var(--gray-light); margin-bottom: 12px; }
.prop-card__meta {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.prop-card__cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.72px;
  margin-top: auto;
}

/* ─── Property Detail ─── */
.detail-hero {
  height: 560px;
  background: linear-gradient(160deg, #1a1210, #2a1e18, #1a1210);
  position: relative;
  overflow: hidden;
}
.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}
.detail-hero__counter {
  position: absolute;
  bottom: 28px; right: 80px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.32px;
}

/* ─── Photo Slider (hero replacement) ─── */
.detail-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #1a1210;
}
.detail-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.detail-slider__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.detail-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 2px;
  transition: background 0.2s;
}
.detail-slider__btn:hover { background: rgba(0,0,0,0.7); }
.detail-slider__btn--prev { left: 32px; }
.detail-slider__btn--next { right: 32px; }
.detail-slider__counter {
  position: absolute;
  bottom: 28px;
  right: 80px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.32px;
  pointer-events: none;
}
.detail-slider__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  pointer-events: none;
}
.detail-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s;
}
.detail-slider__dot--active { background: #fff; }

/* Remaining photos grid below description */
.detail-photos--wrap {
  flex-wrap: wrap;
  gap: 8px;
}
.detail-photos--wrap .detail-photo {
  width: calc(33.333% - 6px);
  height: 180px;
}

/* Inline description sub-headings */
.detail-desc-section { display: flex; flex-direction: column; gap: 8px; }
.detail-desc-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--dark);
  margin-top: 8px;
}
.detail-desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-desc-list li {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}
.detail-desc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.detail-content {
  display: flex;
  gap: 80px;
  padding: 64px 80px 80px;
  background: #fff;
}

.detail-left { flex: 1; display: flex; flex-direction: column; gap: 28px; }

.detail-back {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.48px;
}
.detail-back:hover { opacity: 0.75; }

.detail-catrow { display: flex; gap: 16px; align-items: center; }
.detail-badge {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 2px;
}
.detail-location { font-size: 13px; color: var(--gray-mid); }

.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 64px;
  color: var(--red);
  line-height: 1.02;
  text-transform: lowercase;
}

.detail-stats { display: flex; gap: 40px; }
.detail-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--red);
  margin-bottom: 4px;
}
.detail-stat-key {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 0.88px;
}

.detail-divider { height: 1px; background: var(--gray-light); }

.detail-desc-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--dark);
}
.detail-desc-text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
}

.detail-photos { display: flex; gap: 8px; }
.detail-photo {
  width: 243px;
  height: 160px;
  background: #1f1714;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Detail Right Card */
.detail-right-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: flex-start;
  position: sticky;
  top: 108px;
}
.detail-card-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.54px;
}
.detail-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 36px;
  color: #fff;
}
.detail-card-divider { height: 1px; background: rgba(255,255,255,0.2); }
.detail-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.62;
}
.detail-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--gold);
  border-radius: 1px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.78px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.detail-card-cta:hover { opacity: 0.85; }

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

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  user-select: none;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  z-index: 1001;
  transition: opacity 0.2s;
  padding: 4px;
}
.lightbox__close:hover { opacity: 1; }

.lightbox__btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 18px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  border-radius: 2px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.18); }
.lightbox__btn--prev { left: 20px; }
.lightbox__btn--next { right: 20px; }

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.32px;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .lightbox__btn--prev { left: 8px; }
  .lightbox__btn--next { right: 8px; }
  .lightbox__close { top: 14px; right: 16px; font-size: 26px; }
}

/* ─── Hamburger (mobile) ─── */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   RESPONSIVE
   1. Large (≥ 1440px)
   2. Desktop (1280px – 1439px)
   3. Tablet landscape (1025px – 1279px)
   4. Tablet portrait (768px – 1024px)
   5. Mobile (≤ 767px)
   6. Small mobile (≤ 390px)
════════════════════════════════════════════ */

/* ── 1. Large screens ≥ 1440px ── */
@media (min-width: 1440px) {
  .navbar { padding: 0 120px; }

  .hero { height: 960px; }
  .hero__card { width: 420px; padding: 28px 56px 36px; }
  .hero__card-title { font-size: 34px; }

  .chi-siamo__left { width: 680px; }
  .chi-siamo__right { padding: 100px 120px; }
  .chi-siamo__heading { font-size: 60px; }
  .chi-siamo__text { font-size: 16px; }

  .contatti__form-col { width: 760px; padding: 110px 100px; }
  .contatti__heading { font-size: 54px; }

  .footer__main { padding: 100px 120px; }
  .footer__legal { padding: 0 120px; }

  .cat-header { padding: 90px 120px; height: 300px; }
  .cat-header__title { font-size: 68px; }

  .filters { padding: 16px 120px; }
  .listings { padding: 80px 120px; }
  .listings__row { gap: 40px; }
  .prop-card { width: calc((100% - 80px) / 3); }
  .ristorazione__sep { margin: 56px -120px 64px; padding: 48px 120px; }
  .ristorazione__sep::before,
  .ristorazione__sep::after { left: 120px; right: 120px; }

  .detail-content { padding: 80px 120px; gap: 100px; }
  .detail-title { font-size: 72px; }
}

/* ── 2. Desktop stretto (1280px – 1439px) ── */
@media (max-width: 1439px) and (min-width: 1280px) {
  .navbar { padding: 0 80px; }
  .hero__card { width: 400px; }
  .listings__row { gap: 28px; }
  .prop-card { width: calc((100% - 56px) / 3); }
}

/* ── 3. Tablet landscape (1025px – 1279px) ── */
@media (max-width: 1279px) and (min-width: 1025px) {
  .navbar { padding: 0 48px; }
  .navbar__logo-name { font-size: 19px; letter-spacing: 2.5px; }
  .navbar__logo-main { height: 50px; }
  .navbar__logo-partner { height: 32px; }
  .navbar__links { gap: 32px; font-size: 13px; }

  .hero__cards { gap: 24px; }
  .hero__card { width: calc((100% - 48px) / 3); padding: 22px 32px 28px; }
  .hero__card-title { font-size: 26px; }

  .chi-siamo__left { width: 440px; }
  .chi-siamo__bar { left: 48px; }
  .chi-siamo__quote { left: 68px; font-size: 21px; }
  .chi-siamo__right { padding: 72px 64px; }
  .chi-siamo__heading { font-size: 44px; }

  .contatti__form-col { width: 600px; padding: 80px 48px; }
  .contatti__heading { font-size: 40px; }
  .contatti__office { padding: 32px 48px; }

  .footer__main { padding: 64px 48px; gap: 32px; }
  .footer__brand { width: 240px; }
  .footer__col { width: 150px; }
  .footer__legal { padding: 0 48px; }

  .cat-header { padding: 64px 48px; height: 240px; }
  .cat-header__title { font-size: 48px; }

  .filters { padding: 16px 48px; }
  .listings { padding: 56px 48px; }
  .listings__row { gap: 24px; }
  .prop-card { width: calc((100% - 48px) / 3); flex-shrink: 1; }

  .detail-content { padding: 56px 48px; gap: 48px; }
  .detail-title { font-size: 52px; }
  .detail-right-card { width: 280px; }
  .detail-slider { height: 420px; }
  .ristorazione__sep { margin: 40px -48px 52px; padding: 40px 48px; }
  .ristorazione__sep::before,
  .ristorazione__sep::after { left: 40px; right: 40px; }
}

/* ── 4. Tablet portrait (768px – 1024px) ── */
@media (max-width: 1024px) and (min-width: 768px) {
  /* Navbar */
  .navbar { padding: 0 40px; height: 80px; }
  .navbar--inner { height: 72px; }
  .navbar__logo-name { font-size: 17px; letter-spacing: 2px; }
  .navbar__logo-sub { font-size: 11px; }
  .navbar__logos { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .navbar--inner .navbar__links { top: 72px; }
  .navbar__links.open { display: flex; }
  .navbar__links a { padding: 14px 40px; font-size: 13px; }
  .navbar__links .navbar__lang {
    padding: 14px 40px;
    font-size: 13px;
    border: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    letter-spacing: 1.4px;
  }
  .navbar { position: sticky; top: 0; }
  .navbar__item { flex-direction: column; align-items: flex-start; width: 100%; padding: 0; }
  .navbar__item--has-dropdown > a::after { display: none; }
  .navbar__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(201,165,90,0.35);
    margin: 0 0 6px 40px;
    min-width: unset;
    transition: none;
  }
  .navbar__item:hover .navbar__dropdown { transform: none; }
  .navbar__links .navbar__dropdown-link {
    padding: 9px 16px;
    font-size: 12px;
    color: rgba(15,15,15,0.55);
    border-bottom: none;
    letter-spacing: 1.5px;
    transition: color 0.18s;
  }
  .navbar__links .navbar__dropdown-link:hover { color: var(--red); padding-left: 16px; }

  /* Hero: foto Venezia + 2-col grid su iPad */
  .hero {
    height: auto;
    overflow: hidden;
    padding: 60px 40px 56px;
    background-image: url('https://images.unsplash.com/photo-1520175480921-4edfa2983e0f?w=2048&q=85&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
  }
  .hero__video { display: none; }
  .hero__overlay { display: block; }
  .hero::before { display: none; }
  .hero__cards {
    position: relative;
    top: auto; transform: none;
    left: auto; right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: transparent;
    padding: 0;
  }
  .hero__card {
    width: 100%;
    height: auto;
    min-height: 210px;
    padding: 22px 28px 26px;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    background: #fff;
  }
  .hero__card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin: 0 auto;
    border-top: none;
  }
  .hero__card-title { font-size: 24px; flex: none; margin-bottom: 10px; }
  .hero__card-desc { margin-bottom: 0; }

  /* Chi Siamo: side by side but smaller */
  .chi-siamo { height: auto; overflow: visible; }
  .chi-siamo__left { width: 320px; min-height: 420px; }
  .chi-siamo__bar { left: 40px; top: 180px; height: 80px; }
  .chi-siamo__quote { left: 60px; top: 188px; font-size: 18px; width: 220px; }
  .chi-siamo__right { padding: 60px 48px; gap: 24px; }
  .chi-siamo__heading { font-size: 38px; }
  .chi-siamo__text { font-size: 14px; max-width: 100%; }

  /* Contatti: stack */
  .contatti { flex-direction: column; height: auto; }
  .contatti__form-col { width: 100%; padding: 72px 40px; }
  .contatti__heading { font-size: 40px; }
  .contatti__info-col { width: 100%; }
  .contatti__map { height: 280px; }
  .contatti__map-label { top: 120px; font-size: 17px; }
  .contatti__office { padding: 36px 40px; gap: 20px; }
  .form-row { gap: 12px; }

  /* Footer: brand full + 3 col uguali */
  .footer__main {
    padding: 56px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col { width: auto; }
  .footer__legal { padding: 0 40px; flex-direction: row; height: 56px; }
  .footer__legal-copy { font-size: 10px; }

  /* Category header */
  .cat-header { height: auto; padding: 56px 40px; }
  .cat-header__title { font-size: 44px; }
  .cat-header__sub { font-size: 14px; }

  /* Listings: sempre 2 per riga — grid sul container, rows trasparenti */
  .listings {
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .listings__row {
    display: contents;
  }
  .prop-card { width: 100%; }
  .listings__row .prop-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }
  .ristorazione__sep { grid-column: 1 / -1; }

  /* Property detail */
  .detail-hero { height: 400px; }
  .detail-content { flex-direction: column; padding: 48px 40px; gap: 40px; }
  .detail-title { font-size: 48px; }
  .detail-right-card { width: 100%; position: static; }
  .detail-stats { gap: 24px; flex-wrap: wrap; }
  .detail-photos { flex-wrap: wrap; }
  .detail-photo { width: calc(50% - 4px); height: 140px; }
  .detail-slider { height: 380px; }
  .ristorazione__sep { margin: 36px -40px 48px; padding: 40px 40px; }
  .ristorazione__sep::before,
  .ristorazione__sep::after { left: 32px; right: 32px; }
}

/* ── 5. Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  /* Navbar */
  .navbar {
    height: 68px;
    padding: 0 24px;
    position: sticky;
    top: 0;
  }
  .navbar--inner { height: 64px; }
  .navbar__logo-name { font-size: 16px; letter-spacing: 2px; }
  .navbar__logo-sub { font-size: 11px; }
  .navbar__logos { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .navbar--inner .navbar__links { top: 64px; }
  .navbar__links.open { display: flex; }
  .navbar__links a { padding: 14px 24px; font-size: 13px; }
  .navbar__links .navbar__lang {
    padding: 14px 24px;
    font-size: 13px;
    border: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    letter-spacing: 1.4px;
  }
  .navbar__item { flex-direction: column; align-items: flex-start; width: 100%; padding: 0; }
  .navbar__item--has-dropdown > a::after { display: none; }
  .navbar__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(201,165,90,0.35);
    margin: 0 0 6px 24px;
    min-width: unset;
    transition: none;
  }
  .navbar__item:hover .navbar__dropdown { transform: none; }
  .navbar__links .navbar__dropdown-link {
    padding: 9px 14px;
    font-size: 11px;
    color: rgba(15,15,15,0.55);
    border-bottom: none;
    letter-spacing: 1.5px;
    transition: color 0.18s;
  }
  .navbar__links .navbar__dropdown-link:hover { color: var(--red); padding-left: 14px; }

  /* Hero: stack verticale con foto Venezia da Unsplash */
  .hero {
    height: auto;
    overflow: hidden;
    padding: 32px 20px 28px;
    background-image: url('https://images.unsplash.com/photo-1520175480921-4edfa2983e0f?w=828&q=85&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
  }
  .hero__video { display: none; }
  .hero__overlay { display: block; }
  .hero::before { display: none; }
  .hero__cards {
    position: relative;
    top: auto; transform: none;
    left: auto; right: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
    padding: 0;
  }
  .hero__card {
    width: 100%;
    height: auto;
    padding: 20px 22px 22px;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.28);
    background: #fff;
  }
  .hero__card-title { font-size: 22px; flex: none; margin-bottom: 8px; }
  .hero__card-desc { font-size: 13px; margin-bottom: 0; }

  /* Chi Siamo: stacked */
  .chi-siamo { flex-direction: column; height: auto; overflow: visible; }
  .chi-siamo__left { width: 100%; min-height: 180px; position: relative; }
  .chi-siamo__bar { left: 24px; top: 48px; height: 70px; }
  .chi-siamo__quote { left: 44px; top: 52px; font-size: 18px; width: calc(100% - 68px); }
  .chi-siamo__right { padding: 48px 24px; gap: 20px; }
  .chi-siamo__heading { font-size: 34px; }
  .chi-siamo__text { font-size: 14px; max-width: 100%; }

  /* Contatti */
  .contatti { flex-direction: column; height: auto; }
  .contatti__form-col { width: 100%; padding: 56px 24px; gap: 20px; }
  .contatti__heading { font-size: 34px; }
  .contatti__label { font-size: 10px; }
  .form-row { flex-direction: column; gap: 12px; }
  .contatti__info-col { width: 100%; }
  .contatti__map { height: 220px; }
  .contatti__map-label { left: 24px; top: 88px; font-size: 14px; letter-spacing: 1.5px; }
  .contatti__office { padding: 32px 24px; gap: 20px; }
  .contatti__office-title { font-size: 22px; }

  /* Footer */
  .footer__main { flex-direction: column; padding: 48px 24px; gap: 36px; }
  .footer__brand { width: 100%; }
  .footer__brand-name { font-size: 16px; letter-spacing: 2px; }
  .footer__col { width: 100%; }
  .footer__legal {
    flex-direction: column;
    height: auto;
    padding: 20px 24px;
    gap: 12px;
    text-align: center;
  }
  .footer__legal-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* Category header */
  .cat-header { height: auto; padding: 48px 24px; }
  .cat-header__breadcrumb { margin-bottom: 20px; }
  .cat-header__title { font-size: 36px; }
  .cat-header__sub { font-size: 13px; max-width: 100%; }

  /* Listings: 1 col */
  .listings { padding: 36px 24px; }
  .listings__row { flex-direction: column; gap: 20px; margin-bottom: 20px; }
  .prop-card { width: 100%; }
  .prop-card__image { height: 200px; }

  /* Property detail */
  .detail-hero { height: 260px; }
  .detail-hero__counter { right: 24px; bottom: 16px; }
  .detail-content { flex-direction: column; padding: 36px 24px; gap: 32px; }
  .detail-title { font-size: 36px; }
  .detail-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .detail-stat-val { font-size: 18px; }
  .detail-right-card { width: 100%; position: static; }
  .detail-photos { flex-direction: column; gap: 8px; }
  .detail-photo { width: 100%; height: 180px; }
  .detail-photos--wrap .detail-photo { width: 100%; height: 200px; }
  .detail-desc-title { font-size: 22px; }
  /* Detail slider */
  .detail-slider { height: 260px; }
  .detail-slider__counter { right: 16px; bottom: 12px; }
  .detail-slider__btn { width: 40px; height: 40px; font-size: 16px; }
  .detail-slider__btn--prev { left: 10px; }
  .detail-slider__btn--next { right: 10px; }
  /* Ristorazione separator */
  .ristorazione__sep { margin: 28px -24px 36px; padding: 36px 24px; }
  .ristorazione__sep::before,
  .ristorazione__sep::after { left: 16px; right: 16px; }
  .ristorazione__sep-label { font-size: 26px; letter-spacing: 4px; }
  .ristorazione__sep-sub { font-size: 9px; letter-spacing: 3px; }
}

/* ── 6. Small mobile (≤ 390px) ── */
@media (max-width: 390px) {
  .navbar { padding: 0 16px; }
  .navbar__logo-name { font-size: 14px; letter-spacing: 1.5px; }

  .hero { padding: 24px 16px 22px; }
  .hero__card { padding: 18px 18px 20px; }
  .hero__card-title { font-size: 20px; }

  .chi-siamo__right { padding: 40px 20px; }
  .chi-siamo__heading { font-size: 30px; }

  .contatti__form-col { padding: 48px 20px; }
  .contatti__heading { font-size: 30px; }

  .footer__main { padding: 40px 20px; }
  .footer__legal { padding: 16px 20px; }

  .cat-header { padding: 40px 20px; }
  .cat-header__title { font-size: 30px; }

  .listings { padding: 28px 20px; }
  .detail-content { padding: 28px 20px; }
  .detail-title { font-size: 30px; }
  .detail-slider { height: 210px; }
  .ristorazione__sep { margin: 20px -20px 28px; padding: 28px 20px; }
  .ristorazione__sep::before,
  .ristorazione__sep::after { left: 12px; right: 12px; }
  .ristorazione__sep-label { font-size: 20px; letter-spacing: 3px; }
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 500;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 680px;
}
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__accept {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.72px;
  cursor: pointer;
  border-radius: 1px;
  transition: opacity 0.2s;
}
.cookie-banner__accept:hover { opacity: 0.85; }
.cookie-banner__decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  cursor: pointer;
  border-radius: 1px;
  transition: color 0.2s;
}
.cookie-banner__decline:hover { color: #fff; }

/* ─── Scroll to Top ─── */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  font-size: 18px;
  line-height: 1;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--deep-red); }

/* ─── Language Toggle ─── */
.navbar__lang {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.96px;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.navbar__lang:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Language visibility ─── */
html[lang="en"] .t-it { display: none !important; }
html[lang="it"] .t-en { display: none !important; }

/* ─── Filter Bar ─── */
.filters {
  background: #faf9f8;
  border-bottom: 1px solid var(--border);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filters__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 1.1px;
  flex-shrink: 0;
}
.filters__select {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 1px;
  padding: 0 36px 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--dark);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236b6b6b' d='M5 6L0 0h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 160px;
}
.filters__select:focus { outline: none; border-color: var(--gold); }
.filters__reset {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--red);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.48px;
  margin-left: auto;
}
.filters__reset:hover { opacity: 0.75; }
.prop-card.hidden { display: none !important; }
.listings__row.row-empty { display: none; }

/* ─── Google Maps iframe ─── */
.contatti__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contatti__map-label {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  padding: 10px 40px;
}

/* ─── Responsive additions ─── */
@media (max-width: 1024px) and (min-width: 768px) {
  .cookie-banner { padding: 20px 40px; }
  .filters {
    padding: 14px 40px;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
  }
  .filters__label { display: none; }
  .filters__select { flex: 1; min-width: 0; height: 42px; }
  .filters__reset { flex-shrink: 0; margin-left: 8px; }
  .scroll-top { bottom: 28px; right: 28px; }
  .contatti__map-label { padding: 10px 40px; }
}
@media (max-width: 767px) {
  .cookie-banner { flex-direction: column; padding: 20px 24px; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__accept,
  .cookie-banner__decline { flex: 1; text-align: center; }
  /* Filters: 2-col grid, labels nascosti */
  .filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 20px;
  }
  .filters__label { display: none; }
  .filters__select { width: 100%; min-width: unset; height: 44px; }
  .filters__select:last-of-type:nth-of-type(n+3) { grid-column: 1 / -1; }
  .filters__reset { grid-column: 1 / -1; margin-left: 0; text-align: center; padding-top: 6px; font-size: 13px; }
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 16px; }
  .navbar__lang { padding: 5px 10px; font-size: 11px; }
  .contatti__map-label { padding: 10px 24px; font-size: 12px; }
}
