/* ── KORAL · stile condiviso pagine progetto ── */
/* base + nav + footer estratti da livorno.html per restare coerenti */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --coral: #FF6B5A; --coral-light: #FF8A7D; --coral-deep: #E84D3D;
  --coral-glow: #FF9E94; --coral-soft: #FFEAE7;
  --cream: #FFF8F6; --warm-white: #FFFAF9;
  --charcoal: #1A1A1A; --slate: #4B5563; --mist: #F0ECEA;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  color: var(--charcoal); background: var(--warm-white);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px; background: rgba(255,248,246,0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,107,90,0.06); transition: all 0.4s ease; }
.navbar.scrolled { padding: 14px 48px; box-shadow: 0 4px 30px rgba(255,107,90,0.06); }
.navbar-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-svg { transition: transform 0.3s ease; }
.nav-logo:hover .nav-logo-svg { transform: rotate(-2deg) scale(1.04); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--slate); font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-cta { background: var(--coral) !important; color: #fff !important; padding: 10px 26px; border-radius: 50px; font-weight: 600 !important; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.nav-cta:hover { background: var(--coral-deep) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,90,0.3); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 6px 0; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(255,248,246,0.97); backdrop-filter: blur(30px); z-index: 999; flex-direction: column; justify-content: center; align-items: center; gap: 28px; opacity: 0; transition: opacity 0.4s; }
.mobile-menu.active { display: flex; opacity: 1; }
.mobile-menu a { text-decoration: none; font-size: 28px; font-weight: 600; color: var(--charcoal); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .nav-cta { font-size: 16px; padding: 16px 40px; margin-top: 16px; }


/* FOOTER */
footer { padding: 60px 48px 28px; background: var(--charcoal); color: rgba(255,255,255,0.45); }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer-legal { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.3); }
.footer-col h5 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--coral-glow); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 12px; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--coral-glow); }
.powered { display: flex; align-items: center; gap: 6px; font-size: 12px; }

/* RESPONSIVE */
@media (max-width:1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width:768px) {
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  footer { padding: 44px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── NAV: auto-hide allo scroll (riappare risalendo) + menu a 7 voci ── */
.navbar {
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease,
              background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.navbar.nav-hidden { transform: translateY(-105%); }
.nav-links { gap: 24px; }
@media (max-width: 1180px) {
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 13px; }
}
/* con 7 voci il menu desktop non ci sta sotto i 1000px: si passa all'hamburger */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}
/* ...e a quella larghezza il menu mobile non sta più centrato in verticale */
@media (max-width: 1000px) {
  .mobile-menu {
    justify-content: flex-start; gap: 18px;
    padding: 92px 24px 48px; overflow-y: auto;
  }
  .mobile-menu a { font-size: 22px; }
  .mobile-menu .nav-cta { margin-top: 8px; }
}

.nav-divider { width: 1px; height: 16px; background: currentColor; opacity: 0.16; flex: none; }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  width: 12px; height: 12px;
  transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 13px !important;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-dropdown-menu a:hover {
  background: var(--coral-soft) !important;
  color: var(--coral-deep) !important;
}
.nav-dropdown-menu .dd-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  flex-shrink: 0;
}
.nav-dropdown-menu .dd-icon svg { width: 14px; height: 14px; color: var(--coral); }
.nav-dropdown-menu .dd-sep {
  height: 1px;
  background: var(--mist);
  margin: 4px 8px;
}
.mobile-dropdown { width: auto; text-align: center; }
.mobile-dropdown-trigger {
  font-size: 28px; font-weight: 600; color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: color 0.3s; background: none; border: none; text-decoration: none;
}
.mobile-dropdown-trigger:hover { color: var(--coral); }
.mobile-dropdown-trigger svg {
  width: 16px; height: 16px; transition: transform 0.3s;
}
.mobile-dropdown.active .mobile-dropdown-trigger svg {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0; display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.7); border-radius: 14px; padding: 0 12px;
  margin-top: 0;
}
.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 400px; opacity: 1; padding: 12px; margin-top: 12px;
}
.mobile-dropdown-menu a {
  font-size: 18px !important; font-weight: 500 !important;
  display: flex !important; align-items: center; gap: 12px;
  padding: 10px 16px; border-radius: 10px;
  text-decoration: none; color: var(--charcoal); transition: all 0.2s;
}
.mobile-dropdown-menu a:hover {
  background: var(--coral-soft); color: var(--coral-deep);
}
.mobile-dropdown-menu .dd-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mobile-dropdown-menu .dd-icon svg { width: 16px; height: 16px; color: var(--coral); }
.mobile-dropdown-menu .dd-sep {
  height: 1px; background: var(--mist); margin: 4px 8px;
}
.nav-cta {
  background: var(--coral) !important; color: #fff !important;
  padding: 10px 26px; border-radius: 50px; font-weight: 600 !important;
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--coral-deep) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,90,0.3); }
.nav-cta-wa svg { width: 16px; height: 16px; }

.mobile-menu-divider { width: 72px; height: 1px; background: currentColor; opacity: 0.16; }

/* ══════════════════════════════════════════════════
   PAGINE PROGETTO
   ══════════════════════════════════════════════════ */

/* Breadcrumb visibile: serve alle persone e rafforza la gerarchia dell'entità */
.proj-crumbs { padding: 108px 48px 0; }
.proj-crumbs ol { max-width: 900px; margin: 0 auto; list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); }
.proj-crumbs a { text-decoration: none; color: var(--slate); transition: color 0.3s; }
.proj-crumbs a:hover { color: var(--coral); }
.proj-crumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: 0.4; }
.proj-crumbs li[aria-current] { color: var(--charcoal); font-weight: 600; }

/* HERO */
.proj-hero { padding: 32px 48px 56px; position: relative; overflow: hidden; }
.proj-hero-orb { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(110px); opacity: 0.38; background: var(--coral-soft); top: -160px; right: -140px; pointer-events: none; }
.proj-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.proj-tag { display: inline-block; background: var(--coral-soft); color: var(--coral-deep); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 8px 20px; border-radius: 50px; margin-bottom: 22px; }
.proj-hero h1 { font-family: 'Instrument Serif', serif; font-size: clamp(34px, 5vw, 56px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.proj-hero h1 em { color: var(--coral); font-style: italic; }
.proj-lede { font-size: 19px; line-height: 1.7; color: var(--slate); max-width: 720px; }

/* SCHEDA FATTI: il blocco più estraibile della pagina */
.proj-facts { padding: 0 48px 56px; }
.proj-facts-inner { max-width: 900px; margin: 0 auto; background: var(--cream); border: 1px solid var(--mist); border-radius: 20px; padding: 32px 36px; }
.proj-facts h2 { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 22px; }
.proj-facts dl { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px 32px; margin: 0; }
.proj-facts dt { font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--slate); margin-bottom: 5px; }
.proj-facts dd { font-size: 16px; font-weight: 500; color: var(--charcoal); line-height: 1.5; }
.proj-facts dd a { color: var(--coral-deep); text-decoration: none; font-weight: 600; }
.proj-facts dd a:hover { text-decoration: underline; }

/* CORPO: problema → intervento → risultato */
.proj-body { padding: 0 48px 56px; }
.proj-body-inner { max-width: 720px; margin: 0 auto; }
.proj-body section + section { margin-top: 40px; }
.proj-body h2 { font-family: 'Instrument Serif', serif; font-size: clamp(26px, 3.2vw, 34px); font-weight: 400; margin-bottom: 16px; }
.proj-body h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; }
.proj-body p { font-size: 17px; line-height: 1.75; color: var(--slate); margin-bottom: 14px; }
.proj-body ul { margin: 0 0 14px 20px; }
.proj-body li { font-size: 17px; line-height: 1.75; color: var(--slate); margin-bottom: 7px; }
.proj-body strong { color: var(--charcoal); font-weight: 600; }

/* Numeri consegnati: fatti citabili, non aggettivi */
.proj-numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 28px 0; }
.proj-number { background: #fff; border: 1px solid var(--mist); border-radius: 16px; padding: 22px 20px; text-align: center; }
.proj-number b { display: block; font-family: 'Instrument Serif', serif; font-size: 38px; font-weight: 400; color: var(--coral); line-height: 1; margin-bottom: 8px; }
.proj-number span { font-size: 13px; color: var(--slate); line-height: 1.4; }

/* GALLERIA */
.proj-gallery { padding: 0 48px 56px; }
.proj-gallery-inner { max-width: 1080px; margin: 0 auto; }
.proj-gallery h2 { font-family: 'Instrument Serif', serif; font-size: clamp(26px, 3.2vw, 34px); font-weight: 400; margin-bottom: 24px; text-align: center; }
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.proj-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 14px; background: var(--mist); cursor: zoom-in; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.proj-grid img:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,0.12); }

/* Anteprima sito */
.proj-shot { max-width: 1080px; margin: 0 auto 56px; padding: 0 48px; }
.proj-shot img { width: 100%; border-radius: 18px; border: 1px solid var(--mist); box-shadow: 0 18px 50px rgba(0,0,0,0.09); display: block; }

/* LIGHTBOX */
.lb { position: fixed; inset: 0; background: rgba(15,12,12,0.94); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 32px; }
.lb.active { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer; transition: background 0.25s; }
.lb-close:hover { background: rgba(255,255,255,0.26); }

/* FAQ specifiche del progetto */
.proj-faq { padding: 0 48px 56px; }
.proj-faq-inner { max-width: 720px; margin: 0 auto; }
.proj-faq h2 { font-family: 'Instrument Serif', serif; font-size: clamp(26px, 3.2vw, 34px); font-weight: 400; margin-bottom: 24px; }
.proj-faq details { border-bottom: 1px solid var(--mist); padding: 18px 0; }
.proj-faq summary { font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.proj-faq summary::-webkit-details-marker { display: none; }
.proj-faq summary::after { content: '+'; color: var(--coral); font-size: 22px; flex-shrink: 0; transition: transform 0.25s; }
.proj-faq details[open] summary::after { transform: rotate(45deg); }
.proj-faq details p { font-size: 16px; line-height: 1.7; color: var(--slate); margin-top: 12px; }

/* ALTRI PROGETTI */
.proj-more { padding: 0 48px 56px; }
.proj-more-inner { max-width: 1080px; margin: 0 auto; }
.proj-more h2 { font-family: 'Instrument Serif', serif; font-size: clamp(24px, 3vw, 30px); font-weight: 400; margin-bottom: 22px; }
.proj-more-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.proj-card { display: block; background: #fff; border: 1px solid var(--mist); border-radius: 16px; overflow: hidden; text-decoration: none; transition: all 0.3s ease; }
.proj-card .pc-body { padding: 22px 24px 24px; }

/* Anteprima: stesso trattamento della griglia in home. L'iframe gira a 1280x800
   e viene rimpicciolito via transform, così il sito si vede animato dal vivo. */
.pc-shot { position: relative; width: 100%; padding-top: 62.5%; overflow: hidden; background: #1a1a1a; border-bottom: 1px solid var(--mist); }
.pc-shot iframe { position: absolute; top: 0; left: 0; width: 1280px; height: 800px; transform-origin: top left; border: none; pointer-events: none; }
.pc-shot img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.proj-card:hover .pc-shot img { transform: scale(1.03); }
.pc-shot img { transition: transform 0.5s ease; }
.proj-card:hover { border-color: var(--coral); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255,107,90,0.14); }
.proj-card .pc-body .pc-type { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 8px; }
.proj-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.proj-card p { font-size: 14px; line-height: 1.6; color: var(--slate); }

/* CTA */
.proj-cta { padding: 0 48px 80px; }
.proj-cta-card { max-width: 900px; margin: 0 auto; background: var(--charcoal); color: #fff; border-radius: 24px; padding: 56px 48px; text-align: center; }
.proj-cta-card h2 { font-family: 'Instrument Serif', serif; font-size: clamp(28px, 3.6vw, 38px); font-weight: 400; margin-bottom: 14px; }
.proj-cta-card p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 28px; }
.proj-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--coral); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,90,0.3); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid rgba(255,255,255,0.22); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* HUB /progetti/ */
.hub-hero { padding: 32px 48px 48px; text-align: center; position: relative; overflow: hidden; }
.hub-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hub-hero h1 { font-family: 'Instrument Serif', serif; font-size: clamp(36px, 5.2vw, 58px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.hub-hero h1 em { color: var(--coral); font-style: italic; }
.hub-hero p { font-size: 18px; line-height: 1.7; color: var(--slate); }
.hub-list { padding: 0 48px 72px; }
.hub-list-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

@media (max-width:768px) {
  .proj-crumbs { padding: 96px 20px 0; }
  .proj-hero, .proj-facts, .proj-body, .proj-gallery, .proj-shot,
  .proj-faq, .proj-more, .proj-cta, .hub-hero, .hub-list { padding-left: 20px; padding-right: 20px; }
  .proj-facts-inner { padding: 26px 22px; }
  .proj-cta-card { padding: 44px 26px; }
  .proj-grid img { height: 230px; }
}
@media (max-width:480px) {
  .proj-hero h1 { font-size: 30px; }
  .proj-cta-row { flex-direction: column; }
  .proj-cta-row a { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════
   PAGINE SERVIZIO (pillar)
   ══════════════════════════════════════════════════ */
.srv-hero { padding: 32px 48px 52px; position: relative; overflow: hidden; }
.srv-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.srv-hero h1 { font-family: 'Instrument Serif', serif; font-size: clamp(34px, 5vw, 56px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.srv-hero h1 em { color: var(--coral); font-style: italic; }
.srv-lede { font-size: 19px; line-height: 1.7; color: var(--slate); }

/* Indice: su una pagina lunga serve a orientarsi, e dice a colpo d'occhio cosa c'è dentro */
.srv-toc { padding: 0 48px 48px; }
.srv-toc-inner { max-width: 820px; margin: 0 auto; background: var(--cream); border: 1px solid var(--mist); border-radius: 18px; padding: 24px 28px; }
.srv-toc h2 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 14px; }
.srv-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.srv-toc li { font-size: 15px; line-height: 1.6; margin-bottom: 7px; break-inside: avoid; }
.srv-toc a { color: var(--slate); text-decoration: none; }
.srv-toc a:hover { color: var(--coral-deep); text-decoration: underline; }

.srv-body { padding: 0 48px 40px; }
.srv-body-inner { max-width: 760px; margin: 0 auto; }
.srv-section { scroll-margin-top: 96px; }
.srv-section + .srv-section { margin-top: 44px; }
.srv-section h2 { font-family: 'Instrument Serif', serif; font-size: clamp(26px, 3.4vw, 36px); font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.srv-section p { font-size: 17px; line-height: 1.8; color: var(--slate); margin-bottom: 14px; }
.srv-section strong { color: var(--charcoal); font-weight: 600; }
.srv-section ul { list-style: none; margin: 18px 0 0; }
.srv-section ul li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.7; color: var(--slate); margin-bottom: 11px; }
.srv-section ul li::before { content: ''; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.srv-section ul li strong { color: var(--charcoal); }

@media (max-width:768px) {
  .srv-hero, .srv-toc, .srv-body { padding-left: 20px; padding-right: 20px; }
  .srv-toc-inner { padding: 20px 20px; }
  .srv-toc ol { columns: 1; }
  .srv-hero h1 { font-size: 30px; }
}

/* ── Footer: pulsante WhatsApp e riquadro mappa, allineati alla home ── */
.footer-col a.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff !important;
  padding: 9px 14px !important; border-radius: 24px;
  font-size: 13px !important; font-weight: 600;
  margin-bottom: 10px; transition: all 0.25s;
}
.footer-col a.footer-wa svg { width: 14px; height: 14px; }
.footer-col a.footer-wa:hover { background: var(--coral-deep); color: #fff !important; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,107,90,0.3); }

.footer-map {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 32px; align-items: stretch;
  margin: 0 0 44px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-map-info { display: flex; flex-direction: column; justify-content: center; }
.footer-map-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--coral-glow); margin-bottom: 10px;
}
.footer-map-info h4 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 26px; line-height: 1.15; color: #fff; margin-bottom: 12px;
}
.footer-map-info h4 span { color: rgba(255,255,255,0.5); font-size: 18px; }
.footer-map-info p {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.footer-map-cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: var(--coral); color: #fff !important;
  padding: 10px 18px !important; border-radius: 50px;
  font-size: 13px !important; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
}
.footer-map-cta svg { width: 14px; height: 14px; }
.footer-map-cta:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,90,0.3); }
.footer-map-frame {
  position: relative;
  border-radius: 14px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 220px;
}
.footer-map-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) brightness(1.08) contrast(0.92);
  pointer-events: none;
}
.footer-map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  color: var(--coral);
  width: 38px; height: 38px;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(255,107,90,0.45));
  z-index: 2;
}
.footer-map-pin svg { width: 100%; height: 100%; display: block; }
