/* ==========================================================================
   FIORI FUNEBRI TORINO — Design system estático (Fase 1)
   Fuente: mockups "Home ecommerce fiori funebri Torino" (Claude Design)
   Prefijo de clases: fft-  ·  v1.6.2 (2026-08-10)
   ========================================================================== */

:root {
  --fft-blu: #0C3C7C;
  --fft-blu-scuro: #082C5C;
  /* Verde de ACCIÓN (v1.6.0, 2026-07-28). El azul se queda como color de
     navegación y marca; el verde es el de los botones, para que la llamada a la
     acción destaque. #2F7D4F es el tono más claro que aún cumple contraste AA
     con texto blanco (5,0:1); aclararlo más baja del mínimo de 4,5:1. */
  --fft-verde: #2F7D4F;
  --fft-verde-scuro: #297048;
  --fft-nero: #000000;
  --fft-scuro: #16181A;
  --fft-crema: #F5F1EA;
  --fft-grigio: #F5F5F5;
  --fft-bordo: #DBDBDB;
  --fft-bordo-2: #E5E5E5;
  /* Hueco entre el botón del nav y su panel desplegable. Se usa en dos sitios que
     DEBEN cuadrar: el `top` del panel y la altura del puente invisible que lo hace
     alcanzable con el ratón (ver .fft-dropdown::before). Si se cambia aquí, los dos
     se mueven juntos. */
  --fft-drop-gap: 18px;
  --fft-serif: 'Cormorant Garamond', Georgia, serif;
  --fft-sans: 'Mulish', Arial, sans-serif;
  --fft-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Base ------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  font-family: var(--fft-sans);
  color: var(--fft-nero);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--fft-blu); text-decoration: none; }
a:hover { color: var(--fft-blu-scuro); }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(176, 141, 79, 0.55); outline-offset: 2px; }
img { max-width: 100%; }
/* Énfasis en prosa (v1.6.2, 2026-08-10). Lo usan las guías del blog, que son texto largo y
   necesitan anclas para escanearse; las fichas cortas del resto del sitio no llevan negritas.
   Va a 600, que es el peso de énfasis propio del sitio (kickers, footer-head, card-num), y NO
   al 700 por defecto del navegador: el 700 aquí solo se usa en etiquetas pequeñas en mayúsculas
   (.fft-drop-title, .fft-valore-ico--num), nunca en prosa corrida, y sobre un cuerpo en Mulish
   300 resultaría demasiado duro para el tono del sitio. El 600 ya va en preload. */
strong, b { font-weight: 600; }

.fft-container { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

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

/* Tipografía común -------------------------------------------------------- */
.fft-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fft-nero);
}
.fft-kicker--light { color: rgba(255, 255, 255, 0.88); margin-bottom: 18px; }
.fft-h2 {
  margin: 0;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
  color: var(--fft-nero);
  text-wrap: pretty;
}
.fft-divider { width: 56px; height: 1px; background: var(--fft-scuro); }

/* Botones ------------------------------------------------------------------ */
.fft-btn {
  display: inline-block;
  background: var(--fft-verde);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 180ms var(--fft-ease);
}
.fft-btn:hover { background: var(--fft-verde-scuro); color: #FFFFFF; }
.fft-btn--sm { font-size: 14px; padding: 11px 20px; }
.fft-btn--ghost-light {
  background: none;
  border: 1px solid rgba(245, 241, 234, 0.5);
  color: var(--fft-crema);
  transition: border-color 180ms var(--fft-ease);
}
.fft-btn--ghost-light:hover { background: none; border-color: var(--fft-crema); color: #FFFFFF; }
/* ⚠️ El nombre `--ghost-blu` es HISTÓRICO: desde la v1.6.0 pinta VERDE, como el
   resto de los botones. No se renombró porque `scripts/update-links-cimiteri.mjs`
   emite esta clase y habría que tocar el generador y 2 páginas. */
.fft-btn--ghost-blu {
  background: none;
  border: 1px solid var(--fft-verde);
  color: var(--fft-verde);
  padding: 13px 26px;
  transition: all 180ms var(--fft-ease);
}
.fft-btn--ghost-blu:hover { background: var(--fft-verde); color: #FFFFFF; }
.fft-link-more { font-weight: 600; font-size: 15px; color: var(--fft-blu); display: inline-flex; align-items: center; gap: 8px; }
.fft-link-more:hover { color: var(--fft-blu-scuro); }

/* Topbar (v1.5.0) ------------------------------------------------------------ */
.fft-topbar { background: #FFFFFF; border-bottom: 1px solid var(--fft-bordo-2); text-align: center; padding: 8px 24px; font-size: 13px; font-weight: 600; }
.fft-topbar a { color: var(--fft-nero); display: inline-flex; align-items: center; gap: 8px; }
.fft-topbar a:hover { color: var(--fft-blu); }
.fft-topbar svg { stroke: var(--fft-blu); flex-shrink: 0; }

/* Header -------------------------------------------------------------------- */
.fft-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fft-bordo);
}
.fft-header-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }
.fft-logo { display: flex; align-items: center; flex-shrink: 0; }
.fft-logo img { height: 42px; width: auto; display: block; }
.fft-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 14px; font-weight: 600; margin-left: auto; }
.fft-nav a { color: var(--fft-nero); }
.fft-nav a:hover, .fft-nav a[aria-current="page"] { color: var(--fft-blu); }
.fft-header-actions { display: flex; align-items: center; gap: 16px; }

/* Desplegables del nav (v1.5.0) */
.fft-nav-drop { position: relative; }
.fft-nav-drop-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--fft-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--fft-nero);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fft-nav-drop-btn:hover, .fft-nav-drop-btn[aria-expanded="true"], .fft-nav-drop-btn.is-current { color: var(--fft-blu); }
.fft-nav-drop-btn > svg { transition: transform 180ms var(--fft-ease); }
.fft-nav-drop-btn[aria-expanded="true"] > svg { transform: rotate(180deg); }
.fft-dropdown {
  position: absolute;
  top: calc(100% + var(--fft-drop-gap));
  left: -26px;
  background: #FFFFFF;
  border: 1px solid var(--fft-bordo-2);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(22, 24, 26, 0.12);
  padding: 16px 22px;
  display: none;
  min-width: 230px;
  z-index: 60;
}
.fft-nav-drop.is-open > .fft-dropdown { display: block; }
.fft-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 2px; color: var(--fft-nero); font-size: 14px; font-weight: 500; white-space: nowrap; }
.fft-dropdown a:hover, .fft-dropdown a[aria-current="page"] { color: var(--fft-blu); }
.fft-dropdown a svg { stroke: var(--fft-blu); flex-shrink: 0; }
.fft-dropdown--zone { left: auto; right: -26px; padding: 22px 28px; }
.fft-nav-drop.is-open > .fft-dropdown--zone { display: flex; gap: 40px; align-items: flex-start; }
@media (hover: hover) and (min-width: 901px) {
  .fft-nav-drop:hover > .fft-dropdown { display: block; }
  .fft-nav-drop:hover > .fft-dropdown--zone { display: flex; gap: 40px; align-items: flex-start; }

  /* PUENTE INVISIBLE sobre el hueco entre el botón y el panel (v1.6.1).
     Sin esto, al bajar el ratón hacia las opciones se cruzaban 18px en los que el
     puntero no estaba sobre el botón ni sobre el panel: `:hover` dejaba de cumplirse
     y el panel se cerraba antes de llegar. Obligaba a hacer clic en el nombre del
     desplegable, que activa `is-open` por JS y no depende del hover.
     El puente sube desde el borde del panel hasta tocar el botón, así que el
     recorrido del ratón nunca sale de `.fft-nav-drop`. No se ve: no tiene fondo.
     ⚠️ `position: absolute` es imprescindible, no decorativo: el panel `--zone` es
     `display: flex`, y un `::before` en flujo normal se convertiría en flex item y
     le añadiría una columna vacía, descuadrando las dos que tiene.
     ⚠️ Va DENTRO de la media query a propósito: en táctil el panel se abre por clic
     y un puente transparente ahí se comería las pulsaciones de esa franja. */
  .fft-dropdown::before {
    content: "";
    position: absolute;
    top: calc(-1 * var(--fft-drop-gap));
    left: 0;
    right: 0;
    height: var(--fft-drop-gap);
  }
}
.fft-drop-title { margin: 0 0 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fft-blu); white-space: nowrap; }
.fft-drop-cols { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); column-gap: 32px; }
.fft-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--fft-bordo);
  color: var(--fft-nero);
  background: var(--fft-grigio);
}
.fft-cart:hover { border-color: var(--fft-blu); color: var(--fft-blu); }
.fft-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--fft-bordo);
  background: var(--fft-grigio);
  color: var(--fft-nero);
  cursor: pointer;
}

/* Hero ----------------------------------------------------------------------- */
.fft-hero { position: relative; background: var(--fft-scuro); min-height: 640px; display: flex; align-items: flex-end; }
.fft-hero-bg { position: absolute; inset: 0; }
.fft-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 14, 16, 0.8) 0%, rgba(12, 14, 16, 0.55) 45%, rgba(12, 14, 16, 0.25) 100%);
  pointer-events: none;
}
.fft-hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 88px; }
.fft-hero-content { max-width: 720px; animation: fftHeroRise 680ms var(--fft-ease) both; }
.fft-hero h1 {
  margin: 0 0 22px;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.12;
  color: var(--fft-crema);
  text-wrap: pretty;
}
.fft-hero-sub { margin: 0 0 34px; font-size: 18px; font-weight: 300; line-height: 1.7; color: rgba(245, 241, 234, 0.85); max-width: 560px; }
.fft-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Franja trust ------------------------------------------------------------------ */
.fft-trust { background: var(--fft-grigio); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-trust-inner {
  padding-top: 36px;
  padding-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Intro ---------------------------------------------------------------------------- */
.fft-intro { background: #FFFFFF; }
.fft-intro-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}
.fft-intro-inner .fft-divider { margin-top: 28px; }
.fft-intro-body { max-width: 600px; }
.fft-intro-body p { margin: 0 0 20px; font-size: 17px; font-weight: 300; line-height: 1.8; }
.fft-intro-body p:last-child { margin-bottom: 0; }
.fft-intro-body h3 { margin: 32px 0 12px; font-family: var(--fft-serif); font-weight: 500; font-size: 22px; }

/* Catálogo --------------------------------------------------------------------------- */
.fft-catalogo { background: #FFFFFF; border-top: 1px solid var(--fft-bordo-2); }
.fft-catalogo-inner { padding-top: 64px; padding-bottom: 64px; }
.fft-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.fft-catalogo-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }
.fft-card {
  display: flex;
  background: #FFFFFF;
  border: 1px solid var(--fft-bordo-2);
  border-radius: 14px;
  overflow: hidden;
  color: var(--fft-nero);
  transition: transform 240ms var(--fft-ease), box-shadow 240ms var(--fft-ease);
}
.fft-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(22, 24, 26, 0.1); color: var(--fft-nero); }
.fft-card--big { flex: 1 1 420px; min-width: min(100%, 420px); flex-direction: column; }
.fft-card--big .fft-card-img { flex: 1; min-height: 380px; }
.fft-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-card--big .fft-card-body { padding: 24px 26px; gap: 8px; }
.fft-card-col { flex: 1.2 1 480px; min-width: min(100%, 480px); display: flex; flex-direction: column; gap: 20px; }
.fft-card--row { flex: 1; flex-wrap: wrap; }
.fft-card--row .fft-card-img { flex: 0 0 210px; min-width: min(100%, 210px); min-height: 150px; }
.fft-card--row .fft-card-body { flex: 1 1 260px; padding: 20px 24px; gap: 6px; justify-content: center; }
.fft-card-body { display: flex; flex-direction: column; }
.fft-card-num { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.fft-card-title { font-family: var(--fft-serif); font-weight: 500; font-size: 30px; line-height: 1.12; }
.fft-card--row .fft-card-title { font-size: 23px; line-height: 1.15; }
.fft-card-text { font-size: 15px; font-weight: 300; line-height: 1.6; }
.fft-card--row .fft-card-text { font-size: 14px; line-height: 1.55; }
.fft-card-cta { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fft-blu); }
.fft-card--row .fft-card-cta { margin-top: 6px; }

/* Servizi ----------------------------------------------------------------------------- */
.fft-servizi { background: var(--fft-grigio); }
.fft-servizi-inner { padding-top: 96px; padding-bottom: 96px; }
.fft-servizi-inner .fft-h2 { margin-bottom: 56px; }
.fft-servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-top: 1px solid rgba(22, 24, 26, 0.25);
}
.fft-servizio { padding: 36px 28px 8px; border-right: 1px solid var(--fft-bordo-2); }
.fft-servizio:first-child { padding-left: 0; }
.fft-servizio:last-child { padding-right: 0; border-right: none; }
.fft-servizio svg { stroke: var(--fft-scuro); }
.fft-servizio h3 { margin: 18px 0 10px; font-family: var(--fft-serif); font-weight: 500; font-size: 24px; }
.fft-servizio p { margin: 0; font-size: 15px; font-weight: 300; line-height: 1.65; }

/* Cimiteri (lista editorial) ------------------------------------------------------------ */
.fft-cimiteri { background: #FFFFFF; border-top: 1px solid var(--fft-bordo-2); }
.fft-cimiteri-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 64px;
  align-items: start;
}
.fft-sticky-col { position: sticky; top: 120px; }
.fft-sticky-col .fft-h2 { margin-bottom: 20px; }
.fft-sticky-col .fft-divider { margin-bottom: 24px; }
.fft-sticky-col > p { margin: 0; font-size: 16px; font-weight: 300; line-height: 1.75; max-width: 380px; }
.fft-lista { border-top: 1px solid var(--fft-bordo); }
.fft-lista-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 26px 4px;
  border-bottom: 1px solid var(--fft-bordo);
  color: var(--fft-nero);
  transition: background 180ms var(--fft-ease);
}
.fft-lista-item:hover { background: rgba(12, 60, 124, 0.04); color: var(--fft-nero); }
.fft-lista-item:last-child { border-bottom-color: transparent; }
.fft-lista-num { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; }
.fft-lista-main { display: flex; flex-direction: column; gap: 6px; }
.fft-lista-title { font-family: var(--fft-serif); font-weight: 500; font-size: 27px; line-height: 1.15; }
.fft-lista-desc { font-size: 14px; font-weight: 300; line-height: 1.55; }
.fft-lista-side { display: flex; align-items: center; gap: 14px; }
.fft-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fft-blu);
  border: 1px solid rgba(12, 60, 124, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.fft-lista-arrow { color: var(--fft-blu); font-size: 18px; }

/* Testo SEO 2 columnas -------------------------------------------------------------------- */
.fft-seo2 { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-seo2-inner { max-width: 1080px; margin: 0 auto; padding: 88px 24px; }
.fft-seo2-head { text-align: center; margin-bottom: 56px; }
.fft-seo2-head .fft-h2 { max-width: 640px; margin: 0 auto; }
.fft-seo2-head .fft-divider { margin: 28px auto 0; background: var(--fft-nero); }
.fft-seo2-cols { display: flex; flex-wrap: wrap; gap: 40px 48px; }
.fft-seo2-col { flex: 1; min-width: 300px; }
.fft-seo2-col h3 { margin: 0 0 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fft-blu); }
.fft-seo2-col p { margin: 0 0 16px; font-size: 16px; font-weight: 300; line-height: 1.85; }
.fft-seo2-col p:last-child { margin-bottom: 0; }
.fft-seo2-sep { width: 1px; align-self: stretch; background: var(--fft-bordo); }

/* Case funerarie ----------------------------------------------------------------------------- */
.fft-casefun { background: #FFFFFF; border-top: 1px solid var(--fft-bordo-2); }
.fft-casefun-inner { padding-top: 96px; padding-bottom: 96px; }
.fft-casefun-inner .fft-section-head { margin-bottom: 48px; }
.fft-casefun-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fft-luogo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--fft-grigio);
  border: 1px solid var(--fft-bordo-2);
  border-radius: 12px;
  padding: 26px;
  color: var(--fft-nero);
  transition: border-color 240ms var(--fft-ease), transform 240ms var(--fft-ease), box-shadow 240ms var(--fft-ease);
}
.fft-luogo:hover { border-color: var(--fft-blu); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(22, 24, 26, 0.08); color: var(--fft-nero); }
.fft-luogo svg { stroke: var(--fft-scuro); }
.fft-luogo-title { font-family: var(--fft-serif); font-weight: 500; font-size: 23px; line-height: 1.2; }
.fft-luogo-desc { font-size: 14px; font-weight: 300; line-height: 1.55; }

/* Località + mapa ------------------------------------------------------------------------------- */
.fft-localita { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-localita-inner {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 64px;
  align-items: center;
}
.fft-localita-text { max-width: 440px; }
.fft-localita-text .fft-h2 { margin-bottom: 20px; }
.fft-localita-text p { margin: 0 0 32px; font-size: 16px; font-weight: 300; line-height: 1.8; }
.fft-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--fft-bordo);
  box-shadow: 0 1px 2px rgba(22, 24, 26, 0.06);
}
.fft-map-canvas { width: 100%; height: 100%; border: 0; display: block; }

/* CTA finale ---------------------------------------------------------------------------------------- */
.fft-cta { position: relative; background: var(--fft-scuro); }
.fft-cta-bg { position: absolute; inset: 0; }
.fft-cta-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 14, 16, 0.78) 0%, rgba(12, 14, 16, 0.6) 55%, rgba(12, 14, 16, 0.45) 100%);
  pointer-events: none;
}
.fft-cta-inner { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 110px; text-align: center; }
.fft-cta-divider { width: 44px; height: 1px; background: var(--fft-crema); margin: 0 auto 30px; }
.fft-cta h2 {
  margin: 0 auto 20px;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.16;
  color: var(--fft-crema);
  max-width: 680px;
  text-wrap: pretty;
}
.fft-cta p { margin: 0 auto 40px; font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(245, 241, 234, 0.88); max-width: 520px; }
.fft-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* FAQ ---------------------------------------------------------------------------------------------- */
.fft-faq { background: #FFFFFF; border-top: 1px solid var(--fft-bordo-2); }
.fft-faq-inner {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px 72px;
  align-items: start;
}
.fft-faq-side { position: sticky; top: 120px; max-width: 380px; }
.fft-faq-side .fft-h2 { margin-bottom: 20px; }
.fft-faq-side .fft-divider { margin-bottom: 24px; }
.fft-faq-side p { margin: 0 0 24px; font-size: 16px; font-weight: 300; line-height: 1.75; }
.fft-faq-list { display: flex; flex-direction: column; gap: 14px; }
.fft-faq-item {
  background: var(--fft-grigio);
  border: 1px solid var(--fft-bordo-2);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 240ms var(--fft-ease);
}
.fft-faq-item:hover { box-shadow: 0 8px 22px rgba(22, 24, 26, 0.07); }
.fft-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--fft-sans);
}
.fft-faq-num { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--fft-nero); }
.fft-faq-title { flex: 1; font-family: var(--fft-serif); font-weight: 500; font-size: 22px; line-height: 1.25; color: var(--fft-nero); }
.fft-faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--fft-blu);
  color: var(--fft-blu);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.fft-faq-a { display: none; }
.fft-faq-item.is-open .fft-faq-a { display: block; }
.fft-faq-a p { margin: 0; padding: 0 70px 24px 66px; font-size: 16px; font-weight: 300; line-height: 1.75; }

/* Footer --------------------------------------------------------------------------------------------- */
.fft-footer { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-footer-inner { padding-top: 80px; padding-bottom: 40px; }
.fft-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--fft-bordo-2);
}
.fft-footer-brand { max-width: 320px; }
.fft-footer-brand-name { margin: 0 0 14px; font-family: var(--fft-serif); font-weight: 600; font-size: 26px; }
.fft-footer-brand-name span { color: var(--fft-blu); }
.fft-footer-brand p { margin: 0; font-size: 15px; font-weight: 300; line-height: 1.7; }
.fft-footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.fft-footer-col a { color: var(--fft-nero); }
.fft-footer-col a:hover { color: var(--fft-blu); }
.fft-footer-col p { margin: 0; font-weight: 300; line-height: 1.8; }
.fft-footer-head { margin: 0 0 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.fft-footer-copy { margin: 28px 0 0; font-size: 13px; font-weight: 300; text-align: center; }

/* ==========================================================================
   Componentes de páginas interiores (v1.1.0 — Case Funerarie Torino)
   ========================================================================== */

/* Hero compacto */
.fft-hero--compact { min-height: 480px; }
.fft-hero--compact .fft-hero-inner { padding-top: 110px; padding-bottom: 72px; }
.fft-hero--compact .fft-hero-content { max-width: 760px; }
.fft-hero--compact h1 { margin-bottom: 20px; font-size: clamp(34px, 4.6vw, 56px); color: #FFFFFF; }
.fft-hero--compact .fft-hero-sub { margin-bottom: 32px; max-width: 580px; color: rgba(255, 255, 255, 0.85); }
.fft-hero--compact .fft-btn--ghost-light { border-color: rgba(255, 255, 255, 0.6); color: #FFFFFF; }
.fft-hero--compact .fft-btn--ghost-light:hover { border-color: #FFFFFF; }

/* Sección de cifras */
.fft-stats { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-stats-inner { padding-top: 72px; padding-bottom: 72px; }
.fft-stats-inner .fft-h2 { margin-bottom: 48px; font-size: clamp(28px, 3vw, 38px); text-align: center; }
.fft-stats-grid { display: flex; flex-wrap: wrap; gap: 32px 0; justify-content: center; }
.fft-stat { flex: 1 1 260px; text-align: center; padding: 0 32px; border-right: 1px solid var(--fft-bordo); }
.fft-stat:last-child { border-right: none; }
.fft-stat-num { margin: 0; font-family: var(--fft-serif); font-weight: 500; font-size: 56px; line-height: 1; color: var(--fft-blu); }
.fft-stat-title { margin: 14px 0 0; font-size: 15px; font-weight: 600; }
.fft-stat-desc { margin: 6px 0 0; font-size: 14px; font-weight: 300; line-height: 1.6; }

/* CTA sobre fondo claro */
.fft-cta-light { background: #FFFFFF; }
.fft-cta-light-inner { padding-top: 88px; padding-bottom: 88px; text-align: center; }
.fft-cta-light h2 {
  margin: 0 auto 18px;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.16;
  color: var(--fft-nero);
  max-width: 680px;
  text-wrap: pretty;
}
.fft-cta-light p { margin: 0 auto 36px; font-size: 17px; font-weight: 300; line-height: 1.75; max-width: 520px; }

/* Fichas (elenco de lugares con datos) */
.fft-elenco { background: #FFFFFF; border-top: 1px solid var(--fft-bordo-2); }
.fft-elenco-inner { padding-top: 88px; padding-bottom: 88px; }
.fft-elenco-inner .fft-section-head { margin-bottom: 48px; }
.fft-elenco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 20px; }
.fft-scheda {
  display: flex;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid var(--fft-bordo-2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms var(--fft-ease), box-shadow 240ms var(--fft-ease);
}
.fft-scheda:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(22, 24, 26, 0.1); }
.fft-scheda-img {
  flex: 1 1 220px;
  min-width: min(100%, 220px);
  min-height: 240px;
  background: var(--fft-grigio);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fft-blu);
}
.fft-scheda-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-scheda-body { flex: 1.4 1 300px; min-width: min(100%, 300px); padding: 24px 26px 14px; display: flex; flex-direction: column; }
.fft-scheda-zona { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.fft-scheda-body h3 { margin: 8px 0; font-family: var(--fft-serif); font-weight: 500; font-size: 25px; line-height: 1.15; }
.fft-scheda-desc { margin: 0 0 16px; font-size: 14px; font-weight: 300; line-height: 1.6; }
.fft-scheda-rows { margin-top: auto; }
.fft-scheda-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid var(--fft-bordo-2); }
.fft-scheda-ico { color: var(--fft-blu); flex-shrink: 0; margin-top: 2px; display: flex; }
.fft-scheda-datum { display: flex; flex-direction: column; gap: 2px; }
.fft-scheda-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fft-blu); }
.fft-scheda-value { font-size: 14px; font-weight: 400; line-height: 1.5; }
.fft-scheda-value a { color: var(--fft-nero); }
.fft-scheda-value a:hover { color: var(--fft-blu); }
.fft-note { margin: 28px 0 0; font-size: 13px; font-weight: 300; }
/* Encuadre de fotos en fichas (object-position cuando el motivo no está centrado) */
.fft-img-left { object-position: 25% center; }

/* ==========================================================================
   Componentes v1.2.0 — Cimiteri Torino
   ========================================================================== */

/* Hero claro partido (texto izq. + foto der.) */
.fft-hero-split { background: #FFFFFF; border-bottom: 1px solid var(--fft-bordo-2); }
.fft-hero-split-inner { display: flex; flex-wrap: wrap; align-items: stretch; }
.fft-hero-split-text {
  flex: 1.1 1 480px;
  min-width: min(100%, 480px);
  padding: 88px 48px 88px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fftHeroRise 680ms var(--fft-ease) both;
}
.fft-hero-split-text .fft-kicker { color: var(--fft-blu); margin-bottom: 18px; }
.fft-hero-split-text h1 {
  margin: 0 0 22px;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.1;
  color: var(--fft-nero);
  text-wrap: pretty;
}
.fft-hero-split-sub { margin: 0 0 34px; font-size: 18px; font-weight: 300; line-height: 1.7; max-width: 520px; }
.fft-hero-split-img { flex: 1 1 420px; min-width: min(100%, 420px); min-height: 440px; border-left: 1px solid var(--fft-bordo-2); }
.fft-hero-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lista editorial de lugares (filas alternadas foto/texto) */
.fft-righe { display: flex; flex-direction: column; }
.fft-riga { display: flex; flex-wrap: wrap; border-top: 1px solid var(--fft-bordo-2); padding: 36px 0; }
.fft-riga:last-child { border-bottom: 1px solid var(--fft-bordo-2); }
.fft-riga--inv { flex-direction: row-reverse; }
.fft-riga-img {
  flex: 1 1 300px;
  min-width: min(100%, 300px);
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fft-grigio);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fft-blu);
}
.fft-riga-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-riga-body { flex: 2 1 420px; min-width: min(100%, 420px); padding: 8px 0 0 48px; display: flex; flex-direction: column; gap: 12px; }
.fft-riga--inv .fft-riga-body { padding: 8px 48px 0 0; }
.fft-riga-kicker { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fft-blu); }
.fft-riga-body h3 { margin: 0; font-family: var(--fft-serif); font-weight: 500; font-size: 32px; line-height: 1.12; }
.fft-riga-body > p { margin: 0; font-size: 15px; font-weight: 300; line-height: 1.7; max-width: 560px; }
.fft-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.fft-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fft-nero);
  border: 1px solid var(--fft-bordo);
  border-radius: 999px;
  padding: 8px 16px;
}
.fft-chip svg { stroke: var(--fft-blu); flex-shrink: 0; }
.fft-riga-body .fft-btn { align-self: flex-start; margin-top: 10px; }

/* Cabecera de sección con nota lateral */
.fft-section-head--nota { align-items: flex-end; }
.fft-section-nota { margin: 0; font-size: 14px; font-weight: 300; max-width: 360px; line-height: 1.6; }

/* Sección elenco-guía (cabecera + filas) */
.fft-guida-elenco { background: #FFFFFF; }
.fft-guida-elenco .fft-section-head { padding-top: 88px; margin-bottom: 24px; }
.fft-guida-elenco .fft-righe { padding-bottom: 88px; }

/* Utilidad: borde superior de sección */
.fft-bordo-top { border-top: 1px solid var(--fft-bordo-2); }

/* Cifras en filas (texto izq. + lista numérica der.) */
.fft-numeri { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-numeri-inner { padding-top: 72px; padding-bottom: 72px; display: flex; flex-wrap: wrap; gap: 40px 72px; align-items: center; }
.fft-numeri-testo { flex: 1 1 380px; min-width: min(100%, 380px); }
.fft-numeri-testo .fft-h2 { margin-bottom: 18px; font-size: clamp(28px, 3vw, 38px); }
.fft-numeri-testo > p { margin: 0; font-size: 16px; font-weight: 300; line-height: 1.8; max-width: 480px; }
.fft-numeri-lista { flex: 1 1 340px; min-width: min(100%, 340px); display: flex; flex-direction: column; }
.fft-numero { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-top: 1px solid var(--fft-bordo); }
.fft-numero:last-child { border-bottom: 1px solid var(--fft-bordo); }
.fft-numero-cifra { font-family: var(--fft-serif); font-weight: 500; font-size: 44px; line-height: 1; color: var(--fft-blu); min-width: 72px; }
.fft-numero-testo { font-size: 15px; font-weight: 600; }

/* Texto SEO centrado estrecho (títulos centrados, párrafos alineados a la izq.) */
.fft-seo-center { background: #FFFFFF; }
.fft-seo-center-inner { max-width: 880px; margin: 0 auto; padding: 88px 24px; text-align: center; }
.fft-seo-center-inner .fft-h2 { margin: 0 auto 28px; max-width: 640px; }
.fft-seo-center-inner > p { margin: 0 auto 20px; font-size: 17px; font-weight: 300; line-height: 1.85; text-align: left; }
.fft-seo-center-inner > p:last-child { margin-bottom: 0; }

/* CTA en banda (título izq. + botones der., fondo gris) */
.fft-cta-band { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-cta-band-inner { padding-top: 64px; padding-bottom: 64px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.fft-cta-band h2 {
  margin: 0;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.2;
  color: var(--fft-nero);
  max-width: 560px;
  text-wrap: pretty;
}
/* Variante con imagen de fondo + overlay oscuro */
.fft-cta-band--img { position: relative; background: var(--fft-scuro); border-top: none; }
.fft-cta-band-bg { position: absolute; inset: 0; }
.fft-cta-band-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12, 14, 16, 0.78) 0%, rgba(12, 14, 16, 0.55) 100%);
  pointer-events: none;
}
.fft-cta-band--img .fft-cta-band-inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.fft-cta-band--img h2 { color: var(--fft-crema); }

/* FAQ variante líneas (centrado estrecho, sin tarjetas) */
.fft-faq--lines .fft-faq-inner-narrow { max-width: 860px; margin: 0 auto; padding: 88px 24px; }
.fft-faq--lines .fft-kicker { text-align: center; }
.fft-faq--lines .fft-h2 { margin-bottom: 48px; text-align: center; }
.fft-faq--lines .fft-faq-list { display: block; border-top: 1px solid var(--fft-bordo); gap: 0; }
.fft-faq--lines .fft-faq-item { background: none; border: none; border-bottom: 1px solid var(--fft-bordo); border-radius: 0; overflow: visible; }
.fft-faq--lines .fft-faq-item:hover { box-shadow: none; }
.fft-faq--lines .fft-faq-q { justify-content: space-between; gap: 20px; padding: 24px 4px; }
.fft-faq--lines .fft-faq-title { flex: 1; }
.fft-faq--lines .fft-faq-icon { border: none; width: auto; height: auto; font-size: 20px; }
.fft-faq--lines .fft-faq-a p { padding: 0 4px 26px; }

/* ==========================================================================
   Componentes v1.3.0 — Ospedali Torino
   ========================================================================== */

/* Mini-tarjetas de producto verticales (2 grids de 2) */
.fft-prod-mini { display: flex; flex-wrap: wrap; gap: 20px; }
.fft-prod-mini-col {
  flex: 1 1 460px;
  min-width: min(100%, 460px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}
.fft-card--vert { flex-direction: column; }
.fft-card--vert .fft-card-img { height: 210px; }
.fft-card--vert .fft-card-body { padding: 20px 22px; gap: 6px; }
.fft-card--vert .fft-card-title { font-size: 23px; line-height: 1.15; }
.fft-card--vert .fft-card-text { font-size: 14px; line-height: 1.55; }
.fft-card--vert .fft-card-cta { margin-top: 6px; }

/* Variantes de fondo */
.fft-intro--grigio { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-intro--grigio .fft-intro-inner { padding-top: 88px; padding-bottom: 88px; }
.fft-cta-light--grigio { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-seo2--bianco { background: #FFFFFF; }

/* Variantes de separador (v1.5.8) — usadas en la Home, donde el catálogo va ANTES de la intro:
   el catálogo pierde su línea (la banda gris de arriba ya trae la suya) y la intro gana la
   línea que separa los dos bloques blancos. Ver ESTADO.md, sesión 2026-07-28. */
.fft-catalogo--nobordo { border-top: none; }
.fft-intro--bordo { border-top: 1px solid var(--fft-bordo-2); }

/* Grid de tarjetas simples de lugar con dirección */
.fft-luoghi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.fft-luogo--info { padding: 28px; }
.fft-luogo--info h3 { margin: 0; font-family: var(--fft-serif); font-weight: 500; font-size: 24px; line-height: 1.2; }
.fft-luogo-addr { margin: 0; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--fft-blu); }
.fft-luogo-addr svg { flex-shrink: 0; stroke: currentColor; }
.fft-luogo--info > p:last-child { margin: 0; font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--fft-nero); }

/* ==========================================================================
   Componentes v1.4.0 — Landings de località (Consegne)
   ========================================================================== */

/* Variantes para landings de località */
.fft-stats--bianco { background: #FFFFFF; border-top: none; border-bottom: none; }
.fft-note--center { text-align: center; margin-top: 36px; }

/* Grid de localidades servidas (tarjetas pequeñas con pin) */
.fft-altre { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-altre-inner { padding-top: 72px; padding-bottom: 72px; text-align: center; }
.fft-altre-inner h2 {
  margin: 0 auto 16px;
  font-family: var(--fft-serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.2;
  color: var(--fft-nero);
}
.fft-altre-inner > p { margin: 0 auto 40px; font-size: 15px; font-weight: 300; line-height: 1.7; max-width: 520px; }
.fft-altre-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.fft-localita-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--fft-bordo-2);
  border-radius: 12px;
  padding: 22px 16px;
  color: var(--fft-nero);
  transition: transform 240ms var(--fft-ease), border-color 240ms var(--fft-ease), box-shadow 240ms var(--fft-ease);
}
.fft-localita-card:hover { transform: translateY(-3px); border-color: var(--fft-blu); box-shadow: 0 10px 24px rgba(22, 24, 26, 0.08); color: var(--fft-nero); }
.fft-localita-card svg { stroke: var(--fft-blu); }
.fft-localita-card span { font-family: var(--fft-serif); font-weight: 500; font-size: 20px; line-height: 1.15; text-align: center; }
.fft-localita-card[aria-current="page"] { border-color: var(--fft-blu); }

/* ==========================================================================
   Componentes v1.5.1 — Chi Siamo
   ========================================================================== */

/* Tarjetas de valores */
.fft-valori { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-valori-inner { padding-top: 88px; padding-bottom: 88px; }
.fft-valori-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 20px; }
.fft-valore { background: #FFFFFF; border: 1px solid var(--fft-bordo-2); border-radius: 12px; padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; }
.fft-valore-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(12, 60, 124, 0.08);
  color: var(--fft-blu);
}
.fft-valore-ico svg { stroke: currentColor; }
.fft-valore h3 { margin: 0; font-family: var(--fft-serif); font-weight: 500; font-size: 24px; line-height: 1.2; }
.fft-valore p { margin: 0; font-size: 14px; font-weight: 300; line-height: 1.65; }

/* Caja "promessa" (borde izquierdo azul, 2 columnas) */
.fft-promessa { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-promessa-inner { padding-top: 88px; padding-bottom: 88px; }
.fft-promessa-inner .fft-h2 { margin-bottom: 40px; max-width: 720px; }
.fft-promessa-box { background: #FFFFFF; border-left: 3px solid var(--fft-blu); padding: 40px 44px; display: flex; flex-wrap: wrap; gap: 32px 64px; }
.fft-promessa-col { flex: 1 1 400px; min-width: min(100%, 400px); }
.fft-promessa-col h3 { margin: 0 0 12px; font-family: var(--fft-serif); font-weight: 500; font-size: 24px; }
.fft-promessa-col p { margin: 0; font-size: 16px; font-weight: 300; line-height: 1.8; }

/* FAQ líneas con número y aspa circulada */
.fft-faq--num .fft-faq-q { justify-content: flex-start; gap: 18px; }
.fft-faq--num .fft-faq-num { color: var(--fft-blu); }
.fft-faq--num .fft-faq-icon { border: 1px solid var(--fft-blu); width: 32px; height: 32px; border-radius: 999px; font-size: 18px; }
.fft-faq--num .fft-faq-a p { padding: 0 54px 26px 34px; }

/* ==========================================================================
   Componentes v1.5.2 — Contatti (página propia, sin mockup)
   ========================================================================== */

.fft-contatti { background: #FFFFFF; }
.fft-contatti-inner {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px 72px;
  align-items: start;
}
.fft-contatti-info .fft-h2 { margin-bottom: 20px; }
.fft-contatti-info .fft-divider { margin-bottom: 24px; }
.fft-contatti-info > p { margin: 0 0 8px; font-size: 16px; font-weight: 300; line-height: 1.75; max-width: 420px; }
.fft-info-rows { margin-top: 24px; display: flex; flex-direction: column; }
.fft-info-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-top: 1px solid var(--fft-bordo-2); }
.fft-info-row:last-child { border-bottom: 1px solid var(--fft-bordo-2); }
.fft-info-ico { color: var(--fft-blu); flex-shrink: 0; margin-top: 2px; display: flex; }
.fft-info-datum { display: flex; flex-direction: column; gap: 3px; }
.fft-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fft-blu); }
.fft-info-value { font-size: 15px; font-weight: 400; line-height: 1.6; }
.fft-info-value a { color: var(--fft-nero); }
.fft-info-value a:hover { color: var(--fft-blu); }

/* Formulario */
.fft-form-card { background: #FFFFFF; border: 1px solid var(--fft-bordo-2); border-radius: 14px; padding: 36px; }
.fft-form-card h2 { margin: 0 0 6px; font-family: var(--fft-serif); font-weight: 500; font-size: 28px; }
.fft-form-card > p { margin: 0 0 24px; font-size: 14px; font-weight: 300; line-height: 1.6; }
.fft-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.fft-campo { display: flex; flex-direction: column; gap: 8px; }
.fft-campo--full { grid-column: 1 / -1; }
.fft-campo label { font-size: 13px; font-weight: 600; }
.fft-campo input,
.fft-campo select,
.fft-campo textarea {
  font-family: var(--fft-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--fft-nero);
  background: #FFFFFF;
  border: 1px solid var(--fft-bordo);
  border-radius: 6px;
  padding: 12px 14px;
  width: 100%;
}
.fft-campo input:focus,
.fft-campo select:focus,
.fft-campo textarea:focus {
  outline: 3px solid rgba(176, 141, 79, 0.35);
  outline-offset: 0;
  border-color: var(--fft-blu);
}
.fft-campo textarea { min-height: 150px; resize: vertical; }
.fft-check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; line-height: 1.6; }
.fft-check input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.fft-form .fft-btn { justify-self: start; border: none; cursor: pointer; font-family: var(--fft-sans); }
.fft-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Avisos de envío */
.fft-avviso { display: none; padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.fft-avviso.is-visible { display: block; }
.fft-avviso--ok { background: rgba(12, 60, 124, 0.07); color: var(--fft-blu); border: 1px solid rgba(12, 60, 124, 0.25); }
.fft-avviso--err { background: #FBEFEF; color: #8C2B2B; border: 1px solid #E3B8B8; }
.fft-form-nota { grid-column: 1 / -1; margin: 0; font-size: 12px; line-height: 1.5; color: #6B6B6B; }
.fft-form-nota a { color: inherit; text-decoration: underline; }

/* ==========================================================================
   Componentes v1.5.3 — Categorías de producto (Corone, Cuscini, Mazzi)
   ========================================================================== */

/* Grid y tarjeta de producto con precio */
.fft-prodotti-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 20px; }
.fft-card--prod .fft-card-img { height: 300px; }
.fft-card--prod .fft-card-body { flex: 1; padding: 20px 22px; gap: 6px; }
.fft-prezzo-row { margin-top: auto; padding-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fft-prezzo { font-family: var(--fft-serif); font-size: 19px; font-weight: 500; color: var(--fft-nero); }
.fft-prezzo span { font-family: var(--fft-sans); font-size: 12px; font-weight: 300; }

/* Variante de valores sobre fondo blanco (tarjetas grises) */
.fft-valori--bianco { background: #FFFFFF; border-top: none; border-bottom: none; }
.fft-valori--bianco .fft-valore { background: var(--fft-grigio); }

/* Grid de valores a 3 por fila (v1.6.2, 2026-08-10). El `auto-fit` de .fft-valori-grid
   reparte 4 columnas en escritorio y deja huérfanas las últimas tarjetas cuando son 6.
   Se fija a 3 y baja a 2 y a 1 en los mismos cortes que .fft-casefun-grid, que es el
   otro grid de 3 columnas del sitio. */
.fft-valori-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Subtítulo bajo cabecera de sección centrada */
.fft-head-sub { margin: 20px auto 0; max-width: 560px; font-size: 16px; font-weight: 300; line-height: 1.7; text-align: center; }

/* Tarjeta de valor con número en vez de icono */
.fft-valore-ico--num { font-family: var(--fft-sans); font-size: 14px; font-weight: 700; }

/* FAQ líneas sobre fondo gris */
.fft-faq--grigio { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }

/* Grid de 4 tarjetas por fila (mínimo 260px, como el mockup) */
.fft-luoghi-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* Breadcrumb en kicker del hero */
.fft-kicker--light a { color: rgba(255, 255, 255, 0.88); }
.fft-kicker--light a:hover { color: #FFFFFF; }

/* ==========================================================================
   Componentes v1.5.5 — Fichas de lugar (Cimitero Monumentale)
   ========================================================================== */

/* Scheda informativa (columna texto sticky + filas de datos) */
.fft-scheda-sez { background: var(--fft-grigio); border-bottom: 1px solid var(--fft-bordo-2); }
.fft-scheda-sez-inner { padding-top: 80px; padding-bottom: 80px; display: flex; flex-wrap: wrap; gap: 48px 64px; align-items: flex-start; }
.fft-scheda-testo { flex: 1 1 340px; min-width: min(100%, 340px); position: sticky; top: 120px; }
.fft-scheda-testo .fft-h2 { margin-bottom: 18px; }
.fft-scheda-testo .fft-divider { margin-bottom: 22px; }
.fft-scheda-testo > p { margin: 0; font-size: 16px; font-weight: 300; line-height: 1.8; max-width: 420px; }
.fft-scheda-testo > p.fft-scheda-nota { margin-top: 16px; font-size: 13px; }
.fft-dati { flex: 1.3 1 460px; min-width: min(100%, 460px); }
.fft-dato { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 24px; padding: 20px 4px; border-bottom: 1px solid var(--fft-bordo); }
.fft-dato:last-child { border-bottom: none; }
.fft-dato-label {
  flex: 0 0 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fft-blu);
}
.fft-dato-label svg { flex-shrink: 0; stroke: currentColor; }
.fft-dato-value { flex: 1 1 260px; font-size: 15px; font-weight: 400; line-height: 1.6; }
.fft-dato-value a { color: var(--fft-nero); }
.fft-dato-value a:hover { color: var(--fft-blu); }

/* Lista editorial con pin circular (diseño v2) */
.fft-lista--ico .fft-lista-item { align-items: center; }
.fft-lista-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(12, 60, 124, 0.08);
  color: var(--fft-blu);
}
.fft-lista-pin svg { stroke: currentColor; }

/* ==========================================================================
   Componentes v1.5.7 — Chiese di Torino (tarjeta foto+texto horizontal + zone por columnas)
   ========================================================================== */

/* Grid de iglesias destacadas: tarjeta orizzontale foto + testo (variante de scheda,
   con badge di zona e senza righe di dati) */
.fft-chiese { background: #FFFFFF; border-top: 1px solid var(--fft-bordo-2); }
.fft-chiese-inner { padding-top: 88px; padding-bottom: 88px; }
.fft-chiese-inner .fft-section-head { margin-bottom: 40px; }
.fft-chiese-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: 20px; }
.fft-chiesa-card {
  display: flex;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid var(--fft-bordo-2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms var(--fft-ease), box-shadow 240ms var(--fft-ease);
}
.fft-chiesa-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(22, 24, 26, 0.1); }
.fft-chiesa-img {
  flex: 1 1 190px;
  min-width: min(100%, 190px);
  align-self: stretch;
  min-height: 220px;
  background: var(--fft-grigio);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fft-blu);
}
.fft-chiesa-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fft-chiesa-body {
  flex: 1.5 1 250px;
  min-width: min(100%, 250px);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.fft-chiesa-zona {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fft-blu);
  border: 1px solid rgba(12, 60, 124, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
}
.fft-chiesa-nome { font-family: var(--fft-serif); font-weight: 500; font-size: 25px; line-height: 1.15; margin: 0; color: var(--fft-nero); }
.fft-chiesa-desc { font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--fft-nero); margin: 0; }

/* Iglesias por zona: columnas con cabecera y lista de nombres */
.fft-zone { background: var(--fft-grigio); border-top: 1px solid var(--fft-bordo-2); }
.fft-zone-inner { padding-top: 88px; padding-bottom: 88px; }
.fft-zone-inner .fft-seo2-head { margin-bottom: 48px; }
.fft-zone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 32px 40px; }
.fft-zone-col h3 { margin: 0 0 16px; font-family: var(--fft-serif); font-weight: 500; font-size: 22px; color: var(--fft-nero); padding-bottom: 12px; border-bottom: 1px solid var(--fft-bordo); }
.fft-zone-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fft-zone-col li { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; font-weight: 300; line-height: 1.5; color: var(--fft-nero); }
.fft-zone-col li svg { flex-shrink: 0; margin-top: 3px; stroke: var(--fft-blu); }

/* Responsive -------------------------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .fft-casefun-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fft-valori-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fft-altre-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .fft-menu-toggle { display: flex; }
  .fft-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--fft-bordo);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    margin-left: 0;
  }
  .fft-nav.is-open { display: flex; }
  .fft-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--fft-grigio); }
  .fft-nav-drop { width: 100%; border-bottom: 1px solid var(--fft-grigio); }
  .fft-nav-drop-btn { width: 100%; padding: 12px 0; justify-content: space-between; }
  .fft-dropdown, .fft-dropdown--zone {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 12px 12px;
    min-width: 0;
  }
  .fft-nav-drop.is-open > .fft-dropdown--zone { flex-direction: column; gap: 16px; }
  .fft-dropdown a { border-bottom: none; padding: 8px 0; white-space: normal; }
  .fft-drop-cols { grid-template-columns: 1fr; }
  .fft-header-actions { margin-left: auto; }
  .fft-sticky-col, .fft-faq-side { position: static; }
  .fft-hero { min-height: 560px; }
  .fft-hero--compact { min-height: 440px; }
  .fft-stat { border-right: none; }
  .fft-hero-split-text { padding: 56px 0; }
  .fft-hero-split-img { min-height: 320px; border-left: none; }
  .fft-riga-body, .fft-riga--inv .fft-riga-body { padding: 24px 0 0; }
  .fft-intro-inner, .fft-cimiteri-inner, .fft-faq-inner, .fft-servizi-inner, .fft-casefun-inner { padding-top: 64px; padding-bottom: 64px; }
  .fft-servizio { padding-left: 0; border-right: none; }
}

@media (max-width: 640px) {
  .fft-prod-mini-col { grid-template-columns: 1fr; }
  .fft-form { grid-template-columns: 1fr; }
  .fft-form-card { padding: 26px 22px; }
  .fft-altre-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fft-header-inner { gap: 12px; }
  .fft-logo img { height: 34px; }
  .fft-header-actions { gap: 10px; }
  .fft-btn--sm { padding: 10px 14px; font-size: 13px; }
  .fft-casefun-grid { grid-template-columns: 1fr; }
  .fft-valori-grid--3 { grid-template-columns: 1fr; }
  .fft-lista-item { grid-template-columns: 32px 1fr; }
  .fft-lista-side { grid-column: 2; justify-content: flex-start; }
  .fft-lista-title { font-size: 23px; }
  .fft-faq-a p { padding: 0 24px 22px; }
  .fft-hero-inner { padding-top: 96px; padding-bottom: 64px; }
  .fft-map { height: 380px; }
}

/* Banner de cookies (v1.5.9) -----------------------------------------------------------
   Estilo del <aside id="moove_gdpr_cookie_info_bar"> que inserta
   scripts/gen-cookie-banner.mjs: réplica del banner de Moove GDPR de la tienda, para
   compartir el consentimiento en todo el dominio (ver COOKIES-ARQUITECTURA.md).

   Los selectores NO llevan prefijo `fft-` a propósito: son los nombres del plugin, y
   mantenerlos es lo que permite que las dos capas hablen el mismo idioma. No hay
   `!important` en ningún sitio porque este es el único CSS del estático: nada compite.

   Lo activa `main.js` añadiendo `overlay-visible` al <body> cuando no hay cookie de
   consentimiento. Oculto por defecto, así que no parpadea si el JS tarda o falla. */
#moove_gdpr_cookie_info_bar {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, calc(100vw - 32px));
  max-height: 88dvh;
  overflow-y: auto;
  z-index: 9001;
  background: var(--fft-crema);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(8, 44, 92, 0.28);
  text-align: center;
}
body.overlay-visible #moove_gdpr_cookie_info_bar { display: block; }

/* Overlay oscuro: bloquea visualmente la página mientras no hay decisión */
body.overlay-visible::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(22, 24, 26, 0.72);
  z-index: 9000;
}

.moove-gdpr-info-bar-container { padding: 36px 32px; }
.moove-gdpr-cookie-notice .imagen-logo { display: block; height: 42px; width: auto; margin: 0 auto 20px; }
.moove-gdpr-cookie-notice p {
  margin: 0 0 24px;
  font-family: var(--fft-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fft-nero);
}

.moove-gdpr-button-holder { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.moove-gdpr-button-holder .mgbutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fft-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 12px 22px;
  min-height: 44px;             /* objetivo táctil */
  cursor: pointer;
  text-decoration: none;
  transition: background-color .2s var(--fft-ease), color .2s var(--fft-ease);
}

/* Orden visual izquierda → derecha: Rifiuta · Impostazioni · Accetta */
.moove-gdpr-infobar-reject-btn   { order: 1; }
.moove-gdpr-infobar-settings-btn { order: 2; }
.moove-gdpr-infobar-allow-all    { order: 3; }

/* "Accetta" es el botón primario del banner → verde de acción (v1.6.0).
   "Rifiuta" e "Impostazioni" se quedan como secundarios con contorno oscuro:
   ponerlos también en verde borraría la jerarquía y el primario dejaría de
   destacar, que es justo lo que se busca. */
.moove-gdpr-infobar-allow-all {
  background-color: var(--fft-verde);
  border: 1px solid var(--fft-verde);
  color: #FFFFFF;
}
.moove-gdpr-infobar-allow-all:hover {
  background-color: var(--fft-verde-scuro);
  border-color: var(--fft-verde-scuro);
  color: #FFFFFF;
}
.moove-gdpr-infobar-reject-btn,
.moove-gdpr-infobar-settings-btn {
  background-color: #FFFFFF;
  border: 1px solid var(--fft-blu-scuro);
  color: var(--fft-blu-scuro);
}
.moove-gdpr-infobar-reject-btn:hover,
.moove-gdpr-infobar-settings-btn:hover {
  background-color: var(--fft-blu-scuro);
  color: #FFFFFF;
}

/* Móvil y landscape bajo: botones apilados (fix heredado de Toulouse — si no, el
   modal se estira y corta el botón Accetta) */
@media (max-width: 767px), (max-height: 620px) {
  .moove-gdpr-info-bar-container { padding: 28px 20px; }
  .moove-gdpr-cookie-notice .imagen-logo { height: 36px; margin-bottom: 16px; }
  .moove-gdpr-button-holder { flex-direction: column; align-items: stretch; }
  .moove-gdpr-button-holder .mgbutton { width: 100%; }
}
