/* ==========================================================================
   La Riviera dei Fiori — Main Stylesheet
   ========================================================================== */

/* --- Reset --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a { color: var(--lrf-mare); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--lrf-tramonto); }

input, textarea, select { font: inherit; }

/* --- Base typography ----------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lrf-ink);
  background: var(--lrf-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--lrf-ink);
  letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-3); }

.mono { font-family: var(--font-mono); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* --- Nav ---------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lrf-white);
  border-bottom: 1px solid var(--lrf-gray-100);
  transition: box-shadow var(--transition-base);
}
.nav.is-scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lrf-ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo:hover { color: var(--lrf-mare); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__link {
  color: var(--lrf-ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}
.nav__link:hover { color: var(--lrf-mare); }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lrf-ink);
  position: relative;
}
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--lrf-ink);
}
.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after  { top:  7px; }

@media (max-width: 768px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--lrf-white);
    border-bottom: 1px solid var(--lrf-gray-100);
    box-shadow: var(--shadow-md);
    padding: var(--space-2) 0;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link {
    padding: var(--space-3) var(--container-pad);
    border-top: 1px solid var(--lrf-gray-100);
  }
}

/* --- Nav (flat-dash variant: nav-inner / nav-logo / nav-links / nav-hamburger) --- */
/* Used by all non-home pages (comuni, servizi, ciclabile, news, satellite) */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lrf-ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo:hover { color: var(--lrf-mare); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--lrf-ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-base);
}
.nav-links a:hover { color: var(--lrf-mare); }

.nav-hamburger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--lrf-ink);
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-hamburger { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--lrf-white);
    border-bottom: 1px solid var(--lrf-gray-100);
    box-shadow: var(--shadow-md);
    padding: var(--space-2) 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li {
    border-top: 1px solid var(--lrf-gray-100);
  }
  .nav-links a {
    display: block;
    padding: var(--space-3) var(--container-pad);
  }
}

/* --- Bottom mobile nav (sticky, mountaking style) ----------------------- */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--lrf-white);
  border-top: 1px solid var(--lrf-gray-100);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 600px;
  margin: 0 auto;
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 2px;
  color: var(--lrf-gray-500);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  transition: color 0.15s;
}
.bottom-nav__item:hover,
.bottom-nav__item.is-active { color: var(--lrf-mare); }
.bottom-nav__icon {
  font-size: 1.35rem;
  line-height: 1;
}
.bottom-nav__label {
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .bottom-nav { display: block; }
  body { padding-bottom: 76px; } /* spazio per bottom nav fisso */
  .footer-gp { margin-bottom: 0; }
}

/* --- CTA emozionali "Sei pronto a muoverti?" ---------------------------- */
.hero__cta-prompt {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: var(--space-5) 0 var(--space-3);
  color: var(--lrf-ink);
}
.hero__ctas--emotive {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lrf-white);
  color: var(--lrf-ink);
  border: 2px solid var(--lrf-mare);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-cta:hover {
  background: var(--lrf-mare);
  color: var(--lrf-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 119, 182, 0.25);
}
.btn-cta--pedala { border-color: var(--lrf-pino); }
.btn-cta--pedala:hover { background: var(--lrf-pino); box-shadow: 0 6px 18px rgba(45, 106, 79, 0.25); }
.btn-cta--corri { border-color: var(--lrf-tramonto); }
.btn-cta--corri:hover { background: var(--lrf-tramonto); box-shadow: 0 6px 18px rgba(231, 111, 81, 0.25); }
.btn-cta--cammina { border-color: var(--lrf-oro); }
.btn-cta--cammina:hover { background: var(--lrf-oro); color: var(--lrf-ink); box-shadow: 0 6px 18px rgba(212, 185, 122, 0.3); }

/* --- Ad slots ----------------------------------------------------------- */
.ad-slot {
  display: block;
  margin: 24px auto;
  max-width: 970px;
  min-height: 90px;
  background: var(--lrf-sale);
  border: 1px solid var(--lrf-gray-300);
  border-radius: 8px;
  text-align: center;
  padding: 16px;
  position: relative;
  color: var(--lrf-gray-500);
  font-size: 0.85rem;
}
.ad-slot::before {
  content: 'PUBBLICITÀ';
  position: absolute;
  top: 4px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--lrf-gray-500);
  text-transform: uppercase;
}
.ad-slot--top { min-height: 250px; }
.ad-slot--side { min-height: 250px; max-width: 300px; }
.ad-slot--inline { min-height: 200px; max-width: 600px; }
.ad-slot a { color: var(--lrf-mare); }
.ad-slot.is-filled { background: var(--lrf-white); border: 1px solid var(--lrf-gray-100); padding: 0; min-height: 0; }
.ad-slot.is-filled::before { display: none; }

/* Sponsored POI badge & marker style */
.sponsor-badge {
  display: inline-block;
  background: var(--lrf-oro);
  color: var(--lrf-ink);
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 6px;
}
.sponsor-badge--silver { background: #C0C0C0; }
.sponsor-badge--bronze { background: #CD7F32; color: #fff; }

/* --- Language switcher ------------------------------------------------- */
.lang-switcher {
  display: inline-flex;
  gap: 2px;
  margin-left: var(--space-3);
  background: var(--lrf-sale);
  padding: 2px;
  border-radius: 999px;
}
.lang-switcher__btn {
  background: transparent;
  border: 0;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lrf-gray-700);
  border-radius: 999px;
  transition: all 0.15s;
}
.lang-switcher__btn:hover { background: rgba(0,119,182,0.1); color: var(--lrf-mare); }
.lang-switcher__btn.is-active { background: var(--lrf-mare); color: #fff; }
@media (max-width: 768px) {
  .lang-switcher { margin: 8px 0; padding: 1px; }
  .lang-switcher__btn { padding: 3px 6px; font-size: 0.7rem; }
}

/* --- Affiliate badge --------------------------------------------------- */
.affiliate-note {
  font-size: 0.75rem;
  color: var(--lrf-gray-500);
  font-style: italic;
  padding: 4px 0;
}

/* --- Comune hero image ------------------------------------------------- */
.comune-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: block;
}
@media (max-width: 768px) {
  .comune-hero-img { max-height: 240px; border-radius: 8px; }
}

/* --- FAQ accordion ----------------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: var(--space-4) auto 0;
}
.faq-item {
  background: var(--lrf-white);
  border: 1px solid var(--lrf-gray-100);
  border-radius: 12px;
  margin-bottom: var(--space-2);
  padding: 0 var(--space-3);
  transition: box-shadow var(--transition-base);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
}
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--lrf-ink);
  position: relative;
  padding-right: 32px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--lrf-mare);
  transition: transform var(--transition-base);
  font-weight: 400;
}
.faq-item[open] > summary::after {
  content: '−';
}
.faq-item > p {
  padding: 0 0 var(--space-3);
  color: var(--lrf-gray-700, #4a4a4a);
  line-height: 1.6;
  margin: 0;
}
.faq-item > p a {
  color: var(--lrf-mare);
  text-decoration: underline;
}

/* --- Hero — Manifesto Riviera Art Déco (Mare + Fiori) ------------------- */
.hero {
  padding: var(--space-7) var(--container-pad);
  background:
    /* Sole tramonto in alto destra — più ampio + caldo */
    radial-gradient(circle at 88% 12%, rgba(255,196,120,0.55) 0%, rgba(255,196,120,0.2) 20%, rgba(255,196,120,0) 40%),
    /* Petali bouganville + confetti vintage */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g opacity='0.16'><ellipse cx='40' cy='40' rx='7' ry='3' transform='rotate(30 40 40)' fill='%23E76F51'/><circle cx='160' cy='60' r='4' fill='%23D74A35'/><ellipse cx='90' cy='130' rx='6' ry='3' transform='rotate(-40 90 130)' fill='%23E89B5C'/><ellipse cx='180' cy='180' rx='5' ry='2' fill='%23D4B97A'/><circle cx='30' cy='180' r='5' fill='%23E76F51'/><ellipse cx='130' cy='90' rx='8' ry='4' transform='rotate(55 130 90)' fill='%23E89B5C'/><circle cx='200' cy='110' r='3' fill='%23D74A35'/><ellipse cx='60' cy='100' rx='4' ry='2' transform='rotate(-15 60 100)' fill='%23D4B97A'/></g></svg>"),
    /* Cielo dolce vita: azzurro mare → pesca tramonto → sabbia */
    linear-gradient(180deg, #B8DDED 0%, #DDE9EE 25%, #FCE6CC 55%, #F8D7B8 80%, #FAEDE0 100%);
  background-repeat: no-repeat, repeat, no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-family: var(--font-display, 'Playfair Display'), Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  color: var(--lrf-mare);
  margin: 0 0 var(--space-3);
  line-height: 1.05;
  text-shadow: 1px 2px 0 rgba(231, 111, 81, 0.35);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--lrf-tramonto);
  font-family: var(--font-display);
}
.section__title {
  font-family: var(--font-display, 'Playfair Display'), Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--lrf-mare);
}
.section__title::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--lrf-tramonto);
  vertical-align: middle;
  margin-right: 14px;
  border-radius: 3px;
}
.nav__logo, .nav-logo {
  font-family: var(--font-display, 'Playfair Display'), serif !important;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 1.1rem !important;
}
.hero__subtitle {
  font-family: var(--font-poster, 'Poiret One'), serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--lrf-gray-700);
  max-width: 620px;
  margin: 0 auto var(--space-4);
  letter-spacing: 0.04em;
}
.hero__cta-prompt {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--lrf-tramonto);
  margin: var(--space-4) 0 var(--space-3);
  text-transform: none;
  letter-spacing: 0;
}
/* CTAs eleganti outline — bordi colorati, no rosso pieno */
.btn-cta {
  font-family: var(--lrf-font-body, 'DM Sans'), system-ui, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
  border-width: 2px !important;
  border-style: solid !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 200ms ease !important;
}
.btn-cta svg { width: 20px; height: 20px; }

/* Pedala — verde pino */
.btn-cta--pedala {
  color: var(--lrf-pino, #1E6045) !important;
  border-color: var(--lrf-pino, #1E6045) !important;
}
.btn-cta--pedala:hover {
  background: var(--lrf-pino, #1E6045) !important;
  color: var(--lrf-sabbia, #FAF4E8) !important;
}
.btn-cta--pedala svg { fill: var(--lrf-pino, #1E6045); }
.btn-cta--pedala:hover svg { fill: var(--lrf-sabbia, #FAF4E8); }

/* Corri — tramonto */
.btn-cta--corri {
  color: var(--lrf-tramonto, #E05D3D) !important;
  border-color: var(--lrf-tramonto, #E05D3D) !important;
}
.btn-cta--corri:hover {
  background: var(--lrf-tramonto, #E05D3D) !important;
  color: var(--lrf-sabbia, #FAF4E8) !important;
}
.btn-cta--corri svg { fill: var(--lrf-tramonto, #E05D3D); }
.btn-cta--corri:hover svg { fill: var(--lrf-sabbia, #FAF4E8); }

/* Cammina — mare */
.btn-cta--cammina {
  color: var(--lrf-mare, #1B6DAA) !important;
  border-color: var(--lrf-mare, #1B6DAA) !important;
}
.btn-cta--cammina:hover {
  background: var(--lrf-mare, #1B6DAA) !important;
  color: var(--lrf-sabbia, #FAF4E8) !important;
}
.btn-cta--cammina svg { fill: var(--lrf-mare, #1B6DAA); }
.btn-cta--cammina:hover svg { fill: var(--lrf-sabbia, #FAF4E8); }
.section__title {
  font-family: var(--font-display, 'Limelight'), serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Nav logo: bigger + manifesto style */
.nav__logo, .nav-logo {
  font-family: var(--font-display, 'Limelight'), serif !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem !important;
}
/* Hero decorations rimosse: cappello/ombrellone/Vespa/walker — solo pattern + onde Cassandre */
.hero { position: relative; }
.hero__inner { position: relative; }
.cappello-deco { display: none !important; }
.hero__inner {
  max-width: 820px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-3);
}
.hero__subtitle {
  font-size: 1.25rem;
  color: var(--lrf-gray-700);
  margin-bottom: var(--space-5);
}
.hero__ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding: var(--space-6) var(--container-pad); }
  .hero h1 { font-size: 2rem; }
  .hero__subtitle { font-size: 1.05rem; }
}

/* --- Section ------------------------------------------------------------ */
.section {
  padding: var(--space-7) var(--container-pad);
}
.section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.section__title {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}
.section__lead {
  color: var(--lrf-gray-700);
  margin-bottom: var(--space-5);
  font-size: 1.05rem;
}
.section--alt { background: var(--lrf-sale); }

@media (max-width: 768px) {
  .section { padding: var(--space-5) var(--container-pad); }
  .section__title { font-size: 1.5rem; }
}

/* --- Card --------------------------------------------------------------- */
.card {
  display: block;
  background: var(--lrf-white);
  border: 1px solid var(--lrf-gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  color: var(--lrf-ink);
  text-decoration: none;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--lrf-ink);
}

.card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-3);
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.card__meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--lrf-pino);
}
.card__excerpt {
  font-size: 0.95rem;
  color: var(--lrf-gray-700);
  margin-top: var(--space-2);
}

/* --- Card grid ---------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}

/* --- Buttons ------------------------------------------------------------ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  line-height: 1;
}

.btn-primary {
  background: var(--lrf-mare);
  color: var(--lrf-white);
}
.btn-primary:hover {
  background: #005f8e;
  color: var(--lrf-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--lrf-mare);
  border: 2px solid var(--lrf-mare);
}
.btn-secondary:hover {
  background: var(--lrf-mare);
  color: var(--lrf-white);
}

/* --- POI badge ---------------------------------------------------------- */
.poi-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--lrf-mare);
  color: var(--lrf-white);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Category color variants */
.poi-badge--01 { background: var(--cat-01-spiagge); }
.poi-badge--02 { background: var(--cat-02-stabilimenti); }
.poi-badge--03 { background: var(--cat-03-ristoranti); }
.poi-badge--04 { background: var(--cat-04-bar); }
.poi-badge--05 { background: var(--cat-05-dormire); }
.poi-badge--06 { background: var(--cat-06-noleggio); }
.poi-badge--07 { background: var(--cat-07-riparazione); }
.poi-badge--08 { background: var(--cat-08-farmacie); }
.poi-badge--09 { background: var(--cat-09-cultura); }
.poi-badge--10 { background: var(--cat-10-servizi); }
.poi-badge--11 { background: var(--cat-11-parcheggi); }
.poi-badge--12 { background: var(--cat-12-comuni); }

/* --- KM tag ------------------------------------------------------------- */
.km-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lrf-pino);
  letter-spacing: 0.02em;
}

/* --- Editorial block ---------------------------------------------------- */
.editorial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.editorial p {
  font-size: 1.1rem;
  color: var(--lrf-gray-700);
  margin-bottom: var(--space-4);
}
.editorial__ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

/* ==========================================================================
   FOOTER GP v1.5
   ========================================================================== */
.footer-gp {
  background: var(--gp-bg);
  color: var(--gp-text);
  padding: var(--space-5) var(--container-pad) var(--space-4);
  margin-top: var(--space-7);
  position: relative;
}

.footer-gp__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.footer-gp__line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  font-size: 0.9rem;
  color: var(--gp-text);
}

.footer-gp__item {
  font-family: var(--font-body);
}
.footer-gp__item strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gp-text);
}
.footer-gp__item a {
  color: var(--lrf-oro);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base);
}
.footer-gp__item a:hover {
  border-bottom-color: var(--lrf-oro);
}

.footer-gp__sep {
  color: var(--gp-text);
  opacity: 0.4;
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer-gp__line {
    flex-direction: column;
    gap: var(--space-1);
  }
  .footer-gp__sep { display: none; }
}

/* ============================================================
   Design System v0.1 — overrides typografici Dolce Vita
   ============================================================ */
.hero h1 {
  font-family: var(--lrf-font-display, 'Italiana'), serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
  text-shadow: none !important;
}
.hero h1 em {
  font-family: var(--lrf-font-display, 'Italiana'), serif;
  font-style: italic;
  color: var(--lrf-tramonto, #E05D3D);
}
.hero__subtitle {
  font-family: var(--lrf-font-heading, 'Poiret One'), sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.hero__cta-prompt {
  font-family: var(--lrf-font-heading, 'Poiret One'), sans-serif;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
}
.section__title {
  font-family: var(--lrf-font-display, 'Italiana'), serif !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}
.section__lead {
  font-family: var(--lrf-font-editorial, 'Gloock'), Georgia, serif;
  font-size: 1.1rem;
}
body, p {
  font-family: var(--lrf-font-body, 'Work Sans'), system-ui, sans-serif;
}
article p, .editorial p {
  font-family: var(--lrf-font-serif, 'Lora'), Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
}
.nav-logo, .nav__logo, .lrf-nav__logo {
  font-family: var(--lrf-font-display, 'Italiana'), serif !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.01em;
}
