/*
Theme Name: fctheme
Theme URI: https://www.feliceconserve.com
Author:
Description: Tema personalizzato per Felice Conserve srl
Version: 1.1.5
License: Private
Text Domain: felice-conserve
*/

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  --color-primary:    #1c3a1e;
  --color-bg:         #f5f0e8;
  --color-bg-light:   #faf8f2;
  --color-accent:     #8b2c2c;
  --color-text:       #1c1a17;
  --color-text-muted: rgba(28, 58, 30, 0.6);
  --color-white:      #ffffff;

  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Instrument Sans', system-ui, sans-serif;

  --section-padding:   120px;
  --container-max:     1440px;
  --container-padding: 80px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Glass & shape tokens */
  --glass-bg:     rgba(245, 240, 232, 0.88);
  --glass-border: rgba(255, 255, 255, 0.48);
  --glass-shadow: 0 4px 28px rgba(28, 58, 30, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --radius-pill:  100px;
  --radius-card:  20px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.62;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =========================================
   WORD ANIMATION  (blur/fade)
   ========================================= */
.animate-words .word {
  display: inline-block;
  opacity: 0.001;
  filter: blur(8px);
  transform: translateY(10px);
  will-change: opacity, filter, transform;
}

.animate-words.is-visible .word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity  0.65s var(--ease-out),
    filter   0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

/* =========================================
   FADE-UP ANIMATION
   ========================================= */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

/* =========================================
   NAVBAR
   ========================================= */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 2000;
  transition: width 0.1s linear;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  color: var(--color-bg);
  transition: color 0.5s var(--ease-out);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 26px var(--container-padding) 30px;
  transition:
    background     0.55s var(--ease-out),
    border-radius  0.55s var(--ease-out),
    box-shadow     0.55s var(--ease-out),
    padding        0.55s var(--ease-out),
    border-color   0.55s var(--ease-out),
    max-width      0.55s var(--ease-out),
    margin         0.55s var(--ease-out);
}

.site-header.scrolled { color: var(--color-text); }

.site-header.scrolled .header-inner {
  padding: 10px 26px;
  margin: 10px auto;
  max-width: calc(var(--container-max) - 48px);
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius-pill);
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
}

.site-logo { flex-shrink: 0; }

.site-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.45s var(--ease-out);
}

.site-logo-link:hover {
  transform: translateY(-1px);
}

.site-logo-img {
  width: auto;
  object-fit: contain;
  display: block;
  height: clamp(52px, 6.5vw, 72px);
  max-width: min(300px, 44vw);
  transition:
    height 0.55s var(--ease-out),
    max-width 0.55s var(--ease-out),
    filter 0.5s var(--ease-out),
    opacity 0.3s ease;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.28));
}

.site-header:not(.scrolled) .site-logo-img {
  height: clamp(64px, 8.2vw, 104px);
  max-width: min(340px, 52vw);
}

.site-header.scrolled .site-logo-img {
  height: 40px;
  max-width: 200px;
  filter: drop-shadow(0 1px 6px rgba(28, 58, 30, 0.15));
}

.site-logo-link:hover .site-logo-img { opacity: 0.88; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.78;
  transition: opacity 0.25s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-out);
}
.nav-menu a:hover,
.nav-menu a.current { opacity: 1; }
.nav-menu a:hover::after,
.nav-menu a.current::after { width: 100%; }

/* Contatti link in nav-menu: hidden on desktop, shown inside mobile menu */
.nav-menu-contatti { display: none; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(245, 240, 232, 0.45);
  color: currentColor;
  white-space: nowrap;
  opacity: 0.8;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease,
              opacity 0.35s ease, transform 0.3s var(--ease-out);
}
.nav-cta:hover {
  opacity: 1;
  background: rgba(245, 240, 232, 0.15);
  border-color: rgba(245, 240, 232, 0.8);
  transform: translateY(-1px);
}
.site-header.scrolled .nav-cta { border-color: rgba(28, 58, 30, 0.28); }
.site-header.scrolled .nav-cta:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  width: 32px;
  height: 28px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease, width 0.35s var(--ease-out);
}
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 12px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 24px; }

/* =========================================
   HERO — homepage corporate
   ========================================= */
.fc-hero-corporate {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: #0f1a10;
  color: var(--color-bg);
}

.fc-hero-corporate__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fc-hero-corporate__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  animation: fcHeroKen 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes fcHeroKen {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}

.fc-hero-corporate__veil {
  position: absolute;
  inset: 0;
  /* Centro-inferiore più chiaro: mette in risalto i prodotti in primo piano */
  background:
    radial-gradient(ellipse 92% 78% at 50% 62%, rgba(8, 14, 10, 0.18) 0%, rgba(10, 20, 12, 0.42) 48%, rgba(12, 22, 14, 0.78) 100%),
    linear-gradient(102deg, rgba(12, 22, 14, 0.86) 0%, rgba(12, 22, 14, 0.32) 44%, rgba(28, 58, 30, 0.22) 100%),
    linear-gradient(to top, rgba(8, 14, 10, 0.55) 0%, transparent 52%);
  pointer-events: none;
}

.fc-hero-corporate__accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 50% 68%, rgba(255, 248, 240, 0.08) 0%, transparent 62%),
    radial-gradient(ellipse 80% 55% at 78% 18%, rgba(139, 44, 44, 0.2) 0%, transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.fc-hero-corporate__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(120px, 18vh, 160px) var(--container-padding) clamp(100px, 14vh, 140px);
  display: flex;
  align-items: center;
}

.fc-hero-corporate__content {
  max-width: min(720px, 100%);
}

.fc-hero-corporate__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 22px;
  color: rgba(245, 240, 232, 0.95);
}

.fc-hero-corporate__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #faf8f2;
  margin-bottom: 22px;
  text-wrap: balance;
}

.fc-hero-corporate__lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.82);
  max-width: 560px;
  margin-bottom: 28px;
  font-weight: 500;
}

.fc-hero-corporate__pillars {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 640px;
}

.fc-hero-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.92);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-out);
}

.fc-hero-pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.fc-hero-pillar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(245, 240, 232, 0.12);
  color: #faf8f2;
}

.fc-hero-pillar__text strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fc-hero-corporate__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.fc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.3s var(--ease-out), box-shadow 0.35s ease;
}

.fc-hero-cta--primary {
  background: var(--color-bg);
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.fc-hero-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.fc-hero-cta--secondary {
  background: rgba(28, 58, 30, 0.65);
  border-color: rgba(245, 240, 232, 0.35);
  color: var(--color-bg);
}

.fc-hero-cta--secondary:hover {
  background: rgba(28, 58, 30, 0.88);
  border-color: rgba(245, 240, 232, 0.55);
}

.fc-hero-cta--outline {
  background: transparent;
  border-color: rgba(245, 240, 232, 0.45);
  color: var(--color-bg);
}

.fc-hero-cta--outline:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.75);
}

.fc-hero-corporate__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  animation: fcScrollHint 2.4s ease-in-out infinite;
}

.fc-hero-corporate__scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: currentColor;
  opacity: 0.45;
}

.fc-hero-corporate__scroll:hover {
  color: rgba(245, 240, 232, 0.85);
}

@keyframes fcScrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .fc-hero-corporate__img {
    animation: none;
    transform: none;
  }
  .fc-hero-corporate__scroll {
    animation: none;
  }
  .fc-policy-card,
  .fc-hero-pillar {
    transition: none;
  }
  .fc-policy-card:hover,
  .fc-hero-pillar:hover {
    transform: none;
  }
  .product-card-float-wrap {
    animation: none !important;
  }
  .product-card--playful .product-card-inner::before {
    animation: none;
  }
}

/* =========================================
   POLITICHE AZIENDALI — card homepage
   ========================================= */
.fc-section-policies {
  padding: clamp(72px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
  border-top: 1px solid rgba(28, 58, 30, 0.08);
}

.fc-section-policies__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  padding: 0 var(--container-padding);
}

.fc-section-policies__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.55;
  margin-bottom: 16px;
}

.fc-section-policies__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.fc-section-policies__intro {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  color: var(--color-text);
  opacity: 0.78;
  margin-bottom: 48px;
}

.fc-section-policies__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0 var(--container-padding);
}

.fc-policy-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px 26px;
  border: 1px solid rgba(28, 58, 30, 0.1);
  box-shadow: 0 4px 24px rgba(28, 58, 30, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s ease;
}

.fc-policy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.fc-policy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(28, 58, 30, 0.12);
  border-color: rgba(28, 58, 30, 0.16);
}

.fc-policy-card:hover::before {
  opacity: 1;
  border-color: rgba(139, 44, 44, 0.35);
}

.fc-policy-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-primary) 0%, #2d5530 100%);
  color: var(--color-bg);
}

.fc-policy-card__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.fc-policy-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
  opacity: 0.78;
  flex: 1;
}

.fc-policy-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-bg);
  margin-top: 4px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.fc-policy-card__btn:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.fc-premi-outro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.78;
  margin-bottom: 20px;
  max-width: 420px;
}

.fc-footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.88;
}

/* Pagina Qualità (template) */
.fc-qualita-page .fc-qualita-intro__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.85;
  color: var(--color-text);
  opacity: 0.85;
}

.fc-qualita-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 12px;
  text-align: center;
}

.fc-qualita-intro .fc-section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fc-qualita-lead {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.78;
}

.fc-qualita-cert-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.fc-qualita-cert-list li {
  padding: 16px 20px;
  background: var(--color-white);
  border: 1px solid rgba(28, 58, 30, 0.1);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fc-qualita-cert-list li:hover {
  border-color: rgba(28, 58, 30, 0.22);
  box-shadow: 0 6px 20px rgba(28, 58, 30, 0.08);
}


/* =========================================
   INTRO / CHI SIAMO
   ========================================= */
.section-intro {
  background: var(--color-bg-light);
  padding: 140px 0;
}

.intro-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding);
}

.intro-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.intro-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: 36px;
}

.intro-body {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.75;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================
   MARQUEE
   ========================================= */
.section-marquee {
  padding: 72px 0;
  background: var(--color-bg);
  overflow: hidden;
  border-top:    1px solid rgba(28,58,30,0.07);
  border-bottom: 1px solid rgba(28,58,30,0.07);
}

.marquee-label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 44px;
  color: var(--color-primary);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  color: var(--color-primary);
  opacity: 0.3;
  padding: 0 48px;
  transition: opacity 0.3s ease;
  cursor: default;
  white-space: nowrap;
}
.marquee-item:hover { opacity: 0.75; }

.marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.6;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   STORIA (sticky scroll)
   ========================================= */
.section-storia {
  background: var(--color-bg);
  padding: 0;
}

.storia-sticky-container {
  position: relative;
  height: 140vh;
}

.storia-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.storia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.storia-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1c3a1e 0%, #2d5530 100%);
}

.storia-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storia-media-parallax { will-change: transform; }

.storia-text .storia-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.storia-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.storia-body {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.78;
  opacity: 0.72;
  color: var(--color-text);
  margin-bottom: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-primary);
  padding: 14px 32px;
  border-radius: 100px;
  margin-top: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover { opacity: 0.82; transform: translateY(-2px); }

/* =========================================
   QUALITÀ & SICUREZZA
   ========================================= */
.section-qualita {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 140px 0;
}

.qualita-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.qualita-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 28px;
}

.qualita-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.qualita-body {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.78;
  opacity: 0.72;
}

.qualita-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cert-item {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cert-item:hover {
  background: rgba(245,240,232,0.11);
  transform: translateY(-4px);
}

.cert-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}

.cert-desc {
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* =========================================
   PRODOTTI
   ========================================= */
.section-prodotti {
  background: var(--color-bg);
  padding: 140px 0;
}

.prodotti-header {
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.prodotti-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.05;
  color: var(--color-primary);
  max-width: 480px;
}

.prodotti-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.prodotti-link:hover { opacity: 0.55; }

.prodotti-grid {
  padding: 0 var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* 3D Card */
.product-card { perspective: 900px; cursor: pointer; }

.product-card-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease-out);
  background: var(--color-primary);
}

.product-card:hover .product-card-inner {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c3a1e 0%, #2d5530 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,58,30,0.88) 0%, rgba(28,58,30,0.18) 55%, transparent 100%);
}

.product-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  color: var(--color-bg);
}

.product-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

.product-card-count {
  font-size: 12px;
  opacity: 0.6;
  line-height: 1.5;
}

/* =========================================
   STATS / NUMERI
   ========================================= */
.section-stats {
  background: var(--color-bg-light);
  padding: 120px 0;
}

.stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.stats-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.stats-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 46px);
  color: var(--color-primary);
  max-width: 660px;
  margin: 0 auto 72px;
  line-height: 1.2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.stat-item {
  padding: 40px 20px;
  border: 1px solid rgba(28,58,30,0.1);
  border-radius: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-item:hover { border-color: rgba(28,58,30,0.28); transform: translateY(-5px); }

.stat-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.5;
  text-transform: uppercase;
}

.stats-quote {
  max-width: 660px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.55;
  color: var(--color-primary);
  opacity: 0.82;
  padding-top: 40px;
  border-top: 1px solid rgba(28,58,30,0.1);
}

.stats-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  opacity: 0.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================
   CONTATTI
   ========================================= */
.section-contatti {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 140px 0;
}

.contatti-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contatti-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.05;
  margin-bottom: 36px;
}

.contatti-email {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 24px);
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: opacity 0.2s;
  word-break: break-word;
}
.contatti-email:hover { opacity: 1; }

.contatti-details { display: flex; flex-direction: column; gap: 36px; }

.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 8px;
}

.contact-value {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  opacity: 0.82;
}

.contact-value a {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}
.contact-value a:hover { opacity: 0.6; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-bg);
  padding: 52px 0;
  border-top: 1px solid rgba(28,58,30,0.09);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img { height: 34px; width: auto; opacity: 0.65; }
.footer-logo .logo-text { font-family: var(--font-serif); font-style: italic; font-size: 18px; opacity: 0.6; }

.footer-copy { font-size: 12px; opacity: 0.45; text-align: center; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  opacity: 0.45;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.75; }

/* =========================================
   CURSOR GLOW
   ========================================= */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 58, 30, 0.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* =========================================
   ANIMATE-SCALE-UP
   ========================================= */
.animate-scale-up {
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  will-change: opacity, transform;
}
.animate-scale-up.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

/* =========================================
   GLASS UTILITY
   ========================================= */
.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
}

/* =========================================
   PRODUCT CARD — FLOATING IMAGE (playful)
   ========================================= */
.product-card-float-wrap {
  position: absolute;
  bottom: 0;
  right: -6%;
  width: 56%;
  height: 66%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  transform-origin: 55% 92%;
  animation: fcCatFloat 3.65s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  will-change: transform;
}

.product-card:nth-child(1) .product-card-float-wrap { animation-delay: 0s; }
.product-card:nth-child(2) .product-card-float-wrap { animation-delay: -1.15s; }
.product-card:nth-child(3) .product-card-float-wrap { animation-delay: -2.35s; }

@keyframes fcCatFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  40%      { transform: translateY(-16px) rotate(2.5deg) scale(1.04); }
  72%      { transform: translateY(-7px) rotate(-0.8deg) scale(1.015); }
}

.product-card-float-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.55s var(--ease-out), filter 0.55s var(--ease-out);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.42));
}

.product-card:hover .product-card-float-wrap {
  animation-play-state: paused;
}

.product-card:hover .product-card-float-img {
  transform: translateY(-12px) scale(1.07);
}

/* Luce “giocosa” sulle card categorie */
.product-card--playful .product-card-inner {
  overflow: hidden;
}

.product-card--playful .product-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.16) 0%, transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.1) 0%, transparent 32%),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
  animation: fcCatShimmer 5.2s ease-in-out infinite;
  opacity: 0.85;
}

.product-card--playful .product-card-float-wrap {
  z-index: 1;
}

@keyframes fcCatShimmer {
  0%, 100% { opacity: 0.65; transform: translate3d(0, 0, 0); }
  50%      { opacity: 1; transform: translate3d(0, 3px, 0); }
}

/* =========================================
   COMPACT SECTIONS (below contatti in home)
   ========================================= */
.fc-section-compact {
  padding: 48px 0;
  border-top: 1px solid rgba(28, 58, 30, 0.07);
}
.fc-section-compact.fc-bg-white { border-top-color: rgba(0,0,0,0.05); }
.fc-section-compact .fc-section-title {
  font-size: clamp(20px, 2.5vw, 32px);
  margin-bottom: 20px;
}
.fc-section-compact .fc-progetti-inner,
.fc-section-compact .fc-finanz-inner,
.fc-section-compact .fc-termini-inner {
  max-width: 860px;
}
.fc-section-compact .fc-progetti-inner p,
.fc-section-compact .fc-finanz-inner p,
.fc-section-compact .fc-termini-inner p {
  font-size: 14px;
  opacity: 0.65;
}
.fc-section-compact .fc-two-col {
  gap: 48px;
}
.fc-section-compact .fc-col-image img {
  border-radius: 8px;
}
.fc-section-compact .fc-premi-logo { max-width: 140px; }
.fc-section-compact .fc-pdf-blocks { gap: 8px; }
.fc-section-compact .fc-pdf-block { padding: 10px 14px; }
.fc-section-compact .fc-associati-grid {
  gap: 40px;
  margin-top: 24px;
}
.fc-section-compact .fc-associati-grid img { max-height: 80px; width: auto; }

/* =========================================
   HOME — area finale istituzionale
   ========================================= */
.fc-home-post-contact {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #ffffff 100%);
  border-top: 1px solid rgba(28, 58, 30, 0.08);
}

.fc-home-post-contact__intro {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.fc-home-post-contact__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.48;
  margin-bottom: 16px;
}

.fc-home-post-contact__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.08;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.fc-home-post-contact__lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.78;
  color: var(--color-text);
  opacity: 0.74;
}

.fc-home-post-contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-bottom: 28px;
}

.fc-home-info-card {
  background: var(--color-white);
  border: 1px solid rgba(28, 58, 30, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(28, 58, 30, 0.06);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fc-home-info-card__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 58, 30, 0.52);
}

.fc-home-info-card__media {
  border-radius: 18px;
  overflow: hidden;
  background: #f3efe6;
}

.fc-home-info-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.fc-home-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-home-info-card__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.78;
}

.fc-home-info-card__logo {
  max-width: 170px;
  height: auto;
}

.fc-home-info-card__link {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.fc-home-association-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fc-home-association-logos__item {
  min-height: 170px;
  background: #f8f5ee;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fc-home-association-logos__item img {
  max-width: 100%;
  max-height: 92px;
  width: auto;
  height: auto;
}

.fc-home-association-logos__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fc-home-projects {
  background: var(--color-primary);
  border-radius: 28px;
  padding: 34px;
  color: var(--color-bg);
}

.fc-home-projects__head {
  max-width: 700px;
  margin-bottom: 28px;
}

.fc-home-projects__kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.56);
  margin-bottom: 14px;
}

.fc-home-projects__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  color: #faf8f2;
}

.fc-home-projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fc-home-project {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
}

.fc-home-project img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.fc-home-project__content {
  padding: 22px;
}

.fc-home-project__content h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #faf8f2;
  margin-bottom: 10px;
}

.fc-home-project__content p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.8);
}

/* =========================================
   HERO — variante payoff (minimal)
   ========================================= */
.fc-hero-corporate__inner--payoff {
  justify-content: center;
}
.fc-hero-corporate__inner--payoff .fc-hero-corporate__content {
  max-width: min(920px, 100%);
  text-align: center;
}
.fc-hero-corporate__inner--payoff .fc-hero-corporate__title {
  font-size: clamp(44px, 6.8vw, 96px);
  margin-bottom: 0;
}

/* =========================================
   HOME — Riconoscimenti & Associazioni
   ========================================= */
.fc-home-recog {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--color-bg);
  border-top: 1px solid rgba(28, 58, 30, 0.08);
}

.fc-home-recog__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fc-home-recog__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 20px;
}

.fc-home-recog__award-img {
  border-radius: 20px;
  overflow: hidden;
  background: #f3efe6;
  margin-bottom: 20px;
}
.fc-home-recog__award-img img {
  width: 100%;
  height: auto;
  display: block;
}

.fc-home-recog__award-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}

.fc-home-recog__award-logo {
  flex-shrink: 0;
  max-width: 130px;
  height: auto;
  display: block;
}

.fc-home-recog__body {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  color: var(--color-text);
  opacity: 0.78;
  margin-bottom: 28px;
}

.fc-home-recog__assoc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fc-home-recog__assoc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  height: 180px;
  padding: 20px;
  box-sizing: border-box;
}
.fc-home-recog__assoc-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fc-home-recog__assoc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* =========================================
   HOME — Progetti e investimenti
   ========================================= */
.fc-home-projs {
  padding: clamp(72px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
  border-top: 1px solid rgba(28, 58, 30, 0.08);
}

.fc-home-projs__head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
  padding: 0 var(--container-padding);
}

.fc-home-projs__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 16px;
}

.fc-home-projs__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  color: var(--color-primary);
}

.fc-home-projs__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc-home-proj-card {
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(28, 58, 30, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(28, 58, 30, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.fc-home-proj-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(28, 58, 30, 0.1);
}

/* Prima card: immagine sopra, testo sotto */
.fc-home-proj-card--top {
  display: flex;
  flex-direction: column;
}
.fc-home-proj-card--top .fc-home-proj-card__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--color-bg-light, #f5f3f0);
  display: block;
  padding: 28px 40px;
  box-sizing: border-box;
}

/* Seconda card: immagine sinistra 50%, testo destra 50% */
.fc-home-proj-card--side {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.fc-home-proj-card--side .fc-home-proj-card__img {
  width: 50%;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  background: var(--color-bg-light, #f5f3f0);
  display: block;
  padding: 24px;
  box-sizing: border-box;
}
.fc-home-proj-card--side .fc-home-proj-card__body {
  width: 50%;
}

.fc-home-proj-card__body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fc-home-proj-card__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.fc-home-proj-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.75;
}

.fc-home-terms {
  padding: 40px 0 72px;
  background: #ffffff;
  border-top: 1px solid rgba(28, 58, 30, 0.07);
}

.fc-home-terms__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.fc-home-terms__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.fc-home-terms__text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text);
  opacity: 0.68;
}

/* =========================================
   PARALLAX UTILITY
   ========================================= */
[data-parallax] { will-change: transform; }

/* =========================================
   RESPONSIVE — 1200–1439px
   ========================================= */
@media (max-width: 1439px) {
  :root {
    --container-padding: 60px;
    --section-padding:   100px;
  }
}

/* =========================================
   RESPONSIVE — tablet 810–1199px
   ========================================= */
@media (max-width: 1199px) {
  :root {
    --container-padding: 40px;
    --section-padding:   80px;
  }

  .qualita-inner,
  .storia-inner,
  .contatti-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .prodotti-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }

  .prodotti-header { flex-direction: column; align-items: flex-start; }

  .storia-sticky-container { height: auto; }
  .storia-sticky { position: relative; height: auto; padding: 100px 0; }

  .fc-home-recog__inner,
  .fc-home-projs__grid {
    grid-template-columns: 1fr;
  }

  .fc-section-policies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   RESPONSIVE — mobile ≤809px
   ========================================= */
@media (max-width: 809px) {
  :root {
    --container-padding: 22px;
    --section-padding:   60px;
  }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .site-header:not(.scrolled) .nav-toggle { color: #fff; }
  .nav-cta { display: none; }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(20, 36, 20, 0.97);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    color: var(--color-bg);
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1001;
  }

  /* wp_nav_menu genera nav > ul > li > a */
  .nav-menu.is-open ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .nav-menu.is-open li { display: block; }

  .nav-menu.is-open a {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(26px, 7vw, 44px);
    font-weight: 400;
    text-align: center;
    padding: 10px 24px;
    color: rgba(255,255,255,0.85);
    opacity: 0;
    transform: translateY(22px);
    animation: navItemReveal 0.55s var(--ease-out) forwards;
    display: block;
  }
  .nav-menu.is-open a.current,
  .nav-menu.is-open li.current-menu-item a { opacity: 1; color: #fff; }
  .nav-menu.is-open a::after { display: none; }
  .nav-menu.is-open .nav-menu-contatti { display: block; }

  /* Animazioni per struttura diretta (a) e wp_nav_menu (li) */
  .nav-menu.is-open a:nth-child(1),
  .nav-menu.is-open li:nth-child(1) a { animation-delay: 0.04s; }
  .nav-menu.is-open a:nth-child(2),
  .nav-menu.is-open li:nth-child(2) a { animation-delay: 0.09s; }
  .nav-menu.is-open a:nth-child(3),
  .nav-menu.is-open li:nth-child(3) a { animation-delay: 0.14s; }
  .nav-menu.is-open a:nth-child(4),
  .nav-menu.is-open li:nth-child(4) a { animation-delay: 0.19s; }
  .nav-menu.is-open a:nth-child(5),
  .nav-menu.is-open li:nth-child(5) a { animation-delay: 0.24s; }
  .nav-menu.is-open a:nth-child(6),
  .nav-menu.is-open li:nth-child(6) a { animation-delay: 0.29s; }

  /* Hamburger sopra l'overlay — header sale a 1002 quando menu è aperto */
  .nav-toggle { z-index: 1002; }
  .site-header.menu-open { z-index: 1002; }

  @keyframes navItemReveal {
    to { opacity: 0.85; transform: translateY(0); }
  }

  .fc-hero-corporate__inner {
    padding-top: 108px;
    padding-bottom: 88px;
  }

  .fc-hero-corporate__pillars {
    gap: 10px;
  }

  .fc-hero-corporate__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .fc-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .fc-section-policies__grid {
    grid-template-columns: 1fr;
  }

  .fc-home-recog {
    padding: 72px 0;
  }

  .fc-home-recog__assoc-grid {
    grid-template-columns: 1fr;
  }

  .fc-home-proj-card--side {
    flex-direction: column;
  }
  .fc-home-proj-card--side .fc-home-proj-card__img,
  .fc-home-proj-card--side .fc-home-proj-card__body {
    width: 100%;
  }
  .fc-home-proj-card--side .fc-home-proj-card__img {
    height: 220px;
  }

  /* Carosello orizzontale per le 3 card categoria */
  .prodotti-grid {
    grid-template-columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 var(--container-padding) 16px;
    scrollbar-width: none;
  }
  .prodotti-grid::-webkit-scrollbar { display: none; }
  .prodotti-grid .product-card {
    flex: 0 0 78vw;
    max-width: 340px;
    scroll-snap-align: center;
  }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .qualita-certs { grid-template-columns: repeat(2, 1fr); }

  .footer-inner  { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; }
}

/* ===========================================
   FC DESIGN SYSTEM — Nuove sezioni
   =========================================== */

/* FC BUTTONS */
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #db0000;
  color: #ffffff;
  border: 2px solid #db0000;
  border-radius: 0;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.fc-btn:hover {
  background: #1d7216;
  border-color: #1d7216;
  color: #292929;
}
.fc-btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.65);
  color: #ffffff;
}
.fc-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.95);
  color: #ffffff;
}
.fc-btn-green {
  background: #1d7216;
  border-color: #1d7216;
  color: #ffffff;
}
.fc-btn-green:hover {
  background: #db0000;
  border-color: #db0000;
  color: #ffffff;
}

/* FC HERO (home) */
.fc-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}
.fc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1d7216;
}
.fc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.4) 100%);
}
.fc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.fc-hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}

/* FC PAGE HERO (pagine interne) */
.fc-page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  padding-bottom: 60px;
}
.fc-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1d7216;
}
.fc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
}
.fc-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.fc-page-hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  color: #ffffff;
  line-height: 1.1;
}

/* FC SECTIONS */
.fc-section { padding: 100px 0; }
.fc-section-sm { padding: 60px 0; }
.fc-bg-light { background: #f5f3f0; }
.fc-bg-white { background: #ffffff; }
.fc-bg-muted { background: rgba(0,0,0,0.03); }

/* FC CONTAINER */
.fc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.fc-container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* FC SECTION TITLES */
.fc-section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.1;
  margin-bottom: 40px;
}
.fc-section-title-sm {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  margin-bottom: 24px;
}
.fc-text-center { text-align: center; }

/* FC TWO COLUMN */
.fc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.fc-col-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fc-col-text p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.82;
}
.fc-col-text h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}
.fc-col-image img {
  width: 100%;
  height: auto;
  display: block;
}
.fc-col-image-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.fc-col-image-double img { width: 100%; height: auto; }

/* FC ANIMATIONS (left / right) */
.animate-fade-left {
  opacity: 0;
  transform: translateX(-36px);
  will-change: opacity, transform;
}
.animate-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(36px);
  will-change: opacity, transform;
}
.animate-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

/* FC CAROUSEL — Slick overrides */
.fc-carousel-wrap { position: relative; padding: 0 50px; }
.fc-carousel .slick-prev,
.fc-carousel .slick-next {
  width: 44px;
  height: 44px;
  z-index: 10;
}
.fc-carousel .slick-prev:before,
.fc-carousel .slick-next:before {
  font-size: 22px;
  color: #1d7216;
}
.fc-carousel .slick-prev { left: -50px; }
.fc-carousel .slick-next { right: -50px; }
.fc-carousel .slick-dots li button:before { color: #db0000; }

/* FC MARCHI CAROUSEL */
.fc-marchi-carousel .slick-slide { padding: 0 24px; }
.fc-marchi-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.fc-marchi-item img {
  max-height: 80px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}
.fc-marchi-item img:hover { filter: grayscale(0%); opacity: 1; }

/* FC CERT CAROUSEL */
.fc-cert-carousel-wrap { margin-top: 28px; padding: 0 40px; }
.fc-cert-carousel .slick-slide { padding: 0 12px; }
.fc-cert-item {
  text-align: center;
  padding: 16px 8px;
}
.fc-cert-item img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}
.fc-cert-item-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* FC PRODUCT CAROUSEL */
.fc-product-subsection { margin-bottom: 72px; }
.fc-product-subsection:last-child { margin-bottom: 0; }
.fc-product-subsection-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #1d7216;
  margin-bottom: 32px;
}
.fc-product-carousel-wrap { padding: 0 50px; }
.fc-product-carousel .slick-slide { padding: 0 10px; }
.fc-product-item { text-align: center; cursor: default; }
.fc-product-item a { text-decoration: none; color: inherit; }
.fc-product-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}
.fc-product-item:hover img { transform: scale(1.04); }
.fc-product-item h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: #1d7216;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.fc-product-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* FC PDF BLOCKS */
.fc-pdf-blocks { display: flex; flex-direction: column; gap: 12px; }
.fc-pdf-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  transition: border-color 0.2s;
}
.fc-pdf-block:hover { border-color: var(--color-primary); }
.fc-pdf-icon {
  width: 36px;
  height: 36px;
  background: #db0000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-pdf-icon svg { width: 18px; height: 18px; }
.fc-pdf-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}
.fc-pdf-download {
  font-size: 11px;
  font-weight: 700;
  color: #db0000;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.fc-pdf-download:hover { color: #1d7216; }

/* FC SECTION — Progetti Realizzati */
.fc-progetti-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.fc-progetti-label {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 24px;
  display: block;
  line-height: 1.5;
}
.fc-progetti-inner img { margin: 0 auto 32px; max-width: 100%; }
.fc-progetti-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 16px;
  opacity: 0.82;
  text-align: left;
}
.fc-progetti-inner h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px 0 10px;
  text-align: left;
  color: var(--color-text);
}

/* FC SECTION — Premi e Politiche */
.fc-premi-col-right { display: flex; flex-direction: column; gap: 24px; }
.fc-premi-logo { max-width: 220px; }
.fc-premi-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* FC SECTION — Dicono di Noi */
.fc-dicono-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}
.fc-dicono-logo img { max-width: 200px; height: auto; }
.fc-dicono-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 20px;
  border-left: 3px solid #db0000;
  padding-left: 24px;
  quotes: "\201C" "\201D";
}
.fc-dicono-quote blockquote::before { content: open-quote; }
.fc-dicono-quote blockquote::after  { content: close-quote; }
.fc-dicono-source {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FC SECTION — Associati a */
.fc-associati-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}
.fc-associati-grid img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.fc-associati-grid a { display: block; }

/* FC SECTION — Finanziamenti PAC06 */
.fc-finanz-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.fc-finanz-inner img { margin: 0 auto 40px; max-width: 100%; }
.fc-finanz-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.82;
  margin-bottom: 20px;
  text-align: left;
}

/* FC SECTION — Termini */
.fc-termini-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.fc-termini-inner p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
}

/* ============================================
   FC FOOTER — 2 colonne
   ============================================ */
.fc-footer-wrap {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.fc-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.fc-footer-logo { margin-bottom: 24px; }
.fc-footer-logo img { height: 140px; width: auto; }
.fc-footer-about-text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.65;
  margin-bottom: 28px;
}
.fc-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.fc-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.fc-footer-legal a:hover { color: rgba(255,255,255,0.85); }
.fc-footer-contacts-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #db0000;
  margin-bottom: 28px;
}
.fc-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.fc-footer-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.4);
  min-width: 140px;
  flex-shrink: 0;
  padding-top: 1px;
}
.fc-footer-contact-value {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.fc-footer-contact-value a { color: inherit; transition: color 0.2s; }
.fc-footer-contact-value a:hover { color: #ffffff; }
.fc-footer-bar-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fc-footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.fc-footer-bar a { color: inherit; text-decoration: underline; transition: color 0.2s; }
.fc-footer-bar a:hover { color: rgba(255,255,255,0.7); }
.fc-footer-bar-sep { opacity: 0.4; }

/* ============================================
   FC STORIA — sezioni timeline
   ============================================ */
/* =========================================
   PAGINA STORIA — redesign
   ========================================= */
.fc-storia-lead {
  padding: clamp(72px, 10vw, 120px) 0 clamp(60px, 8vw, 96px);
  background: var(--color-bg);
  text-align: center;
}
.fc-storia-lead__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.fc-storia-lead__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 20px;
}
.fc-storia-lead__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.fc-storia-lead__body {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
  color: var(--color-text);
  opacity: 0.75;
}

.fc-storia-era {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--color-bg);
}
.fc-storia-era--light {
  background: var(--color-bg-light, #f5f3f0);
}
.fc-storia-era__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fc-storia-era--reverse .fc-storia-era__media { order: 2; }
.fc-storia-era--reverse .fc-storia-era__content { order: 1; }

.fc-storia-era__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}


.fc-storia-era__year {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.12;
  margin-bottom: -8px;
  letter-spacing: -0.03em;
  user-select: none;
}
.fc-storia-era__year--sm {
  font-size: clamp(44px, 6vw, 84px);
}
.fc-storia-era__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 14px;
}
.fc-storia-era__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.fc-storia-era__body {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.85;
  color: var(--color-text);
  opacity: 0.82;
}

/* ============================================
   FC CONTATTI
   ============================================ */
.fc-contact-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.fc-contact-icon-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.fc-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.fc-contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-contact-item-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.8; }
.fc-contact-item-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 4px;
}
.fc-contact-item-value {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text);
}
.fc-contact-item-value a { color: var(--color-text); transition: color 0.2s; }
.fc-contact-item-value a:hover { color: var(--color-primary); }

/* FC FORM */
/* =========================================
   CONTATTI — nuove sezioni
   ========================================= */
.fc-contatti-lead {
  padding: clamp(60px, 9vw, 110px) 0 clamp(48px, 7vw, 80px);
  background: var(--color-bg);
  text-align: center;
  border-bottom: 1px solid rgba(28, 58, 30, 0.08);
}
.fc-contatti-lead__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.fc-contatti-lead__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 16px;
}
.fc-contatti-lead__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.fc-contatti-lead__body {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: var(--color-text);
  opacity: 0.75;
}
.fc-contatti-info {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-bg);
}
.fc-contatti-form-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #fff;
  border-top: 1px solid rgba(28, 58, 30, 0.08);
}
.fc-contatti-form-head { margin-bottom: 40px; }
.fc-contatti-form-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  color: var(--color-primary);
}
.fc-contatti-form-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.fc-form-success {
  color: var(--color-primary);
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
}
.fc-form-error {
  color: #c0392b;
  margin-top: 20px;
  font-size: 15px;
}
.fc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.fc-form-left, .fc-form-right { display: flex; flex-direction: column; gap: 20px; }
.fc-form-right .fc-form-field { flex: 1; }
.fc-form-right .fc-form-field textarea { height: 100%; min-height: 220px; }
.fc-form-field { display: flex; flex-direction: column; gap: 8px; }
.fc-form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.45;
}
.fc-form-field input,
.fc-form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(28, 58, 30, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.fc-form-field input:focus,
.fc-form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}
.fc-form-field textarea { resize: vertical; }
.fc-form-submit { text-align: right; margin-top: 8px; }
.fc-map { width: 100%; height: 560px; border: none; display: block; }

/* ============================================
   ARCHIVE PRODOTTI
   ============================================ */
/* =========================================
   TAXONOMY CATEGORIA — intro
   ========================================= */
/* Taxonomy category hero — breadcrumb + title inside hero */
.fc-page-hero--tax {
  height: 420px;
  align-items: flex-end;
  padding-bottom: 56px;
}
.fc-page-hero--tax .fc-page-hero-content {
  text-align: center;
  max-width: var(--container-max);
  width: 100%;
  padding: 0 var(--container-padding);
}
.fc-page-hero--tax .fc-page-hero-breadcrumb {
  justify-content: center;
}
.fc-page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.fc-page-hero-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.fc-page-hero-breadcrumb a:hover { color: #ffffff; }
.fc-page-hero-breadcrumb span { color: rgba(255,255,255,0.45); }
.fc-page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.fc-page-hero--tax .fc-page-hero-title {
  text-align: center;
  font-size: clamp(36px, 4.5vw, 64px);
}

/* Back link below hero grid */
.fc-tax-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  margin-bottom: 48px;
  transition: opacity 0.2s;
}
.fc-tax-back-link:hover { opacity: 0.65; }

.fc-archive-section--tax { padding-top: 60px; }
.fc-tax-empty {
  text-align: center;
  padding: 80px 0;
  font-size: 16px;
  opacity: 0.6;
}
.fc-tax-empty a { text-decoration: underline; }

/* =============================================
   LEGAL PAGES (Privacy / Cookie Policy)
   ============================================= */
.fc-legal-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-bg);
}
.fc-legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.fc-legal-download {
  margin-bottom: 48px;
}
.fc-legal-download--bottom {
  margin-top: 56px;
  margin-bottom: 0;
}
.fc-legal-body h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--color-primary);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.fc-legal-body h2:first-child { margin-top: 0; }
.fc-legal-body h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 36px 0 12px;
}
.fc-legal-body h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.6;
  margin: 28px 0 10px;
}
.fc-legal-body p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 16px;
}
.fc-legal-body ul {
  margin: 0 0 20px 20px;
  padding: 0;
}
.fc-legal-body ul li {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 6px;
}
.fc-legal-body a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.fc-legal-body a:hover { opacity: 0.7; }
.fc-legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
}
.fc-legal-body table th,
.fc-legal-body table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid rgba(28,58,30,0.12);
  line-height: 1.6;
  color: var(--color-text);
}
.fc-legal-body table th {
  background: rgba(28,58,30,0.05);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fc-archive-section { padding: 80px 0; }
.fc-archive-intro {
  padding: clamp(48px, 7vw, 80px) 0 clamp(36px, 5vw, 60px);
  background: var(--color-bg);
  text-align: center;
  border-bottom: 1px solid rgba(28, 58, 30, 0.08);
}
.fc-archive-intro__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.fc-archive-intro__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 16px;
}
.fc-archive-intro__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.08;
  color: var(--color-primary);
  margin-bottom: 40px;
}
.fc-archive-grid-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--color-bg-light, #f5f3f0);
}
.fc-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.fc-filter-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid rgba(28, 58, 30, 0.2);
  background: transparent;
  color: var(--color-text);
  opacity: 0.65;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, opacity 0.25s;
}
.fc-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  opacity: 1;
}
.fc-filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
  opacity: 1;
}
.fc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fc-product-card.hidden { display: none; }
.fc-product-card-inner {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 58, 30, 0.08);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(28, 58, 30, 0.05);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.fc-product-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 58, 30, 0.12);
}
.fc-product-card-inner img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
  display: block;
  transition: transform 0.4s ease;
}
.fc-product-card-inner:hover img { transform: scale(1.04); }
.fc-product-card-placeholder {
  aspect-ratio: 1;
  background: var(--color-bg-light);
  border-radius: 16px;
}
.fc-product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 58, 30, 0.88);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
  text-align: center;
}
.fc-product-card-inner:hover .fc-product-card-overlay { opacity: 1; }
.fc-product-card-brand {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.fc-product-card-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
}
.fc-product-card-info { padding: 14px 16px 18px; text-align: center; }
.fc-product-brand {
  font-size: 11px;
  font-weight: 700;
  color: #1d7216;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 3px;
}
.fc-product-name {
  font-size: 13px;
  color: #292929;
  line-height: 1.4;
}
.fc-load-more-wrap { text-align: center; margin-top: 52px; }

/* ============================================
   SINGLE PRODOTTO
   ============================================ */
/* Single prodotto hero */
.fc-single-hero-banner {
  height: 420px;
  align-items: flex-end;
  padding-bottom: 56px;
}
.fc-single-hero-banner .fc-page-hero-content {
  text-align: center;
  max-width: var(--container-max);
  width: 100%;
  padding: 0 var(--container-padding);
}
.fc-single-hero-banner .fc-page-hero-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 52px);
}
.fc-breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
}
.fc-breadcrumb a { color: var(--color-text-muted); transition: color 0.2s; }
.fc-breadcrumb a:hover { color: var(--color-primary); }
.fc-breadcrumb span { margin: 0 8px; opacity: 0.4; }
.fc-single-main { padding: 60px 0 80px; }
.fc-single-desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  opacity: 0.82;
  margin-bottom: 8px;
}
.fc-single-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 72px;
  align-items: start;
}
.fc-single-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.fc-single-img-cutout {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-card);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.22));
  cursor: zoom-in;
  transition: transform 0.55s var(--ease-out), filter 0.55s var(--ease-out);
  position: relative;
  z-index: 1;
}
.fc-single-img-cutout:hover {
  transform: scale(1.04) translateY(-4px);
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.30));
}
.fc-single-img-empty {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.fc-single-brand {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1d7216;
  margin-bottom: 10px;
}
.fc-single-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 50px);
  color: #292929;
  line-height: 1.1;
  margin-bottom: 16px;
}
.fc-single-cat-pill {
  display: inline-block;
  background: rgba(28, 58, 30, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.fc-single-sep { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 24px 0; }
.fc-single-meta { display: flex; flex-direction: column; gap: 10px; }
.fc-single-meta-row { display: flex; gap: 12px; align-items: baseline; }
.fc-single-meta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  min-width: 150px;
  flex-shrink: 0;
}
.fc-single-meta-value { font-size: 14px; color: var(--color-text); }
.fc-single-section-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
}
.fc-single-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text);
  opacity: 0.82;
  white-space: pre-line;
}
.fc-single-related {
  background: var(--color-bg-light);
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(28, 58, 30, 0.08);
}
.fc-single-related__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.52;
  margin-bottom: 14px;
}
.fc-related-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--color-primary);
  margin-bottom: 52px;
}
.fc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* LIGHTBOX */
.fc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.fc-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.fc-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.fc-lightbox-close:hover { opacity: 1; }

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1199px) {
  .fc-two-col       { grid-template-columns: 1fr; gap: 48px; }
  .fc-storia-era__inner { grid-template-columns: 1fr; gap: 48px; }
  .fc-storia-era--reverse .fc-storia-era__media,
  .fc-storia-era--reverse .fc-storia-era__content { order: unset; }
  .fc-dicono-inner  { grid-template-columns: 1fr; gap: 48px; }
  .fc-associati-grid{ grid-template-columns: 1fr; }
  .fc-products-grid { grid-template-columns: repeat(3, 1fr); }
  .fc-related-grid  { grid-template-columns: repeat(2, 1fr); }
  .fc-single-grid   { grid-template-columns: 1fr; }
  .fc-contact-icons { grid-template-columns: 1fr; gap: 32px; }
  .fc-footer-grid   { grid-template-columns: 1fr; gap: 48px; }
  .fc-form-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .fc-products-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-related-grid  { grid-template-columns: repeat(2, 1fr); }
  .fc-section       { padding: 60px 0; }
  .fc-storia-era    { padding: 60px 0; }
  .fc-storia-era__media-double { grid-template-columns: 1fr; }
  .fc-carousel-wrap,
  .fc-product-carousel-wrap { padding: 0 30px; }
  .fc-carousel .slick-prev { left: -30px; }
  .fc-carousel .slick-next { right: -30px; }
  .fc-col-image-double { grid-template-columns: 1fr; }
  .fc-page-hero     { height: 280px; padding-bottom: 40px; }
}
