/* ============================================================
   MAT Immobiliare — style.css
   Foglio di stile unificato — tutte le pagine
============================================================ */

/* ═══════════════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:        #1A2332;
  --navy-light:  #243044;
  --navy-deep:   #111827;
  --gold:        #C9A97A;
  --gold-light:  #DFC49A;
  --gold-dark:   #A8865A;
  --gold-subtle: rgba(201,169,122,.12);
  --white-warm:  #F5F0EB;
  --page-bg:     #F8F9FA;
  --white:       #FFFFFF;
  --text-dark:   #1F2937;
  --text-mid:    #4B5563;
  --text-light:  #9CA3AF;
  --border:      #E5E7EB;
  --border-dark: rgba(255,255,255,.1);
  --shadow-s:    0 2px 8px rgba(0,0,0,.07);
  --shadow-m:    0 8px 24px rgba(0,0,0,.11);
  --shadow-l:    0 20px 60px rgba(0,0,0,.16);
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --r:  3px;
  --rl: 6px;
  --nav-h: 76px;
}

/* ═══════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--page-bg); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; }

/* ═══════════════════════════════════════════════
   3. NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  opacity: .3;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mat {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
}
.logo-sep {
  width: 1px;
  height: 24px;
  background: var(--gold-dark);
  opacity: .45;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.logo-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: .5px;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-warm);
  opacity: .75;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--r);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(201,169,122,.35);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,169,122,.5);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s;
}
.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.nav-mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,169,122,.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .3s ease, opacity .3s ease;
}

.nav-mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 901px) {
  .nav-mobile-menu {
    display: none !important;
  }
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-warm);
  opacity: .75;
  transition: opacity .2s, color .2s;
  display: block;
  padding: 8px 0;
}
.nav-mobile-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-mobile-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--r);
  text-align: center;
  transition: background .2s;
}
.nav-mobile-cta:hover {
  background: var(--gold-light);
}

/* ═══════════════════════════════════════════════
   4. BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--r);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(201,169,122,.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,122,.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white-warm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,122,.05);
}
.btn-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 48px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(201,169,122,.35);
  white-space: nowrap;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,169,122,.45);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--r);
  white-space: nowrap;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-contact {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(201,169,122,.35);
  text-decoration: none;
}
.btn-contact:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,169,122,.45); }

/* ═══════════════════════════════════════════════
   5. PAGE HERO
═══════════════════════════════════════════════ */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--navy);
  padding: 64px 60px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(36,48,68,.5) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,122,.07);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.hero-ring-deco {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,122,.12);
  right: 80px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.hero-ring-deco-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,122,.05);
  right: -80px; top: 50%; transform: translateY(-50%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--white-warm);
  opacity: .45;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { transition: color .2s, opacity .2s; }
.breadcrumb a:hover { opacity: 1; color: var(--gold); }
.breadcrumb span { opacity: .4; }
.page-hero-overline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-overline::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-dark); }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  color: var(--white-warm);
  line-height: 1.15;
  max-width: 600px;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-subtitle {
  margin-top: 18px;
  font-size: 16px;
  color: var(--white-warm);
  opacity: .55;
  max-width: 520px;
  line-height: 1.7;
}
/* Alternative page hero heading style (dove-siamo, servizi) */
.page-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-overline::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: .6; }
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white-warm);
  margin-bottom: 16px;
}
.page-h1 em { font-style: italic; color: var(--gold-light); }
.page-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-warm);
  opacity: .6;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════
   6. SECTION COMMON
═══════════════════════════════════════════════ */
.section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-full { padding: 100px 60px; }
.section-overline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-overline::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-title em { color: var(--navy); font-style: italic; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-header-text {}
.section-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
  white-space: nowrap;
}
.section-link:hover { color: var(--gold); gap: 12px; }
.section-link::after { content: '→'; }
.section-intro {
  text-align: center;
  margin-bottom: 64px;
}

/* ═══════════════════════════════════════════════
   7. PROPERTY CARDS
═══════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: box-shadow .35s ease, transform .35s ease;
  cursor: pointer;
  display: block;
}
.card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-6px);
}
.card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
}
.card-img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gold);
  opacity: .12;
}
.card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--r);
}
.badge-vendita { background: var(--navy); color: var(--gold); }
.badge-affitto { background: var(--gold); color: var(--navy); }
.badge-new {
  background: var(--gold); color: var(--navy);
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r);
}
.card-new { position: absolute; top: 14px; left: 14px; }
.card-energy {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}
.energy-a { background: #2d7d0a; }
.energy-b { background: #5a9e0f; }
.energy-c { background: #97be0d; color: #1a2332; }
.energy-d { background: #f4d03f; color: #1a2332; }
.energy-e { background: #f0952a; }
.energy-f { background: #e05c1a; }
.energy-g { background: #c0392b; }
.card-body { padding: 24px; }
.card-zone-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.card-zone {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.card-ref {
  font-size: 10px; font-weight: 500; letter-spacing: .5px;
  color: var(--text-light);
}
.card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}
.card-specs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 12px;
  border-right: 1px solid var(--border);
  margin-right: 12px;
}
.spec:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.spec-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
.spec-key {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price-wrap {}
.card-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.card-price-note {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.card-arrow {
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 16px;
  transition: all .25s ease;
  flex-shrink: 0;
}
.card:hover .card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════════
   8. INDEX HOMEPAGE
═══════════════════════════════════════════════ */
.hero {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(36,48,68,.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,169,122,.04) 0%, transparent 60%);
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,122,.08);
  pointer-events: none;
}
.hero-ring-1 { width: 600px; height: 600px; right: -100px; top: 50%; transform: translateY(-50%); }
.hero-ring-2 { width: 900px; height: 900px; right: -260px; top: 50%; transform: translateY(-50%); border-color: rgba(201,169,122,.04); }
.hero-ring-3 { width: 300px; height: 300px; right: 100px; top: 50%; transform: translateY(-50%); border-color: rgba(201,169,122,.12); }
.hero-photo-side {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--navy-light) 0%, #0e1520 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-icon { font-size: 64px; opacity: .08; color: var(--gold); transform: translateX(5%); }
.hero-photo-label {
  position: absolute;
  bottom: 40px; left: 15%;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: .4;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 640px;
}
.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero-overline::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold); opacity: .6;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 600; line-height: 1.1;
  color: var(--white-warm); margin-bottom: 20px;
  animation: fadeUp .8s .1s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-accent-line {
  width: 3px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-bottom: 24px;
  animation: scaleY .6s .3s ease both;
  transform-origin: top;
}
.hero-sub {
  font-size: 16px; line-height: 1.75;
  color: var(--white-warm); opacity: .65;
  max-width: 440px; margin-bottom: 40px;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .8s .35s ease both;
}
.hero-stats {
  display: flex; gap: 48px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .8s .5s ease both;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-warm); opacity: .5; margin-top: 4px;
}

/* Search bar */
.search-wrap {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-l);
  position: relative;
  z-index: 10;
}
.search-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 28px 60px;
  display: flex; gap: 16px; align-items: flex-end;
}
.search-field {
  flex: 1; display: flex; flex-direction: column; gap: 7px; min-width: 0;
}
.search-field label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light);
}
.search-select {
  font-family: var(--sans); font-size: 14px; color: var(--text-dark);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 11px 14px; background: var(--white);
  appearance: none; outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.search-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,122,.15);
}
.search-btn {
  background: var(--navy); color: var(--white-warm);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 44px; border-radius: var(--r);
  white-space: nowrap; transition: background .2s, transform .15s; flex-shrink: 0;
}
.search-btn:hover { background: var(--navy-light); transform: translateY(-1px); }

.search-toggle {
  display: none;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 24px 0 24px;
  transition: background .2s, transform .2s;
}
.search-toggle:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.search-toggle.active {
  background: var(--navy);
  color: var(--gold);
}
.search-toggle.active:hover {
  background: var(--navy-light);
  color: var(--gold);
}
.search-toggle svg {
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.search-toggle.active svg {
  transform: rotate(180deg);
}

.search-accordion {
  max-height: 100%;
  overflow: hidden;
  transition: max-height .3s ease;
}
.search-accordion.collapsed {
  max-height: 0;
}

/* Zones */
.zones-bg { background: var(--navy-deep); }
.zones-inner { max-width: 1400px; margin: 0 auto; padding: 100px 60px; }
.zones-header { margin-bottom: 48px; }
.zones-header .section-overline { color: var(--gold); }
.zones-header .section-title { color: var(--white-warm); }
.zones-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4px;
  border-radius: var(--rl);
  overflow: hidden;
}
.zone-card {
  position: relative;
  aspect-ratio: unset;
  min-height: 360px;
  background: var(--navy-light);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.zone-venezia   { background-image: url('../img/foto-zone/venezia.png'); }
.zone-provincia { background-image: url('../img/foto-zone/provincia-ve.png'); }
.zone-altre     { background-image: url('../img/foto-zone/altre%20province.png'); }
.zone-mare      { background-image: url('../img/foto-zone/mare-montagna.png'); }
.zone-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,22,.9) 30%, rgba(10,14,22,.4) 70%);
  transition: opacity .3s;
}
.zone-card:hover .zone-card-overlay { opacity: .7; }
.zone-card-inner { position: relative; z-index: 2; padding: 32px; width: 100%; }
.zone-card-label {
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); opacity: .8; margin-bottom: 8px; display: block;
}
.zone-card-name {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  color: var(--white-warm); line-height: 1.15; margin-bottom: 12px;
}
.zone-card:first-child .zone-card-name { font-size: 36px; }
.zone-card-count {
  font-size: 12px; color: var(--white-warm); opacity: .5;
  display: flex; align-items: center; gap: 6px;
}
.zone-card-arrow {
  display: inline-flex;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,122,.3);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px;
  margin-top: 16px;
  transition: background .25s, border-color .25s, transform .25s;
}
.zone-card:hover .zone-card-arrow {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy); transform: translateX(3px);
}
.zone-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,122,.06);
  pointer-events: none;
}

/* Why us */
.why-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-inner { max-width: 1400px; margin: 0 auto; padding: 100px 60px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.why-item {
  padding: 48px; border-right: 1px solid var(--border); text-align: center;
}
.why-item:last-child { border-right: none; }
.why-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold-subtle);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px; color: var(--gold-dark);
  border: 1.5px solid rgba(201,169,122,.25);
}
.why-num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.why-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 20px;
}
.why-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px;
}
.why-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%; border: 1px solid rgba(201,169,122,.06);
}
.cta-banner::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%; border: 1px solid rgba(201,169,122,.03);
}
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-overline {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; color: var(--white-warm); line-height: 1.2; margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 15px; color: var(--white-warm); opacity: .6;
  line-height: 1.7; margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   9. LISTA IMMOBILI
═══════════════════════════════════════════════ */
.page-header {
  margin-top: var(--nav-h);
  background: var(--navy);
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,122,.2), transparent);
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600; color: var(--white-warm); margin-bottom: 8px;
}
.page-header-sub { font-size: 14px; color: var(--white-warm); opacity: .5; }
.page-header-filters { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.filter-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,169,122,.15);
  border: 1px solid rgba(201,169,122,.3);
  color: var(--gold-light);
  font-size: 11px; font-weight: 500; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 99px;
}
.filter-tag-remove {
  opacity: .6; cursor: pointer; font-size: 13px; line-height: 1;
  margin-left: 2px; transition: opacity .2s;
}
.filter-tag-remove:hover { opacity: 1; }

.listing-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  max-height: calc(100vh - var(--nav-h) - 48px);
  background: var(--white);
  border-radius: var(--rl);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sidebar-body {
  flex: 1; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
}
.sidebar-body::-webkit-scrollbar { width: 4px; }
.sidebar-body::-webkit-scrollbar-track { background: transparent; }
.sidebar-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.sidebar-body::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.sidebar-header {
  background: var(--navy); padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.sidebar-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
}
.sidebar-reset {
  font-size: 11px; color: var(--white-warm); opacity: .45;
  cursor: pointer; transition: opacity .2s;
  background: none; border: none; font-family: var(--sans); letter-spacing: .5px;
}
.sidebar-reset:hover { opacity: .8; }
.sidebar-close {
  display: none;
}
.sidebar-footer-mobile {
  display: none;
}
.filter-group { padding: 22px 24px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 14px; display: block;
}
.toggle-wrap {
  display: flex; background: var(--page-bg);
  border-radius: var(--r); padding: 3px; gap: 3px;
}
.toggle-btn {
  flex: 1; text-align: center; padding: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  border-radius: 2px; cursor: pointer;
  transition: background .2s, color .2s;
  color: var(--text-mid); background: none; border: none;
}
.toggle-btn.active { background: var(--navy); color: var(--gold); box-shadow: var(--shadow-s); }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.check-box {
  width: 18px; height: 18px; border: 1.5px solid var(--border);
  border-radius: 3px; flex-shrink: 0; position: relative;
  transition: border-color .2s, background .2s; background: var(--white);
}
.check-item input[type="checkbox"] { display: none; }
.check-item input[type="checkbox"]:checked + .check-box { background: var(--navy); border-color: var(--navy); }
.check-item input[type="checkbox"]:checked + .check-box::after {
  content: ''; position: absolute; top: 2px; left: 5px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
.check-text { font-size: 13px; color: var(--text-dark); }
.check-count { font-size: 12px; color: var(--text-light); margin-left: auto; }
.filter-select {
  width: 100%; font-family: var(--sans); font-size: 13px; color: var(--text-dark);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 10px 32px 10px 12px; background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  cursor: pointer; outline: none; transition: border-color .2s;
}
.filter-select:focus { border-color: var(--gold); }
.range-row { display: flex; gap: 8px; align-items: center; }
.range-sep { color: var(--text-light); font-size: 13px; flex-shrink: 0; }
.range-input {
  flex: 1; font-family: var(--sans); font-size: 13px; color: var(--text-dark);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 9px 10px; outline: none; transition: border-color .2s; min-width: 0;
}
.range-input:focus { border-color: var(--gold); }
.range-input::placeholder { color: var(--text-light); }
.rif-wrap { display: flex; gap: 6px; }
.rif-wrap .filter-select { flex: 1; min-width: 0; }
.rif-btn {
  background: var(--navy); color: var(--gold);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0 12px; border: none; cursor: pointer;
  border-radius: 4px; transition: background .2s; white-space: nowrap;
}
.rif-btn:hover { background: var(--navy-light); }
.main-content {}
.sidebar-toggle-wrapper {
  display: none;
  margin-bottom: 0;
  padding: 0 60px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.sidebar-toggle {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--r);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s, transform .2s;
}
.sidebar-toggle:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.sidebar-toggle svg {
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.sidebar-toggle.active {
  background: var(--navy);
  color: var(--gold);
}
.sidebar-toggle.active:hover {
  background: var(--navy-light);
}
.sidebar-toggle.active svg {
  transform: rotate(180deg);
}
.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.results-count { font-size: 14px; color: var(--text-mid); }
.results-count strong { color: var(--text-dark); font-weight: 600; }
.sort-right { display: flex; align-items: center; gap: 16px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; background: var(--white); color: var(--text-light);
  transition: border-color .2s, color .2s, background .2s;
}
.view-btn.active { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.sort-label { font-size: 12px; color: var(--text-light); white-space: nowrap; }
.sort-select {
  font-family: var(--sans); font-size: 13px; color: var(--text-dark);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 8px 32px 8px 12px; background: var(--white); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  cursor: pointer; outline: none; transition: border-color .2s;
}
.sort-select:focus { border-color: var(--gold); }
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.page-btn {
  width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  cursor: pointer; background: var(--white); transition: all .2s; font-family: var(--sans);
}
.page-btn:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--gold); font-weight: 700; }
.page-btn.arrow { font-size: 16px; }
.page-dots { color: var(--text-light); padding: 0 4px; }

/* ═══════════════════════════════════════════════
   10. DETTAGLIO IMMOBILE
═══════════════════════════════════════════════ */
.page-intro {
  margin-top: var(--nav-h);
  background: var(--navy);
  padding: 24px 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* Gallery */
.gallery-wrap { background: var(--navy-deep); padding: 0; }
.gallery-main {
  position: relative; width: 100%; aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.gallery-main-ph { font-size: 72px; color: var(--gold); opacity: .07; }
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-badge {
  position: absolute; top: 28px; left: 28px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r);
  background: var(--navy); color: var(--gold);
}
.gallery-counter {
  position: absolute; bottom: 24px; right: 24px;
  background: rgba(10,14,22,.75); color: var(--white-warm);
  font-size: 12px; font-weight: 500; padding: 8px 16px;
  border-radius: var(--r); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: background .2s;
  display: flex; align-items: center; gap: 8px;
}
.gallery-counter:hover { background: rgba(10,14,22,.9); }
.gallery-share {
  position: absolute; top: 24px; right: 76px;
  background: rgba(10,14,22,.65); color: var(--white-warm);
  font-size: 18px; width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1);
}
.gallery-share svg { width: 18px; height: 18px; }
.gallery-share:hover { background: var(--gold); color: var(--navy); }
.gallery-thumbs {
  display: flex; gap: 4px; background: var(--navy-deep);
  padding: 4px; overflow-x: auto;
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }
.gallery-thumb {
  flex: 0 0 96px; width: 96px; height: 96px; aspect-ratio: 1 / 1;
  background: var(--navy-light); cursor: pointer; position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: opacity .2s; min-width: 80px;
}
.gallery-thumb:hover { opacity: .85; }
.gallery-thumb.active::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold); pointer-events: none;
}
.gallery-thumb-ph { font-size: 20px; color: var(--gold); opacity: .15; }
.gallery-thumb-more {
  position: absolute; inset: 0;
  background: rgba(10,14,22,.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--white-warm); letter-spacing: 1px;
}
/* Detail layout */
.detail-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 56px 60px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
.detail-main {}
.detail-zone-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.share-btn {
  margin-left: auto; display: flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 99px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-mid); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-subtle); }
.share-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.share-wrap { position: relative; margin-left: auto; }
.share-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 190px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--rl);
  box-shadow: var(--shadow-m); overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s; z-index: 200;
}
.share-dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.share-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: 13px; color: var(--text-mid);
  cursor: pointer; transition: background .15s, color .15s;
  border: none; background: none; width: 100%; text-align: left;
}
.share-option:hover { background: var(--gold-subtle); color: var(--gold-dark); }
.share-option svg { width: 15px; height: 15px; flex-shrink: 0; }
.share-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--navy); color: var(--white);
  padding: 10px 22px; border-radius: 99px;
  font-size: 13px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; z-index: 9999; white-space: nowrap;
}
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.detail-zone {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dark);
}
.detail-type-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  background: var(--gold-subtle); color: var(--gold-dark);
  border: 1px solid rgba(201,169,122,.25);
}
.detail-avail-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  background: rgba(45,125,10,.1); color: #2d7d0a;
  border: 1px solid rgba(45,125,10,.2);
}
.detail-h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600; line-height: 1.2; color: var(--text-dark); margin-bottom: 32px;
}
.quick-specs {
  display: flex; gap: 0; background: var(--white);
  border-radius: var(--rl); box-shadow: var(--shadow-s);
  margin-bottom: 40px; overflow: hidden; border: 1px solid var(--border);
}
.qs-item {
  flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 5px;
  border-right: 1px solid var(--border);
}
.qs-item:last-child { border-right: none; }
.qs-icon { font-size: 18px; color: var(--gold-dark); margin-bottom: 4px; }
.qs-val { font-size: 18px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.qs-key { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.content-section { margin-bottom: 44px; }
.content-h2 {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.content-h2::before {
  content: ''; display: block; width: 3px; height: 22px;
  background: var(--gold); border-radius: 2px;
}
.detail-desc { font-size: 15px; line-height: 1.85; color: var(--text-mid); }
.detail-desc p + p { margin-top: 16px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; min-height: 56px;
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: border-color .2s, background .2s;
}
.feature-item.active { border-color: rgba(201,169,122,.35); background: var(--gold-subtle); }
.feature-icon { font-size: 18px; color: var(--gold-dark); width: 24px; text-align: center; flex-shrink: 0; font-variant-emoji: text; }
.feature-icon.inactive { color: var(--border); font-variant-emoji: text; }
.feature-label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.feature-label.inactive { color: var(--text-light); }
.tech-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  background: var(--white); border-radius: var(--rl);
  overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-s);
}
.tech-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.tech-row:nth-child(even) { border-right: none; }
.tech-row:nth-last-child(-n+2) { border-bottom: none; }
.tech-key { font-size: 12px; color: var(--text-light); font-weight: 500; }
.tech-val { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.energy-badge-inline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: var(--r);
  font-size: 11px; font-weight: 700; background: #5a9e0f; color: white;
}
/* Sidebar dettaglio */
.detail-sidebar {
  position: sticky; top: calc(var(--nav-h) + 24px);
  display: flex; flex-direction: column; gap: 20px;
}
.price-box {
  background: var(--white); border-radius: var(--rl);
  box-shadow: var(--shadow-m); overflow: hidden; border: 1px solid var(--border);
}
.price-box-header {
  background: var(--navy); padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.price-box-type { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.price-box-ref { font-size: 11px; color: var(--white-warm); opacity: .4; }
.price-box-body { padding: 28px; }
.price-main { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.price-sub { font-size: 12px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
.price-mini-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 24px;
}
.pms {
  background: var(--page-bg); padding: 12px 10px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.pms-val { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.pms-key { font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.price-box-note {
  padding: 16px 28px; background: var(--page-bg); border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-light); line-height: 1.6; text-align: center;
}
.specs-card {
  background: var(--white); border-radius: var(--rl);
  box-shadow: var(--shadow-s); overflow: hidden; border: 1px solid var(--border);
}
.specs-card-header {
  padding: 16px 22px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.specs-card-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); }
.specs-list { padding: 8px 0; }
.spec-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 22px; border-bottom: 1px solid var(--border); transition: background .15s;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--page-bg); }
.spec-row-key { font-size: 12px; color: var(--text-light); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.spec-row-icon { font-size: 14px; width: 18px; text-align: center; }
.spec-row-val { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.energy-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: var(--r);
  font-size: 11px; font-weight: 700; color: white; background: #5a9e0f;
}
.agent-card { background: var(--navy); border-radius: var(--rl); padding: 28px; color: var(--white-warm); }
.agent-card-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.agent-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-light); border: 2px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 14px;
}
.agent-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white-warm); margin-bottom: 4px; }
.agent-title { font-size: 12px; color: var(--white-warm); opacity: .5; margin-bottom: 20px; letter-spacing: .5px; }
.agent-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 20px; }
.agent-contacts { display: flex; flex-direction: column; gap: 10px; }
.agent-contact {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--white-warm); opacity: .7; transition: opacity .2s;
}
.agent-contact:hover { opacity: 1; color: var(--gold); }
.agent-contact-icon { font-size: 14px; width: 18px; text-align: center; color: var(--gold-dark); }
/* Related */
.related-section { background: var(--white); border-top: 1px solid var(--border); padding: 80px 60px; }
.related-inner { max-width: 1400px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ═══════════════════════════════════════════════
   11. AGENZIA
═══════════════════════════════════════════════ */
.chi-siamo { background: var(--white); padding: 96px 60px; }
.chi-siamo-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: flex-start;
}
.chi-desc { font-size: 15px; line-height: 1.85; color: var(--text-mid); }
.chi-desc p + p { margin-top: 16px; }
.chi-values { display: flex; gap: 28px; margin-top: 36px; }
.chi-value { display: flex; flex-direction: column; gap: 6px; }
.chi-value-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; }
.chi-value-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.chi-value-sep { width: 1px; height: 60px; background: var(--border); align-self: center; }
.chi-siamo-photo { position: relative; }
.chi-photo-main {
  position: relative; border-radius: var(--rl); overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
}
.chi-photo-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chi-photo-main-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 56px; color: var(--gold); opacity: .08; }
.chi-photo-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); border-radius: var(--rl);
  padding: 22px 28px; box-shadow: var(--shadow-l);
}
.chi-photo-badge-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1; }
.chi-photo-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white-warm); opacity: .6; margin-top: 4px; }

.valori-section { background: var(--page-bg); padding: 80px 60px; border-top: 1px solid var(--border); }
.valori-inner { max-width: 1400px; margin: 0 auto; }
.valori-header { text-align: center; margin-bottom: 52px; }
.valori-header .section-overline { justify-content: center; }
.valori-header .section-overline::before { display: none; }
.valori-title { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 36px); font-weight: 600; color: var(--text-dark); }
.valori-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.valore-card {
  background: var(--white); border-radius: var(--rl);
  padding: 40px 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow-s); position: relative; overflow: hidden;
  transition: box-shadow .35s, transform .35s;
}
.valore-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.valore-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.valore-card:hover::before { transform: scaleX(1); }
.valore-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.valore-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.valore-desc { font-size: 14px; line-height: 1.75; color: var(--text-mid); }

.team-section { background: var(--navy); padding: 96px 60px; position: relative; overflow: hidden; }
.team-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(201,169,122,.06);
}
.team-section::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(201,169,122,.08);
}
.team-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.team-header { margin-bottom: 48px; }
.team-header .section-overline { color: var(--gold-dark); }
.team-header .section-overline::before { background: var(--gold-dark); }
.team-header .section-title { color: var(--white-warm); }
.team-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; align-items: start; }
.team-card-main {
  background: var(--navy-light); border-radius: var(--rl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.team-card-main-photo {
  position: relative; aspect-ratio: 3 / 4; background: var(--navy-deep); overflow: hidden;
}
.team-card-main-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 48%; }
.team-card-main-photo-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 64px; color: var(--gold); opacity: .06; }
.team-card-main-photo-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 72px; font-weight: 700; color: var(--gold); opacity: .18; }
.team-card-main-body { padding: 32px; }
.team-card-main-role { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.team-card-main-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--white-warm); line-height: 1.2; margin-bottom: 14px; }
.team-card-main-bio { font-size: 13px; line-height: 1.8; color: var(--white-warm); opacity: .6; margin-bottom: 24px; }
.team-card-main-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 22px; }
.team-contacts { display: flex; flex-direction: column; gap: 10px; }
.team-contact { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--white-warm); opacity: .6; transition: opacity .2s, color .2s; }
.team-contact:hover { opacity: 1; color: var(--gold); }
.team-contact-icon { font-size: 14px; width: 18px; text-align: center; color: var(--gold-dark); }
.team-card { background: var(--navy-light); border-radius: var(--rl); padding: 28px; border: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: 16px; }
.team-card-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold-dark); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--gold); }
.team-card-role { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.team-card-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white-warm); line-height: 1.2; }
.team-card-desc { font-size: 12px; line-height: 1.7; color: var(--white-warm); opacity: .5; }
.team-card-lic { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); padding: 7px 14px; border: 1px solid rgba(201,169,122,.25); border-radius: 99px; align-self: flex-start; }

/* Dove siamo (sezione in agenzia.html) */
.dove-siamo { background: var(--white); padding: 96px 60px; border-top: 1px solid var(--border); }
.dove-siamo-inner { max-width: 1400px; margin: 0 auto; }
.dove-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.dove-open-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(45,125,10,.08); border: 1px solid rgba(45,125,10,.18);
  border-radius: 99px; font-size: 11px; font-weight: 600;
  color: #2d7d0a; letter-spacing: .5px;
}
.dove-open-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #2d7d0a; animation: pulse-green 2s infinite;
}
.dove-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.map-placeholder {
  position: relative; aspect-ratio: 4 / 3;
  background: #e8ecf1; border-radius: var(--rl);
  overflow: hidden; border: 1px solid var(--border);
}
.map-road-h { position: absolute; left: 0; right: 0; background: white; opacity: .9; }
.map-road-v { position: absolute; top: 0; bottom: 0; background: white; opacity: .9; }
.map-block { position: absolute; background: #cdd3db; border-radius: 2px; }
.map-pin { position: absolute; transform: translate(-50%, -100%); z-index: 10; display: flex; flex-direction: column; align-items: center; }
.map-pin-dot {
  width: 16px; height: 16px; background: var(--navy);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  border: 2px solid var(--gold); box-shadow: 0 3px 12px rgba(26,35,50,.4);
  animation: pin-bounce 2.5s ease-in-out infinite;
}
.map-pin-shadow { width: 8px; height: 4px; background: rgba(0,0,0,.2); border-radius: 50%; margin: 3px auto 0; }
.map-open-btn {
  position: absolute; top: 16px; right: 16px;
  background: var(--navy); color: var(--gold);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--r);
  border: 1px solid rgba(201,169,122,.3); cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-m);
}
.map-open-btn:hover { background: var(--navy-light); border-color: var(--gold); }
.map-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,35,50,.95) 0%, rgba(26,35,50,.6) 60%, transparent 100%);
  padding: 32px 24px 24px;
}
.map-overlay-address { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--white-warm); margin-bottom: 4px; }
.map-overlay-city { font-size: 12px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.dove-info-stack { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--white); border-radius: var(--rl); border: 1px solid var(--border); box-shadow: var(--shadow-s); overflow: hidden; }
.info-card-header { padding: 16px 24px; background: var(--navy); display: flex; align-items: center; justify-content: space-between; }
.info-card-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.address-body { padding: 22px 24px; }
.address-main { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.address-city { font-size: 13px; color: var(--text-light); }
.orari-body { padding: 8px 0; }
.orari-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--border); transition: background .15s; }
.orari-row:last-child { border-bottom: none; }
.orari-row:hover { background: var(--page-bg); }
.orari-day { font-size: 13px; font-weight: 500; color: var(--text-mid); }
.orari-time { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.orari-time small { font-weight: 400; color: var(--text-light); margin-left: 6px; display: block; font-size: 11px; margin-top: 1px; }
.orari-time.closed { color: var(--text-light); font-weight: 400; font-style: italic; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border); transition: background .15s; cursor: pointer; }
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { background: var(--page-bg); }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-subtle); border: 1px solid rgba(201,169,122,.25); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold-dark); flex-shrink: 0; transition: background .2s, border-color .2s, color .2s; }
.contact-row:hover .contact-icon { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.contact-info { flex: 1; min-width: 0; }
.contact-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.contact-arrow { margin-left: auto; color: var(--text-light); font-size: 14px; transition: color .2s, transform .2s; }
.contact-row:hover .contact-arrow { color: var(--gold-dark); transform: translateX(2px); }

.reach-section { background: var(--page-bg); padding: 72px 60px; border-top: 1px solid var(--border); }
.reach-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }

/* Form contatti */
.form-section { background: var(--navy); padding: 96px 60px; position: relative; overflow: hidden; }
.form-section::before {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(201,169,122,.06);
}
.form-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 80px; position: relative; }
.form-section-overline { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.form-section-overline::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold-dark); }
.form-title { font-family: var(--serif); font-size: clamp(28px, 2.5vw, 38px); font-weight: 600; color: var(--white-warm); line-height: 1.2; margin-bottom: 20px; }
.form-title em { color: var(--gold); font-style: italic; }
.form-subtitle { font-size: 14px; line-height: 1.8; color: var(--white-warm); opacity: .55; margin-bottom: 32px; }
.form-contact-mini { display: flex; flex-direction: column; gap: 12px; }
.form-contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--white-warm); opacity: .65; }
.form-contact-item span:first-child { width: 32px; height: 32px; background: rgba(201,169,122,.12); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-form { background: var(--white); border-radius: var(--rl); padding: 48px; box-shadow: var(--shadow-l); display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); }
.form-input, .form-select, .form-textarea {
  font-family: var(--sans); font-size: 14px; color: var(--text-dark);
  background: var(--page-bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 13px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,122,.12);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 8px; margin-top: 24px; }
.form-privacy { font-size: 12px; color: var(--text-light); line-height: 1.6; max-width: 360px; }
.form-privacy a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   12. DOVE SIAMO (pagina dedicata)
═══════════════════════════════════════════════ */
.info-section { padding: 80px 60px; max-width: 1400px; margin: 0 auto; }
.info-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-left { display: flex; flex-direction: column; gap: 20px; }
.info-right { display: flex; flex-direction: column; gap: 24px; }
.address-card {
  background: var(--navy); border-radius: var(--rl); padding: 36px;
  position: relative; overflow: hidden;
}
.address-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--gold-dark), var(--gold-light)); }
.address-card::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(201,169,122,.08); }
.address-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.address-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); opacity: .5; }
.orari-card { background: var(--white); border-radius: var(--rl); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-s); }
.orari-header { padding: 16px 24px; background: var(--page-bg); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.orari-header-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); }
.orari-header-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); margin-left: auto; }
.contacts-card { background: var(--white); border-radius: var(--rl); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-s); }
.contacts-header { padding: 16px 24px; background: var(--page-bg); border-bottom: 1px solid var(--border); }
.contacts-header-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); }
.reach-card { background: var(--white); border-radius: var(--rl); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-s); }
.reach-header { padding: 16px 24px; background: var(--page-bg); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.reach-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); }
.reach-list { display: flex; flex-direction: column; gap: 0; background: var(--white); border-radius: var(--rl); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-s); }
.reach-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 24px; border-bottom: 1px solid var(--border); transition: background .15s; }
.reach-item:last-child { border-bottom: none; }
.reach-item:hover { background: var(--page-bg); }
.reach-icon { width: 36px; height: 36px; border-radius: var(--r); background: var(--gold-subtle); border: 1px solid rgba(201,169,122,.2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.reach-text {}
.reach-mode { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.reach-detail { font-size: 13px; line-height: 1.6; color: var(--text-mid); }
.reach-detail strong { color: var(--text-dark); font-weight: 600; }

/* ═══════════════════════════════════════════════
   13. SERVIZI
═══════════════════════════════════════════════ */
.services-section { background: var(--page-bg); padding: 96px 60px; }
.services-inner { max-width: 1400px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--rl);
  padding: 40px 36px; box-shadow: var(--shadow-s);
  border: 1px solid var(--border); border-bottom: 3px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { box-shadow: var(--shadow-l); transform: translateY(-4px); border-color: var(--border); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-subtle); border: 1.5px solid rgba(201,169,122,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gold-dark); margin-bottom: 24px;
  transition: background .3s, border-color .3s;
}
.service-card:hover .service-icon-wrap { background: var(--navy); border-color: var(--navy); color: var(--gold); }
.service-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; line-height: 1.25; }
.service-desc { font-size: 14px; line-height: 1.8; color: var(--text-mid); }

.process-section { background: var(--navy); padding: 96px 60px; position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(201,169,122,.05) 0%, transparent 60%); pointer-events: none; }
.process-inner { max-width: 1400px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-overline { color: var(--gold); }
.process-header .section-overline::before, .process-header .section-overline::after { background: var(--gold); }
.process-header .section-title { color: var(--white-warm); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: linear-gradient(to right, var(--gold-dark), rgba(201,169,122,.2)); opacity: .4;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; position: relative; }
.process-num-wrap { position: relative; margin-bottom: 28px; }
.process-num { width: 72px; height: 72px; border-radius: 50%; background: var(--navy-light); border: 1.5px solid rgba(201,169,122,.25); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--gold); position: relative; z-index: 1; transition: background .3s, border-color .3s; }
.process-step:hover .process-num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.process-step-icon { position: absolute; top: -4px; right: -4px; font-size: 16px; background: var(--navy); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(201,169,122,.3); }
.process-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--white-warm); margin-bottom: 10px; }
.process-desc { font-size: 13px; line-height: 1.75; color: var(--white-warm); opacity: .5; }

.cta-strip { background: var(--gold); padding: 64px 60px; }
.cta-strip-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); opacity: .6; margin-bottom: 10px; }
.cta-strip-title { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 34px); font-weight: 600; color: var(--navy); line-height: 1.25; }
.cta-strip-title em { font-style: italic; }

/* ═══════════════════════════════════════════════
   14. FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: var(--white-warm);
  padding: 72px 60px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}
.footer-brand .logo-mat { font-size: 34px; margin-bottom: 6px; }
.footer-brand .logo-sub,
.footer-brand .logo-sub-f { display: block; font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold-light); margin-bottom: 24px; }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 24px; }
.footer-divider { width: 36px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.footer-info { font-size: 13px; line-height: 1.9; opacity: .55; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 13px; color: var(--white-warm); opacity: .55; transition: opacity .2s, color .2s; }
.footer-col ul a:hover { opacity: 1; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: .35; flex-wrap: wrap; gap: 8px; }

/* ═══════════════════════════════════════════════
   15. ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleY {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes navSlideIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes contactPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(201,169,122,.35); }
  50%       { box-shadow: 0 4px 30px rgba(201,169,122,.7), 0 0 0 6px rgba(201,169,122,.1); }
}
@keyframes shimmerSweep {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(500%)  skewX(-18deg); }
}
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes pin-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%       { transform: rotate(-45deg) translateY(-4px); }
}

/* ═══════════════════════════════════════════════
   16. RESPONSIVE
═══════════════════════════════════════════════ */

/* ── max-width: 1200px / 1100px ── */
@media (max-width: 1200px) {
  .navbar { padding: 0 40px; }
  .navbar::after { left: 40px; right: 40px; }
  .footer { padding-left: 40px; padding-right: 40px; }
  .hero-content { padding: 60px 40px; }
  .section, .zones-inner, .why-inner { padding-left: 40px; padding-right: 40px; }
  .search-inner { padding-left: 40px; padding-right: 40px; }
  .cta-banner { padding-left: 40px; padding-right: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  /* Agenzia */
  .page-hero, .chi-siamo, .valori-section, .team-section,
  .dove-siamo, .reach-section, .form-section { padding-left: 40px; padding-right: 40px; }
  .footer-grid { gap: 40px; }
  .chi-siamo-inner { gap: 52px; }
  .team-grid { grid-template-columns: 1.2fr 1fr; }
  .team-grid .team-card:last-child { display: none; }
  .form-inner { grid-template-columns: 300px 1fr; gap: 52px; }
  .reach-inner { gap: 44px; }
  /* Dettaglio */
  .detail-wrap { grid-template-columns: 1fr 340px; gap: 36px; padding: 44px 40px; }
  .page-intro { padding-left: 40px; padding-right: 40px; }
  .related-section { padding: 64px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  /* Lista */
  .listing-wrap { grid-template-columns: 240px 1fr; gap: 28px; padding: 36px 40px; }
  .page-header { padding-left: 40px; padding-right: 40px; }
  /* Servizi */
  .services-section, .process-section, .cta-strip { padding-left: 40px; padding-right: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  /* Dove siamo */
  .info-section { padding: 64px 40px; }
  .info-layout { grid-template-columns: 1fr; }
  .info-right { order: -1; }
  .map-placeholder { aspect-ratio: 16 / 9; }
}

/* ── max-width: 900px ── */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-menu { display: flex; }
  .navbar { padding: 0 24px; }
  .navbar::after { left: 24px; right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Hero */
  .hero { min-height: 70vh; }
  .hero-photo-side { display: none; }
  .hero-stats { display: none; }
  .search-toggle { display: flex; }
  .search-accordion.collapsed { max-height: 0; }
  .search-inner { flex-direction: column; align-items: stretch; }
  .search-btn { width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
  .why-item:last-child { border-bottom: none; }
  /* Agenzia */
  .page-hero, .chi-siamo, .valori-section, .team-section,
  .dove-siamo, .reach-section, .form-section, .footer { padding-left: 24px; padding-right: 24px; }
  .chi-siamo-inner { grid-template-columns: 1fr; gap: 40px; }
  .chi-siamo-photo { order: -1; }
  .chi-photo-main { aspect-ratio: 16/7; }
  .chi-photo-badge { bottom: -16px; left: -8px; }
  .valori-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .dove-grid { grid-template-columns: 1fr; }
  .reach-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .chi-values { flex-wrap: wrap; gap: 20px; }
  /* Dettaglio */
  .detail-wrap { grid-template-columns: 1fr; padding: 32px 24px; }
  .detail-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-intro { padding: 20px 24px; }
  .gallery-main { aspect-ratio: 4/3; }
  /* Lista */
  .listing-wrap { grid-template-columns: 1fr; padding: 28px 24px; }
  .sidebar-toggle-wrapper { display: flex; margin-bottom: 16px; padding: 0 24px; margin-top: 0; margin-bottom: 16px; }
  .sidebar {
    position: fixed !important;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    z-index: 1100;
    border-radius: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility .3s ease, opacity .3s ease;
  }
  .sidebar.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .sidebar.open::before {
    content: '';
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.4);
    z-index: -1;
    pointer-events: auto;
  }
  .sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--white-warm);
    font-size: 20px;
    opacity: 0.6;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s, color 0.2s;
  }
  .sidebar-close:hover {
    opacity: 1;
    color: var(--gold);
  }
  .sidebar-footer-mobile {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
  }
  .btn-apply-filters {
    width: 100%;
    background: var(--navy);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px;
    border-radius: var(--r);
    text-align: center;
    cursor: pointer;
    transition: background .2s, color .2s;
  }
  .btn-apply-filters:hover {
    background: var(--navy-light);
  }
  .filter-label {
    display: none;
  }
  .filter-group {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
  }
  .check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }
  .page-header { padding: 32px 24px; }
  /* Servizi */
  .services-section, .process-section, .cta-strip { padding-left: 24px; padding-right: 24px; }
}

/* ── max-width: 768px / 600px ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  /* Servizi */
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* Dove siamo */
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 24px; }
  .footer { padding: 56px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Hero */
  .hero-content { padding: 48px 24px; }
  .section, .zones-inner, .why-inner { padding: 64px 24px; }
  .section-full, .cta-banner { padding: 64px 24px; }
  .search-inner { padding: 24px; }
  .zones-grid { grid-template-columns: 1fr; }
  .zone-card { min-height: 220px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  /* Agenzia form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; text-align: center; }
  .chi-values { gap: 16px; }
  /* Dettaglio */
  .quick-specs { flex-wrap: wrap; }
  .qs-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-row { border-right: none; }
  .tech-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .tech-row:last-child { border-bottom: none; }
  .related-grid { grid-template-columns: 1fr; }
  .related-section { padding: 56px 24px; }
  /* Lista */
  .sort-bar { flex-direction: column; align-items: flex-start; }
  /* Dove siamo pagina */
  .page-hero { padding-top: 48px; padding-bottom: 56px; }
  .info-section { padding: 48px 24px; }
}

@media (max-width: 540px) {
  .page-hero { padding-left: 24px; padding-right: 24px; padding-top: 48px; padding-bottom: 56px; }
  .form-section { padding-left: 24px; padding-right: 24px; }
  .services-section, .process-section, .cta-strip { padding-left: 24px; padding-right: 24px; }
}

/* ═══════════════════════════════════════════════
   PRINT BUTTON
═══════════════════════════════════════════════ */
.btn-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  background: transparent;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .25s, color .25s, letter-spacing .3s, background .25s;
}
.btn-print:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  letter-spacing: 2.5px;
  background: var(--gold-subtle);
}

/* ═══════════════════════════════════════════════
   PRINT SHEET — nascosto a schermo, visibile solo in stampa
═══════════════════════════════════════════════ */
.print-sheet { display: none; }

@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  /* Nascondi tutto il sito */
  body > *:not(.print-sheet) { display: none !important; }

  .print-sheet {
    display: flex !important;
    flex-direction: column;
    width: 210mm;
    height: 297mm;
    max-height: 297mm;
    overflow: hidden;
    margin: 0; padding: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 9pt;
    color: #1F2937;
    background: #fff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    page-break-inside: avoid;
  }

  .ps-header {
    background: #1A2332 !important;
    padding: 6mm 12mm;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .ps-logo-mat {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20pt; font-weight: 700;
    color: #C9A97A !important;
    letter-spacing: 4px;
  }
  .ps-logo-sep {
    display: inline-block;
    width: 1px; height: 16pt;
    background: #A8865A !important;
    opacity: .5;
    margin: 0 8px;
    vertical-align: middle;
  }
  .ps-logo-sub {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 12pt;
    color: #DFC49A !important;
  }
  .ps-company-info {
    text-align: right;
    font-size: 7pt;
    color: #F5F0EB !important;
    opacity: .8;
    line-height: 1.6;
  }
  .ps-gold-bar {
    height: 3px;
    background: linear-gradient(to right, #A8865A, #C9A97A, #DFC49A) !important;
    flex-shrink: 0;
  }
  .ps-title-block {
    padding: 3.5mm 12mm;
    border-bottom: 1px solid #E5E7EB;
    flex-shrink: 0;
  }
  .ps-ref {
    font-size: 7pt; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: #A8865A !important;
    margin-bottom: 2px;
  }
  .ps-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13pt; font-weight: 600;
    color: #1A2332 !important;
    line-height: 1.2; margin-bottom: 2px;
  }
  .ps-zone {
    font-size: 8pt;
    color: #4B5563 !important;
    letter-spacing: .5px;
  }
  .ps-body {
    padding: 4mm 12mm;
    display: flex;
    gap: 6mm;
    align-items: flex-start;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  .ps-col-left  { flex: 1; min-width: 0; overflow: hidden; }
  .ps-col-right { width: 68mm; flex-shrink: 0; }
  .ps-section-title {
    font-size: 7pt; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #A8865A !important;
    margin-bottom: 3px; padding-bottom: 3px;
    border-bottom: 1.5px solid #C9A97A !important;
  }
  .ps-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3.5mm;
  }
  .ps-data-table tr { border-bottom: 1px solid #F0F0F0; }
  .ps-data-table tr:last-child { border-bottom: none; }
  .ps-data-table td {
    padding: 2pt 0;
    font-size: 8.5pt;
    vertical-align: top;
  }
  .ps-data-table td:first-child { color: #6B7280 !important; width: 42%; font-weight: 500; }
  .ps-data-table td:last-child  { color: #1F2937 !important; font-weight: 600; }
  .ps-energy-badge {
    display: inline-block;
    background: #5a9e0f !important;
    color: white !important;
    font-size: 7.5pt; font-weight: 700;
    padding: 1pt 5pt;
    border-radius: 2px;
  }
  .ps-desc {
    font-size: 8pt;
    line-height: 1.55;
    color: #4B5563 !important;
    margin-bottom: 3.5mm;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .ps-features { display: flex; flex-wrap: wrap; gap: 2pt; }
  .ps-feature-pill {
    font-size: 7pt; font-weight: 600;
    letter-spacing: .5px;
    padding: 1.5pt 6pt;
    border: 1px solid #C9A97A !important;
    border-radius: 99px;
    color: #A8865A !important;
  }
  .ps-price-block {
    background: #1A2332 !important;
    border-radius: 3px;
    padding: 3mm 5mm;
    margin-bottom: 3mm;
  }
  .ps-price-label {
    font-size: 7pt; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: #C9A97A !important;
    margin-bottom: 2px;
  }
  .ps-price-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18pt; font-weight: 700;
    color: #F5F0EB !important;
    line-height: 1;
  }
  .ps-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 3px;
    display: block;
  }
  .ps-footer {
    flex-shrink: 0;
    background: #F8F9FA !important;
    border-top: 1px solid #E5E7EB;
    padding: 3mm 12mm;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ps-footer-text {
    font-size: 7.5pt;
    color: #6B7280 !important;
    line-height: 1.5;
  }
  .ps-footer-text strong { color: #1A2332 !important; }
  .ps-footer-ref {
    font-size: 7.5pt;
    color: #A8865A !important;
    font-weight: 600;
    text-align: right;
    letter-spacing: .5px;
  }
}
